History of Discuss_Version_0_20_DevTrac
The most recent revision number of this page is 8. It has been viewed 119 time(s). It was last modified Tue Apr 23 18:43:06 UTC 2013 by AaronGraves. There are 42 lines of text, 407 words, 2,578 characters with spaces and 2,196 without. The total page size (including metadata) is 3,668 bytes (3.58 KB)

See all pages that link to Discuss_Version_0_20_DevTrac

2013/04/23
18:43 UTC (current) Revision 8 . . . . AaronGraves (69.4.28.21) – I discovered a rather unfortunate error in the code that handles reverting a page to a previous revision. The procedure did not check if editing was allowed (by calling **CanEdit()**), and thus it was triggered by a spider crawling the history page. The check on **CanEdit()** has been added, as well as the "revert" link was changed to a form button, so it could not be triggered by a web spider anymore.
2013/04/19
21:17 UTC Revision 7 . . . . AaronGraves (69.4.28.21) – I've written a plugin that implements shortcodes (as mentioned on [[Future]]). I don't see any reason why I can't merge the code into the main source tree for version 0.20 release.
2013/04/16
14:20 UTC Revision 6 . . . . AaronGraves (69.4.28.21) – 404's should be fully done now!
2013/04/15
20:37 UTC Revision 5 . . . . AaronGraves (69.4.28.21) – As a side effect of changing the way revisions are done, it's now possible for page names to contain periods.
19:52 UTC Revision 4 . . . . AaronGraves (69.4.28.21) – The way displaying old revisions of a page has changed. Previously, the request would be the pagename, a period, and the revision number (HomePage.5 as an example). Now the request would look like "?do=revision;page=HomePage;rev=5". To facilitate this, a new command was added to **%Commands** called //**revision**//, which points to **DoRevision()**. All the other code has been commented for now, will be swept out in version 0.30.
17:32 UTC Revision 3 . . . . AaronGraves (69.4.28.21) – **DoMaintPurgeOldRevs()** now reads the file in and checks the //**ts**// record to insure the highest level of accuracy when removing old revisions.
2013/04/12
18:38 UTC Revision 2 . . . . AaronGraves (69.4.5.254) – Maintenance task for purging old archives has been written. One caveat: It uses stat to pull the file mod time to determine if the archive is older than $TimeStamp - $PurgeArchives. This works great in theory, but in practice it's a terrible idea. The file mod time will be whenever that archive file was moved to the archive - in other words, when the next revision pushed it. This task needs to be re-written to place a call to **GetFile()** and read the //**ts**// record, then compare that to $TimeStamp - $PurgeArchives.
16:33 UTC Revision 1 . . . . AaronGraves (69.4.5.254) – Maintenance task for trimming the visitor log has been completed (finally! This has been missing for a while!)