diff options
author | http://dtrt.org/ <http://dtrt.org/@web> | 2008-12-20 19:36:15 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-12-20 19:36:15 -0500 |
commit | faa01bd43243e789b92579a83a3e96c363ae096c (patch) | |
tree | 3a64ab00c8d4ce0dc9c4d6cd36e5a5630f294b87 /doc | |
parent | 6042e607f33966279f1360d42e46dd0bf7e439e8 (diff) | |
download | ikiwiki-faa01bd43243e789b92579a83a3e96c363ae096c.tar ikiwiki-faa01bd43243e789b92579a83a3e96c363ae096c.tar.gz |
Sort paramater not a problem; Revised steps to reprodce
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/inline_sort_order_and_meta_date_value.mdwn | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/bugs/inline_sort_order_and_meta_date_value.mdwn b/doc/bugs/inline_sort_order_and_meta_date_value.mdwn index 79d17ada2..ce87f9acb 100644 --- a/doc/bugs/inline_sort_order_and_meta_date_value.mdwn +++ b/doc/bugs/inline_sort_order_and_meta_date_value.mdwn @@ -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 |