<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Advanced sorting features for plone folders</title>
	<atom:link href="http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/</link>
	<description></description>
	<pubDate>Fri, 21 Nov 2008 18:20:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Edmund M</title>
		<link>http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1711</link>
		<dc:creator>Edmund M</dc:creator>
		<pubDate>Sun, 17 Aug 2008 15:13:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1711</guid>
		<description>Not sure if this is entirely relavent, but I wrote some code to implement an iphoto-like slide sorter.  All images in the folder are in a grid which resizes with the size of the window.  Any image can be drag and dropped to anywhere in the grid. I wrote up what I did at: http://plone.org/documentation/tutorial/create-a-2d-image-sorter-based-on-folder_contents-sorting-functionality/?searchterm=slide%20sorter</description>
		<content:encoded><![CDATA[<p>Not sure if this is entirely relavent, but I wrote some code to implement an iphoto-like slide sorter.  All images in the folder are in a grid which resizes with the size of the window.  Any image can be drag and dropped to anywhere in the grid. I wrote up what I did at: <a href="http://plone.org/documentation/tutorial/create-a-2d-image-sorter-based-on-folder_contents-sorting-functionality/?searchterm=slide%20sorter" rel="nofollow">http://plone.org/documentation/tutorial/create-a-2d-image-sorter-based-on-folder_contents-sorting-functionality/?searchterm=slide%20sorter</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fRiSi</title>
		<link>http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1609</link>
		<dc:creator>fRiSi</dc:creator>
		<pubDate>Wed, 04 Jun 2008 08:30:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1609</guid>
		<description>@Ricardo: thx for your hint! in this case folder_position does pretty the same (except moving an item &lt;n&gt; up/down)
by operating on the folder instead of the object somebody wants to move (requires the user to know the id of the item).

@Jon: coding this is not the big deal. to get this into 3.2 we'd need a plip with detailed description of the changes, correct?
some ideas:
* batch properties can be set in folder_contents (show 20 per page, all)
* arrows for moving items to top and bottom of the listing in the sorting column
* buttons for sorting items (asc/desc) by changing their objPosInParent (probably with a dropdown to choose which index to sort on)
* probably option on folders how to display items (somehow like atvm simplevocabulary (alph asc/desc, objposinparent)
  this might require changes in folder_contents and other templates</description>
		<content:encoded><![CDATA[<p>@Ricardo: thx for your hint! in this case folder_position does pretty the same (except moving an item <n> up/down)<br />
by operating on the folder instead of the object somebody wants to move (requires the user to know the id of the item).</p>
<p>@Jon: coding this is not the big deal. to get this into 3.2 we&#8217;d need a plip with detailed description of the changes, correct?<br />
some ideas:<br />
* batch properties can be set in folder_contents (show 20 per page, all)<br />
* arrows for moving items to top and bottom of the listing in the sorting column<br />
* buttons for sorting items (asc/desc) by changing their objPosInParent (probably with a dropdown to choose which index to sort on)<br />
* probably option on folders how to display items (somehow like atvm simplevocabulary (alph asc/desc, objposinparent)<br />
  this might require changes in folder_contents and other templates</n></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Stahl</title>
		<link>http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1606</link>
		<dc:creator>Jon Stahl</dc:creator>
		<pubDate>Thu, 29 May 2008 13:47:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1606</guid>
		<description>It would be really nice to see these features polished up, given some UI, and contributed to trunk for 3.2!</description>
		<content:encoded><![CDATA[<p>It would be really nice to see these features polished up, given some UI, and contributed to trunk for 3.2!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Newbery</title>
		<link>http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1605</link>
		<dc:creator>Ricardo Newbery</dc:creator>
		<pubDate>Thu, 29 May 2008 12:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.webmeisterei.com/friessnegger/2008/05/29/advanced-sorting-features-for-plone-folders/#comment-1605</guid>
		<description>The folder_position script provides some basic sort support.  

http://example.com/path/to/folder/folder_position?position=ordered&#38;id=title

Adding a UI is easy.  Extending the script to support reverse ordering would also be trivial.</description>
		<content:encoded><![CDATA[<p>The folder_position script provides some basic sort support.  </p>
<p><a href="http://example.com/path/to/folder/folder_position?position=ordered&amp;id=title" rel="nofollow">http://example.com/path/to/folder/folder_position?position=ordered&amp;id=title</a></p>
<p>Adding a UI is easy.  Extending the script to support reverse ordering would also be trivial.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
