Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_creativecommons
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24806/plugins/serendipity_event_creativecommons
Modified Files:
serendipity_event_creativecommons.php
Log Message:
Merge from 'branch-smarty' to HEAD.
Index: serendipity_event_creativecommons.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_creativecommons/serendipity_event_creativecommons.php,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- serendipity_event_creativecommons.php 26 Aug 2004 10:25:09 -0000 1.12
+++ serendipity_event_creativecommons.php 19 Nov 2004 11:05:38 -0000 1.13
@@ -20,7 +20,7 @@
case 'en':
default:
@define('PLUGIN_CREATIVECOMMONS_NAME', 'Creative Commons License');
- @define('PLUGIN_CREATIVECOMMONS_DESC', 'Choose a creative commons license for your content');
+ @define('PLUGIN_CREATIVECOMMONS_DESC', 'Choose and display a creative commons license for your content');
@define('PLUGIN_CREATIVECOMMONS_TXT', 'Show text?');
@define('PLUGIN_CREATIVECOMMONS_TXT_DESC', 'For visible notifications of license status, show a brief explanation of your license choice.');
@define('PLUGIN_CREATIVECOMMONS_CAP', 'Original content in this work is licensed under a <a href="#license_uri#">Creative Commons License</a>');
@@ -38,8 +38,11 @@
class serendipity_event_creativecommons extends serendipity_event {
function introspect(&$propbag)
{
- $propbag->add('name', PLUGIN_CREATIVECOMMONS_NAME);
- $propbag->add('description', PLUGIN_CREATIVECOMMONS_DESC);
+ $propbag->add('name', PLUGIN_CREATIVECOMMONS_NAME);
+ $propbag->add('description', PLUGIN_CREATIVECOMMONS_DESC);
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Evan Nemerson');
+ $propbag->add('version', '1.0');
$propbag->add('configuration', array('nc', 'nd', 'txt', 'cc_v2'));
$propbag->add('event_hooks',
array('frontend_display:rss-1.0:per_entry' => true,
@@ -349,4 +352,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
+?>
\ No newline at end of file
|