public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/zmack/mephisto.git
move map_from_plugins(map) above the catch all route
isaac (author)
Fri Mar 28 23:32:42 -0700 2008
commit  8cd07acc8aa347031c4407437f2baeda0fcea8eb
tree    b81d512cbc7897267317eadaed93063eb367d126
parent  41a870e17ae5e574d65c512affa441c70ad411f2
...
30
31
32
 
 
33
34
35
36
37
38
39
40
41
...
30
31
32
33
34
35
36
37
38
 
 
39
40
41
0
@@ -30,12 +30,12 @@ module Mephisto
0
       # Where oh where is my xmlrpc code?
0
       # map.connect 'xmlrpc', :controller => 'backend', :action => 'xmlrpc'
0
       
0
+ map_from_plugins(map)
0
+
0
       map.connect ':controller/:action/:id/:version', :version => nil, :controller => /routing_navigator|account|(admin\/\w+)/, :id => /[^\/]*/
0
 
0
       yield if block_given?
0
       
0
- map_from_plugins(map)
0
-
0
       map.dispatch '*path', :controller => 'mephisto', :action => 'dispatch'
0
       map.home '', :controller => 'mephisto', :action => 'dispatch'
0
     end

Comments

    No one has commented yet.