<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Forums Topic: Batch Add</title>
<link>http://omeka.org/forums/</link>
<description>Forums Topic: Batch Add</description>
<language>en</language>
<pubDate>Fri, 09 Jan 2009 22:00:39 +0000</pubDate>

<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-515</link>
<pubDate>Wed, 02 Jul 2008 23:53:22 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">515@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Actually, that was very fast.  Thank you very much for the help.  I appreciate it a lot and it works perfectly.&#60;/p&#62;
&#60;p&#62;Even though it affected all collection select lists, I had to install the DropboxController.patch Sean Hannan posted on the Omeka Dev site in order to get the Dropbox collection feature to work properly.  But it's good to go now.&#60;/p&#62;
&#60;p&#62;URL: &#60;a href=&#34;http://groups.google.com/group/omeka-dev/browse_thread/thread/1c1dff2497e67086?hl=en&#34; rel=&#34;nofollow&#34;&#62;http://groups.google.com/group/omeka-dev/browse_thread/thread/1c1dff2497e67086?hl=en&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-514</link>
<pubDate>Wed, 02 Jul 2008 20:34:32 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">514@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hey, my apologies for not getting to this sooner.  I fixed the bug and sent a patch to the dev list, which you can find at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://groups.google.com/group/omeka-dev/browse_thread/thread/1cfa3fa1fc19726c&#34; rel=&#34;nofollow&#34;&#62;http://groups.google.com/group/omeka-dev/browse_thread/thread/1cfa3fa1fc19726c&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;To apply the patch, download the attached file and try:&#60;/p&#62;
&#60;p&#62;patch -p0 &#38;lt; collections_limit.patch &#60;/p&#62;
&#60;p&#62;in the root of your installation.&#60;/p&#62;
&#60;p&#62;Hope that helps!
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-513</link>
<pubDate>Wed, 02 Jul 2008 15:41:38 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">513@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hmmm, I don't think that's the code that's affecting this after all.  I'll keep reading through it all.  :)
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-512</link>
<pubDate>Wed, 02 Jul 2008 10:30:59 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">512@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Whoops, I left out the file name:&#60;/p&#62;
&#60;p&#62;admin/themes/default/items/form.php
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-511</link>
<pubDate>Wed, 02 Jul 2008 10:30:00 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">511@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I really need to figure this out.  Looking at the generated code in the admin panel for adding an item to a collection, I can see that only 10 collections are generated in the drop down list (in the admin page ---&#38;gt; either when you're adding a single item or batch adding many items, the Collection Metadata --&#38;gt; Collection drop down list only returns the first ten collections).&#60;/p&#62;
&#60;p&#62;I'm guessing the reason is in the PHP that generates the form for the drop down list.  After looking through a lot of the PHP code, I'm guessing the file that needs adjusting is in&#60;/p&#62;
&#60;p&#62;admin/themes/default/items&#60;/p&#62;
&#60;p&#62;and it's around line 337.   I'll add the code below although I'm not sure how it will display when I submit this post:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
 &#60;/code&#62;&#60;code&#62;&#38;lt;fieldset id=&#38;quot;collection-metadata&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;legend&#38;gt;Collection Metadata&#38;lt;/legend&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;div class=&#38;quot;field&#38;quot;&#38;gt;&#60;/code&#62;&#60;br /&#62;
                &#60;code&#62;&#38;lt;?php select(&#38;#39;collection_id&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;collections(),&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;$item-&#38;gt;collection_id,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;Collection&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;id&#38;#39;,&#60;/code&#62;&#60;br /&#62;
                                        &#60;code&#62;&#38;#39;name&#38;#39; ); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;In my limited experience, the code above looks good to me.  Does anything think otherwise?  Could the problem be there or somewhere else?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-508</link>
<pubDate>Mon, 30 Jun 2008 19:46:39 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">508@http://omeka.org/forums/</guid>
<description>&#60;p&#62;This is not just a batch add issue.  I can't access the 11th collection when trying to add a single item.&#60;/p&#62;
&#60;p&#62;I'm not really much of a programmer, but I'm trying to find the culprit.  :)
&#60;/p&#62;</description>
</item>
<item>
<title>Sean on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-507</link>
<pubDate>Mon, 30 Jun 2008 19:29:12 +0000</pubDate>
<dc:creator>Sean</dc:creator>
<guid isPermaLink="false">507@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I am having a similar problem.  I have added more than 10 collections.  When I try to batch upload to the 11th collection, it's not an option in the Collection Metadata dropdown menu.  The first 10 are available though.&#60;/p&#62;
&#60;p&#62;Even though I'm working with PHP 5.1.6, I tested this behavior on my machine which has 5.2.6.  It's repeatable.&#60;/p&#62;
&#60;p&#62;Thoughts?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>mmesseng on "Batch Add"</title>
<link>http://omeka.org/forums/topic/batch-add#post-459</link>
<pubDate>Thu, 05 Jun 2008 21:30:30 +0000</pubDate>
<dc:creator>mmesseng</dc:creator>
<guid isPermaLink="false">459@http://omeka.org/forums/</guid>
<description>&#60;p&#62;When trying to use the batch add function I encounter an issue trying to add images to a collection. It appears that you cannot have more than 6 collections per exhibit. &#60;/p&#62;
&#60;p&#62;When I checked the exhibit setup, I see the desired collection, but when i try and add items to it, the seventh collection is not available. &#60;/p&#62;
&#60;p&#62;Any thoughts on how I might resolve that?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
