[Comoblog-commit] comoblog/docs CHANGELOG,1.11,1.12 MODULES,1.4,1.5 UPGRADE,1.2,1.3
Status: Inactive
Brought to you by:
markwallis
|
From: Mark W. \(a. serialmonkey\) <mar...@us...> - 2005-10-05 00:45:48
|
Update of /cvsroot/comoblog/comoblog/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14199/docs Modified Files: CHANGELOG MODULES UPGRADE Log Message: Added functionality to allow pre and post database save post filtering. This is prework for the mod_search module Index: UPGRADE =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/UPGRADE,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- UPGRADE 4 Oct 2005 06:14:35 -0000 1.2 +++ UPGRADE 5 Oct 2005 00:45:34 -0000 1.3 @@ -15,9 +15,11 @@ If you wish to install CoMoblog into the same folder location as EasyMoblog then remove all EasyMoblog files and folders. 3. Extract the new release tar.gz file into the CoMoblog folder -4. Login to MySql as your easymoblog SQL user and run the following +4. Edit the docs/upgrades/easymoblog-0.5.1_to_comoblog-0.1.sql script + and insert any table prefix you have configured in your db. +5. Login to MySql as your easymoblog SQL user and run the following script: docs/upgrades/easymoblog-0.5.1_to_comoblog-0.1.sql -5. Update your cron job if required to run /batch/comoblog_batch.php +6. Update your cron job if required to run /batch/comoblog_batch.php instead of easymoblog_batch.php ______________________________________________________________________ END OF UPGRADE FILE Index: MODULES =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/MODULES,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- MODULES 2 Sep 2005 05:45:48 -0000 1.4 +++ MODULES 5 Oct 2005 00:45:34 -0000 1.5 @@ -109,7 +109,13 @@ storing the post in the database. You can access and modify the $post associative array in your {mod_name}_filter_post.php script (see {CoMoblog}/batch/comoblog_batch.php source code). - + + You can also mark a post Filter module to be run after the post has + been stored into the database and assigned a post_id value. This is + useful for processing tasks that require the post_id of the post they + are working on. To make a post filter run after the data has been + stored set the filter_posts to O in the XML initallation file. + Comments filters works in the same way, but you have to set to 'Y' the filter_module parameter in XML installation file and create a {CoMoblog}/modules/{mod_name}/{mod_name}_filter_comment.php Index: CHANGELOG =================================================================== RCS file: /cvsroot/comoblog/comoblog/docs/CHANGELOG,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- CHANGELOG 4 Oct 2005 11:26:56 -0000 1.11 +++ CHANGELOG 5 Oct 2005 00:45:34 -0000 1.12 @@ -8,6 +8,7 @@ * FEATURE: Debugging now optionally available for POP3 (1280310) * FEATURE: POP3 errors now reported from batch script (1280310) * FEATURE: Cookie stores comments data (1280298) +* FEATURE: Added pre/post db save post filter framework * BUG: Disable POP3 APOP authentication by default (1280278) * BUG: Background images now displaying (1280325) * BUG: Trackback pings now work (1280323) |