]> sipb.mit.edu Git - ikiwiki.git/commitdiff
Sort paramater not a problem; Revised steps to reprodce
authorhttp://dtrt.org/ <http://dtrt.org/@web>
Sun, 21 Dec 2008 00:36:15 +0000 (19:36 -0500)
committerJoey Hess <joey@kitenet.net>
Sun, 21 Dec 2008 00:36:15 +0000 (19:36 -0500)
doc/bugs/inline_sort_order_and_meta_date_value.mdwn

index 79d17ada2fc89c063fb1b5fcfef74cbdee071832..ce87f9acb749451ade735122841708f829a23fc8 100644 (file)
@@ -57,3 +57,30 @@ out the sort option. --[[Joey]]
                return sprintf(gettext("unknown sort type %s"), $params{sort});
        }
 
+> On further testing, I find that the bug is limited to the first time
+> creation time should be used and has nothing to do with setting the sort
+> parameter. Revised steps to reproduce: --[David A.  Harding](http://dtrt.org), 2008-12-20
+> 
+> 1. Create pages that sort different by mtime and ctime
+> 
+> 2. inline pages="somepages/*"
+> 
+> 3. ikiwiki --setup setup_file
+> 
+> 4. Pages are output incorrectly in mtime order
+> 
+> 5. ikiwiki --setup setup_file
+> 
+> 6. Pages are output correctly in ctime order
+> 
+> 7. Create new page in somepages/, set its ctime to earlier than another
+>    page in sompages/
+> 
+> 8. ikiwiki --setup setup_file
+> 
+> 9. All previously sorted pages output correctly in ctime order but new
+>    page is output incorrectly at the top as if its mtime was its ctime
+> 
+> 10. ikiwiki --setup setup_file
+> 
+> 11. All pages, including new page, are output correctly in ctime order