tabulous 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
- data/CHANGELOG.rdoc +2 -0
- data/Gemfile +4 -0
- data/MIT-LICENSE +21 -0
- data/README.rdoc +85 -0
- data/Rakefile +54 -0
- data/lib/generators/tabs/USAGE +1 -0
- data/lib/generators/tabs/tabs_generator.rb +13 -0
- data/lib/generators/tabs/templates/tabulous.rb +170 -0
- data/lib/tabulous.rb +11 -0
- data/lib/tabulous/css_scaffolding.rb +111 -0
- data/lib/tabulous/errors.rb +16 -0
- data/lib/tabulous/formatter.rb +278 -0
- data/lib/tabulous/helpers.rb +13 -0
- data/lib/tabulous/options.rb +37 -0
- data/lib/tabulous/railtie.rb +23 -0
- data/lib/tabulous/tab.rb +79 -0
- data/lib/tabulous/tabulous.rb +162 -0
- data/lib/tabulous/version.rb +3 -0
- data/lib/tasks/tabulous.rake +11 -0
- data/tabulous.gemspec +30 -0
- data/test/applications/main/.gitignore +3 -0
- data/test/applications/main/Gemfile +7 -0
- data/test/applications/main/Rakefile +7 -0
- data/test/applications/main/app/controllers/application_controller.rb +3 -0
- data/test/applications/main/app/controllers/galaxies_controller.rb +83 -0
- data/test/applications/main/app/controllers/home_controller.rb +4 -0
- data/test/applications/main/app/controllers/planets_controller.rb +83 -0
- data/test/applications/main/app/controllers/stars_controller.rb +83 -0
- data/test/applications/main/app/controllers/subtabs_controller.rb +8 -0
- data/test/applications/main/app/helpers/application_helper.rb +2 -0
- data/test/applications/main/app/helpers/galaxies_helper.rb +2 -0
- data/test/applications/main/app/helpers/planets_helper.rb +2 -0
- data/test/applications/main/app/helpers/stars_helper.rb +2 -0
- data/test/applications/main/app/models/galaxy.rb +2 -0
- data/test/applications/main/app/models/planet.rb +2 -0
- data/test/applications/main/app/models/star.rb +2 -0
- data/test/applications/main/app/views/galaxies/_form.html.erb +21 -0
- data/test/applications/main/app/views/galaxies/edit.html.erb +6 -0
- data/test/applications/main/app/views/galaxies/index.html.erb +23 -0
- data/test/applications/main/app/views/galaxies/new.html.erb +5 -0
- data/test/applications/main/app/views/galaxies/show.html.erb +10 -0
- data/test/applications/main/app/views/home/index.html.erb +3 -0
- data/test/applications/main/app/views/layouts/application.html.erb +16 -0
- data/test/applications/main/app/views/planets/_form.html.erb +21 -0
- data/test/applications/main/app/views/planets/edit.html.erb +6 -0
- data/test/applications/main/app/views/planets/index.html.erb +23 -0
- data/test/applications/main/app/views/planets/new.html.erb +5 -0
- data/test/applications/main/app/views/planets/show.html.erb +10 -0
- data/test/applications/main/app/views/stars/_form.html.erb +21 -0
- data/test/applications/main/app/views/stars/edit.html.erb +6 -0
- data/test/applications/main/app/views/stars/index.html.erb +23 -0
- data/test/applications/main/app/views/stars/new.html.erb +5 -0
- data/test/applications/main/app/views/stars/show.html.erb +10 -0
- data/test/applications/main/app/views/subtabs/one.html.erb +1 -0
- data/test/applications/main/app/views/subtabs/three.html.erb +1 -0
- data/test/applications/main/app/views/subtabs/two.html.erb +1 -0
- data/test/applications/main/config.ru +4 -0
- data/test/applications/main/config/application.rb +42 -0
- data/test/applications/main/config/boot.rb +13 -0
- data/test/applications/main/config/database.yml +22 -0
- data/test/applications/main/config/environment.rb +5 -0
- data/test/applications/main/config/environments/development.rb +26 -0
- data/test/applications/main/config/environments/production.rb +49 -0
- data/test/applications/main/config/environments/test.rb +35 -0
- data/test/applications/main/config/initializers/backtrace_silencers.rb +7 -0
- data/test/applications/main/config/initializers/inflections.rb +10 -0
- data/test/applications/main/config/initializers/mime_types.rb +5 -0
- data/test/applications/main/config/initializers/secret_token.rb +7 -0
- data/test/applications/main/config/initializers/session_store.rb +8 -0
- data/test/applications/main/config/initializers/tabulous.rb +156 -0
- data/test/applications/main/config/locales/en.yml +5 -0
- data/test/applications/main/config/routes.rb +69 -0
- data/test/applications/main/db/development.sqlite3 +0 -0
- data/test/applications/main/db/migrate/20110223232547_create_galaxies.rb +13 -0
- data/test/applications/main/db/migrate/20110223232552_create_stars.rb +13 -0
- data/test/applications/main/db/migrate/20110223232557_create_planets.rb +13 -0
- data/test/applications/main/db/production.sqlite3 +0 -0
- data/test/applications/main/db/schema.rb +33 -0
- data/test/applications/main/db/test.sqlite3 +0 -0
- data/test/applications/main/public/404.html +26 -0
- data/test/applications/main/public/422.html +26 -0
- data/test/applications/main/public/500.html +26 -0
- data/test/applications/main/public/favicon.ico +0 -0
- data/test/applications/main/public/javascripts/application.js +2 -0
- data/test/applications/main/public/javascripts/controls.js +965 -0
- data/test/applications/main/public/javascripts/dragdrop.js +974 -0
- data/test/applications/main/public/javascripts/effects.js +1123 -0
- data/test/applications/main/public/javascripts/prototype.js +6001 -0
- data/test/applications/main/public/javascripts/rails.js +175 -0
- data/test/applications/main/public/stylesheets/.gitkeep +0 -0
- data/test/applications/main/script/rails +6 -0
- data/test/applications/main/test/integration/actions_test.rb +79 -0
- data/test/applications/main/test/integration/active_tab_clickable_test.rb +86 -0
- data/test/applications/main/test/integration/always_render_subtabs_test.rb +84 -0
- data/test/applications/main/test/integration/css_no_scaffolding_test.rb +57 -0
- data/test/applications/main/test/integration/css_scaffolding_test.rb +67 -0
- data/test/applications/main/test/integration/display_text_test.rb +73 -0
- data/test/applications/main/test/integration/enabled_test.rb +80 -0
- data/test/applications/main/test/integration/html5_test.rb +64 -0
- data/test/applications/main/test/integration/main_tabs_test.rb +10 -0
- data/test/applications/main/test/integration/path_test.rb +81 -0
- data/test/applications/main/test/integration/visible_test.rb +80 -0
- data/test/applications/main/test/integration_test_helper.rb +6 -0
- data/test/applications/main/test/test_helper.rb +8 -0
- data/test/applications/main/test/unit/tabs_generator_test.rb +14 -0
- data/test/applications/simple_tabs/.gitignore +3 -0
- data/test/applications/simple_tabs/Gemfile +7 -0
- data/test/applications/simple_tabs/Rakefile +7 -0
- data/test/applications/simple_tabs/app/controllers/application_controller.rb +3 -0
- data/test/applications/simple_tabs/app/controllers/galaxies_controller.rb +83 -0
- data/test/applications/simple_tabs/app/controllers/home_controller.rb +4 -0
- data/test/applications/simple_tabs/app/controllers/planets_controller.rb +83 -0
- data/test/applications/simple_tabs/app/controllers/stars_controller.rb +83 -0
- data/test/applications/simple_tabs/app/helpers/application_helper.rb +2 -0
- data/test/applications/simple_tabs/app/helpers/galaxies_helper.rb +2 -0
- data/test/applications/simple_tabs/app/helpers/planets_helper.rb +2 -0
- data/test/applications/simple_tabs/app/helpers/stars_helper.rb +2 -0
- data/test/applications/simple_tabs/app/models/galaxy.rb +2 -0
- data/test/applications/simple_tabs/app/models/planet.rb +2 -0
- data/test/applications/simple_tabs/app/models/star.rb +2 -0
- data/test/applications/simple_tabs/app/views/galaxies/_form.html.erb +21 -0
- data/test/applications/simple_tabs/app/views/galaxies/edit.html.erb +6 -0
- data/test/applications/simple_tabs/app/views/galaxies/index.html.erb +23 -0
- data/test/applications/simple_tabs/app/views/galaxies/new.html.erb +5 -0
- data/test/applications/simple_tabs/app/views/galaxies/show.html.erb +10 -0
- data/test/applications/simple_tabs/app/views/home/index.html.erb +4 -0
- data/test/applications/simple_tabs/app/views/layouts/application.html.erb +16 -0
- data/test/applications/simple_tabs/app/views/planets/_form.html.erb +21 -0
- data/test/applications/simple_tabs/app/views/planets/edit.html.erb +6 -0
- data/test/applications/simple_tabs/app/views/planets/index.html.erb +23 -0
- data/test/applications/simple_tabs/app/views/planets/new.html.erb +5 -0
- data/test/applications/simple_tabs/app/views/planets/show.html.erb +10 -0
- data/test/applications/simple_tabs/app/views/stars/_form.html.erb +21 -0
- data/test/applications/simple_tabs/app/views/stars/edit.html.erb +6 -0
- data/test/applications/simple_tabs/app/views/stars/index.html.erb +23 -0
- data/test/applications/simple_tabs/app/views/stars/new.html.erb +5 -0
- data/test/applications/simple_tabs/app/views/stars/show.html.erb +10 -0
- data/test/applications/simple_tabs/config.ru +4 -0
- data/test/applications/simple_tabs/config/application.rb +42 -0
- data/test/applications/simple_tabs/config/boot.rb +13 -0
- data/test/applications/simple_tabs/config/database.yml +22 -0
- data/test/applications/simple_tabs/config/environment.rb +5 -0
- data/test/applications/simple_tabs/config/environments/development.rb +26 -0
- data/test/applications/simple_tabs/config/environments/production.rb +49 -0
- data/test/applications/simple_tabs/config/environments/test.rb +35 -0
- data/test/applications/simple_tabs/config/initializers/backtrace_silencers.rb +7 -0
- data/test/applications/simple_tabs/config/initializers/inflections.rb +10 -0
- data/test/applications/simple_tabs/config/initializers/mime_types.rb +5 -0
- data/test/applications/simple_tabs/config/initializers/secret_token.rb +7 -0
- data/test/applications/simple_tabs/config/initializers/session_store.rb +8 -0
- data/test/applications/simple_tabs/config/initializers/tabulous.rb +149 -0
- data/test/applications/simple_tabs/config/locales/en.yml +5 -0
- data/test/applications/simple_tabs/config/routes.rb +65 -0
- data/test/applications/simple_tabs/db/development.sqlite3 +0 -0
- data/test/applications/simple_tabs/db/migrate/20110220170240_create_galaxies.rb +13 -0
- data/test/applications/simple_tabs/db/migrate/20110220170245_create_stars.rb +13 -0
- data/test/applications/simple_tabs/db/migrate/20110220170250_create_planets.rb +13 -0
- data/test/applications/simple_tabs/db/production.sqlite3 +0 -0
- data/test/applications/simple_tabs/db/schema.rb +33 -0
- data/test/applications/simple_tabs/db/test.sqlite3 +0 -0
- data/test/applications/simple_tabs/public/404.html +26 -0
- data/test/applications/simple_tabs/public/422.html +26 -0
- data/test/applications/simple_tabs/public/500.html +26 -0
- data/test/applications/simple_tabs/public/favicon.ico +0 -0
- data/test/applications/simple_tabs/public/javascripts/application.js +2 -0
- data/test/applications/simple_tabs/public/javascripts/controls.js +965 -0
- data/test/applications/simple_tabs/public/javascripts/dragdrop.js +974 -0
- data/test/applications/simple_tabs/public/javascripts/effects.js +1123 -0
- data/test/applications/simple_tabs/public/javascripts/prototype.js +6001 -0
- data/test/applications/simple_tabs/public/javascripts/rails.js +175 -0
- data/test/applications/simple_tabs/public/stylesheets/.gitkeep +0 -0
- data/test/applications/simple_tabs/script/rails +6 -0
- data/test/applications/simple_tabs/test/integration/simple_tabs_test.rb +34 -0
- data/test/applications/simple_tabs/test/integration_test_helper.rb +6 -0
- data/test/applications/simple_tabs/test/test_helper.rb +8 -0
- data/test/applications/subtabs/.gitignore +3 -0
- data/test/applications/subtabs/Gemfile +7 -0
- data/test/applications/subtabs/Rakefile +7 -0
- data/test/applications/subtabs/app/controllers/application_controller.rb +3 -0
- data/test/applications/subtabs/app/controllers/exoplanets_controller.rb +83 -0
- data/test/applications/subtabs/app/controllers/galaxies/elliptical_galaxies_controller.rb +85 -0
- data/test/applications/subtabs/app/controllers/galaxies/lenticular_galaxies_controller.rb +85 -0
- data/test/applications/subtabs/app/controllers/galaxies/spiral_galaxies_controller.rb +85 -0
- data/test/applications/subtabs/app/controllers/home_controller.rb +4 -0
- data/test/applications/subtabs/app/controllers/misc_controller.rb +15 -0
- data/test/applications/subtabs/app/controllers/rogue_planets_controller.rb +83 -0
- data/test/applications/subtabs/app/controllers/stars_controller.rb +83 -0
- data/test/applications/subtabs/app/helpers/application_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/elliptical_galaxies_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/exoplanets_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/lenticular_galaxies_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/rogue_planets_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/spiral_galaxies_helper.rb +2 -0
- data/test/applications/subtabs/app/helpers/stars_helper.rb +2 -0
- data/test/applications/subtabs/app/models/elliptical_galaxy.rb +2 -0
- data/test/applications/subtabs/app/models/exoplanet.rb +2 -0
- data/test/applications/subtabs/app/models/lenticular_galaxy.rb +2 -0
- data/test/applications/subtabs/app/models/rogue_planet.rb +2 -0
- data/test/applications/subtabs/app/models/spiral_galaxy.rb +2 -0
- data/test/applications/subtabs/app/models/star.rb +2 -0
- data/test/applications/subtabs/app/views/exoplanets/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/exoplanets/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/exoplanets/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/exoplanets/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/exoplanets/show.html.erb +10 -0
- data/test/applications/subtabs/app/views/galaxies/elliptical_galaxies/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/galaxies/elliptical_galaxies/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/galaxies/elliptical_galaxies/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/galaxies/elliptical_galaxies/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/galaxies/elliptical_galaxies/show.html.erb +10 -0
- data/test/applications/subtabs/app/views/galaxies/lenticular_galaxies/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/galaxies/lenticular_galaxies/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/galaxies/lenticular_galaxies/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/galaxies/lenticular_galaxies/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/galaxies/lenticular_galaxies/show.html.erb +10 -0
- data/test/applications/subtabs/app/views/galaxies/spiral_galaxies/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/galaxies/spiral_galaxies/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/galaxies/spiral_galaxies/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/galaxies/spiral_galaxies/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/galaxies/spiral_galaxies/show.html.erb +10 -0
- data/test/applications/subtabs/app/views/home/index.html.erb +14 -0
- data/test/applications/subtabs/app/views/layouts/application.html.erb +21 -0
- data/test/applications/subtabs/app/views/misc/always_enabled.html.erb +4 -0
- data/test/applications/subtabs/app/views/misc/always_visible.html.erb +4 -0
- data/test/applications/subtabs/app/views/rogue_planets/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/rogue_planets/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/rogue_planets/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/rogue_planets/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/rogue_planets/show.html.erb +10 -0
- data/test/applications/subtabs/app/views/stars/_form.html.erb +21 -0
- data/test/applications/subtabs/app/views/stars/edit.html.erb +6 -0
- data/test/applications/subtabs/app/views/stars/index.html.erb +23 -0
- data/test/applications/subtabs/app/views/stars/new.html.erb +5 -0
- data/test/applications/subtabs/app/views/stars/show.html.erb +10 -0
- data/test/applications/subtabs/config.ru +4 -0
- data/test/applications/subtabs/config/application.rb +42 -0
- data/test/applications/subtabs/config/boot.rb +13 -0
- data/test/applications/subtabs/config/database.yml +22 -0
- data/test/applications/subtabs/config/environment.rb +5 -0
- data/test/applications/subtabs/config/environments/development.rb +26 -0
- data/test/applications/subtabs/config/environments/production.rb +49 -0
- data/test/applications/subtabs/config/environments/test.rb +35 -0
- data/test/applications/subtabs/config/initializers/backtrace_silencers.rb +7 -0
- data/test/applications/subtabs/config/initializers/inflections.rb +10 -0
- data/test/applications/subtabs/config/initializers/mime_types.rb +5 -0
- data/test/applications/subtabs/config/initializers/secret_token.rb +7 -0
- data/test/applications/subtabs/config/initializers/session_store.rb +8 -0
- data/test/applications/subtabs/config/initializers/tabulous.rb +167 -0
- data/test/applications/subtabs/config/locales/en.yml +5 -0
- data/test/applications/subtabs/config/routes.rb +74 -0
- data/test/applications/subtabs/db/development.sqlite3 +0 -0
- data/test/applications/subtabs/db/migrate/20110223220628_create_galaxies.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110223220634_create_stars.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110223220640_create_planets.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110226190125_create_rogue_planets.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110226190131_create_exoplanets.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110226190532_create_spiral_galaxies.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110226190537_create_lenticular_galaxies.rb +13 -0
- data/test/applications/subtabs/db/migrate/20110226190543_create_elliptical_galaxies.rb +13 -0
- data/test/applications/subtabs/db/production.sqlite3 +0 -0
- data/test/applications/subtabs/db/schema.rb +63 -0
- data/test/applications/subtabs/db/test.sqlite3 +0 -0
- data/test/applications/subtabs/public/404.html +26 -0
- data/test/applications/subtabs/public/422.html +26 -0
- data/test/applications/subtabs/public/500.html +26 -0
- data/test/applications/subtabs/public/favicon.ico +0 -0
- data/test/applications/subtabs/public/javascripts/application.js +2 -0
- data/test/applications/subtabs/public/javascripts/controls.js +965 -0
- data/test/applications/subtabs/public/javascripts/dragdrop.js +974 -0
- data/test/applications/subtabs/public/javascripts/effects.js +1123 -0
- data/test/applications/subtabs/public/javascripts/prototype.js +6001 -0
- data/test/applications/subtabs/public/javascripts/rails.js +175 -0
- data/test/applications/subtabs/public/stylesheets/.gitkeep +0 -0
- data/test/applications/subtabs/public/stylesheets/application.css +49 -0
- data/test/applications/subtabs/public/stylesheets/reset.css +48 -0
- data/test/applications/subtabs/script/rails +6 -0
- data/test/applications/subtabs/test/integration/subtabs_test.rb +67 -0
- data/test/applications/subtabs/test/integration_test_helper.rb +6 -0
- data/test/applications/subtabs/test/test_helper.rb +8 -0
- data/test/test_application_gemfile.rb +14 -0
- data/test/test_application_integration_test_helper.rb +89 -0
- data/test/test_application_test_helper.rb +11 -0
- data/test/test_initializers/empty +0 -0
- data/test/test_initializers/expected +55 -0
- data/test/test_initializers/random_horizontal_whitespace +55 -0
- data/test/test_initializers/random_vertical_whitespace +102 -0
- data/test/test_initializers/text +144 -0
- data/test/test_initializers/trailing_comments +55 -0
- data/test/unit_test_helper.rb +13 -0
- data/test/units/tabulous_formatter_test.rb +69 -0
- metadata +466 -0
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Subtabs::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# In the development environment your application's code is reloaded on
|
|
5
|
+
# every request. This slows down response time but is perfect for development
|
|
6
|
+
# since you don't have to restart the webserver when you make code changes.
|
|
7
|
+
config.cache_classes = false
|
|
8
|
+
|
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
|
10
|
+
config.whiny_nils = true
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching
|
|
13
|
+
config.consider_all_requests_local = true
|
|
14
|
+
config.action_view.debug_rjs = true
|
|
15
|
+
config.action_controller.perform_caching = false
|
|
16
|
+
|
|
17
|
+
# Don't care if the mailer can't send
|
|
18
|
+
config.action_mailer.raise_delivery_errors = false
|
|
19
|
+
|
|
20
|
+
# Print deprecation notices to the Rails logger
|
|
21
|
+
config.active_support.deprecation = :log
|
|
22
|
+
|
|
23
|
+
# Only use best-standards-support built into browsers
|
|
24
|
+
config.action_dispatch.best_standards_support = :builtin
|
|
25
|
+
end
|
|
26
|
+
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
Subtabs::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The production environment is meant for finished, "live" apps.
|
|
5
|
+
# Code is not reloaded between requests
|
|
6
|
+
config.cache_classes = true
|
|
7
|
+
|
|
8
|
+
# Full error reports are disabled and caching is turned on
|
|
9
|
+
config.consider_all_requests_local = false
|
|
10
|
+
config.action_controller.perform_caching = true
|
|
11
|
+
|
|
12
|
+
# Specifies the header that your server uses for sending files
|
|
13
|
+
config.action_dispatch.x_sendfile_header = "X-Sendfile"
|
|
14
|
+
|
|
15
|
+
# For nginx:
|
|
16
|
+
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect'
|
|
17
|
+
|
|
18
|
+
# If you have no front-end server that supports something like X-Sendfile,
|
|
19
|
+
# just comment this out and Rails will serve the files
|
|
20
|
+
|
|
21
|
+
# See everything in the log (default is :info)
|
|
22
|
+
# config.log_level = :debug
|
|
23
|
+
|
|
24
|
+
# Use a different logger for distributed setups
|
|
25
|
+
# config.logger = SyslogLogger.new
|
|
26
|
+
|
|
27
|
+
# Use a different cache store in production
|
|
28
|
+
# config.cache_store = :mem_cache_store
|
|
29
|
+
|
|
30
|
+
# Disable Rails's static asset server
|
|
31
|
+
# In production, Apache or nginx will already do this
|
|
32
|
+
config.serve_static_assets = false
|
|
33
|
+
|
|
34
|
+
# Enable serving of images, stylesheets, and javascripts from an asset server
|
|
35
|
+
# config.action_controller.asset_host = "http://assets.example.com"
|
|
36
|
+
|
|
37
|
+
# Disable delivery errors, bad email addresses will be ignored
|
|
38
|
+
# config.action_mailer.raise_delivery_errors = false
|
|
39
|
+
|
|
40
|
+
# Enable threaded mode
|
|
41
|
+
# config.threadsafe!
|
|
42
|
+
|
|
43
|
+
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
44
|
+
# the I18n.default_locale when a translation can not be found)
|
|
45
|
+
config.i18n.fallbacks = true
|
|
46
|
+
|
|
47
|
+
# Send deprecation notices to registered listeners
|
|
48
|
+
config.active_support.deprecation = :notify
|
|
49
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Subtabs::Application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb
|
|
3
|
+
|
|
4
|
+
# The test environment is used exclusively to run your application's
|
|
5
|
+
# test suite. You never need to work with it otherwise. Remember that
|
|
6
|
+
# your test database is "scratch space" for the test suite and is wiped
|
|
7
|
+
# and recreated between test runs. Don't rely on the data there!
|
|
8
|
+
config.cache_classes = true
|
|
9
|
+
|
|
10
|
+
# Log error messages when you accidentally call methods on nil.
|
|
11
|
+
config.whiny_nils = true
|
|
12
|
+
|
|
13
|
+
# Show full error reports and disable caching
|
|
14
|
+
config.consider_all_requests_local = true
|
|
15
|
+
config.action_controller.perform_caching = false
|
|
16
|
+
|
|
17
|
+
# Raise exceptions instead of rendering exception templates
|
|
18
|
+
config.action_dispatch.show_exceptions = false
|
|
19
|
+
|
|
20
|
+
# Disable request forgery protection in test environment
|
|
21
|
+
config.action_controller.allow_forgery_protection = false
|
|
22
|
+
|
|
23
|
+
# Tell Action Mailer not to deliver emails to the real world.
|
|
24
|
+
# The :test delivery method accumulates sent emails in the
|
|
25
|
+
# ActionMailer::Base.deliveries array.
|
|
26
|
+
config.action_mailer.delivery_method = :test
|
|
27
|
+
|
|
28
|
+
# Use SQL instead of Active Record's schema dumper when creating the test database.
|
|
29
|
+
# This is necessary if your schema can't be completely dumped by the schema dumper,
|
|
30
|
+
# like if you have constraints or database-specific column types
|
|
31
|
+
# config.active_record.schema_format = :sql
|
|
32
|
+
|
|
33
|
+
# Print deprecation notices to the stderr
|
|
34
|
+
config.active_support.deprecation = :stderr
|
|
35
|
+
end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
|
5
|
+
|
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Add new inflection rules using the following format
|
|
4
|
+
# (all these examples are active by default):
|
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
|
8
|
+
# inflect.irregular 'person', 'people'
|
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
|
10
|
+
# end
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
|
7
|
+
Subtabs::Application.config.secret_token = '41628a49ed38b93b83dfb18446e615cb3d5a0101976e9fddf4138a569ea288cb4d2852a13bc605c9400a5a983b2bab0f92397c6119d589484261b88bf4146391'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
|
2
|
+
|
|
3
|
+
Subtabs::Application.config.session_store :cookie_store, :key => '_subtabs_session'
|
|
4
|
+
|
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
|
6
|
+
# which shouldn't be used to store highly confidential information
|
|
7
|
+
# (create the session table with "rails generate session_migration")
|
|
8
|
+
# Subtabs::Application.config.session_store :active_record_store
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# Tabulous gives you an easy way to set up tabs for your Rails application.
|
|
2
|
+
#
|
|
3
|
+
# 1. Configure this initializer.
|
|
4
|
+
# 2. Add <%= tabs %> and <%= subtabs %> in your layout(s) wherever you want
|
|
5
|
+
# your tabs to appear.
|
|
6
|
+
# 3. Add styles for these tabs in your stylesheets.
|
|
7
|
+
# 4. Profit!
|
|
8
|
+
|
|
9
|
+
Tabulous.setup do |config|
|
|
10
|
+
|
|
11
|
+
#---------------------------
|
|
12
|
+
# HOW TO USE THE TABLES
|
|
13
|
+
#---------------------------
|
|
14
|
+
#
|
|
15
|
+
# The following tables are just an array of arrays. As such, you can put
|
|
16
|
+
# any Ruby code into a cell. For example, you could put "/foo/bar" in
|
|
17
|
+
# a path cell or you could put "/foo" + "/bar". You can even wrap up code
|
|
18
|
+
# in a lambda to be executed later. These will be executed in the context
|
|
19
|
+
# of a Rails view meaning they will have access to view helpers.
|
|
20
|
+
#
|
|
21
|
+
# However, there is something special about the format of these tables.
|
|
22
|
+
# Because it would be a pain for you to manually prettify the tables each
|
|
23
|
+
# time you edit them, there is a special rake task that does this for
|
|
24
|
+
# you: rake tabs:format. However, for this prettifier to work properly
|
|
25
|
+
# you have to follow some special rules:
|
|
26
|
+
#
|
|
27
|
+
# * No comments are allowed between rows.
|
|
28
|
+
# * Comments are allowed to the right of rows, except for header rows.
|
|
29
|
+
# * And most importantly: commas that separate cells should be surrounded
|
|
30
|
+
# by spaces and commas that are within cells should not. This gives the
|
|
31
|
+
# formatter an easy way to distinguish between cells without having
|
|
32
|
+
# to actually parse the Ruby.
|
|
33
|
+
|
|
34
|
+
#----------
|
|
35
|
+
# TABS
|
|
36
|
+
#----------
|
|
37
|
+
#
|
|
38
|
+
# This is where you define your tabs and subtabs. The order that the tabs
|
|
39
|
+
# appear in this list is the order they will appear in your views. Any
|
|
40
|
+
# subtabs defined will have the previous tab as their parent.
|
|
41
|
+
#
|
|
42
|
+
# TAB NAME
|
|
43
|
+
# must end in _tab or _subtab
|
|
44
|
+
# DISPLAY TEXT
|
|
45
|
+
# the text the user sees on the tab
|
|
46
|
+
# PATH
|
|
47
|
+
# the URL that gets sent to the server when the tab is clicked
|
|
48
|
+
# VISIBLE
|
|
49
|
+
# whether to display the tab
|
|
50
|
+
# ENABLED
|
|
51
|
+
# whether the tab is disabled (unclickable)
|
|
52
|
+
|
|
53
|
+
config.tabs = [
|
|
54
|
+
#--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------#
|
|
55
|
+
# TAB NAME | DISPLAY TEXT | PATH | VISIBLE? | ENABLED? #
|
|
56
|
+
#--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------#
|
|
57
|
+
[ :home_tab , 'Explanation' , '/' , true , true ],
|
|
58
|
+
[ :galaxies_tab , 'Galaxies' , '/galaxies/elliptical_galaxies' , true , true ],
|
|
59
|
+
[ :elliptical_galaxies_subtab , 'Elliptical Galaxies' , '/galaxies/elliptical_galaxies' , true , true ],
|
|
60
|
+
[ :spiral_galaxies_subtab , 'Spiral Galaxies' , '/galaxies/spiral_galaxies' , true , true ],
|
|
61
|
+
[ :lenticular_galaxies_subtab , 'Lenticular Galaxies' , '/galaxies/lenticular_galaxies' , true , true ],
|
|
62
|
+
[ :planets_tab , 'Planets' , '/exoplanets' , true , true ],
|
|
63
|
+
[ :exoplanets_subtab , 'Exoplanets' , '/exoplanets' , true , true ],
|
|
64
|
+
[ :rogue_planets_subtab , 'Rogue Planets' , '/rogue_planets' , true , true ],
|
|
65
|
+
[ :stars_tab , lambda { request.path =~ /stars/ ? 'Stars!' : 'Stars' } , lambda { stars_path } , true , true ],
|
|
66
|
+
[ :hidden_tab , 'Hidden' , '/hidden/always_visible' , lambda { request.path =~ /(hidden|galaxies)/ } , true ],
|
|
67
|
+
[ :always_visible_subtab , 'Always Visible' , '/hidden/always_visible' , true , true ],
|
|
68
|
+
[ :always_hidden_subtab , 'Always Hidden' , '/hidden/always_hidden' , false , true ],
|
|
69
|
+
[ :disabled_tab , 'Disabled' , '/disabled/always_enabled' , true , lambda { request.path =~ /(disabled|stars)/ } ],
|
|
70
|
+
[ :always_enabled_subtab , 'Always Enabled' , '/disabled/always_enabled' , true , true ],
|
|
71
|
+
[ :always_disabled_subtab , 'Always Disabled' , '/disabled/always_disabled' , true , false ],
|
|
72
|
+
#--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------#
|
|
73
|
+
# TAB NAME | DISPLAY TEXT | PATH | VISIBLE? | ENABLED? #
|
|
74
|
+
#--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------#
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
#-------------
|
|
78
|
+
# ACTIONS
|
|
79
|
+
#-------------
|
|
80
|
+
#
|
|
81
|
+
# This is where you hook up actions with tabs. That way tabulous knows
|
|
82
|
+
# which tab and subtab to mark active when an action is rendered.
|
|
83
|
+
#
|
|
84
|
+
# CONTROLLER
|
|
85
|
+
# the name of the controller
|
|
86
|
+
# ACTION
|
|
87
|
+
# the name of the action, or :all_actions
|
|
88
|
+
# TAB
|
|
89
|
+
# the name of the tab or subtab that is active when this action is rendered
|
|
90
|
+
|
|
91
|
+
config.actions = [
|
|
92
|
+
#-----------------------------------------------------------------------------------------#
|
|
93
|
+
# CONTROLLER | ACTION | TAB #
|
|
94
|
+
#-----------------------------------------------------------------------------------------#
|
|
95
|
+
[ :home , :all_actions , :home_tab ],
|
|
96
|
+
[ :elliptical_galaxies , :all_actions , :elliptical_galaxies_subtab ],
|
|
97
|
+
[ :spiral_galaxies , :all_actions , :spiral_galaxies_subtab ],
|
|
98
|
+
[ :lenticular_galaxies , :all_actions , :lenticular_galaxies_subtab ],
|
|
99
|
+
[ :exoplanets , :all_actions , :exoplanets_subtab ],
|
|
100
|
+
[ :rogue_planets , :all_actions , :rogue_planets_subtab ],
|
|
101
|
+
[ :stars , :all_actions , :stars_tab ],
|
|
102
|
+
[ :misc , :always_visible , :always_visible_subtab ],
|
|
103
|
+
[ :misc , :always_hidden , :always_hidden_subtab ],
|
|
104
|
+
[ :misc , :always_enabled , :always_enabled_subtab ],
|
|
105
|
+
[ :misc , :always_disabled , :always_disabled_subtab ],
|
|
106
|
+
#-----------------------------------------------------------------------------------------#
|
|
107
|
+
# CONTROLLER | ACTION | TAB #
|
|
108
|
+
#-----------------------------------------------------------------------------------------#
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
#-------------
|
|
112
|
+
# OPTIONS
|
|
113
|
+
#-------------
|
|
114
|
+
|
|
115
|
+
# By default, you cannot click on the active tab.
|
|
116
|
+
config.active_tab_clickable = false
|
|
117
|
+
|
|
118
|
+
# By default, the subtabs HTML element is not rendered if it is empty.
|
|
119
|
+
config.always_render_subtabs = false
|
|
120
|
+
|
|
121
|
+
# By default, when an action renders and no tab is defined for that action,
|
|
122
|
+
# an error is thrown. If you turn this off, no error is thrown and the
|
|
123
|
+
# tabs are simply not rendered.
|
|
124
|
+
config.raise_error_if_no_tab_found = true
|
|
125
|
+
|
|
126
|
+
# By default, div elements are used in the tab markup. When html5 is
|
|
127
|
+
# true, nav elements are used instead.
|
|
128
|
+
config.html5 = false
|
|
129
|
+
|
|
130
|
+
#------------
|
|
131
|
+
# STYLES
|
|
132
|
+
#------------
|
|
133
|
+
#
|
|
134
|
+
# The markup that is generated has the following properties:
|
|
135
|
+
#
|
|
136
|
+
# Tabs and subtabs that are selected have the class "active".
|
|
137
|
+
# Tabs and subtabs that are not selected have the class "inactive".
|
|
138
|
+
# Tabs that are disabled have the class "disabled"; otherwise, "enabled".
|
|
139
|
+
# Tabs that are not visible do not appear in the markup at all.
|
|
140
|
+
#
|
|
141
|
+
# These classes are provided to make it easier for you to create your
|
|
142
|
+
# own CSS (and JavaScript) for the tabs.
|
|
143
|
+
|
|
144
|
+
# Some styles will be generated for you to get you off to a good start.
|
|
145
|
+
# Scaffolded styles are not meant to be used in production as they
|
|
146
|
+
# generate invalid HTML markup. They are merely meant to give you a
|
|
147
|
+
# head start or an easy way to prototype quickly.
|
|
148
|
+
#
|
|
149
|
+
config.css.scaffolding = true
|
|
150
|
+
|
|
151
|
+
# You can tweak the colors of the generated CSS.
|
|
152
|
+
#
|
|
153
|
+
config.css.background_color = '#cec'
|
|
154
|
+
config.css.text_color = '#464'
|
|
155
|
+
config.css.active_tab_color = '#fff'
|
|
156
|
+
config.css.hover_tab_color = '#dfd'
|
|
157
|
+
config.css.inactive_tab_color = '#aca'
|
|
158
|
+
config.css.inactive_text_color = '#8a8'
|
|
159
|
+
|
|
160
|
+
#-----------
|
|
161
|
+
# NOTES
|
|
162
|
+
#-----------
|
|
163
|
+
#
|
|
164
|
+
# In development mode this initializer is reloaded for each request so that
|
|
165
|
+
# you don't have to restart the server each time you edit this file.
|
|
166
|
+
|
|
167
|
+
end
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Subtabs::Application.routes.draw do
|
|
2
|
+
|
|
3
|
+
root :to => "home#index"
|
|
4
|
+
match 'hidden/always_visible' => 'misc#always_visible'
|
|
5
|
+
match 'hidden/always_hidden' => 'misc#always_hidden'
|
|
6
|
+
match 'disabled/always_enabled' => 'misc#always_enabled'
|
|
7
|
+
match 'disabled/always_disabled' => 'misc#always_disabled'
|
|
8
|
+
|
|
9
|
+
namespace :galaxies do
|
|
10
|
+
resources :elliptical_galaxies
|
|
11
|
+
resources :spiral_galaxies
|
|
12
|
+
resources :lenticular_galaxies
|
|
13
|
+
end
|
|
14
|
+
resources :stars
|
|
15
|
+
resources :exoplanets
|
|
16
|
+
resources :rogue_planets
|
|
17
|
+
|
|
18
|
+
# The priority is based upon order of creation:
|
|
19
|
+
# first created -> highest priority.
|
|
20
|
+
|
|
21
|
+
# Sample of regular route:
|
|
22
|
+
# match 'products/:id' => 'catalog#view'
|
|
23
|
+
# Keep in mind you can assign values other than :controller and :action
|
|
24
|
+
|
|
25
|
+
# Sample of named route:
|
|
26
|
+
# match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
|
|
27
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
|
28
|
+
|
|
29
|
+
# Sample resource route (maps HTTP verbs to controller actions automatically):
|
|
30
|
+
# resources :products
|
|
31
|
+
|
|
32
|
+
# Sample resource route with options:
|
|
33
|
+
# resources :products do
|
|
34
|
+
# member do
|
|
35
|
+
# get 'short'
|
|
36
|
+
# post 'toggle'
|
|
37
|
+
# end
|
|
38
|
+
#
|
|
39
|
+
# collection do
|
|
40
|
+
# get 'sold'
|
|
41
|
+
# end
|
|
42
|
+
# end
|
|
43
|
+
|
|
44
|
+
# Sample resource route with sub-resources:
|
|
45
|
+
# resources :products do
|
|
46
|
+
# resources :comments, :sales
|
|
47
|
+
# resource :seller
|
|
48
|
+
# end
|
|
49
|
+
|
|
50
|
+
# Sample resource route with more complex sub-resources
|
|
51
|
+
# resources :products do
|
|
52
|
+
# resources :comments
|
|
53
|
+
# resources :sales do
|
|
54
|
+
# get 'recent', :on => :collection
|
|
55
|
+
# end
|
|
56
|
+
# end
|
|
57
|
+
|
|
58
|
+
# Sample resource route within a namespace:
|
|
59
|
+
# namespace :admin do
|
|
60
|
+
# # Directs /admin/products/* to Admin::ProductsController
|
|
61
|
+
# # (app/controllers/admin/products_controller.rb)
|
|
62
|
+
# resources :products
|
|
63
|
+
# end
|
|
64
|
+
|
|
65
|
+
# You can have the root of your site routed with "root"
|
|
66
|
+
# just remember to delete public/index.html.
|
|
67
|
+
# root :to => "welcome#index"
|
|
68
|
+
|
|
69
|
+
# See how all your routes lay out with "rake routes"
|
|
70
|
+
|
|
71
|
+
# This is a legacy wild controller route that's not recommended for RESTful applications.
|
|
72
|
+
# Note: This route will make all actions in every controller accessible via GET requests.
|
|
73
|
+
# match ':controller(/:action(/:id(.:format)))'
|
|
74
|
+
end
|
|
Binary file
|