Skip to content

Commit 08ae14e

Browse files
committed
FOCUS-5209: Renamed LwsBlacklight to "Flare":
* “LWS-Blacklight” -> “Flare” * “LwsBlacklight” -> “Flare” * “lws_blacklight” -> “flare”
1 parent eebba5c commit 08ae14e

File tree

14 files changed

+21
-21
lines changed

14 files changed

+21
-21
lines changed

.ruby-gemset

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
lws_blacklight
1+
flare

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ enhanced to leverage the value added capabilities of the LucidWorks Search platf
3030
# Quickstart
3131

3232
1. Install LucidWorks Search
33-
2. Install LWS-Blacklight
34-
3. Run LWS-Blacklight
33+
2. Install Flare
34+
3. Run Flare
3535

3636
Use this to add the LucidWorks website as a web data source to your starting collection:
3737

@@ -56,16 +56,16 @@ the same application will be spiffy.
5656

5757
# For developers
5858

59-
* git clone github/LucidWorks/lws_blacklight
59+
* git clone github/LucidWorks/flare
6060

61-
* lws_blacklight git:(master) ✗ java -version
61+
* flare git:(master) ✗ java -version
6262
java version "1.7.0_13"
6363
Java(TM) SE Runtime Environment (build 1.7.0_13-b20)
6464
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
6767
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
6969
=> Booting WEBrick
7070
=> Rails 3.2.13 application starting in development on http://0.0.0.0:3000
7171
=> Call with -d to detach

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require File.expand_path('../config/application', __FILE__)
66

7-
LwsBlacklight::Application.load_tasks
7+
Flare::Application.load_tasks

app/assets/stylesheets/application.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@import "font-awesome";
1515
@import "blacklight/blacklight";
1616

17-
/*lws blacklight theme */
17+
/*flare theme */
1818
@import "base";
1919
@import "layout";
2020
@import "form";

app/views/shared/_footer.html.erb

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</div>
88
<div class="pull-right">
99
<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>
1111
</p>
1212
</div>
1313
</div>

config.ru

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is used by Rack-based servers to start the application.
22

33
require ::File.expand_path('../config/environment', __FILE__)
4-
run LwsBlacklight::Application
4+
run Flare::Application

config/application.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# Bundler.require(:default, :assets, Rails.env)
1010
end
1111

12-
module LwsBlacklight
12+
module Flare
1313
class Application < Rails::Application
1414
# Settings in config/environments/* take precedence over those specified here.
1515
# Application configuration should go into files in config/initializers

config/environment.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
require File.expand_path('../application', __FILE__)
33

44
# Initialize the rails application
5-
LwsBlacklight::Application.initialize!
5+
Flare::Application.initialize!

config/environments/development.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LwsBlacklight::Application.configure do
1+
Flare::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# In the development environment your application's code is reloaded on

config/environments/production.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LwsBlacklight::Application.configure do
1+
Flare::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# Code is not reloaded between requests

config/environments/test.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LwsBlacklight::Application.configure do
1+
Flare::Application.configure do
22
# Settings specified here will take precedence over those in config/application.rb
33

44
# The test environment is used exclusively to run your application's

config/initializers/secret_token.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# If you change this key, all old signed cookies will become invalid!
55
# Make sure the secret is at least 30 characters and all random,
66
# 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'

config/initializers/session_store.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Be sure to restart your server when you modify this file.
22

3-
LwsBlacklight::Application.config.session_store :cookie_store, key: '_lw_flare_session'
3+
Flare::Application.config.session_store :cookie_store, key: '_lw_flare_session'
44

55
# Use the database for sessions instead of the cookie-based default,
66
# which shouldn't be used to store highly confidential information
77
# (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

config/routes.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LwsBlacklight::Application.routes.draw do
1+
Flare::Application.routes.draw do
22
# /catalog/* route definitions, so tht /catalog/:collection_id can be used wildcardly
33
# Commented out default ones from Blacklight that we don't want in there (for now at least)
44
get 'catalog/opensearch', :as => "opensearch_catalog"

0 commit comments

Comments
 (0)