Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_htmlvalidator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9382/plugins/serendipity_event_htmlvalidator
Modified Files:
Tag: branch-smarty
serendipity_event_htmlvalidator.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_htmlvalidator.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_htmlvalidator/serendipity_event_htmlvalidator.php,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -u -d -r1.5 -r1.5.2.1
--- serendipity_event_htmlvalidator.php 23 Jun 2004 11:13:09 -0000 1.5
+++ serendipity_event_htmlvalidator.php 29 Oct 2004 11:02:35 -0000 1.5.2.1
@@ -34,6 +34,9 @@
$propbag->add('name', PLUGIN_EVENT_HTMLVALIDATOR_NAME);
$propbag->add('description', PLUGIN_EVENT_HTMLVALIDATOR_DESC);
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Garvin Hicking');
+ $propbag->add('version', '1.0');
$propbag->add('event_hooks', array(
'backend_preview' => true,
'backend_display' => true,
@@ -253,4 +256,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
+?>
\ No newline at end of file
|