[Jifty-commit] r2553 - in jifty/trunk: lib/Jifty/Plugin/REST

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Wed Jan 24 22:10:10 EST 2007


Author: trs
Date: Wed Jan 24 22:10:09 2007
New Revision: 2553

Modified:
   jifty/trunk/   (props changed)
   jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm

Log:
 r19051 at zot:  tom | 2007-01-24 22:10:00 -0500
 Unnecessary URL now that we special case


Modified: jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm	(original)
+++ jifty/trunk/lib/Jifty/Plugin/REST/Dispatcher.pm	Wed Jan 24 22:10:09 2007
@@ -31,7 +31,6 @@
 on PUT    '/=/model/*/*/*' => \&replace_item;
 on DELETE '/=/model/*/*/*' => \&delete_item;
 
-on GET    '/=/action/form/*'    => \&show_action_form;
 on GET    '/=/action/*'         => \&list_action_params;
 on GET    '/=/action'           => \&list_actions;
 on POST   '/=/action/*'         => \&run_action;
@@ -271,7 +270,7 @@
 =cut
 
 sub list_models {
-    list(['model'], map {s/::/./g; $_ } Jifty->class_loader->models);
+    list(['model'], map { s/::/./g; $_ } Jifty->class_loader->models);
 }
 
 our @column_attrs = 


More information about the Jifty-commit mailing list