File tree 14 files changed +21
-21
lines changed
14 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 1
- lws_blacklight
1
+ flare
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ enhanced to leverage the value added capabilities of the LucidWorks Search platf
30
30
# Quickstart
31
31
32
32
1 . Install LucidWorks Search
33
- 2 . Install LWS-Blacklight
34
- 3 . Run LWS-Blacklight
33
+ 2 . Install Flare
34
+ 3 . Run Flare
35
35
36
36
Use this to add the LucidWorks website as a web data source to your starting collection:
37
37
@@ -56,16 +56,16 @@ the same application will be spiffy.
56
56
57
57
# For developers
58
58
59
- * git clone github/LucidWorks/lws_blacklight
59
+ * git clone github/LucidWorks/flare
60
60
61
- * lws_blacklight git:(master) ✗ java -version
61
+ * flare git:(master) ✗ java -version
62
62
java version "1.7.0_13"
63
63
Java(TM) SE Runtime Environment (build 1.7.0_13-b20)
64
64
Java HotSpot(TM) 64-Bit Server VM (build 23.7-b01, mixed mode)
65
- * lws_blacklight git:(master) ✗ export PATH=$HOME/bin/jruby-1.7.4/bin:$PATH
66
- * lws_blacklight git:(master) ✗ jruby -v
65
+ * flare git:(master) ✗ export PATH=$HOME/bin/jruby-1.7.4/bin:$PATH
66
+ * flare git:(master) ✗ jruby -v
67
67
jruby 1.7.4 (1.9.3p392) 2013-05-16 2390d3b on Java HotSpot(TM) 64-Bit Server VM 1.7.0_13-b20 [darwin-x86_64]
68
- * lws_blacklight git:(master) ✗ jruby -S rails server
68
+ * flare git:(master) ✗ jruby -S rails server
69
69
=> Booting WEBrick
70
70
=> Rails 3.2.13 application starting in development on http://0.0.0.0:3000
71
71
=> Call with -d to detach
Original file line number Diff line number Diff line change 4
4
5
5
require File . expand_path ( '../config/application' , __FILE__ )
6
6
7
- LwsBlacklight ::Application . load_tasks
7
+ Flare ::Application . load_tasks
Original file line number Diff line number Diff line change 14
14
@import " font-awesome" ;
15
15
@import " blacklight/blacklight" ;
16
16
17
- /* lws blacklight theme */
17
+ /* flare theme */
18
18
@import " base" ;
19
19
@import " layout" ;
20
20
@import " form" ;
Original file line number Diff line number Diff line change 7
7
</ div >
8
8
< div class ="pull-right ">
9
9
< p class ="muted ">
10
- < a target ="_blank " href ="https://github.com/LucidWorks/lws_blacklight "> GitHub Project</ a >
10
+ < a target ="_blank " href ="https://github.com/LucidWorks/flare "> GitHub Project</ a >
11
11
</ p >
12
12
</ div >
13
13
</ div >
Original file line number Diff line number Diff line change 1
1
# This file is used by Rack-based servers to start the application.
2
2
3
3
require ::File . expand_path ( '../config/environment' , __FILE__ )
4
- run LwsBlacklight ::Application
4
+ run Flare ::Application
Original file line number Diff line number Diff line change 9
9
# Bundler.require(:default, :assets, Rails.env)
10
10
end
11
11
12
- module LwsBlacklight
12
+ module Flare
13
13
class Application < Rails ::Application
14
14
# Settings in config/environments/* take precedence over those specified here.
15
15
# Application configuration should go into files in config/initializers
Original file line number Diff line number Diff line change 2
2
require File . expand_path ( '../application' , __FILE__ )
3
3
4
4
# Initialize the rails application
5
- LwsBlacklight ::Application . initialize!
5
+ Flare ::Application . initialize!
Original file line number Diff line number Diff line change 1
- LwsBlacklight ::Application . configure do
1
+ Flare ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# In the development environment your application's code is reloaded on
Original file line number Diff line number Diff line change 1
- LwsBlacklight ::Application . configure do
1
+ Flare ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# Code is not reloaded between requests
Original file line number Diff line number Diff line change 1
- LwsBlacklight ::Application . configure do
1
+ Flare ::Application . configure do
2
2
# Settings specified here will take precedence over those in config/application.rb
3
3
4
4
# The test environment is used exclusively to run your application's
Original file line number Diff line number Diff line change 4
4
# If you change this key, all old signed cookies will become invalid!
5
5
# Make sure the secret is at least 30 characters and all random,
6
6
# no regular words or you'll be exposed to dictionary attacks.
7
- LwsBlacklight ::Application . config . secret_token = 'ad00b7fe0b71280885720f7c35bbffe5e8020758ea556bce07846ed4719178322f09972c486394f694e71d90d96d7aa9ce7d39b84151f1e588844e8efffc71da'
7
+ Flare ::Application . config . secret_token = 'ad00b7fe0b71280885720f7c35bbffe5e8020758ea556bce07846ed4719178322f09972c486394f694e71d90d96d7aa9ce7d39b84151f1e588844e8efffc71da'
Original file line number Diff line number Diff line change 1
1
# Be sure to restart your server when you modify this file.
2
2
3
- LwsBlacklight ::Application . config . session_store :cookie_store , key : '_lw_flare_session'
3
+ Flare ::Application . config . session_store :cookie_store , key : '_lw_flare_session'
4
4
5
5
# Use the database for sessions instead of the cookie-based default,
6
6
# which shouldn't be used to store highly confidential information
7
7
# (create the session table with "rails generate session_migration")
8
- # LwsBlacklight ::Application.config.session_store :active_record_store
8
+ # Flare ::Application.config.session_store :active_record_store
Original file line number Diff line number Diff line change 1
- LwsBlacklight ::Application . routes . draw do
1
+ Flare ::Application . routes . draw do
2
2
# /catalog/* route definitions, so tht /catalog/:collection_id can be used wildcardly
3
3
# Commented out default ones from Blacklight that we don't want in there (for now at least)
4
4
get 'catalog/opensearch' , :as => "opensearch_catalog"
You can’t perform that action at this time.
0 commit comments