You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by eh...@apache.org on 2007/09/26 20:27:24 UTC

svn commit: r579748 - in /lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare: app/views/layouts/ app/views/layouts/browse.rhtml routes.rb

Author: ehatcher
Date: Wed Sep 26 11:27:23 2007
New Revision: 579748

URL: http://svn.apache.org/viewvc?rev=579748&view=rev
Log:
Move layout and routes to flare plugin

Added:
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml   (with props)
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb   (with props)

Added: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml?rev=579748&view=auto
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml (added)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml Wed Sep 26 11:27:23 2007
@@ -0,0 +1,15 @@
+<html>
+  <head>
+    <title>Solr flare: <%=controller.action_name%></title>
+    <%= javascript_include_tag :defaults %>
+    <%= stylesheet_link_tag 'flare'%>
+  </head>
+  <body>
+    <div>
+      <div id="header">
+        <a href="http://lucene.apache.org/solr"><%=image_tag "solr.png"%></a><a href="http://wiki.apache.org/solr/Flare">flare</a> 
+      </div>
+      <%= yield %>
+    </div>
+  </body>
+</html>
\ No newline at end of file

Propchange: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml
------------------------------------------------------------------------------
    svn:executable = *

Added: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb?rev=579748&view=auto
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb (added)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb Wed Sep 26 11:27:23 2007
@@ -0,0 +1 @@
+connect '', :controller => "browse"

Propchange: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb
------------------------------------------------------------------------------
    svn:executable = *