restfulie-nosqlite 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +20 -0
- data/.gitmodules +3 -0
- data/.rspec +2 -0
- data/Gemfile +22 -0
- data/LICENSE +17 -0
- data/README.textile +93 -0
- data/Rakefile +119 -0
- data/full-examples/.gitignore +4 -0
- data/full-examples/README.textile +1 -0
- data/full-examples/mikemaze/README.textile +6 -0
- data/full-examples/mikemaze/maze_basic.rb +37 -0
- data/full-examples/mikemaze/maze_solver_spec.rb +108 -0
- data/full-examples/rest_from_scratch/part_1/.gitignore +4 -0
- data/full-examples/rest_from_scratch/part_1/.rspec +1 -0
- data/full-examples/rest_from_scratch/part_1/Gemfile +33 -0
- data/full-examples/rest_from_scratch/part_1/Gemfile.lock +101 -0
- data/full-examples/rest_from_scratch/part_1/README +256 -0
- data/full-examples/rest_from_scratch/part_1/Rakefile +7 -0
- data/full-examples/rest_from_scratch/part_1/app/controllers/application_controller.rb +3 -0
- data/full-examples/rest_from_scratch/part_1/app/controllers/items_controller.rb +20 -0
- data/full-examples/rest_from_scratch/part_1/app/helpers/application_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_1/app/helpers/items_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_1/app/models/item.rb +2 -0
- data/full-examples/rest_from_scratch/part_1/app/views/items/_form.html.erb +25 -0
- data/full-examples/rest_from_scratch/part_1/app/views/items/edit.html.erb +6 -0
- data/full-examples/rest_from_scratch/part_1/app/views/items/index.html.erb +25 -0
- data/full-examples/rest_from_scratch/part_1/app/views/items/new.html.erb +5 -0
- data/full-examples/rest_from_scratch/part_1/app/views/items/show.html.erb +15 -0
- data/full-examples/rest_from_scratch/part_1/app/views/layouts/application.html.erb +14 -0
- data/full-examples/rest_from_scratch/part_1/autotest/discover.rb +1 -0
- data/full-examples/rest_from_scratch/part_1/config/application.rb +42 -0
- data/full-examples/rest_from_scratch/part_1/config/boot.rb +13 -0
- data/full-examples/rest_from_scratch/part_1/config/database.yml +22 -0
- data/full-examples/rest_from_scratch/part_1/config/environment.rb +5 -0
- data/full-examples/rest_from_scratch/part_1/config/environments/development.rb +26 -0
- data/full-examples/rest_from_scratch/part_1/config/environments/production.rb +49 -0
- data/full-examples/rest_from_scratch/part_1/config/environments/test.rb +35 -0
- data/full-examples/rest_from_scratch/part_1/config/initializers/backtrace_silencers.rb +7 -0
- data/full-examples/rest_from_scratch/part_1/config/initializers/inflections.rb +10 -0
- data/full-examples/rest_from_scratch/part_1/config/initializers/mime_types.rb +5 -0
- data/full-examples/rest_from_scratch/part_1/config/initializers/secret_token.rb +7 -0
- data/full-examples/rest_from_scratch/part_1/config/initializers/session_store.rb +8 -0
- data/full-examples/rest_from_scratch/part_1/config/locales/en.yml +5 -0
- data/full-examples/rest_from_scratch/part_1/config/routes.rb +60 -0
- data/full-examples/rest_from_scratch/part_1/config.ru +4 -0
- data/full-examples/rest_from_scratch/part_1/db/migrate/20100830171258_create_items.rb +14 -0
- data/full-examples/rest_from_scratch/part_1/db/schema.rb +22 -0
- data/full-examples/rest_from_scratch/part_1/db/seeds.rb +7 -0
- data/full-examples/rest_from_scratch/part_1/lib/tasks/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_1/public/404.html +26 -0
- data/full-examples/rest_from_scratch/part_1/public/422.html +26 -0
- data/full-examples/rest_from_scratch/part_1/public/500.html +26 -0
- data/full-examples/rest_from_scratch/part_1/public/favicon.ico +0 -0
- data/full-examples/rest_from_scratch/part_1/public/images/rails.png +0 -0
- data/full-examples/rest_from_scratch/part_1/public/index.html +239 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/application.js +2 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/controls.js +965 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/dragdrop.js +974 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/effects.js +1123 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/prototype.js +6001 -0
- data/full-examples/rest_from_scratch/part_1/public/javascripts/rails.js +175 -0
- data/full-examples/rest_from_scratch/part_1/public/robots.txt +5 -0
- data/full-examples/rest_from_scratch/part_1/public/stylesheets/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_1/public/stylesheets/scaffold.css +56 -0
- data/full-examples/rest_from_scratch/part_1/script/rails +6 -0
- data/full-examples/rest_from_scratch/part_1/spec/items_spec.rb +31 -0
- data/full-examples/rest_from_scratch/part_1/spec/spec_helper.rb +27 -0
- data/full-examples/rest_from_scratch/part_1/test/fixtures/items.yml +9 -0
- data/full-examples/rest_from_scratch/part_1/test/functional/items_controller_test.rb +49 -0
- data/full-examples/rest_from_scratch/part_1/test/performance/browsing_test.rb +9 -0
- data/full-examples/rest_from_scratch/part_1/test/test_helper.rb +13 -0
- data/full-examples/rest_from_scratch/part_1/test/unit/helpers/items_helper_test.rb +4 -0
- data/full-examples/rest_from_scratch/part_1/test/unit/item_test.rb +8 -0
- data/full-examples/rest_from_scratch/part_1/vendor/plugins/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_2/.gitignore +4 -0
- data/full-examples/rest_from_scratch/part_2/.rspec +1 -0
- data/full-examples/rest_from_scratch/part_2/Gemfile +34 -0
- data/full-examples/rest_from_scratch/part_2/Gemfile.lock +101 -0
- data/full-examples/rest_from_scratch/part_2/README +256 -0
- data/full-examples/rest_from_scratch/part_2/Rakefile +7 -0
- data/full-examples/rest_from_scratch/part_2/app/controllers/application_controller.rb +3 -0
- data/full-examples/rest_from_scratch/part_2/app/controllers/baskets_controller.rb +25 -0
- data/full-examples/rest_from_scratch/part_2/app/controllers/items_controller.rb +20 -0
- data/full-examples/rest_from_scratch/part_2/app/controllers/payments_controller.rb +17 -0
- data/full-examples/rest_from_scratch/part_2/app/helpers/application_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_2/app/helpers/baskets_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_2/app/helpers/items_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_2/app/helpers/payments_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_2/app/models/basket.rb +11 -0
- data/full-examples/rest_from_scratch/part_2/app/models/item.rb +2 -0
- data/full-examples/rest_from_scratch/part_2/app/models/payment.rb +3 -0
- data/full-examples/rest_from_scratch/part_2/app/views/baskets/show.tokamak +9 -0
- data/full-examples/rest_from_scratch/part_2/app/views/items/_show.tokamak +6 -0
- data/full-examples/rest_from_scratch/part_2/app/views/items/index.tokamak +14 -0
- data/full-examples/rest_from_scratch/part_2/app/views/layouts/application.html.erb +14 -0
- data/full-examples/rest_from_scratch/part_2/autotest/discover.rb +1 -0
- data/full-examples/rest_from_scratch/part_2/config/application.rb +42 -0
- data/full-examples/rest_from_scratch/part_2/config/boot.rb +13 -0
- data/full-examples/rest_from_scratch/part_2/config/database.yml +22 -0
- data/full-examples/rest_from_scratch/part_2/config/environment.rb +5 -0
- data/full-examples/rest_from_scratch/part_2/config/environments/development.rb +26 -0
- data/full-examples/rest_from_scratch/part_2/config/environments/production.rb +49 -0
- data/full-examples/rest_from_scratch/part_2/config/environments/test.rb +35 -0
- data/full-examples/rest_from_scratch/part_2/config/initializers/backtrace_silencers.rb +7 -0
- data/full-examples/rest_from_scratch/part_2/config/initializers/inflections.rb +10 -0
- data/full-examples/rest_from_scratch/part_2/config/initializers/mime_types.rb +5 -0
- data/full-examples/rest_from_scratch/part_2/config/initializers/secret_token.rb +7 -0
- data/full-examples/rest_from_scratch/part_2/config/initializers/session_store.rb +8 -0
- data/full-examples/rest_from_scratch/part_2/config/locales/en.yml +5 -0
- data/full-examples/rest_from_scratch/part_2/config/routes.rb +65 -0
- data/full-examples/rest_from_scratch/part_2/config.ru +4 -0
- data/full-examples/rest_from_scratch/part_2/db/migrate/20100830171258_create_items.rb +16 -0
- data/full-examples/rest_from_scratch/part_2/db/migrate/20100830180139_create_baskets.rb +12 -0
- data/full-examples/rest_from_scratch/part_2/db/migrate/20100830180203_create_payments.rb +16 -0
- data/full-examples/rest_from_scratch/part_2/db/migrate/20100830185456_connect_baskets_to_items.rb +13 -0
- data/full-examples/rest_from_scratch/part_2/db/schema.rb +43 -0
- data/full-examples/rest_from_scratch/part_2/db/seeds.rb +7 -0
- data/full-examples/rest_from_scratch/part_2/lib/tasks/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_2/public/404.html +26 -0
- data/full-examples/rest_from_scratch/part_2/public/422.html +26 -0
- data/full-examples/rest_from_scratch/part_2/public/500.html +26 -0
- data/full-examples/rest_from_scratch/part_2/public/favicon.ico +0 -0
- data/full-examples/rest_from_scratch/part_2/public/images/rails.png +0 -0
- data/full-examples/rest_from_scratch/part_2/public/index.html +239 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/application.js +2 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/controls.js +965 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/dragdrop.js +974 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/effects.js +1123 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/prototype.js +6001 -0
- data/full-examples/rest_from_scratch/part_2/public/javascripts/rails.js +175 -0
- data/full-examples/rest_from_scratch/part_2/public/robots.txt +5 -0
- data/full-examples/rest_from_scratch/part_2/public/stylesheets/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_2/public/stylesheets/scaffold.css +56 -0
- data/full-examples/rest_from_scratch/part_2/script/rails +6 -0
- data/full-examples/rest_from_scratch/part_2/spec/full_cycle_spec.rb +31 -0
- data/full-examples/rest_from_scratch/part_2/spec/items_spec.rb +31 -0
- data/full-examples/rest_from_scratch/part_2/spec/spec_helper.rb +27 -0
- data/full-examples/rest_from_scratch/part_2/test/fixtures/items.yml +9 -0
- data/full-examples/rest_from_scratch/part_2/test/functional/items_controller_test.rb +49 -0
- data/full-examples/rest_from_scratch/part_2/test/performance/browsing_test.rb +9 -0
- data/full-examples/rest_from_scratch/part_2/test/test_helper.rb +13 -0
- data/full-examples/rest_from_scratch/part_2/test/unit/helpers/items_helper_test.rb +4 -0
- data/full-examples/rest_from_scratch/part_2/test/unit/item_test.rb +8 -0
- data/full-examples/rest_from_scratch/part_2/vendor/plugins/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_3/.gitignore +4 -0
- data/full-examples/rest_from_scratch/part_3/.rspec +1 -0
- data/full-examples/rest_from_scratch/part_3/Gemfile +33 -0
- data/full-examples/rest_from_scratch/part_3/Gemfile.lock +101 -0
- data/full-examples/rest_from_scratch/part_3/README +256 -0
- data/full-examples/rest_from_scratch/part_3/Rakefile +7 -0
- data/full-examples/rest_from_scratch/part_3/app/controllers/application_controller.rb +3 -0
- data/full-examples/rest_from_scratch/part_3/app/controllers/baskets_controller.rb +34 -0
- data/full-examples/rest_from_scratch/part_3/app/controllers/items_controller.rb +20 -0
- data/full-examples/rest_from_scratch/part_3/app/controllers/payments_controller.rb +17 -0
- data/full-examples/rest_from_scratch/part_3/app/helpers/application_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_3/app/helpers/baskets_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_3/app/helpers/items_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_3/app/helpers/payments_helper.rb +2 -0
- data/full-examples/rest_from_scratch/part_3/app/models/basket.rb +11 -0
- data/full-examples/rest_from_scratch/part_3/app/models/item.rb +2 -0
- data/full-examples/rest_from_scratch/part_3/app/models/payment.rb +3 -0
- data/full-examples/rest_from_scratch/part_3/app/views/baskets/show.tokamak +9 -0
- data/full-examples/rest_from_scratch/part_3/app/views/items/_show.tokamak +6 -0
- data/full-examples/rest_from_scratch/part_3/app/views/items/index.tokamak +14 -0
- data/full-examples/rest_from_scratch/part_3/app/views/layouts/application.html.erb +14 -0
- data/full-examples/rest_from_scratch/part_3/autotest/discover.rb +1 -0
- data/full-examples/rest_from_scratch/part_3/config/application.rb +42 -0
- data/full-examples/rest_from_scratch/part_3/config/boot.rb +13 -0
- data/full-examples/rest_from_scratch/part_3/config/database.yml +22 -0
- data/full-examples/rest_from_scratch/part_3/config/environment.rb +5 -0
- data/full-examples/rest_from_scratch/part_3/config/environments/development.rb +26 -0
- data/full-examples/rest_from_scratch/part_3/config/environments/production.rb +49 -0
- data/full-examples/rest_from_scratch/part_3/config/environments/test.rb +35 -0
- data/full-examples/rest_from_scratch/part_3/config/initializers/backtrace_silencers.rb +7 -0
- data/full-examples/rest_from_scratch/part_3/config/initializers/inflections.rb +10 -0
- data/full-examples/rest_from_scratch/part_3/config/initializers/mime_types.rb +5 -0
- data/full-examples/rest_from_scratch/part_3/config/initializers/secret_token.rb +7 -0
- data/full-examples/rest_from_scratch/part_3/config/initializers/session_store.rb +8 -0
- data/full-examples/rest_from_scratch/part_3/config/locales/en.yml +5 -0
- data/full-examples/rest_from_scratch/part_3/config/routes.rb +67 -0
- data/full-examples/rest_from_scratch/part_3/config.ru +4 -0
- data/full-examples/rest_from_scratch/part_3/db/migrate/20100830171258_create_items.rb +16 -0
- data/full-examples/rest_from_scratch/part_3/db/migrate/20100830180139_create_baskets.rb +12 -0
- data/full-examples/rest_from_scratch/part_3/db/migrate/20100830180203_create_payments.rb +16 -0
- data/full-examples/rest_from_scratch/part_3/db/migrate/20100830185456_connect_baskets_to_items.rb +13 -0
- data/full-examples/rest_from_scratch/part_3/db/schema.rb +43 -0
- data/full-examples/rest_from_scratch/part_3/db/seeds.rb +7 -0
- data/full-examples/rest_from_scratch/part_3/lib/tasks/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_3/public/404.html +26 -0
- data/full-examples/rest_from_scratch/part_3/public/422.html +26 -0
- data/full-examples/rest_from_scratch/part_3/public/500.html +26 -0
- data/full-examples/rest_from_scratch/part_3/public/favicon.ico +0 -0
- data/full-examples/rest_from_scratch/part_3/public/images/rails.png +0 -0
- data/full-examples/rest_from_scratch/part_3/public/index.html +239 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/application.js +2 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/controls.js +965 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/dragdrop.js +974 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/effects.js +1123 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/prototype.js +6001 -0
- data/full-examples/rest_from_scratch/part_3/public/javascripts/rails.js +175 -0
- data/full-examples/rest_from_scratch/part_3/public/robots.txt +5 -0
- data/full-examples/rest_from_scratch/part_3/public/stylesheets/.gitkeep +0 -0
- data/full-examples/rest_from_scratch/part_3/public/stylesheets/scaffold.css +56 -0
- data/full-examples/rest_from_scratch/part_3/script/rails +6 -0
- data/full-examples/rest_from_scratch/part_3/spec/buying_process_spec.rb +24 -0
- data/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb +23 -0
- data/full-examples/rest_from_scratch/part_3/spec/client/scenarios/buying_process.scenario +15 -0
- data/full-examples/rest_from_scratch/part_3/spec/client/steps/buying_process.rb +56 -0
- data/full-examples/rest_from_scratch/part_3/spec/full_cycle_spec.rb +30 -0
- data/full-examples/rest_from_scratch/part_3/spec/items_spec.rb +31 -0
- data/full-examples/rest_from_scratch/part_3/spec/spec_helper.rb +27 -0
- data/full-examples/rest_from_scratch/part_3/test/fixtures/items.yml +9 -0
- data/full-examples/rest_from_scratch/part_3/test/functional/items_controller_test.rb +49 -0
- data/full-examples/rest_from_scratch/part_3/test/performance/browsing_test.rb +9 -0
- data/full-examples/rest_from_scratch/part_3/test/test_helper.rb +13 -0
- data/full-examples/rest_from_scratch/part_3/test/unit/helpers/items_helper_test.rb +4 -0
- data/full-examples/rest_from_scratch/part_3/test/unit/item_test.rb +8 -0
- data/full-examples/rest_from_scratch/part_3/vendor/plugins/.gitkeep +0 -0
- data/init.rb +1 -0
- data/lib/restfulie/client/README.textile +33 -0
- data/lib/restfulie/client/base.rb +36 -0
- data/lib/restfulie/client/cache/basic.rb +78 -0
- data/lib/restfulie/client/cache/fake.rb +15 -0
- data/lib/restfulie/client/cache/http_ext.rb +123 -0
- data/lib/restfulie/client/cache/restrictions.rb +15 -0
- data/lib/restfulie/client/cache.rb +11 -0
- data/lib/restfulie/client/configuration.rb +67 -0
- data/lib/restfulie/client/dsl.rb +52 -0
- data/lib/restfulie/client/entry_point.rb +61 -0
- data/lib/restfulie/client/ext/http_ext.rb +22 -0
- data/lib/restfulie/client/ext/link_ext.rb +11 -0
- data/lib/restfulie/client/ext/open_search_ext.rb +26 -0
- data/lib/restfulie/client/ext.rb +3 -0
- data/lib/restfulie/client/feature/base.rb +75 -0
- data/lib/restfulie/client/feature/base_request.rb +46 -0
- data/lib/restfulie/client/feature/cache.rb +16 -0
- data/lib/restfulie/client/feature/conneg_when_unaccepted.rb +25 -0
- data/lib/restfulie/client/feature/enhance_response.rb +12 -0
- data/lib/restfulie/client/feature/fake_response.rb +13 -0
- data/lib/restfulie/client/feature/follow_request.rb +59 -0
- data/lib/restfulie/client/feature/history.rb +26 -0
- data/lib/restfulie/client/feature/history_request.rb +17 -0
- data/lib/restfulie/client/feature/open_search/pattern_matcher.rb +25 -0
- data/lib/restfulie/client/feature/open_search.rb +21 -0
- data/lib/restfulie/client/feature/rescue_exception.rb +13 -0
- data/lib/restfulie/client/feature/retry_when_unavailable.rb +25 -0
- data/lib/restfulie/client/feature/serialize_body.rb +35 -0
- data/lib/restfulie/client/feature/setup_header.rb +22 -0
- data/lib/restfulie/client/feature/throw_error_request.rb +46 -0
- data/lib/restfulie/client/feature/verb.rb +112 -0
- data/lib/restfulie/client/feature.rb +5 -0
- data/lib/restfulie/client/http/cache.rb +28 -0
- data/lib/restfulie/client/http/error.rb +77 -0
- data/lib/restfulie/client/http/link_header.rb +39 -0
- data/lib/restfulie/client/http/response_holder.rb +29 -0
- data/lib/restfulie/client/http.rb +7 -0
- data/lib/restfulie/client/master_delegator.rb +31 -0
- data/lib/restfulie/client/mikyung/concatenator.rb +18 -0
- data/lib/restfulie/client/mikyung/core.rb +71 -0
- data/lib/restfulie/client/mikyung/languages/german.rb +24 -0
- data/lib/restfulie/client/mikyung/languages/portuguese.rb +23 -0
- data/lib/restfulie/client/mikyung/languages.rb +11 -0
- data/lib/restfulie/client/mikyung/rest_process_model.rb +191 -0
- data/lib/restfulie/client/mikyung/steady_state_walker.rb +38 -0
- data/lib/restfulie/client/mikyung/then_condition.rb +39 -0
- data/lib/restfulie/client/mikyung/when_condition.rb +57 -0
- data/lib/restfulie/client/mikyung.rb +15 -0
- data/lib/restfulie/client/stack_navigator.rb +39 -0
- data/lib/restfulie/client.rb +24 -0
- data/lib/restfulie/common/error.rb +19 -0
- data/lib/restfulie/common/logger.rb +19 -0
- data/lib/restfulie/common.rb +17 -0
- data/lib/restfulie/server/action_controller/base.rb +46 -0
- data/lib/restfulie/server/action_controller/params_parser.rb +100 -0
- data/lib/restfulie/server/action_controller/patch.rb +6 -0
- data/lib/restfulie/server/action_controller/restful_responder.rb +12 -0
- data/lib/restfulie/server/action_controller/trait/cacheable.rb +94 -0
- data/lib/restfulie/server/action_controller/trait/created.rb +17 -0
- data/lib/restfulie/server/action_controller/trait/save_prior_to_create.rb +13 -0
- data/lib/restfulie/server/action_controller/trait.rb +9 -0
- data/lib/restfulie/server/action_controller.rb +11 -0
- data/lib/restfulie/server/configuration.rb +24 -0
- data/lib/restfulie/server/controller.rb +74 -0
- data/lib/restfulie/server/core_ext/array.rb +35 -0
- data/lib/restfulie/server/core_ext.rb +1 -0
- data/lib/restfulie/server/hypertemplate.rb +3 -0
- data/lib/restfulie/server.rb +26 -0
- data/lib/restfulie/version.rb +14 -0
- data/lib/restfulie.rb +34 -0
- data/restfulie-nosqlite.gemspec +39 -0
- data/script/console +8 -0
- data/site/README +1 -0
- data/site/Rakefile +10 -0
- data/site/app/controllers/application_controller.rb +11 -0
- data/site/app/controllers/java_controller.rb +53 -0
- data/site/app/controllers/javascript_controller.rb +12 -0
- data/site/app/controllers/restful_csharp_controller.rb +12 -0
- data/site/app/controllers/ruby_controller.rb +24 -0
- data/site/app/controllers/systems_controller.rb +14 -0
- data/site/app/helpers/application_helper.rb +10 -0
- data/site/app/helpers/documentation_helper.rb +2 -0
- data/site/app/views/java/features.html.erb +99 -0
- data/site/app/views/java/hypermedia.html.erb +97 -0
- data/site/app/views/java/server.html.erb +0 -0
- data/site/app/views/layouts/_blackmenu.html.erb +11 -0
- data/site/app/views/layouts/_uppermenu.html.erb +24 -0
- data/site/app/views/layouts/application.html.erb +50 -0
- data/site/app/views/layouts/java.html.erb +72 -0
- data/site/app/views/layouts/javascript.html.erb +62 -0
- data/site/app/views/layouts/restful_csharp.html.erb +81 -0
- data/site/app/views/layouts/restful_java.html.erb +87 -0
- data/site/app/views/shared/_examples.html.erb +29 -0
- data/site/app/views/shared/_negotiation.html.erb +9 -0
- data/site/app/views/shared/_simple_representation.html.erb +37 -0
- data/site/app/views/systems/features.html.erb +106 -0
- data/site/app/views/systems/index.html.erb +97 -0
- data/site/app/views/systems/support.html.erb +54 -0
- data/site/config/boot.rb +110 -0
- data/site/config/database.yml +22 -0
- data/site/config/environment.rb +41 -0
- data/site/config/environments/development.rb +17 -0
- data/site/config/environments/production.rb +28 -0
- data/site/config/environments/test.rb +28 -0
- data/site/config/initializers/backtrace_silencers.rb +7 -0
- data/site/config/initializers/inflections.rb +10 -0
- data/site/config/initializers/mime_types.rb +5 -0
- data/site/config/initializers/new_rails_defaults.rb +21 -0
- data/site/config/initializers/session_store.rb +15 -0
- data/site/config/locales/en.yml +5 -0
- data/site/config/routes.rb +56 -0
- data/site/db/seeds.rb +7 -0
- data/site/public/404.html +30 -0
- data/site/public/422.html +30 -0
- data/site/public/500.html +30 -0
- data/site/public/caelumobjects-restful-rails.pdf +0 -0
- data/site/public/docs.html +164 -0
- data/site/public/favicon.ico +0 -0
- data/site/public/images/bgBarHome-trans.png +0 -0
- data/site/public/images/bgHeader.png +0 -0
- data/site/public/images/bgSubMenu-trans.png +0 -0
- data/site/public/images/code_java_01.png +0 -0
- data/site/public/images/code_java_02.png +0 -0
- data/site/public/images/code_net_01.png +0 -0
- data/site/public/images/code_net_02.png +0 -0
- data/site/public/images/code_ruby_01.png +0 -0
- data/site/public/images/code_ruby_02.png +0 -0
- data/site/public/images/dependency.png +0 -0
- data/site/public/images/ldl-trans.png +0 -0
- data/site/public/images/leftBGBtn.png +0 -0
- data/site/public/images/logoCaelumGray-trans.png +0 -0
- data/site/public/images/negotiation.png +0 -0
- data/site/public/images/rails.png +0 -0
- data/site/public/images/restfulieSprites-trans.png +0 -0
- data/site/public/images/rightBGBtn.png +0 -0
- data/site/public/images/service.png +0 -0
- data/site/public/images/subMenuBottom-trans.png +0 -0
- data/site/public/images/subMenuTop-trans.png +0 -0
- data/site/public/javascripts/application.js +2 -0
- data/site/public/javascripts/controls.js +963 -0
- data/site/public/javascripts/dragdrop.js +973 -0
- data/site/public/javascripts/effects.js +1128 -0
- data/site/public/javascripts/prototype.js +4320 -0
- data/site/public/robots.txt +5 -0
- data/site/public/stylesheets/menu.css +98 -0
- data/site/public/stylesheets/screen.css +345 -0
- data/site/public/stylesheets/uppermenu.css +87 -0
- data/site/script/about +4 -0
- data/site/script/console +3 -0
- data/site/script/dbconsole +3 -0
- data/site/script/destroy +3 -0
- data/site/script/generate +3 -0
- data/site/script/performance/benchmarker +3 -0
- data/site/script/performance/profiler +3 -0
- data/site/script/plugin +3 -0
- data/site/script/runner +3 -0
- data/site/script/server +3 -0
- data/site/test/functional/documentation_controller_test.rb +8 -0
- data/site/test/performance/browsing_test.rb +9 -0
- data/site/test/test_helper.rb +38 -0
- data/site/test/unit/helpers/documentation_helper_test.rb +4 -0
- data/spec/integration/twitter.rb +945 -0
- data/spec/integration/twitter_spec.rb +24 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/unit/client/base_spec.rb +9 -0
- data/spec/unit/client/cache/fake_spec.rb +23 -0
- data/spec/unit/client/cache/http_ext_spec.rb +182 -0
- data/spec/unit/client/cache/restrictions_spec.rb +24 -0
- data/spec/unit/client/configuration_spec.rb +54 -0
- data/spec/unit/client/ext/open_search_spec.rb +28 -0
- data/spec/unit/client/feature/conneg_when_unaccepted_spec.rb +45 -0
- data/spec/unit/client/feature/open_search/pattern_matcher_spec.rb +21 -0
- data/spec/unit/client/feature/rescue_exception_spec.rb +27 -0
- data/spec/unit/client/feature/retry_when_unavailable_spec.rb +38 -0
- data/spec/unit/client/feature/verb_spec.rb +37 -0
- data/spec/unit/client/http/link_header_spec.rb +43 -0
- data/spec/unit/client/mikyung/concatenator_spec.rb +14 -0
- data/spec/unit/client/mikyung/rest_process_model_spec.rb +140 -0
- data/spec/unit/client/mikyung/steady_state_walker_spec.rb +39 -0
- data/spec/unit/client/mikyung/then_condition_spec.rb +38 -0
- data/spec/unit/client/mikyung/when_condition_spec.rb +59 -0
- data/spec/unit/client/mikyung_spec.rb +72 -0
- data/spec/unit/client/stack_navigator.rb +75 -0
- data/spec/unit/common/errors_spec.rb +33 -0
- data/spec/unit/restfulie_spec.rb +30 -0
- data/spec/unit/server/action_controller/trait/cacheable_spec.rb +48 -0
- data/spec/unit/server/action_controller/trait/created_spec.rb +50 -0
- data/spec/unit/server/configuration_spec.rb +36 -0
- data/spec/unit/server/core_ext/array_spec.rb +35 -0
- data/spec/unit/server/restfulie_controller_spec.rb +110 -0
- data/spec/unit/spec_helper.rb +1 -0
- data/tests/.gitignore +5 -0
- data/tests/.rspec +1 -0
- data/tests/Gemfile +42 -0
- data/tests/README +256 -0
- data/tests/Rakefile +7 -0
- data/tests/app/controllers/albums_controller.rb +10 -0
- data/tests/app/controllers/application_controller.rb +3 -0
- data/tests/app/controllers/artists_controller.rb +12 -0
- data/tests/app/controllers/cacheable_songs_controller.rb +28 -0
- data/tests/app/controllers/projects_controller.rb +13 -0
- data/tests/app/controllers/render_controller.rb +15 -0
- data/tests/app/controllers/songs_controller.rb +2 -0
- data/tests/app/helpers/albums_helper.rb +2 -0
- data/tests/app/helpers/application_helper.rb +2 -0
- data/tests/app/helpers/artists_helper.rb +2 -0
- data/tests/app/helpers/cacheable_clients_helper.rb +2 -0
- data/tests/app/helpers/projects_helper.rb +2 -0
- data/tests/app/helpers/render_helper.rb +2 -0
- data/tests/app/helpers/songs_helper.rb +2 -0
- data/tests/app/models/album.rb +4 -0
- data/tests/app/models/artist.rb +2 -0
- data/tests/app/models/song.rb +3 -0
- data/tests/app/views/albums/_member.tokamak +11 -0
- data/tests/app/views/albums/index.tokamak +26 -0
- data/tests/app/views/albums/show.tokamak +3 -0
- data/tests/app/views/artists/_form.html.erb +25 -0
- data/tests/app/views/artists/edit.html.erb +6 -0
- data/tests/app/views/artists/index.html.erb +25 -0
- data/tests/app/views/artists/new.html.erb +5 -0
- data/tests/app/views/artists/show.html.erb +15 -0
- data/tests/app/views/cacheable_clients/collection.tokamak +0 -0
- data/tests/app/views/cacheable_clients/empty.tokamak +0 -0
- data/tests/app/views/cacheable_clients/single.tokamak +0 -0
- data/tests/app/views/layouts/application.html.erb +14 -0
- data/tests/app/views/projects/index.atom.tokamak +14 -0
- data/tests/app/views/projects/new.atom.tokamak +7 -0
- data/tests/app/views/projects/new.tokamak +0 -0
- data/tests/app/views/projects/show.tokamak +7 -0
- data/tests/autotest/discover.rb +2 -0
- data/tests/config/application.rb +42 -0
- data/tests/config/boot.rb +13 -0
- data/tests/config/database.yml +22 -0
- data/tests/config/environment.rb +5 -0
- data/tests/config/environments/development.rb +22 -0
- data/tests/config/environments/production.rb +49 -0
- data/tests/config/environments/test.rb +35 -0
- data/tests/config/initializers/backtrace_silencers.rb +7 -0
- data/tests/config/initializers/inflections.rb +10 -0
- data/tests/config/initializers/mime_types.rb +5 -0
- data/tests/config/initializers/secret_token.rb +7 -0
- data/tests/config/initializers/session_store.rb +8 -0
- data/tests/config/locales/en.yml +5 -0
- data/tests/config/routes.rb +66 -0
- data/tests/config.ru +4 -0
- data/tests/db/migrate/20100817165415_create_albums.rb +15 -0
- data/tests/db/migrate/20100817165436_create_songs.rb +16 -0
- data/tests/db/migrate/20100819165238_create_artists.rb +14 -0
- data/tests/db/schema.rb +39 -0
- data/tests/db/seeds.rb +7 -0
- data/tests/lib/tasks/.gitkeep +0 -0
- data/tests/public/404.html +26 -0
- data/tests/public/422.html +26 -0
- data/tests/public/500.html +26 -0
- data/tests/public/favicon.ico +0 -0
- data/tests/public/images/rails.png +0 -0
- data/tests/public/index.html +262 -0
- data/tests/public/javascripts/application.js +2 -0
- data/tests/public/javascripts/controls.js +965 -0
- data/tests/public/javascripts/dragdrop.js +974 -0
- data/tests/public/javascripts/effects.js +1123 -0
- data/tests/public/javascripts/prototype.js +6001 -0
- data/tests/public/javascripts/rails.js +175 -0
- data/tests/public/robots.txt +5 -0
- data/tests/public/stylesheets/.gitkeep +0 -0
- data/tests/public/stylesheets/scaffold.css +56 -0
- data/tests/script/rails +6 -0
- data/tests/spec/controllers/integration/albums_controller_spec.rb +60 -0
- data/tests/spec/controllers/integration/cacheable_songs_controller_spec.rb +43 -0
- data/tests/spec/controllers/integration/controller_base_spec.rb +35 -0
- data/tests/spec/controllers/integration/created_responder_spec.rb +35 -0
- data/tests/spec/controllers/integration/params_parser_spec.rb +150 -0
- data/tests/spec/controllers/integration/projects_controller_spec.rb +30 -0
- data/tests/spec/requests/_integration_client.txt +1 -0
- data/tests/spec/requests/base_spec.rb2 +142 -0
- data/tests/spec/requests/fake_server.rb +107 -0
- data/tests/spec/requests/http/adapter_spec.rb +105 -0
- data/tests/spec/requests/http/content_type_spec.rb +88 -0
- data/tests/spec/requests/http/errors_spec.rb +130 -0
- data/tests/spec/requests/http/history_spec.rb +56 -0
- data/tests/spec/requests/http/marshal_spec.rb2 +113 -0
- data/tests/spec/requests/http/parameters_spec.rb +12 -0
- data/tests/spec/spec.opts +5 -0
- data/tests/spec/spec_helper.rb +61 -0
- data/tests/spec/support/atoms/full.rb.txt +63 -0
- data/tests/spec/support/atoms/related_songs +30 -0
- data/tests/spec/support/atoms/song_1 +11 -0
- data/tests/spec/support/atoms/song_2 +11 -0
- data/tests/spec/support/atoms/song_3 +11 -0
- data/tests/spec/support/atoms/song_4 +11 -0
- data/tests/spec/support/atoms/songs +51 -0
- data/tests/spec/support/atoms/songs_top_ten +27 -0
- data/tests/spec/support/data_helper.rb +13 -0
- data/tests/test/performance/browsing_test.rb +9 -0
- data/tests/test/test_helper.rb +13 -0
- data/tests/vendor/plugins/.gitkeep +0 -0
- metadata +657 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/* CSS Document */
|
3
|
+
|
4
|
+
/*language bar*/
|
5
|
+
#langMenu{
|
6
|
+
display:block;
|
7
|
+
width:221px;
|
8
|
+
height:auto;
|
9
|
+
position:relative;
|
10
|
+
float:right;
|
11
|
+
margin:0px;}
|
12
|
+
|
13
|
+
#langMenu li { list-style:none; }
|
14
|
+
|
15
|
+
#langMenu li, #langMenu a{ height:49px; display:block;}
|
16
|
+
|
17
|
+
#langMenu li a span{display:none;}
|
18
|
+
|
19
|
+
#engBtn{
|
20
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
21
|
+
background-repeat:no-repeat;
|
22
|
+
background-position:-346px 0px;
|
23
|
+
position:absolute;
|
24
|
+
top:0;
|
25
|
+
width:91px;
|
26
|
+
left:0px;}
|
27
|
+
|
28
|
+
a#engBtn:hover{background-position:-346px -50px;}
|
29
|
+
|
30
|
+
#ptBtn{
|
31
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
32
|
+
background-repeat:no-repeat;
|
33
|
+
background-position:-445px 0px;
|
34
|
+
position:absolute;
|
35
|
+
top:0;
|
36
|
+
width:122px;
|
37
|
+
right:0px;}
|
38
|
+
|
39
|
+
a#ptBtn:hover{background-position:-445px -50px;}
|
40
|
+
|
41
|
+
#menuWrap {
|
42
|
+
display:block;
|
43
|
+
width:100%;
|
44
|
+
height:5px;
|
45
|
+
position:relative;
|
46
|
+
overflow:hidden;
|
47
|
+
background-image:url(../images/bgHeader.png);
|
48
|
+
background-position:0px -100px;
|
49
|
+
background-repeat:repeat-x;
|
50
|
+
text-align:center;}
|
51
|
+
|
52
|
+
#menuElements{
|
53
|
+
display:block;
|
54
|
+
width:918px;
|
55
|
+
height:auto;
|
56
|
+
position:relative;
|
57
|
+
margin:0px auto;
|
58
|
+
overflow:hidden;}
|
59
|
+
|
60
|
+
#menuElements li {list-style:none;}
|
61
|
+
|
62
|
+
#menuElements li, #menuElements a{height:59px; display:block; position:relative; float:left; color:#FFF; text-decoration:none; text-align:center;}
|
63
|
+
#menuElements li a{padding-left:22px;}
|
64
|
+
#menuElements li a span{width:auto; display:block; height:auto; position:relative; padding:19px 20px 10px 0; text-transform:uppercase; font-weight:bold; float:left;}
|
65
|
+
|
66
|
+
#menuElements li a:hover{
|
67
|
+
background-image:url(../images/leftBGBtn.png);
|
68
|
+
background-position:left top;
|
69
|
+
background-repeat:no-repeat;
|
70
|
+
padding-left:22px;
|
71
|
+
font-weight:bold;}
|
72
|
+
|
73
|
+
#menuElements li a:hover span{
|
74
|
+
background-image:url(../images/rightBGBtn.png);
|
75
|
+
background-position:right top;}
|
76
|
+
|
77
|
+
#subMenu{position:absolute; left:50%; top:0px; font-size:12px; font-weight:bold; margin-left:-440px; cursor:pointer; width:880px; }
|
78
|
+
#subMenu li{display:block; float:left; padding:10px 5px;}
|
79
|
+
#subMenu li a{display:block; color:#333; text-decoration:none; text-transform:uppercase;}
|
80
|
+
#subMenu li a:hover{color:#600;}
|
81
|
+
|
82
|
+
#subMenuDoc{
|
83
|
+
/* position:fixed;*/
|
84
|
+
float: left;
|
85
|
+
left:0px; top:315px;
|
86
|
+
width:333px;
|
87
|
+
height:auto;
|
88
|
+
margin-bottom:10px;}
|
89
|
+
|
90
|
+
#positionTop{display:block; }
|
91
|
+
#positionBottom{display:block;}
|
92
|
+
|
93
|
+
#subMenuDoc ol{background-image:url(../images/bgSubMenu-trans.png); width:100%; height:100%;}
|
94
|
+
|
95
|
+
#subMenuDoc ol li {padding:10px 0px; border-bottom:1px solid #575757; font-size:14px;}
|
96
|
+
|
97
|
+
#subMenuDoc ol li a {text-decoration:none; color:#2C2C2C; font-weight:bold; display:block; width:300px; margin:0px auto;}
|
98
|
+
#subMenuDoc ol li a:hover{color:#600;}
|
@@ -0,0 +1,345 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/* CSS Document */
|
3
|
+
*{margin:0px; padding:0px; font-family:Arial, Helvetica, sans-serif;}
|
4
|
+
|
5
|
+
body{
|
6
|
+
background-color:#660000;
|
7
|
+
text-align:center;}
|
8
|
+
|
9
|
+
a{text-decoration:none;}
|
10
|
+
|
11
|
+
/*header structure*/
|
12
|
+
#headerWrap{
|
13
|
+
background-color: #ffffff;
|
14
|
+
background-position:left top;
|
15
|
+
background-repeat:repeat;
|
16
|
+
display:block;
|
17
|
+
width:100%;
|
18
|
+
height:200px;
|
19
|
+
position:relative;
|
20
|
+
overflow:hidden;}
|
21
|
+
|
22
|
+
#headerContent{
|
23
|
+
width:918px;
|
24
|
+
display:block;
|
25
|
+
height:100%;
|
26
|
+
position:relative;
|
27
|
+
margin:0px auto;
|
28
|
+
overflow:hidden;}
|
29
|
+
|
30
|
+
#logoRestfulie {
|
31
|
+
display:block;
|
32
|
+
width:336px;
|
33
|
+
height:88px;
|
34
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
35
|
+
background-position:-6px 0px;
|
36
|
+
background-repeat:no-repeat;
|
37
|
+
position:absolute;
|
38
|
+
left:0px;
|
39
|
+
top:0px;
|
40
|
+
margin-top: 80px;
|
41
|
+
}
|
42
|
+
|
43
|
+
#logoRestfulie span, #caelumObjects span {display:none;}
|
44
|
+
|
45
|
+
#caelumObjects {
|
46
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
47
|
+
background-position:-348px -151px;
|
48
|
+
background-repeat:no-repeat;
|
49
|
+
position:absolute;
|
50
|
+
right:0px;
|
51
|
+
top:20px;
|
52
|
+
width:156px;
|
53
|
+
height:62px;
|
54
|
+
display:block;
|
55
|
+
overflow:hidden;
|
56
|
+
margin-top: 80px;}
|
57
|
+
|
58
|
+
/*menus like langbar and menuelements menu.css*/
|
59
|
+
|
60
|
+
/*banner css configuration*/
|
61
|
+
#bannerWrap{
|
62
|
+
background-image:url(../images/bgHeader.png);
|
63
|
+
background-position:0 -158px;
|
64
|
+
background-repeat:repeat;
|
65
|
+
display:block;
|
66
|
+
width:100%;
|
67
|
+
height:302px;
|
68
|
+
position:relative;}
|
69
|
+
|
70
|
+
#banner{
|
71
|
+
width:918px;
|
72
|
+
height:auto;
|
73
|
+
margin:0px auto;
|
74
|
+
display:block;
|
75
|
+
height:auto;
|
76
|
+
text-align:center;}
|
77
|
+
|
78
|
+
#banner div {display:block; float:left; position:relative; height:auto; width:305px; text-align:center; margin-top:30px;}
|
79
|
+
|
80
|
+
#banner div h3{
|
81
|
+
font-size:30px;
|
82
|
+
margin-bottom:10px;
|
83
|
+
color:#fff;
|
84
|
+
display:block;
|
85
|
+
width:auto;
|
86
|
+
height:auto;
|
87
|
+
text-transform:uppercase;}
|
88
|
+
|
89
|
+
#banner div p{color:#FFF; padding-right:10px; text-transform:uppercase; font-size:13px;}
|
90
|
+
|
91
|
+
#banner div#smallBox{border-left:1px solid #FFF; border-right:1px solid #FFF;}
|
92
|
+
|
93
|
+
#banner div#hypermediaBox h3{background-image:url(../images/restfulieSprites-trans.png); background-position:0px -520px; padding-top:100px; margin-top:30px; background-repeat:no-repeat;}
|
94
|
+
#banner div#smallBox h3{background-image:url(../images/restfulieSprites-trans.png); background-position:-242px -487px; padding-top:130px; background-repeat:no-repeat;}
|
95
|
+
#banner div#simpleBox h3{background-image:url(../images/restfulieSprites-trans.png); background-position:-510px -500px; padding-top:110px; margin-top:25px; background-repeat:no-repeat;}
|
96
|
+
|
97
|
+
/*content css*/
|
98
|
+
#contentWrap{
|
99
|
+
display:block;
|
100
|
+
width:100%;
|
101
|
+
height:auto;
|
102
|
+
position:relative;
|
103
|
+
overflow:auto;
|
104
|
+
background-color:#FFF;
|
105
|
+
background-image:url(../images/bgHeader.png);
|
106
|
+
background-position:0px -461px;
|
107
|
+
background-repeat:repeat-x;}
|
108
|
+
|
109
|
+
/*css home*/
|
110
|
+
#contentHome{ width:918px; margin:0px auto; display:block; height:auto; text-align:left; position:relative;}
|
111
|
+
|
112
|
+
|
113
|
+
/*quickpretending*/
|
114
|
+
#contentHome #quickPretending { width:450px; display:block; float:left; margin-bottom:20px; margin-top:25px;}
|
115
|
+
#contentHome #moreAbout {width:100%; display:block; float:left; padding:10px 0px 30px 0px; height:auto; overflow:hidden;}
|
116
|
+
|
117
|
+
#contentHome #quickPretending h2{ color:#660000; font-size:24px; display:block; width:100%; text-transform:uppercase; margin-top:20px; margin-bottom:15px; font-weight:bold; float:left;}
|
118
|
+
#moreAbout h2{ color:#660000; font-size:24px; display:block; width:100%; text-transform:uppercase; margin-bottom:15px; font-weight:bold; float:left;}
|
119
|
+
#moreAbout p a{color:#600; font-weight:bold;}
|
120
|
+
#moreAbout p a:hover{color:#F00;}
|
121
|
+
|
122
|
+
/*restfulieBenefits*/
|
123
|
+
#contentHome #restBenefits{
|
124
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
125
|
+
background-repeat:no-repeat;
|
126
|
+
background-position:-580px 0px;
|
127
|
+
width:450px;
|
128
|
+
display:block;
|
129
|
+
float:left;
|
130
|
+
height:380px;
|
131
|
+
overflow:hidden;
|
132
|
+
position:relative;}
|
133
|
+
|
134
|
+
#restBenefits h3{
|
135
|
+
display:block;
|
136
|
+
width:auto;
|
137
|
+
height:auto;
|
138
|
+
margin:25px 0px 30px 70px;
|
139
|
+
text-transform:uppercase;
|
140
|
+
color:#FFF;}
|
141
|
+
|
142
|
+
#restBenefits ol{margin-left:15px; margin-right:15px; display:block; width:auto; height:auto;}
|
143
|
+
#restBenefits ol li{display:block; width:auto; height:auto; padding:8px 10px; list-style-type:none;}
|
144
|
+
#restBenefits ol li a{color:#600;}
|
145
|
+
#restBenefits ol li a:hover{color:#F00;}
|
146
|
+
|
147
|
+
/*video box*/
|
148
|
+
#contentHome #boxvideo {
|
149
|
+
/*background-image:url(images/restfulieSprites-trans.png);
|
150
|
+
background-repeat:no-repeat;
|
151
|
+
background-position: -7px -111px;*/
|
152
|
+
margin-top:40px;
|
153
|
+
width:415px;
|
154
|
+
height:365px;
|
155
|
+
padding-top:12px;
|
156
|
+
padding-left:12px;
|
157
|
+
float:right;}
|
158
|
+
#contentHome #boxvideo object {display:block; background-color:#0CF;}
|
159
|
+
|
160
|
+
/*twitter box*/
|
161
|
+
#contentHome #twitterBox {float:right; width:415px; display:block; margin-top:15px; margin-bottom:25px;}
|
162
|
+
#contentHome #twitterBox h3{margin-bottom:20px; text-transform:uppercase;}
|
163
|
+
#contentHome #twitterBox h3 a{font-size:18px; color:#660000; text-decoration:none;}
|
164
|
+
#contentHome #twitterBox h3 a:hover{color:#F00;}
|
165
|
+
|
166
|
+
#contentHome #twitterBox ul{list-style-type:none;}
|
167
|
+
#contentHome #twitterBox ul li {
|
168
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
169
|
+
background-position:-1008px -463px;
|
170
|
+
background-repeat:no-repeat;
|
171
|
+
padding-left:60px;
|
172
|
+
display:block;
|
173
|
+
height:70px;
|
174
|
+
float:left;
|
175
|
+
text-transform:uppercase;}
|
176
|
+
#contentHome #twitterBox ul li p {font-size:11px; color:#353535; font-weight:bold;}
|
177
|
+
#contentHome #twitterBox ul li p a{color:#333399;}
|
178
|
+
#contentHome #twitterBox ul li p span {font-weight:normal;}
|
179
|
+
|
180
|
+
/*documentacao*/
|
181
|
+
a.documentacaoBtn{background-image:url(../images/restfulieSprites-trans.png); background-repeat:no-repeat; background-position:-738px -381px; display:block; position:relative; overflow:hidden; width:326px; height:81px; margin-top:15px; margin-right:45px; float:right; cursor:move; text-align:center;}
|
182
|
+
a.documentacaoBtn span{display:block; position:relative; width:auto; height:auto; text-transform:uppercase; font-weight:bold; color:#FFF; font-size:24px; margin-top:22px;}
|
183
|
+
a.documentacaoBtn:hover span{color:#F00;}
|
184
|
+
|
185
|
+
/*css beneficios*/
|
186
|
+
#contentBeneficios{ width:918px; margin:0px auto; display:block; height:auto; text-align:left; position:relative;}
|
187
|
+
#contentBeneficios h2{ color:#600; font-size:42px; display:block; text-transform:uppercase; margin-top:40px; margin-left:20px; font-weight:bold;}
|
188
|
+
#contentBeneficios h3{ color:#747488; font-size:18px; display:block; text-transform:uppercase; font-weight:normal; margin-left:20px; margin-bottom:40px;}
|
189
|
+
|
190
|
+
.benefitsBox {
|
191
|
+
display:block;
|
192
|
+
float:left;
|
193
|
+
width:322px;
|
194
|
+
margin-bottom:20px;
|
195
|
+
margin-left:20px;
|
196
|
+
padding-bottom:10px;
|
197
|
+
padding-left:105px;
|
198
|
+
border-bottom:solid 1px #999999;
|
199
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
200
|
+
background-repeat:no-repeat;}
|
201
|
+
|
202
|
+
.benefitsBox h4{font-size:21px; color:#293049; text-transform:uppercase;}
|
203
|
+
.benefitsBox p{font-size:11px; color:#353535; text-align:justify;}
|
204
|
+
|
205
|
+
/*depoimentos*/
|
206
|
+
.depoimentoClientes { display:block; width:100%; border-bottom:solid 1px #999999; padding-bottom:10px; overflow:auto; margin-bottom:10px; padding-left:20px; }
|
207
|
+
|
208
|
+
.depoimentoClientes em{display:block; float:left; width:15%; font-weight:bold; font-size:11px;}
|
209
|
+
.depoimentoClientes em a{color:#600; text-decoration:none;}
|
210
|
+
.depoimentoClientes em a:hover{text-decoration:underline;}
|
211
|
+
.depoimentoClientes p{float:right; width:80%; display:block; font-size:12px; text-align:justify; font-family:Georgia, "Times New Roman", Times, serif;}
|
212
|
+
.depoimentoClientes p a{color:#F00;}
|
213
|
+
.depoimentoClientes p a:hover{text-decoration:underline;}
|
214
|
+
|
215
|
+
|
216
|
+
/*suporte css*/
|
217
|
+
#contentSuporte{ width:918px; margin:0px auto; display:block; height:auto; text-align:left; position:relative;}
|
218
|
+
#contentSuporte h2{ color:#600; font-size:42px; display:block; text-transform:uppercase; margin-top:40px; margin-left:20px; font-weight:bold;}
|
219
|
+
#contentSuporte h3{ color:#747488; font-size:18px; display:block; text-transform:uppercase; font-weight:normal; margin-left:20px; margin-bottom:40px;}
|
220
|
+
#contentSuporte .suporteBox{
|
221
|
+
width:292px;
|
222
|
+
display:block;
|
223
|
+
float:left;
|
224
|
+
text-align:left;
|
225
|
+
margin-bottom:40px;
|
226
|
+
margin-left:14px;}
|
227
|
+
|
228
|
+
#contentSuporte .suporteBox h4 {
|
229
|
+
display:block;
|
230
|
+
background-image:url(../images/restfulieSprites-trans.png);
|
231
|
+
background-repeat:no-repeat;
|
232
|
+
background-position:-7px -152px;
|
233
|
+
width:292px;
|
234
|
+
height:91px;
|
235
|
+
position:relative;}
|
236
|
+
|
237
|
+
#contentSuporte .suporteBox h4 span{color:#600; font-size:24px; padding-top:35px; padding-left:15px; display:block; width:auto; height:auto; overflow:hidden; font-weight:bold;}
|
238
|
+
|
239
|
+
#contentSuporte .suporteBox p{font-size:12px;}
|
240
|
+
#contentSuporte .suporteBox em{font-size:14px; font-weight:bold; display:block; width:100%; height:auto; border-bottom:solid 1px #999999; text-transform:uppercase; padding-top:25px; padding-bottom:5px; margin-bottom:5px; color:#333;}
|
241
|
+
#contentSuporte .suporteBox a{color:#600;} #contentSuporte .suporteBox a:hover{color:#F00;}
|
242
|
+
|
243
|
+
/*footer css*/
|
244
|
+
#footerWrap{
|
245
|
+
display:block;
|
246
|
+
width:100%;
|
247
|
+
position:relative;}
|
248
|
+
|
249
|
+
#footerContent{
|
250
|
+
width:918px;
|
251
|
+
display:block;
|
252
|
+
height:100px;
|
253
|
+
position:relative;
|
254
|
+
margin:10px auto;
|
255
|
+
overflow:hidden;
|
256
|
+
position:relative;}
|
257
|
+
|
258
|
+
#footerContent div.footbar{
|
259
|
+
width:918px;
|
260
|
+
height:auto;
|
261
|
+
display:block;
|
262
|
+
position:relative;
|
263
|
+
overflow:hidden;
|
264
|
+
float:left;
|
265
|
+
color:#CCC;
|
266
|
+
text-transform:uppercase;
|
267
|
+
text-align:left;
|
268
|
+
padding-top:5px;
|
269
|
+
margin-top:10px;
|
270
|
+
border-top:solid 1px #ffcccc;}
|
271
|
+
|
272
|
+
div.footbar img.logoFooter{float:right;}
|
273
|
+
div.footbar a:hover{color:#FF0; text-decoration:underline;}
|
274
|
+
div.footbar ul {display:block; float:left; margin:5px 0px 5px 20px;}
|
275
|
+
div.footbar ul li{ display:block; float:left; text-decoration:none; font-size:10px; font-weight:bold; margin:0px 2px 0px 0px;}
|
276
|
+
div.footbar ul li a{color:#FFF; text-decoration:none; font-weight:normal;}
|
277
|
+
div.footbar p{font-size:11px; padding:5px 20px; display:block; color:#ffcccc; float:left; width:685px; border-top:solid 1px #ffcccc;}
|
278
|
+
div.footbar p a{color:#ffcccc; text-decoration:none;}
|
279
|
+
|
280
|
+
#signature { background-image:url(../images/ldl-trans.png); background-repeat:no-repeat; background-position:left top; position:absolute; display:block; bottom:0px; left:10px; font-family:Georgia, "Times New Roman", Times, serif; font-size:10px; color:#FFF; padding:5px 0px 15px 30px; text-decoration:none;}
|
281
|
+
a#signature:hover{color:#C90;}
|
282
|
+
|
283
|
+
/*css documentacao*/
|
284
|
+
#contentDocumentacao{ width:100%; margin:0px auto; display:block; height:auto; text-align:left; position:relative;}
|
285
|
+
#contentDocumentacao h2{ color:#600; font-size:42px; display:block; text-transform:uppercase; margin-top:40px; margin-left:20px; font-weight:bold;}
|
286
|
+
#contentDocumentacao h3{ color:#747488; font-size:18px; display:block; text-transform:uppercase; font-weight:normal; margin-left:20px; margin-bottom:40px;}
|
287
|
+
|
288
|
+
#textoCapitulo{font-size:12px; font-weight:normal;width:auto; margin-right:10px; margin-left:360px; display:block; text-align:justify; margin-bottom:40px;}
|
289
|
+
#textoCapitulo h2 {font-size:30px; font-weight:bold; margin:0px 0px 10px 0px; padding:0px;}
|
290
|
+
#textoCapitulo h3 {font-size:18px; font-weight:bold; margin:10px 0px 0px 0px; padding:0px; color:#C00;}
|
291
|
+
#textoCapitulo pre {font-size:11px; color:#666; font-family:"Courier New", Courier, monospace; margin-bottom:10px; margin-top:10px;}
|
292
|
+
|
293
|
+
|
294
|
+
.logoFooter {
|
295
|
+
border:none;
|
296
|
+
}
|
297
|
+
|
298
|
+
|
299
|
+
#howto {
|
300
|
+
background-color: #E64040;
|
301
|
+
height: 464px;
|
302
|
+
border-bottom: 2px solid #ffffff;
|
303
|
+
width: 100%;
|
304
|
+
}
|
305
|
+
|
306
|
+
.box {
|
307
|
+
float: left;
|
308
|
+
margin-right: 16px;
|
309
|
+
}
|
310
|
+
|
311
|
+
.wrap{
|
312
|
+
width: 960px;
|
313
|
+
margin: 0 auto;
|
314
|
+
}
|
315
|
+
|
316
|
+
.language {
|
317
|
+
font-size:1em;
|
318
|
+
margin-bottom:1.5em;
|
319
|
+
margin-left:0;
|
320
|
+
margin-right:0;
|
321
|
+
margin-top:1em;
|
322
|
+
color: #f2f2f2;
|
323
|
+
font-weight: bold;
|
324
|
+
}
|
325
|
+
|
326
|
+
.side {
|
327
|
+
font-size:1em;
|
328
|
+
margin-bottom:0.5em;
|
329
|
+
margin-left:0;
|
330
|
+
margin-right:0;
|
331
|
+
margin-top:1em;
|
332
|
+
color: #f2f2f2;
|
333
|
+
text-align: left;
|
334
|
+
font-weight: bold;
|
335
|
+
}
|
336
|
+
|
337
|
+
.moto{
|
338
|
+
color:#660000;
|
339
|
+
float:left;
|
340
|
+
font-size:13px;
|
341
|
+
font-style:oblique;
|
342
|
+
left:328px;
|
343
|
+
position:relative;
|
344
|
+
top:92px;
|
345
|
+
}
|
@@ -0,0 +1,87 @@
|
|
1
|
+
.navigation {
|
2
|
+
-moz-background-clip:border;
|
3
|
+
-moz-background-origin:padding;
|
4
|
+
-moz-background-size:auto auto;
|
5
|
+
background-attachment:scroll;
|
6
|
+
background-color:transparent;
|
7
|
+
background-position:0 0;
|
8
|
+
background-repeat:repeat;
|
9
|
+
border-bottom-color:#E0E0E0;
|
10
|
+
border-bottom-style:solid;
|
11
|
+
border-bottom-width:1px;
|
12
|
+
height:45px;
|
13
|
+
}
|
14
|
+
|
15
|
+
ul#nav, #content .inner, #footer, #subcontent .inner {
|
16
|
+
margin-bottom:0;
|
17
|
+
margin-left:auto;
|
18
|
+
margin-right:auto;
|
19
|
+
margin-top:0;
|
20
|
+
padding-bottom:0;
|
21
|
+
padding-left:15px;
|
22
|
+
padding-right:15px;
|
23
|
+
padding-top:0;
|
24
|
+
width:880px;
|
25
|
+
}
|
26
|
+
|
27
|
+
ul#nav li:first-child {
|
28
|
+
margin-left:0;
|
29
|
+
}
|
30
|
+
ul#nav li {
|
31
|
+
border-top-color:#FFFFFF;
|
32
|
+
border-top-style:solid;
|
33
|
+
border-top-width:3px;
|
34
|
+
float:left;
|
35
|
+
line-height:1.2;
|
36
|
+
list-style-type:none;
|
37
|
+
margin-bottom:0;
|
38
|
+
margin-left:10px;
|
39
|
+
margin-right:0;
|
40
|
+
margin-top:0;
|
41
|
+
padding-bottom:0;
|
42
|
+
padding-left:0;
|
43
|
+
padding-right:0;
|
44
|
+
padding-top:6px;
|
45
|
+
width:130px;
|
46
|
+
}
|
47
|
+
|
48
|
+
|
49
|
+
ul#nav li:hover {
|
50
|
+
border-top-color: #660000;
|
51
|
+
|
52
|
+
}
|
53
|
+
|
54
|
+
ul#nav li h4 a {
|
55
|
+
color:#660000;
|
56
|
+
display:block;
|
57
|
+
}
|
58
|
+
a {
|
59
|
+
color:#AA0000;
|
60
|
+
font-weight:bold;
|
61
|
+
text-decoration:none;
|
62
|
+
}
|
63
|
+
a {
|
64
|
+
outline-color:-moz-use-text-color;
|
65
|
+
outline-style:none;
|
66
|
+
outline-width:medium;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
ul#nav li p {
|
71
|
+
font-size:0.7em;
|
72
|
+
}
|
73
|
+
|
74
|
+
ul#nav li {
|
75
|
+
line-height:1.2;
|
76
|
+
list-style-type:none;
|
77
|
+
}
|
78
|
+
|
79
|
+
ul#nav li:hover p a {
|
80
|
+
color: #880000;
|
81
|
+
}
|
82
|
+
|
83
|
+
ul#nav li p a {
|
84
|
+
color:#AA0000;
|
85
|
+
display:block;
|
86
|
+
font-weight:normal;
|
87
|
+
}
|
data/site/script/about
ADDED
data/site/script/console
ADDED
data/site/script/destroy
ADDED
data/site/script/plugin
ADDED
data/site/script/runner
ADDED
data/site/script/server
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
+
require 'test_help'
|
4
|
+
|
5
|
+
class ActiveSupport::TestCase
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
10
|
+
#
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
+
#
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
+
# is recommended.
|
18
|
+
#
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
22
|
+
self.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
28
|
+
# then set this back to true.
|
29
|
+
self.use_instantiated_fixtures = false
|
30
|
+
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
+
#
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
+
# -- they do not yet inherit this setting
|
35
|
+
fixtures :all
|
36
|
+
|
37
|
+
# Add more helper methods to be used by all tests here...
|
38
|
+
end
|