--- jquery_plugin.jq.inc 2008-03-23 23:17:50.000000000 -0800 +++ jquery_plugin.jq.patched 2008-03-25 14:45:50.000000000 -0800 @@ -8,8 +8,8 @@ function jquery_plugin_hook_jq($op, $plugin) { if ($op == 'info') { $path = drupal_get_path('module', 'jquery_plugin'); - return array( - 'ajaxQueue' => array( + return array( + 'ajaxQueue' => array( // {{{ 'name' => t('Ajax Queue'), 'description' => t('Ajax Queue is a plugin that helps to manage Ajax race conditions. When multiple Ajax requests are made in rapid succession, the results can be returned out of order. This can cause weird behavior in your application.'), 'version' => '1.0', @@ -19,8 +19,8 @@ $path .'/jquery.ajaxQueue.min.js', ), ), - ), - 'cycle' => array( + ), // }}} + 'cycle' => array( // {{{ 'name' => t('Cycle'), 'description' => t('Easy to use light-weight slideshow implementation. It supports pause-on-hover, auto-stop, auto-fit, before/after callbacks, click triggers and many transition effects including fade, shuffle, scroll, turn and zoom. It also allows you to define and run your own custom transitions. In addition, it supports, but does not require, the Metadata Plugin and the Easing Plugin.'), 'version' => '2.10', @@ -30,8 +30,8 @@ $path .'/jquery.cycle.min.js', ), ), - ), - 'delegate' => array( + ), // }}} + 'delegate' => array( // {{{ 'name' => t('Delegate'), 'description' => t('The Delegate plugin is now part of the Validate plugin, so is rarely used on its own.'), 'version' => '1.0', @@ -41,8 +41,8 @@ $path .'/jquery.delegate.min.js', ), ), - ), - 'metadata' => array( + ), // }}} + 'metadata' => array( // {{{ 'name' => t('Metadata'), 'description' => t('This plugin is capable of extracting metadata from classes, random attributes, and child elements.'), 'version' => '2.0', @@ -52,8 +52,22 @@ $path .'/jquery.metadata.min.js', ), ), - ), - 'validate' => array( + ), // }}} + 'timeentry' => array( // {{{ + 'name' => t('Time entry'), + 'description' => t('Handy and complete time entry input widget.'), + 'version' => '1.3', + 'url' => 'http://plugins.jquery.com/project/timeEntry', + 'files' => array( + 'js' => array( + $path .'/jquery.timeentry.min.js', + ), + 'css' => array( + $path .'/jquery.timeentry.css', + ), + ), + ), // }}} + 'validate' => array( // {{{ 'name' => t('Validate'), 'description' => t('Setup powerful client-side form validation. From a protoype in a few minutes to heavily customized validation rules, methods and messages.'), 'version' => '1.2.1', @@ -63,7 +77,7 @@ $path .'/jquery.validate.min.js', ), ), - ), + ), // }}} ); } }