Hi!
What you could do is create your own staticpage for that. Then you create your own staticpage template that is used by this static page. Inside this template (like plugin_staticpage_complete.tpl) you can use Smarty function call like this:
Code: Select all
{serendipity_fetchPrintEntries limit=999999 template="entries_full.tpl"}
This will instruct s9y to fetch 999999 entries and display them using entries_full.tpl. This file again you can create from an existing entries.tpl template file within your template directory and modify it to suit your needs. For starters, you could simply use template="entries.tpl" to see how/if it works.
The backside of this is that the fetchprintentries function will fetch ALL entries and bodies. Depending on the amount of your entries, this will cost some performance.
Last but not least, you could also create a small event plugin (like the customarchive one) that serves your needs and could use its custom SQL query...
Sorry that there's no REALLY REASY way to do this, I can only offer "REALLY FLEXIBLE".
Regards,
Garvin