2007-02-04 00:44:09 -05:00
|
|
|
# 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.
|
|
|
|
|
|
|
|
|
|
|
|
class SimileController < ApplicationController
|
2007-03-26 22:00:17 -04:00
|
|
|
before_filter :flare_before
|
|
|
|
|
2007-02-04 00:44:09 -05:00
|
|
|
def exhibit
|
2007-03-06 14:47:55 -05:00
|
|
|
@data = @flare.search(0, 10)
|
2007-02-18 15:22:10 -05:00
|
|
|
|
2007-02-04 04:42:05 -05:00
|
|
|
# Exhibit seems to require a label attribute to be happy
|
2007-02-04 00:44:09 -05:00
|
|
|
@data.each {|d| d['label'] = d['title_text']}
|
|
|
|
|
|
|
|
respond_to do |format|
|
2007-02-04 04:42:05 -05:00
|
|
|
format.html # renders exhibit.rhtml
|
|
|
|
format.json { render :json => {'items' => @data}.to_json } # Exhibit seems to require data to be in a 'items' Hash
|
2007-02-04 00:44:09 -05:00
|
|
|
end
|
|
|
|
end
|
2007-02-12 09:20:17 -05:00
|
|
|
|
|
|
|
def timeline
|
2007-03-06 14:47:55 -05:00
|
|
|
@data = @flare.search(0, 10)
|
|
|
|
|
2007-02-12 09:20:17 -05:00
|
|
|
respond_to do |format|
|
|
|
|
format.html # renders timeline.rhtml
|
|
|
|
format.xml # renders timeline.rxml
|
|
|
|
end
|
|
|
|
end
|
2007-03-26 22:00:17 -04:00
|
|
|
|
|
|
|
#TODO: this is duplicated from flare's
|
|
|
|
private
|
|
|
|
def flare_before
|
|
|
|
# TODO: allow source of context to be configurable.
|
|
|
|
session[:flare_context] ||= Flare::Context.new(SOLR_CONFIG)
|
|
|
|
|
|
|
|
@flare = session[:flare_context]
|
|
|
|
end
|
|
|
|
|
2007-02-04 00:44:09 -05:00
|
|
|
end
|