From: <ada...@us...> - 2003-08-31 22:55:39
|
Update of /cvsroot/phpwebsite-comm/modules/article/docs In directory sc8-pr-cvs1:/tmp/cvs-serv13155/docs Modified Files: INTRODUCTION.txt Log Message: Added "Archive Listings" feature Index: INTRODUCTION.txt =================================================================== RCS file: /cvsroot/phpwebsite-comm/modules/article/docs/INTRODUCTION.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** INTRODUCTION.txt 17 Jul 2003 22:33:27 -0000 1.2 --- INTRODUCTION.txt 31 Aug 2003 22:55:33 -0000 1.3 *************** *** 34,37 **** --- 34,38 ---- "Edit Locking" - Only 1 user can edit a page at a time A "News" page that displays all articles + An "Archives" page that lists all articles created or updated on a certain day, month or year. Perfect for blogs! *************** *** 236,237 **** --- 237,251 ---- and LIST_order may be "ASC" or "DESC" + + To see all articles for a specific day, enter + http://www.yoursite.com/index.php?module=article&view=archives&year=2003&month=8&day=27 + + To see all articles for a specific month, enter + http://www.yoursite.com/index.php?module=article&view=archives&year=2003&month=8 + + To see all articles for a specific year, enter + http://www.yoursite.com/index.php?module=article&view=archives&year=2003 + + NOTE: The above links will show ALL (expired and unexpired) articles published on these dates. If you want to see the articles created or updated on these dates, add "&datetype=created_date" or "&datetype=updated_date" to the link. + If you don't want to see any links that are currently expired, add "¤t=1" to the link. + |