Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29388
Modified Files:
db_update-0.5-0.5.1.sql serendipity_config_local.tpl
Log Message:
Introducing event plugins (see mailing list)
Index: db_update-0.5-0.5.1.sql
===================================================================
RCS file: /cvsroot/php-blog/serendipity/db_update-0.5-0.5.1.sql,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- db_update-0.5-0.5.1.sql 8 Feb 2004 17:56:27 -0000 1.1
+++ db_update-0.5-0.5.1.sql 9 Feb 2004 15:20:03 -0000 1.2
@@ -10,3 +10,11 @@
`date` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
+
+UPDATE serendipity_plugins
+ SET name = REPLACE(name, 'serendipity_plugin_content_rewrite', 'serendipity_event_contentrewrite')
+ WHERE name LIKE '%serendipity_plugin_content_rewrite%';
+
+UPDATE serendipity_config
+ SET name = REPLACE(name, 'serendipity_plugin_content_rewrite', 'serendipity_event_contentrewrite')
+ WHERE name LIKE '%serendipity_plugin_content_rewrite%';
Index: serendipity_config_local.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config_local.tpl,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -d -r1.29 -r1.30
--- serendipity_config_local.tpl 2 Feb 2004 09:38:22 -0000 1.29
+++ serendipity_config_local.tpl 9 Feb 2004 15:20:03 -0000 1.30
@@ -46,14 +46,4 @@
$serendipity['convert'] = '{Path to convert binary|convert|string|/usr/local/bin/convert}'; // Full path & name of your image magick convert binary
$serendipity['thumbSuffix'] = '{Thumbnail suffix|thumbSuffix|string|serendipityThumb}'; // Thumbnails will be named original.Suffix.ext
$serendipity['thumbSize'] = '{Thumbnail dimensions|thumbSize|int|110}'; // Static width of auto-generated thumbnails
-
-// Pinging of Weblog Services
-# Announcement of new weblog entries
-$serendipity['announce_entries'] = '{Announce Entries|announce_entries|bool|0}'; // Do you want new entries to be announced?
-$serendipity['announce_entries_blogs'] = '{blo.gs|announce_entries_blogs|bool|0}'; // Do you want new entries to be announced on blo.gs?
-$serendipity['announce_entries_blogrolling'] = '{blogrolling.com|announce_entries_blogrolling|bool|0}'; // Do you want new entries to be announced on blogrolling.com?
-$serendipity['announce_entries_technorati'] = '{technorati.com|announce_entries_technorati|bool|0}'; // Do you want new entries to be announced on technorati.com?
-$serendipity['announce_entries_weblogs'] = '{weblogs.com|announce_entries_weblogs|bool|0}'; // Do you want new entries to be announced on weblogs.com?
-$serendipity['announce_entries_bloggde'] = '{blogg.de|announce_entries_bloggde|bool|0}'; // Do you want new entries to be announced on blogg.de?
-$serendipity['announce_entries_yahoo'] = '{yahoo.com|announce_entries_yahoo|bool|0}'; // Do you want new entries to be announced on yahoo.com?
?>
|