Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_contentrewrite
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9382/plugins/serendipity_event_contentrewrite
Modified Files:
Tag: branch-smarty
serendipity_event_contentrewrite.php
Log Message:
Added version/authorship information to all plugins, as far as I could reconstruct them.
Added 'stackable' attribute everywhere. I decided certain plugins should not be stackable, this is left up to discussion, but I think I chose reasonable ones.
Index: serendipity_event_contentrewrite.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_contentrewrite/serendipity_event_contentrewrite.php,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -u -d -r1.9.2.2 -r1.9.2.3
--- serendipity_event_contentrewrite.php 28 Oct 2004 20:17:22 -0000 1.9.2.2
+++ serendipity_event_contentrewrite.php 29 Oct 2004 11:02:33 -0000 1.9.2.3
@@ -63,6 +63,9 @@
$propbag->add('name', PLUGIN_EVENT_CONTENTREWRITE_NAME);
$propbag->add('description', PLUGIN_EVENT_CONTENTREWRITE_DESCRIPTION);
+ $propbag->add('stackable', true);
+ $propbag->add('author', 'Garvin Hicking');
+ $propbag->add('version', '1.0');
$propbag->add('event_hooks', array(
'frontend_display' => true
));
@@ -291,4 +294,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
+?>
\ No newline at end of file
|