public
Description: Rails Sitemap Plugin / Site Map Plugin for Rails. A beautiful rails sitemap plugin that talks to Google, Yahoo and MSN when updated. Sitemap features clean handcrafted XHTML, XML with XSLT and custom finder options for your named routes.
Clone URL: git://github.com/queso/sitemap.git
DRYing up the layout call and trying to get password support in place.
queso (author)
Sat Jun 14 15:18:19 -0700 2008
commit  7b6c036ec4ff03f597ee71b159cd948e05d82112
tree    95417bf82d3e35b0ae3a80322977a49413225d04
parent  5a1c0de3ec50044211786c23b4c3d91341c70246
...
1
2
 
3
4
5
...
 
 
1
2
3
4
0
@@ -1,5 +1,4 @@
0
-class SitemapSettingsController < ActionController::Base
0
- layout "sitemap_plugin"
0
+class SitemapSettingsController < SitemapPluginController
0
 
0
   def index
0
     @settings = SitemapSetting.find(:first) || SitemapSetting.create()
...
1
2
 
3
4
5
...
 
 
1
2
3
4
0
@@ -1,5 +1,4 @@
0
-class SitemapStaticLinksController < ActionController::Base
0
- layout "sitemap_plugin"
0
+class SitemapStaticLinksController < SitemapPluginController
0
   before_filter :find_static_link, :only => [:edit, :update, :destroy]
0
   
0
   def index
...
1
2
 
3
4
5
...
 
 
1
2
3
4
0
@@ -1,5 +1,4 @@
0
-class SitemapWidgetsController < ActionController::Base
0
- layout "sitemap_plugin"
0
+class SitemapWidgetsController < SitemapPluginController
0
   before_filter :find_widget, :only => [:edit, :update, :destroy]
0
   
0
   def index

Comments

    No one has commented yet.