[Jifty-commit] r1403 - in jifty/trunk: . plugins/Nothing plugins/Nothing/lib plugins/Nothing/lib/Jifty plugins/Nothing/lib/Jifty/Plugin plugins/Nothing/lib/Jifty/Plugin/Nothing plugins/Nothing/lib/Jifty/Plugin/Nothing/Action plugins/Nothing/lib/Jifty/Plugin/Nothing/Model plugins/Nothing/share plugins/Nothing/share/po plugins/Nothing/share/web plugins/Nothing/share/web/static plugins/Nothing/share/web/templates

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Thu Jun 29 16:47:27 EDT 2006


Author: alexmv
Date: Thu Jun 29 16:47:26 2006
New Revision: 1403

Added:
   jifty/trunk/plugins/Nothing/
   jifty/trunk/plugins/Nothing/Makefile.PL
   jifty/trunk/plugins/Nothing/doc/
   jifty/trunk/plugins/Nothing/lib/
   jifty/trunk/plugins/Nothing/lib/Jifty/
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing.pm
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/Action/
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/Dispatcher.pm
   jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/Model/
   jifty/trunk/plugins/Nothing/share/
   jifty/trunk/plugins/Nothing/share/po/
   jifty/trunk/plugins/Nothing/share/web/
   jifty/trunk/plugins/Nothing/share/web/static/
   jifty/trunk/plugins/Nothing/share/web/templates/
Modified:
   jifty/trunk/   (props changed)

Log:
 r14613 at zoq-fot-pik:  chmrr | 2006-06-29 16:47:17 -0400
  * No-op plugin


Added: jifty/trunk/plugins/Nothing/Makefile.PL
==============================================================================
--- (empty file)
+++ jifty/trunk/plugins/Nothing/Makefile.PL	Thu Jun 29 16:47:26 2006
@@ -0,0 +1,8 @@
+use inc::Module::Install;
+name('Jifty-Plugin-Nothing');
+version('0.01');
+requires('Jifty' => '0.60615');
+
+install_share;
+
+WriteAll;

Added: jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing.pm
==============================================================================
--- (empty file)
+++ jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing.pm	Thu Jun 29 16:47:26 2006
@@ -0,0 +1,10 @@
+use strict;
+use warnings;
+
+package Jifty::Plugin::Nothing;
+use base qw/Jifty::Plugin/;
+
+# Your plugin goes here.  If takes any configuration or arguments, you
+# probably want to override L<Jifty::Plugin/init>.
+
+1;

Added: jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/Dispatcher.pm
==============================================================================
--- (empty file)
+++ jifty/trunk/plugins/Nothing/lib/Jifty/Plugin/Nothing/Dispatcher.pm	Thu Jun 29 16:47:26 2006
@@ -0,0 +1,9 @@
+use strict;
+use warnings;
+
+package Jifty::Plugin::Nothing::Dispatcher;
+use Jifty::Dispatcher -base;
+
+# Put any plugin-specific dispatcher rules here.
+
+1;


More information about the Jifty-commit mailing list