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 2009/07/27 23:13:10 UTC

svn commit: r798281 - in /lucene/solr/trunk/client/ruby/flare: ./ app/helpers/ app/views/browse/ app/views/document/ app/views/i18n/ app/views/layouts/ config/ config/environments/ db/ doc/ public/ public/javascripts/ public/stylesheets/ script/ script...

Author: ehatcher
Date: Mon Jul 27 21:13:08 2009
New Revision: 798281

URL: http://svn.apache.org/viewvc?rev=798281&view=rev
Log:
SOLR-761: Fix Flare ASL license headers.  Removed a couple of files that were unnecessary and awkward to add license text to anyway.  A few spots of tabs->spaces

Removed:
    lucene/solr/trunk/client/ruby/flare/doc/
    lucene/solr/trunk/client/ruby/flare/public/robots.txt
Modified:
    lucene/solr/trunk/client/ruby/flare/README
    lucene/solr/trunk/client/ruby/flare/Rakefile
    lucene/solr/trunk/client/ruby/flare/app/helpers/application_helper.rb
    lucene/solr/trunk/client/ruby/flare/app/helpers/browse_helper.rb
    lucene/solr/trunk/client/ruby/flare/app/views/browse/_suggest.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/browse/facet.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/document/_document_delicious.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/document/_document_tang.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/document/_document_uva.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/i18n/index.rhtml
    lucene/solr/trunk/client/ruby/flare/app/views/layouts/browse.rhtml
    lucene/solr/trunk/client/ruby/flare/config/boot.rb
    lucene/solr/trunk/client/ruby/flare/config/database.yml
    lucene/solr/trunk/client/ruby/flare/config/environment.rb
    lucene/solr/trunk/client/ruby/flare/config/environments/development.rb
    lucene/solr/trunk/client/ruby/flare/config/environments/production.rb
    lucene/solr/trunk/client/ruby/flare/config/environments/test.rb
    lucene/solr/trunk/client/ruby/flare/config/routes.rb
    lucene/solr/trunk/client/ruby/flare/db/schema.rb
    lucene/solr/trunk/client/ruby/flare/public/.htaccess
    lucene/solr/trunk/client/ruby/flare/public/404.html
    lucene/solr/trunk/client/ruby/flare/public/500.html
    lucene/solr/trunk/client/ruby/flare/public/dispatch.cgi
    lucene/solr/trunk/client/ruby/flare/public/dispatch.fcgi
    lucene/solr/trunk/client/ruby/flare/public/dispatch.rb
    lucene/solr/trunk/client/ruby/flare/public/javascripts/application.js
    lucene/solr/trunk/client/ruby/flare/public/stylesheets/flare.css
    lucene/solr/trunk/client/ruby/flare/script/about
    lucene/solr/trunk/client/ruby/flare/script/breakpointer
    lucene/solr/trunk/client/ruby/flare/script/console
    lucene/solr/trunk/client/ruby/flare/script/destroy
    lucene/solr/trunk/client/ruby/flare/script/generate
    lucene/solr/trunk/client/ruby/flare/script/performance/benchmarker
    lucene/solr/trunk/client/ruby/flare/script/performance/profiler
    lucene/solr/trunk/client/ruby/flare/script/plugin
    lucene/solr/trunk/client/ruby/flare/script/process/inspector
    lucene/solr/trunk/client/ruby/flare/script/process/reaper
    lucene/solr/trunk/client/ruby/flare/script/process/spawner
    lucene/solr/trunk/client/ruby/flare/script/runner
    lucene/solr/trunk/client/ruby/flare/script/server
    lucene/solr/trunk/client/ruby/flare/test/test_helper.rb
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/document_controller.rb
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/simile_controller.rb
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/helpers/application_helper.rb
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/_suggest.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/facet.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/index.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/document/_document_development.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/exhibit.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/timeline.rhtml
    lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb

Modified: lucene/solr/trunk/client/ruby/flare/README
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/README?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/README (original)
+++ lucene/solr/trunk/client/ruby/flare/README Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+
 == Welcome to Solr Flare
 
 Flare promises to expose the power of Solr through a Rails-based user interface. Integral to Flare will be general purpose faceted browsing, auto-suggest, folksonomy tagging/annotating, and much more.

Modified: lucene/solr/trunk/client/ruby/flare/Rakefile
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/Rakefile?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/Rakefile (original)
+++ lucene/solr/trunk/client/ruby/flare/Rakefile Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Add your own tasks in files placed in lib/tasks ending in .rake,
 # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
 

Modified: lucene/solr/trunk/client/ruby/flare/app/helpers/application_helper.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/helpers/application_helper.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/helpers/application_helper.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/app/helpers/application_helper.rb Mon Jul 27 21:13:08 2009
@@ -1,5 +1,14 @@
-# Copyright:: Copyright (c) 2007 Apache Software Foundation
-# License::   Apache Version 2.0 (see http://www.apache.org/licenses/)
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 # Methods added to this helper will be available to all templates in the application.
 module ApplicationHelper

Modified: lucene/solr/trunk/client/ruby/flare/app/helpers/browse_helper.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/helpers/browse_helper.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/helpers/browse_helper.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/app/helpers/browse_helper.rb Mon Jul 27 21:13:08 2009
@@ -1,5 +1,14 @@
-# Copyright:: Copyright (c) 2007 Apache Software Foundation
-# License::   Apache Version 2.0 (see http://www.apache.org/licenses/)
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
 
 module BrowseHelper
 end

Modified: lucene/solr/trunk/client/ruby/flare/app/views/browse/_suggest.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/browse/_suggest.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/browse/_suggest.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/browse/_suggest.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <ul class="cookies">
 <%
 @values.each do |value|

Modified: lucene/solr/trunk/client/ruby/flare/app/views/browse/facet.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/browse/facet.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/browse/facet.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/browse/facet.rhtml Mon Jul 27 21:13:08 2009
@@ -1,33 +1,46 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <div id="variables">
-	<div class="clear">
-		<%=link_to '[clear constraints]', :action => 'clear'%>
-	</div>
-	
+  <div class="clear">
+    <%=link_to '[clear constraints]', :action => 'clear'%>
+  </div>
+  
 <div>
 Queries:
-	<div id="queries">
+  <div id="queries">
 <% @flare.queries.each_with_index do |q,i| %>
 <%=link_to q[:negative] ? "-" : '+', :action => :invert_query, :index => i%>
 <span id="query_<%=i%>"><%=q[:query]%></span>
 <%= in_place_editor "query_#{i}", :url=> url_for(:action=>"update_query", :index=>i) %>
 <%=link_to image_tag("x-close.gif"), :action => :remove_query, :index => i %><br/>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div>
 Filters:
-	<div id="filters">
+  <div id="filters">
 <% @flare.filters.each_with_index do |filter, i| %>
       <%=link_to filter[:negative] ? "-" : "+", :action => :invert_filter, :index => i%>
       <%=filter[:field]%>:<%=filter[:value]%>
       <%=link_to image_tag("x-close.gif"), :action => :remove_filter, :index => i %>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div class="clear">
-	<%=link_to '[clear constraints]', :action => 'clear'%>
+  <%=link_to '[clear constraints]', :action => 'clear'%>
 </div>
 
 </div>

Modified: lucene/solr/trunk/client/ruby/flare/app/views/document/_document_delicious.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/document/_document_delicious.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/document/_document_delicious.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/document/_document_delicious.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <tr valign="top">
   <td>
     <%=image_tag "http://images.amazon.com/images/P/#{doc['id']}.01.MZZZZZZZ" %>

Modified: lucene/solr/trunk/client/ruby/flare/app/views/document/_document_tang.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/document/_document_tang.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/document/_document_tang.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/document/_document_tang.rhtml Mon Jul 27 21:13:08 2009
@@ -1,4 +1,17 @@
 <%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
+<%
   body_zh_highlighted = response.highlighted(doc['id'], 'body_zh_text')
   body_en_highlighted = response.highlighted(doc['id'], 'body_en_text')
 -%>

Modified: lucene/solr/trunk/client/ruby/flare/app/views/document/_document_uva.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/document/_document_uva.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/document/_document_uva.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/document/_document_uva.rhtml Mon Jul 27 21:13:08 2009
@@ -1,4 +1,17 @@
 <%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
+<%
     virgo_link = "http://virgo.lib.virginia.edu/uhtbin/cgisirsi/uva/0/0/5?searchdata1=#{doc['id'][1..-1]}%7bCKEY%7d"
     # url = URI.parse(virgo_link)
     # res = Net::HTTP.start(url.host, url.port) {|http|

Modified: lucene/solr/trunk/client/ruby/flare/app/views/i18n/index.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/i18n/index.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/i18n/index.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/i18n/index.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <% @results[0]['features'].each do |f| %>
   <%= h f%>
 <% end %>
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/app/views/layouts/browse.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/app/views/layouts/browse.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/app/views/layouts/browse.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/app/views/layouts/browse.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <html>
   <head>
     <title>Solr flare: <%=controller.action_name%></title>

Modified: lucene/solr/trunk/client/ruby/flare/config/boot.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/boot.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/boot.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/boot.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Don't change this file. Configuration is done in config/environment.rb and config/environments/*.rb
 
 unless defined?(RAILS_ROOT)

Modified: lucene/solr/trunk/client/ruby/flare/config/database.yml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/database.yml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/database.yml (original)
+++ lucene/solr/trunk/client/ruby/flare/config/database.yml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # NOTE: Flare currently does not use a database, but there are plans to eventually leverage a relational database 
 #       in conjunction with Solr.  When a database is added, lib/tasks/clear_database_prerequisites.rake should be removed.
 

Modified: lucene/solr/trunk/client/ruby/flare/config/environment.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/environment.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/environment.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/environment.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Be sure to restart your web server when you modify this file.
 
 # Uncomment below to force Rails into production mode when 

Modified: lucene/solr/trunk/client/ruby/flare/config/environments/development.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/environments/development.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/environments/development.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/environments/development.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Settings specified here will take precedence over those in config/environment.rb
 
 # In the development environment your application's code is reloaded on

Modified: lucene/solr/trunk/client/ruby/flare/config/environments/production.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/environments/production.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/environments/production.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/environments/production.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Settings specified here will take precedence over those in config/environment.rb
 
 # The production environment is meant for finished, "live" apps.

Modified: lucene/solr/trunk/client/ruby/flare/config/environments/test.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/environments/test.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/environments/test.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/environments/test.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # Settings specified here will take precedence over those in config/environment.rb
 
 # The test environment is used exclusively to run your application's

Modified: lucene/solr/trunk/client/ruby/flare/config/routes.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/config/routes.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/config/routes.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/config/routes.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 ActionController::Routing::Routes.draw do |map|
   # The priority is based upon order of creation: first created -> highest priority.
   

Modified: lucene/solr/trunk/client/ruby/flare/db/schema.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/db/schema.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/db/schema.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/db/schema.rb Mon Jul 27 21:13:08 2009
@@ -0,0 +1,11 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.

Modified: lucene/solr/trunk/client/ruby/flare/public/.htaccess
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/.htaccess?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/.htaccess (original)
+++ lucene/solr/trunk/client/ruby/flare/public/.htaccess Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # General Apache options
 AddHandler fastcgi-script .fcgi
 AddHandler cgi-script .cgi

Modified: lucene/solr/trunk/client/ruby/flare/public/404.html
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/404.html?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/404.html (original)
+++ lucene/solr/trunk/client/ruby/flare/public/404.html Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<!--
+  # The ASF licenses this file to You under the Apache License, Version 2.0
+  # (the "License"); you may not use this file except in compliance with
+  # the License.  You may obtain a copy of the License at
+  #
+  #     http://www.apache.org/licenses/LICENSE-2.0
+  #
+  # Unless required by applicable law or agreed to in writing, software
+  # distributed under the License is distributed on an "AS IS" BASIS,
+  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  # See the License for the specific language governing permissions and
+  # limitations under the License.
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 

Modified: lucene/solr/trunk/client/ruby/flare/public/500.html
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/500.html?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/500.html (original)
+++ lucene/solr/trunk/client/ruby/flare/public/500.html Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<!--
+  # The ASF licenses this file to You under the Apache License, Version 2.0
+  # (the "License"); you may not use this file except in compliance with
+  # the License.  You may obtain a copy of the License at
+  #
+  #     http://www.apache.org/licenses/LICENSE-2.0
+  #
+  # Unless required by applicable law or agreed to in writing, software
+  # distributed under the License is distributed on an "AS IS" BASIS,
+  # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  # See the License for the specific language governing permissions and
+  # limitations under the License.
+-->
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 

Modified: lucene/solr/trunk/client/ruby/flare/public/dispatch.cgi
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/dispatch.cgi?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/dispatch.cgi (original)
+++ lucene/solr/trunk/client/ruby/flare/public/dispatch.cgi Mon Jul 27 21:13:08 2009
@@ -1,5 +1,17 @@
 #!/opt/local/bin/ruby
 
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
 
 # If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:

Modified: lucene/solr/trunk/client/ruby/flare/public/dispatch.fcgi
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/dispatch.fcgi?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/dispatch.fcgi (original)
+++ lucene/solr/trunk/client/ruby/flare/public/dispatch.fcgi Mon Jul 27 21:13:08 2009
@@ -1,4 +1,17 @@
 #!/opt/local/bin/ruby
+
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 #
 # You may specify the path to the FastCGI crash log (a log of unhandled
 # exceptions which forced the FastCGI instance to exit, great for debugging)

Modified: lucene/solr/trunk/client/ruby/flare/public/dispatch.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/dispatch.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/dispatch.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/public/dispatch.rb Mon Jul 27 21:13:08 2009
@@ -1,5 +1,17 @@
 #!/opt/local/bin/ruby
 
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
 
 # If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:

Modified: lucene/solr/trunk/client/ruby/flare/public/javascripts/application.js
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/javascripts/application.js?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/javascripts/application.js (original)
+++ lucene/solr/trunk/client/ruby/flare/public/javascripts/application.js Mon Jul 27 21:13:08 2009
@@ -1,2 +1,16 @@
+/*
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+*/
+
 // Place your application-specific JavaScript functions and classes here
 // This file is automatically included by javascript_include_tag :defaults

Modified: lucene/solr/trunk/client/ruby/flare/public/stylesheets/flare.css
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/public/stylesheets/flare.css?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/public/stylesheets/flare.css (original)
+++ lucene/solr/trunk/client/ruby/flare/public/stylesheets/flare.css Mon Jul 27 21:13:08 2009
@@ -1,3 +1,17 @@
+/*
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+*/
+
 body {
   font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
   font-size: 12px;
@@ -5,162 +19,162 @@
 }
 
 #header {
-	font-size: 22px;
-	margin-bottom: -10px;
-	width: 200px;
-	border-top: 4px solid #D43D1A;
-	border-left: 4px solid #EE4000;
-  	background:url(../images/flare.jpg) no-repeat left top; 
+    font-size: 22px;
+    margin-bottom: -10px;
+    width: 200px;
+    border-top: 4px solid #D43D1A;
+    border-left: 4px solid #EE4000;
+    background:url(../images/flare.jpg) no-repeat left top; 
 }
 
 #header a {
-	color: #EE4000;
+    color: #EE4000;
 }
 
 #header a:hover {
-	color: #CD3700;
+    color: #CD3700;
 }
 
 a img {
-	border: 0;
+    border: 0;
 }
 
 td {
-	font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
-	font-size: 11px;
+    font-family: Verdana, Geneva, Arial, helvetica, sans-serif;
+    font-size: 11px;
 }
 a, a:visited {
-	color: #cc6633;
-	text-decoration: none;
+    color: #cc6633;
+    text-decoration: none;
 }
 a:hover {
-	color: #ff9933; 
-	text-decoration: none;
+    color: #ff9933; 
+    text-decoration: none;
 }
 
 h2 {
-	font-size: 16px;
-	font-weight: normal;
-	}
+    font-size: 16px;
+    font-weight: normal;
+    }
 
 h4 {
-	font-size: 13px;
-	font-weight: normal;
-	letter-spacing: .2em;
-	}
-	
+    font-size: 13px;
+    font-weight: normal;
+    letter-spacing: .2em;
+    }
+    
 h4 a {
-		font-size: 11px;
-		letter-spacing: normal;
-		}
+        font-size: 11px;
+        letter-spacing: normal;
+        }
 
 h4 a:hover {
-	text-decoration: none;
-	}
+    text-decoration: none;
+    }
 
 em {
-	color: #000;
+    color: #000;
 }
 
 #sidebar {
-	float: right;
-	width: 339px;
-	font-size: 11px;
-	line-height: 20px;
-	margin-bottom: 20px;
-	padding: 10px;
+    float: right;
+    width: 339px;
+    font-size: 11px;
+    line-height: 20px;
+    margin-bottom: 20px;
+    padding: 10px;
 }
 
 .searchbar {
-	line-height: 12px;
+    line-height: 12px;
 }
 
 #sidebar ul {
-	list-style: none;
-	margin-left: -20px;
-	margin-top: -10px;
+    list-style: none;
+    margin-left: -20px;
+    margin-top: -10px;
 }
 
 #sidebar img {
-	vertical-align: middle;
+    vertical-align: middle;
 }
 
 #sidebar .exhibit {
-	float: right;
+    float: right;
 }
 
 #variables {
-	padding: 20px;
+    padding: 20px;
 }
 
 .varheader {
-	font-size: 14px;
-	font-weight: normal;
-	letter-spacing: .2em;	
+    font-size: 14px;
+    font-weight: normal;
+    letter-spacing: .2em;   
 }
 
 #queries img {
-	vertical-align: baseline;
-	width:14px;
+    vertical-align: baseline;
+    width:14px;
 }
 
 #queries {
-	margin-left: 10px;
-	color: #666;
+    margin-left: 10px;
+    color: #666;
 }
 
 #filters img {
-	vertical-align: baseline;
-	width:14px;
+    vertical-align: baseline;
+    width:14px;
 }
 
 #filters {
-	margin-left: 10px;
-	color: #666;
+    margin-left: 10px;
+    color: #666;
 }
 
 .clear {
-	padding: 10px 0 10px 0px;
-	font-size: 11px;
+    padding: 10px 0 10px 0px;
+    font-size: 11px;
 }
 
 .resultsheader {
-	font-size: 14px;
-	font-weight: normal;
-	letter-spacing: .2em;
-	margin-bottom: -20px;
+    font-size: 14px;
+    font-weight: normal;
+    letter-spacing: .2em;
+    margin-bottom: -20px;
 }
 
 #results {
-	padding: 20px;
-	margin-right: 380px;
+    padding: 20px;
+    margin-right: 380px;
 }
 
 .resultsPager {
-	padding: 4px;
-	margin-top: 30px;
-	margin-bottom: 20px;
-	border: 1px solid #A2C9EF;
-	background-color: #E4F1FD;
+    padding: 4px;
+    margin-top: 30px;
+    margin-bottom: 20px;
+    border: 1px solid #A2C9EF;
+    background-color: #E4F1FD;
 }
 
 .title {
-	font-size: 13px;
-	color: #000;
-	letter-spacing: .1em;
+    font-size: 13px;
+    color: #000;
+    letter-spacing: .1em;
 }
 
 .entry {
-	color: #666;
+    color: #666;
 }
 
 .field {
-	color: #999;
-	font-style: italic;
+    color: #999;
+    font-style: italic;
 }
 
 div.auto_complete {
-	padding-left: 20px;
-	padding-top: 10px;
-	background: #fff;
+    padding-left: 20px;
+    padding-top: 10px;
+    background: #fff;
 }

Modified: lucene/solr/trunk/client/ruby/flare/script/about
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/about?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/about (original)
+++ lucene/solr/trunk/client/ruby/flare/script/about Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/about'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/breakpointer
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/breakpointer?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/breakpointer (original)
+++ lucene/solr/trunk/client/ruby/flare/script/breakpointer Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/breakpointer'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/console
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/console?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/console (original)
+++ lucene/solr/trunk/client/ruby/flare/script/console Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/console'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/destroy
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/destroy?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/destroy (original)
+++ lucene/solr/trunk/client/ruby/flare/script/destroy Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/destroy'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/generate
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/generate?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/generate (original)
+++ lucene/solr/trunk/client/ruby/flare/script/generate Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/generate'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/performance/benchmarker
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/performance/benchmarker?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/performance/benchmarker (original)
+++ lucene/solr/trunk/client/ruby/flare/script/performance/benchmarker Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../../config/boot'
 require 'commands/performance/benchmarker'

Modified: lucene/solr/trunk/client/ruby/flare/script/performance/profiler
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/performance/profiler?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/performance/profiler (original)
+++ lucene/solr/trunk/client/ruby/flare/script/performance/profiler Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../../config/boot'
 require 'commands/performance/profiler'

Modified: lucene/solr/trunk/client/ruby/flare/script/plugin
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/plugin?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/plugin (original)
+++ lucene/solr/trunk/client/ruby/flare/script/plugin Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/plugin'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/process/inspector
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/process/inspector?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/process/inspector (original)
+++ lucene/solr/trunk/client/ruby/flare/script/process/inspector Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../../config/boot'
 require 'commands/process/inspector'

Modified: lucene/solr/trunk/client/ruby/flare/script/process/reaper
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/process/reaper?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/process/reaper (original)
+++ lucene/solr/trunk/client/ruby/flare/script/process/reaper Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../../config/boot'
 require 'commands/process/reaper'

Modified: lucene/solr/trunk/client/ruby/flare/script/process/spawner
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/process/spawner?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/process/spawner (original)
+++ lucene/solr/trunk/client/ruby/flare/script/process/spawner Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../../config/boot'
 require 'commands/process/spawner'

Modified: lucene/solr/trunk/client/ruby/flare/script/runner
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/runner?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/runner (original)
+++ lucene/solr/trunk/client/ruby/flare/script/runner Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/runner'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/script/server
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/script/server?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/script/server (original)
+++ lucene/solr/trunk/client/ruby/flare/script/server Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
 #!/usr/bin/env ruby
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 require File.dirname(__FILE__) + '/../config/boot'
 require 'commands/server'
\ No newline at end of file

Modified: lucene/solr/trunk/client/ruby/flare/test/test_helper.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/test/test_helper.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/test/test_helper.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/test/test_helper.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 ENV["RAILS_ENV"] = "test"
 require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
 

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/document_controller.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/document_controller.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/document_controller.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/document_controller.rb Mon Jul 27 21:13:08 2009
@@ -10,7 +10,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
 class DocumentController < ApplicationController
   # Currently not used, as partials are used for rendering documents in search results
   # TODO: how best to allow pluggable document rendering?

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/simile_controller.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/simile_controller.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/simile_controller.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/controllers/simile_controller.rb Mon Jul 27 21:13:08 2009
@@ -10,7 +10,6 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-
 class SimileController < ApplicationController
   before_filter :flare_before
   

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/helpers/application_helper.rb
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/helpers/application_helper.rb?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/helpers/application_helper.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/helpers/application_helper.rb Mon Jul 27 21:13:08 2009
@@ -1,3 +1,15 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 module ApplicationHelper
   def facet_label(field)
      field.match(/(.*)_.*/)[1].humanize.downcase

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/_suggest.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/_suggest.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/_suggest.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/_suggest.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <ul class="cookies">
 <%
 @values.each do |value|

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/facet.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/facet.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/facet.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/facet.rhtml Mon Jul 27 21:13:08 2009
@@ -1,33 +1,46 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <div id="variables">
-	<div class="clear">
-		<%=link_to '[clear constraints]', :action => 'clear'%>
-	</div>
-	
+  <div class="clear">
+    <%=link_to '[clear constraints]', :action => 'clear'%>
+  </div>
+  
 <div>
 Queries:
-	<div id="queries">
+  <div id="queries">
 <% @flare.queries.each_with_index do |q,i| %>
 <%=link_to q[:negative] ? "-" : '+', :action => :invert_query, :index => i%>
 <span id="query_<%=i%>"><%=q[:query]%></span>
 <%= in_place_editor "query_#{i}", :url=> url_for(:action=>"update_query", :index=>i) %>
 <%=link_to image_tag("x-close.gif"), :action => :remove_query, :index => i %><br/>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div>
 Filters:
-	<div id="filters">
+  <div id="filters">
 <% @flare.filters.each_with_index do |filter, i| %>
       <%=link_to filter[:negative] ? "-" : "+", :action => :invert_filter, :index => i%>
       <%=filter[:field]%>:<%=filter[:value]%>
       <%=link_to image_tag("x-close.gif"), :action => :remove_filter, :index => i %>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div class="clear">
-	<%=link_to '[clear constraints]', :action => 'clear'%>
+  <%=link_to '[clear constraints]', :action => 'clear'%>
 </div>
 
 </div>

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/index.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/index.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/index.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/browse/index.rhtml Mon Jul 27 21:13:08 2009
@@ -1,10 +1,23 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <div id="sidebar"><div class="boxContent">
-	<div class="searchbar">
+  <div class="searchbar">
   <% form_tag(:action=>'add_query') do %>
     <%= text_field_with_auto_complete :search, :query %>
     <%=submit_tag "search"%>
   <% end %>
-	</div>
+  </div>
 <!-- <h2>browse facets</h2> -->
 
 <% if @flare.facet_queries.size > 0%>
@@ -42,13 +55,13 @@
 </div></div> 
 
 <div id="variables">
-	<div class="clear">
-		<%=link_to '[clear constraints]', :action => 'clear'%>
-	</div>
-	
+  <div class="clear">
+    <%=link_to '[clear constraints]', :action => 'clear'%>
+  </div>
+  
 <div>
   <span class="varheader">Saved searches:</span>
-  	<div id="queries">
+    <div id="queries">
       <% @flare.applied_facet_queries.each_with_index do |q, i| %>
             <%=link_to q[:negative] ? "-" : "+", :action => :invert_saved_constraint, :index => i%>
             <%=q[:name]%>
@@ -56,29 +69,29 @@
       <% end %>
     </div>
 <span class="varheader">Queries:</span>
-	<div id="queries">
+  <div id="queries">
 <% @flare.queries.each_with_index do |q,i| %>
 <%=link_to q[:negative] ? "-" : '+', :action => :invert_query, :index => i%>
 <span id="query_<%=i%>"><%=q[:query]%></span>
 <%= in_place_editor "query_#{i}", :url=> url_for(:action=>"update_query", :index=>i, :script=>true) %>
 <%=link_to image_tag("x-close.gif"), :action => :remove_query, :index => i %><br/>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div>
 <span class="varheader">Filters:</span>
-	<div id="filters">
+  <div id="filters">
 <% @flare.filters.each_with_index do |filter, i| %>
       <%=link_to filter[:negative] ? "-" : "+", :action => :invert_filter, :index => i%>
       <%=filter[:field]%>:<%=filter[:value]%>
       <%=link_to image_tag("x-close.gif"), :action => :remove_filter, :index => i %><br/>
 <% end %>
-	</div>
+  </div>
 </div>
 
 <div class="clear">
-	<%=link_to '[clear constraints]', :action => 'clear'%>
+  <%=link_to '[clear constraints]', :action => 'clear'%>
 </div>
 
 <% form_tag({:action=>'save'},{:id => 'savesearch', :style => "display:none;"}) do %>

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/document/_document_development.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/document/_document_development.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/document/_document_development.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/document/_document_development.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <tr valign="top">
   <td>
     <table class="entry">

Modified: 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=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/layouts/browse.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <html>
   <head>
     <title>Solr flare: <%=controller.action_name%></title>

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/exhibit.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/exhibit.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/exhibit.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/exhibit.rhtml Mon Jul 27 21:13:08 2009
@@ -1,3 +1,16 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <html>
     <head>
         <title>SIMILE Exhibit view</title>

Modified: lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/timeline.rhtml
URL: http://svn.apache.org/viewvc/lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/timeline.rhtml?rev=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/timeline.rhtml (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/app/views/simile/timeline.rhtml Mon Jul 27 21:13:08 2009
@@ -1,6 +1,18 @@
+<%
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+%>
 <html>
   <head>
-    ...
     <script src="http://simile.mit.edu/timeline/api/timeline-api.js" type="text/javascript"></script>
     <script type="text/javascript">
     var tl;

Modified: 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=798281&r1=798280&r2=798281&view=diff
==============================================================================
--- lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb (original)
+++ lucene/solr/trunk/client/ruby/flare/vendor/plugins/flare/routes.rb Mon Jul 27 21:13:08 2009
@@ -1 +1,13 @@
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 connect '', :controller => "browse"