Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_livesearch
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24806/plugins/serendipity_event_livesearch
Modified Files:
serendipity_event_livesearch.php
Log Message:
Merge from 'branch-smarty' to HEAD.
Index: serendipity_event_livesearch.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_livesearch/serendipity_event_livesearch.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- serendipity_event_livesearch.php 31 Aug 2004 12:52:56 -0000 1.7
+++ serendipity_event_livesearch.php 19 Nov 2004 11:05:40 -0000 1.8
@@ -11,8 +11,8 @@
case 'en':
case 'es':
default:
- @define('PLUGIN_EVENT_LIVESEARCH_NAME', 'LiveSearch');
- @define('PLUGIN_EVENT_LIVESEARCH_DESC', 'Enhances the Search function with live-updates on keypress (JavaScript)');
+ @define('PLUGIN_EVENT_LIVESEARCH_NAME', 'Livesearch');
+ @define('PLUGIN_EVENT_LIVESEARCH_DESC', 'Enhances the internal search function by adding live-updates on keypress (JavaScript)');
@define('PLUGIN_EVENT_LIVESEARCH_WAIT', 'Wait, sending request...');
break;
}
@@ -25,10 +25,13 @@
$propbag->add('name', PLUGIN_EVENT_LIVESEARCH_NAME);
$propbag->add('description', PLUGIN_EVENT_LIVESEARCH_DESC);
+ $propbag->add('stackable', false);
+ $propbag->add('author', 'Christian Stocker, Garvin Hicking');
+ $propbag->add('version', '1.0');
$propbag->add('event_hooks', array(
- 'external_plugin' => true,
- 'frontend_header' => true,
- 'css' => true,
+ 'external_plugin' => true,
+ 'frontend_header' => true,
+ 'css' => true,
'quicksearch_plugin' => true
));
}
@@ -161,4 +164,4 @@
}
/* vim: set sts=4 ts=4 expandtab : */
-?>
+?>
\ No newline at end of file
|