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,945 @@
|
|
1
|
+
module Responses
|
2
|
+
|
3
|
+
module Twitter
|
4
|
+
|
5
|
+
def self.public_timeline
|
6
|
+
return <<-ENDRESP
|
7
|
+
HTTP/1.1 200 OK
|
8
|
+
Date: Mon, 21 Jun 2010 01:25:16 GMT
|
9
|
+
Server: hi
|
10
|
+
Status: 200 OK
|
11
|
+
X-Transaction: 1277083516-85823-26819
|
12
|
+
X-RateLimit-Limit: 150
|
13
|
+
ETag: "ce834dc1485bf89cc4f62da6f1e10cb5"
|
14
|
+
Last-Modified: Mon, 21 Jun 2010 01:25:16 GMT
|
15
|
+
X-RateLimit-Remaining: 146
|
16
|
+
X-Runtime: 0.05201
|
17
|
+
Content-Type: application/xml; charset=utf-8
|
18
|
+
Content-Length: 41784
|
19
|
+
Pragma: no-cache
|
20
|
+
X-RateLimit-Class: api
|
21
|
+
X-Revision: DEV
|
22
|
+
Expires: Tue, 31 Mar 1981 05:00:00 GMT
|
23
|
+
Cache-Control: no-cache, no-store, must-revalidate, pre-check=0, post-check=0
|
24
|
+
X-RateLimit-Reset: 1277087009
|
25
|
+
Set-Cookie: k=68.204.46.87.1277083516203443; path=/; expires=Mon, 28-Jun-10 01:25:16 GMT; domain=.twitter.com
|
26
|
+
Set-Cookie: guest_id=127708351620755897; path=/; expires=Wed, 21 Jul 2010 01:25:16 GMT
|
27
|
+
Set-Cookie: _twitter_sess=BAh7CToPY3JlYXRlZF9hdGwrCC%252F9G1gpAToRdHJhbnNfcHJvbXB0MDoHaWQi%250AJTMwM2JhMzcyMmQ5YmE3NDlkNzExMTUyZGZmZmQ0NTg2IgpmbGFzaElDOidB%250AY3Rpb25Db250cm9sbGVyOjpGbGFzaDo6Rmxhc2hIYXNoewAGOgpAdXNlZHsA--91fcdba06269406241c81143671ab4c776dc505c; domain=.twitter.com; path=/
|
28
|
+
Vary: Accept-Encoding
|
29
|
+
Connection: close
|
30
|
+
|
31
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
32
|
+
<statuses type="array">
|
33
|
+
<status>
|
34
|
+
<created_at>Mon Jun 21 01:25:15 +0000 2010</created_at>
|
35
|
+
<id>16658220000</id>
|
36
|
+
<text>Nonton ts3RT @annisahppsr: @fionnaps nonton apaan mbak?</text>
|
37
|
+
<source><a href="http://ubertwitter.com" rel="nofollow">UberTwitter</a></source>
|
38
|
+
<truncated>false</truncated>
|
39
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
40
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
41
|
+
<favorited>false</favorited>
|
42
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
43
|
+
<user>
|
44
|
+
<id>41067177</id>
|
45
|
+
<name>fionna padmasari</name>
|
46
|
+
<screen_name>fionnaps</screen_name>
|
47
|
+
<location>ÜT: -6.256292,106.942055</location>
|
48
|
+
<description>ILDISM</description>
|
49
|
+
<profile_image_url>http://a1.twimg.com/profile_images/709020780/iu_3924_20663_1227123874644_1125474332_30576007_2332462_n_1__normal.jpg</profile_image_url>
|
50
|
+
<url>http://www.facebook.com/home.php?#!/profile.php?ref=profile&id=1125474332</url>
|
51
|
+
<protected>false</protected>
|
52
|
+
<followers_count>80</followers_count>
|
53
|
+
<profile_background_color>ff0a80</profile_background_color>
|
54
|
+
<profile_text_color>0ad6fa</profile_text_color>
|
55
|
+
<profile_link_color>8605ff</profile_link_color>
|
56
|
+
<profile_sidebar_fill_color>070708</profile_sidebar_fill_color>
|
57
|
+
<profile_sidebar_border_color>05fa15</profile_sidebar_border_color>
|
58
|
+
<friends_count>41</friends_count>
|
59
|
+
<created_at>Tue May 19 06:13:49 +0000 2009</created_at>
|
60
|
+
<favourites_count>1</favourites_count>
|
61
|
+
<utc_offset>-28800</utc_offset>
|
62
|
+
<time_zone>Pacific Time (US & Canada)</time_zone>
|
63
|
+
<profile_background_image_url>http://a1.twimg.com/profile_background_images/105938666/pitbull.jpg</profile_background_image_url>
|
64
|
+
<profile_background_tile>true</profile_background_tile>
|
65
|
+
<notifications></notifications>
|
66
|
+
<geo_enabled>false</geo_enabled>
|
67
|
+
<verified>false</verified>
|
68
|
+
<following></following>
|
69
|
+
<statuses_count>414</statuses_count>
|
70
|
+
<lang>en</lang>
|
71
|
+
<contributors_enabled>false</contributors_enabled>
|
72
|
+
</user>
|
73
|
+
<geo/>
|
74
|
+
<coordinates/>
|
75
|
+
<place/>
|
76
|
+
<contributors/>
|
77
|
+
</status>
|
78
|
+
<status>
|
79
|
+
<created_at>Mon Jun 21 01:25:14 +0000 2010</created_at>
|
80
|
+
<id>16658219000</id>
|
81
|
+
<text>ok im not watching #trueblood so I am gonna just watch the tweet with my name in them... spoilers are gonna get me!</text>
|
82
|
+
<source>web</source>
|
83
|
+
<truncated>false</truncated>
|
84
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
85
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
86
|
+
<favorited>false</favorited>
|
87
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
88
|
+
<user>
|
89
|
+
<id>131745554</id>
|
90
|
+
<name>Jenn</name>
|
91
|
+
<screen_name>JustHadTo</screen_name>
|
92
|
+
<location>The Emerald Coast, FL</location>
|
93
|
+
<description></description>
|
94
|
+
<profile_image_url>http://a3.twimg.com/profile_images/984825527/talitubbie_normal.jpg</profile_image_url>
|
95
|
+
<url></url>
|
96
|
+
<protected>false</protected>
|
97
|
+
<followers_count>56</followers_count>
|
98
|
+
<profile_background_color>EDECE9</profile_background_color>
|
99
|
+
<profile_text_color>634047</profile_text_color>
|
100
|
+
<profile_link_color>088253</profile_link_color>
|
101
|
+
<profile_sidebar_fill_color>E3E2DE</profile_sidebar_fill_color>
|
102
|
+
<profile_sidebar_border_color>D3D2CF</profile_sidebar_border_color>
|
103
|
+
<friends_count>67</friends_count>
|
104
|
+
<created_at>Sun Apr 11 05:50:05 +0000 2010</created_at>
|
105
|
+
<favourites_count>0</favourites_count>
|
106
|
+
<utc_offset></utc_offset>
|
107
|
+
<time_zone></time_zone>
|
108
|
+
<profile_background_image_url>http://s.twimg.com/a/1276896641/images/themes/theme3/bg.gif</profile_background_image_url>
|
109
|
+
<profile_background_tile>false</profile_background_tile>
|
110
|
+
<notifications></notifications>
|
111
|
+
<geo_enabled>false</geo_enabled>
|
112
|
+
<verified>false</verified>
|
113
|
+
<following></following>
|
114
|
+
<statuses_count>809</statuses_count>
|
115
|
+
<lang>en</lang>
|
116
|
+
<contributors_enabled>false</contributors_enabled>
|
117
|
+
</user>
|
118
|
+
<geo/>
|
119
|
+
<coordinates/>
|
120
|
+
<place/>
|
121
|
+
<contributors/>
|
122
|
+
</status>
|
123
|
+
<status>
|
124
|
+
<created_at>Mon Jun 21 01:25:11 +0000 2010</created_at>
|
125
|
+
<id>16658216000</id>
|
126
|
+
<text>Forte de atitudes e semtimentos.</text>
|
127
|
+
<source>web</source>
|
128
|
+
<truncated>false</truncated>
|
129
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
130
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
131
|
+
<favorited>false</favorited>
|
132
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
133
|
+
<user>
|
134
|
+
<id>116783960</id>
|
135
|
+
<name>Mariana</name>
|
136
|
+
<screen_name>webermari</screen_name>
|
137
|
+
<location></location>
|
138
|
+
<description></description>
|
139
|
+
<profile_image_url>http://a3.twimg.com/profile_images/981895359/C_pia_de_S1010038_normal.JPG</profile_image_url>
|
140
|
+
<url>http://http://www.orkut.com.br/Main#Profile?uid=4814812491622073847&rl=t</url>
|
141
|
+
<protected>false</protected>
|
142
|
+
<followers_count>66</followers_count>
|
143
|
+
<profile_background_color>C0DEED</profile_background_color>
|
144
|
+
<profile_text_color>e03eb5</profile_text_color>
|
145
|
+
<profile_link_color>0e0b1a</profile_link_color>
|
146
|
+
<profile_sidebar_fill_color>dca7e8</profile_sidebar_fill_color>
|
147
|
+
<profile_sidebar_border_color>db95cb</profile_sidebar_border_color>
|
148
|
+
<friends_count>209</friends_count>
|
149
|
+
<created_at>Tue Feb 23 15:23:17 +0000 2010</created_at>
|
150
|
+
<favourites_count>3</favourites_count>
|
151
|
+
<utc_offset>-14400</utc_offset>
|
152
|
+
<time_zone>Santiago</time_zone>
|
153
|
+
<profile_background_image_url>http://a1.twimg.com/profile_background_images/94480122/capa8.jpg</profile_background_image_url>
|
154
|
+
<profile_background_tile>true</profile_background_tile>
|
155
|
+
<notifications></notifications>
|
156
|
+
<geo_enabled>false</geo_enabled>
|
157
|
+
<verified>false</verified>
|
158
|
+
<following></following>
|
159
|
+
<statuses_count>2274</statuses_count>
|
160
|
+
<lang>es</lang>
|
161
|
+
<contributors_enabled>false</contributors_enabled>
|
162
|
+
</user>
|
163
|
+
<geo/>
|
164
|
+
<coordinates/>
|
165
|
+
<place/>
|
166
|
+
<contributors/>
|
167
|
+
</status>
|
168
|
+
<status>
|
169
|
+
<created_at>Mon Jun 21 01:25:06 +0000 2010</created_at>
|
170
|
+
<id>16658211000</id>
|
171
|
+
<text>おはよー。これから市民病院いってきまー</text>
|
172
|
+
<source><a href="http://twtr.jp" rel="nofollow">Keitai Web</a></source>
|
173
|
+
<truncated>false</truncated>
|
174
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
175
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
176
|
+
<favorited>false</favorited>
|
177
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
178
|
+
<user>
|
179
|
+
<id>30213977</id>
|
180
|
+
<name>みんみん</name>
|
181
|
+
<screen_name>hiromin1412</screen_name>
|
182
|
+
<location>静岡県伊東市</location>
|
183
|
+
<description></description>
|
184
|
+
<profile_image_url>http://a3.twimg.com/profile_images/882097897/1316642405_49_normal.jpg</profile_image_url>
|
185
|
+
<url></url>
|
186
|
+
<protected>false</protected>
|
187
|
+
<followers_count>3</followers_count>
|
188
|
+
<profile_background_color>0099B9</profile_background_color>
|
189
|
+
<profile_text_color>3C3940</profile_text_color>
|
190
|
+
<profile_link_color>0099B9</profile_link_color>
|
191
|
+
<profile_sidebar_fill_color>95E8EC</profile_sidebar_fill_color>
|
192
|
+
<profile_sidebar_border_color>5ED4DC</profile_sidebar_border_color>
|
193
|
+
<friends_count>3</friends_count>
|
194
|
+
<created_at>Fri Apr 10 13:21:57 +0000 2009</created_at>
|
195
|
+
<favourites_count>0</favourites_count>
|
196
|
+
<utc_offset>-36000</utc_offset>
|
197
|
+
<time_zone>Hawaii</time_zone>
|
198
|
+
<profile_background_image_url>http://s.twimg.com/a/1276197224/images/themes/theme4/bg.gif</profile_background_image_url>
|
199
|
+
<profile_background_tile>false</profile_background_tile>
|
200
|
+
<notifications>false</notifications>
|
201
|
+
<geo_enabled>false</geo_enabled>
|
202
|
+
<verified>false</verified>
|
203
|
+
<following>false</following>
|
204
|
+
<statuses_count>24</statuses_count>
|
205
|
+
<lang>ja</lang>
|
206
|
+
<contributors_enabled>false</contributors_enabled>
|
207
|
+
</user>
|
208
|
+
<geo/>
|
209
|
+
<coordinates/>
|
210
|
+
<place/>
|
211
|
+
<contributors/>
|
212
|
+
</status>
|
213
|
+
<status>
|
214
|
+
<created_at>Mon Jun 21 01:25:00 +0000 2010</created_at>
|
215
|
+
<id>16658205000</id>
|
216
|
+
<text>Lu khianatin gw nab (?) RT @Nabilahe: @ziareginae menghianatiku huhuhu</text>
|
217
|
+
<source><a href="http://ubertwitter.com" rel="nofollow">UberTwitter</a></source>
|
218
|
+
<truncated>false</truncated>
|
219
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
220
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
221
|
+
<favorited>false</favorited>
|
222
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
223
|
+
<user>
|
224
|
+
<id>94275877</id>
|
225
|
+
<name>Gisgiskaa</name>
|
226
|
+
<screen_name>gisgiskaa</screen_name>
|
227
|
+
<location>ÜT: -6.274543,106.83991</location>
|
228
|
+
<description>I really like Gabriel Stevent Damanik,Mario Stevano Aditya Halling,Rangga Raditya. And i am a Gabriel.FC , RISE , Ranggadit :)</description>
|
229
|
+
<profile_image_url>http://a3.twimg.com/profile_images/1009230929/123493297_normal.jpg</profile_image_url>
|
230
|
+
<url>http://null</url>
|
231
|
+
<protected>false</protected>
|
232
|
+
<followers_count>557</followers_count>
|
233
|
+
<profile_background_color>000000</profile_background_color>
|
234
|
+
<profile_text_color>000000</profile_text_color>
|
235
|
+
<profile_link_color>0000ff</profile_link_color>
|
236
|
+
<profile_sidebar_fill_color>7DA1B9</profile_sidebar_fill_color>
|
237
|
+
<profile_sidebar_border_color>000000</profile_sidebar_border_color>
|
238
|
+
<friends_count>274</friends_count>
|
239
|
+
<created_at>Thu Dec 03 07:03:44 +0000 2009</created_at>
|
240
|
+
<favourites_count>4</favourites_count>
|
241
|
+
<utc_offset>-28800</utc_offset>
|
242
|
+
<time_zone>Pacific Time (US & Canada)</time_zone>
|
243
|
+
<profile_background_image_url>http://a3.twimg.com/profile_background_images/70468251/18580_1255310634379_1577984499_638806_5706558_n.jpg</profile_background_image_url>
|
244
|
+
<profile_background_tile>true</profile_background_tile>
|
245
|
+
<notifications></notifications>
|
246
|
+
<geo_enabled>false</geo_enabled>
|
247
|
+
<verified>false</verified>
|
248
|
+
<following></following>
|
249
|
+
<statuses_count>15197</statuses_count>
|
250
|
+
<lang>en</lang>
|
251
|
+
<contributors_enabled>false</contributors_enabled>
|
252
|
+
</user>
|
253
|
+
<geo/>
|
254
|
+
<coordinates/>
|
255
|
+
<place/>
|
256
|
+
<contributors/>
|
257
|
+
</status>
|
258
|
+
<status>
|
259
|
+
<created_at>Mon Jun 21 01:24:59 +0000 2010</created_at>
|
260
|
+
<id>16658204000</id>
|
261
|
+
<text>Dah lumayan nih, baru dpt 80%,, smg bs 100%,, aminnn..</text>
|
262
|
+
<source><a href="http://www.tweets60.com" rel="nofollow">Tweets60</a></source>
|
263
|
+
<truncated>false</truncated>
|
264
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
265
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
266
|
+
<favorited>false</favorited>
|
267
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
268
|
+
<user>
|
269
|
+
<id>141885066</id>
|
270
|
+
<name>Ramadhan Sururi Noer</name>
|
271
|
+
<screen_name>Soeroeri</screen_name>
|
272
|
+
<location>Jakarta</location>
|
273
|
+
<description>Bersahaja.</description>
|
274
|
+
<profile_image_url>http://a3.twimg.com/profile_images/885683911/ME_normal.jpg</profile_image_url>
|
275
|
+
<url></url>
|
276
|
+
<protected>false</protected>
|
277
|
+
<followers_count>31</followers_count>
|
278
|
+
<profile_background_color>9ae4e8</profile_background_color>
|
279
|
+
<profile_text_color>000000</profile_text_color>
|
280
|
+
<profile_link_color>0000ff</profile_link_color>
|
281
|
+
<profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
|
282
|
+
<profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
|
283
|
+
<friends_count>51</friends_count>
|
284
|
+
<created_at>Sun May 09 09:13:46 +0000 2010</created_at>
|
285
|
+
<favourites_count>0</favourites_count>
|
286
|
+
<utc_offset></utc_offset>
|
287
|
+
<time_zone></time_zone>
|
288
|
+
<profile_background_image_url>http://s.twimg.com/a/1276654401/images/themes/theme1/bg.png</profile_background_image_url>
|
289
|
+
<profile_background_tile>false</profile_background_tile>
|
290
|
+
<notifications>false</notifications>
|
291
|
+
<geo_enabled>false</geo_enabled>
|
292
|
+
<verified>false</verified>
|
293
|
+
<following>false</following>
|
294
|
+
<statuses_count>245</statuses_count>
|
295
|
+
<lang>en</lang>
|
296
|
+
<contributors_enabled>false</contributors_enabled>
|
297
|
+
</user>
|
298
|
+
<geo/>
|
299
|
+
<coordinates/>
|
300
|
+
<place/>
|
301
|
+
<contributors/>
|
302
|
+
</status>
|
303
|
+
<status>
|
304
|
+
<created_at>Mon Jun 21 01:24:55 +0000 2010</created_at>
|
305
|
+
<id>16658200000</id>
|
306
|
+
<text>eu já acho que no próximo jogo todo mundo vem aqui em casa HSAUHSUAH, vamo deixar a minha mãe doida? HSAHSUH, parei</text>
|
307
|
+
<source>web</source>
|
308
|
+
<truncated>false</truncated>
|
309
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
310
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
311
|
+
<favorited>false</favorited>
|
312
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
313
|
+
<user>
|
314
|
+
<id>62184241</id>
|
315
|
+
<name>carool</name>
|
316
|
+
<screen_name>Caroolseluque</screen_name>
|
317
|
+
<location></location>
|
318
|
+
<description></description>
|
319
|
+
<profile_image_url>http://a1.twimg.com/profile_images/900575974/P010310_23.23_normal.jpg</profile_image_url>
|
320
|
+
<url></url>
|
321
|
+
<protected>false</protected>
|
322
|
+
<followers_count>181</followers_count>
|
323
|
+
<profile_background_color>642D8B</profile_background_color>
|
324
|
+
<profile_text_color>3D1957</profile_text_color>
|
325
|
+
<profile_link_color>f21818</profile_link_color>
|
326
|
+
<profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
|
327
|
+
<profile_sidebar_border_color>65B0DA</profile_sidebar_border_color>
|
328
|
+
<friends_count>101</friends_count>
|
329
|
+
<created_at>Sun Aug 02 03:18:16 +0000 2009</created_at>
|
330
|
+
<favourites_count>6</favourites_count>
|
331
|
+
<utc_offset>-14400</utc_offset>
|
332
|
+
<time_zone>Santiago</time_zone>
|
333
|
+
<profile_background_image_url>http://a1.twimg.com/profile_background_images/106141062/eeeeeu.jpg</profile_background_image_url>
|
334
|
+
<profile_background_tile>true</profile_background_tile>
|
335
|
+
<notifications>false</notifications>
|
336
|
+
<geo_enabled>false</geo_enabled>
|
337
|
+
<verified>false</verified>
|
338
|
+
<following>false</following>
|
339
|
+
<statuses_count>4626</statuses_count>
|
340
|
+
<lang>en</lang>
|
341
|
+
<contributors_enabled>false</contributors_enabled>
|
342
|
+
</user>
|
343
|
+
<geo/>
|
344
|
+
<coordinates/>
|
345
|
+
<place/>
|
346
|
+
<contributors/>
|
347
|
+
</status>
|
348
|
+
<status>
|
349
|
+
<created_at>Mon Jun 21 01:24:53 +0000 2010</created_at>
|
350
|
+
<id>16658198000</id>
|
351
|
+
<text>喉が痛いのがまだ続いてたら耳鼻科行くかなーと思ってたけど、中途半端にマシになってる。すっきり治ってるわけでもないのが微妙。どうしたもんかなぁ。</text>
|
352
|
+
<source><a href="http://www.misuzilla.org/dist/net/twitterircgateway/" rel="nofollow">TwitterIrcGateway</a></source>
|
353
|
+
<truncated>false</truncated>
|
354
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
355
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
356
|
+
<favorited>false</favorited>
|
357
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
358
|
+
<user>
|
359
|
+
<id>14625349</id>
|
360
|
+
<name>liar</name>
|
361
|
+
<screen_name>liar_l</screen_name>
|
362
|
+
<location></location>
|
363
|
+
<description>好きな出版社は東京創元社、好きなレーベルはハヤカワFT。</description>
|
364
|
+
<profile_image_url>http://a3.twimg.com/profile_images/61904907/n_normal.jpg</profile_image_url>
|
365
|
+
<url>http://d.hatena.ne.jp/ltail/</url>
|
366
|
+
<protected>false</protected>
|
367
|
+
<followers_count>88</followers_count>
|
368
|
+
<profile_background_color>EBEBEB</profile_background_color>
|
369
|
+
<profile_text_color>333333</profile_text_color>
|
370
|
+
<profile_link_color>990000</profile_link_color>
|
371
|
+
<profile_sidebar_fill_color>F3F3F3</profile_sidebar_fill_color>
|
372
|
+
<profile_sidebar_border_color>DFDFDF</profile_sidebar_border_color>
|
373
|
+
<friends_count>97</friends_count>
|
374
|
+
<created_at>Fri May 02 12:57:15 +0000 2008</created_at>
|
375
|
+
<favourites_count>10</favourites_count>
|
376
|
+
<utc_offset>32400</utc_offset>
|
377
|
+
<time_zone>Osaka</time_zone>
|
378
|
+
<profile_background_image_url>http://s.twimg.com/a/1276197224/images/themes/theme7/bg.gif</profile_background_image_url>
|
379
|
+
<profile_background_tile>false</profile_background_tile>
|
380
|
+
<notifications></notifications>
|
381
|
+
<geo_enabled>false</geo_enabled>
|
382
|
+
<verified>false</verified>
|
383
|
+
<following></following>
|
384
|
+
<statuses_count>2273</statuses_count>
|
385
|
+
<lang>ja</lang>
|
386
|
+
<contributors_enabled>false</contributors_enabled>
|
387
|
+
</user>
|
388
|
+
<geo/>
|
389
|
+
<coordinates/>
|
390
|
+
<place/>
|
391
|
+
<contributors/>
|
392
|
+
</status>
|
393
|
+
<status>
|
394
|
+
<created_at>Mon Jun 21 01:24:51 +0000 2010</created_at>
|
395
|
+
<id>16658196000</id>
|
396
|
+
<text>今日も平和だ http://yfrog.com/5br4mej</text>
|
397
|
+
<source><a href="http://itunes.apple.com/app/twitter/id333903271?mt=8" rel="nofollow">Twitter for iPhone</a></source>
|
398
|
+
<truncated>false</truncated>
|
399
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
400
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
401
|
+
<favorited>false</favorited>
|
402
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
403
|
+
<user>
|
404
|
+
<id>146722267</id>
|
405
|
+
<name>rumi yamazaki</name>
|
406
|
+
<screen_name>yama_jr</screen_name>
|
407
|
+
<location>saitama</location>
|
408
|
+
<description></description>
|
409
|
+
<profile_image_url>http://a1.twimg.com/profile_images/920410832/2010-04_193_normal.jpg</profile_image_url>
|
410
|
+
<url></url>
|
411
|
+
<protected>false</protected>
|
412
|
+
<followers_count>4</followers_count>
|
413
|
+
<profile_background_color>9ae4e8</profile_background_color>
|
414
|
+
<profile_text_color>000000</profile_text_color>
|
415
|
+
<profile_link_color>0000ff</profile_link_color>
|
416
|
+
<profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
|
417
|
+
<profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
|
418
|
+
<friends_count>7</friends_count>
|
419
|
+
<created_at>Sat May 22 04:59:13 +0000 2010</created_at>
|
420
|
+
<favourites_count>0</favourites_count>
|
421
|
+
<utc_offset>32400</utc_offset>
|
422
|
+
<time_zone>Tokyo</time_zone>
|
423
|
+
<profile_background_image_url>http://s.twimg.com/a/1276563079/images/themes/theme1/bg.png</profile_background_image_url>
|
424
|
+
<profile_background_tile>false</profile_background_tile>
|
425
|
+
<notifications>false</notifications>
|
426
|
+
<geo_enabled>false</geo_enabled>
|
427
|
+
<verified>false</verified>
|
428
|
+
<following>false</following>
|
429
|
+
<statuses_count>75</statuses_count>
|
430
|
+
<lang>en</lang>
|
431
|
+
<contributors_enabled>false</contributors_enabled>
|
432
|
+
</user>
|
433
|
+
<geo/>
|
434
|
+
<coordinates/>
|
435
|
+
<place/>
|
436
|
+
<contributors/>
|
437
|
+
</status>
|
438
|
+
<status>
|
439
|
+
<created_at>Mon Jun 21 01:24:36 +0000 2010</created_at>
|
440
|
+
<id>16658182000</id>
|
441
|
+
<text>"Que formosa aparência tem a falsidade." (William Shakespeare)</text>
|
442
|
+
<source>web</source>
|
443
|
+
<truncated>false</truncated>
|
444
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
445
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
446
|
+
<favorited>false</favorited>
|
447
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
448
|
+
<user>
|
449
|
+
<id>124305808</id>
|
450
|
+
<name>Daniel Soares</name>
|
451
|
+
<screen_name>deniel_havok</screen_name>
|
452
|
+
<location>Brazil</location>
|
453
|
+
<description>Take it slow
|
454
|
+
Take it easy on me
|
455
|
+
Shed some light
|
456
|
+
Shed some light on things</description>
|
457
|
+
<profile_image_url>http://a3.twimg.com/profile_images/761030279/14-03-10_0150_normal.jpg</profile_image_url>
|
458
|
+
<url>http://www.formspring.me/DenielHavok</url>
|
459
|
+
<protected>false</protected>
|
460
|
+
<followers_count>218</followers_count>
|
461
|
+
<profile_background_color>1c191a</profile_background_color>
|
462
|
+
<profile_text_color>666666</profile_text_color>
|
463
|
+
<profile_link_color>2FC2EF</profile_link_color>
|
464
|
+
<profile_sidebar_fill_color>252429</profile_sidebar_fill_color>
|
465
|
+
<profile_sidebar_border_color>181A1E</profile_sidebar_border_color>
|
466
|
+
<friends_count>450</friends_count>
|
467
|
+
<created_at>Thu Mar 18 23:50:21 +0000 2010</created_at>
|
468
|
+
<favourites_count>0</favourites_count>
|
469
|
+
<utc_offset>-10800</utc_offset>
|
470
|
+
<time_zone>Brasilia</time_zone>
|
471
|
+
<profile_background_image_url>http://a3.twimg.com/profile_background_images/104730329/desenhos-animados-faculdade-5.jpg</profile_background_image_url>
|
472
|
+
<profile_background_tile>true</profile_background_tile>
|
473
|
+
<notifications></notifications>
|
474
|
+
<geo_enabled>false</geo_enabled>
|
475
|
+
<verified>false</verified>
|
476
|
+
<following></following>
|
477
|
+
<statuses_count>972</statuses_count>
|
478
|
+
<lang>en</lang>
|
479
|
+
<contributors_enabled>false</contributors_enabled>
|
480
|
+
</user>
|
481
|
+
<geo/>
|
482
|
+
<coordinates/>
|
483
|
+
<place/>
|
484
|
+
<contributors/>
|
485
|
+
</status>
|
486
|
+
<status>
|
487
|
+
<created_at>Mon Jun 21 01:24:33 +0000 2010</created_at>
|
488
|
+
<id>16658179000</id>
|
489
|
+
<text>たこにゃん、目がきらきらや。</text>
|
490
|
+
<source><a href="http://movatwitter.jp/" rel="nofollow">movatwitter</a></source>
|
491
|
+
<truncated>false</truncated>
|
492
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
493
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
494
|
+
<favorited>false</favorited>
|
495
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
496
|
+
<user>
|
497
|
+
<id>114217112</id>
|
498
|
+
<name>中村 義将</name>
|
499
|
+
<screen_name>kurkurkurpar</screen_name>
|
500
|
+
<location>府中</location>
|
501
|
+
<description>新社会人1年目。
|
502
|
+
がむしゃらに頑張っております!
|
503
|
+
趣味は毎回新しいことを始めること。要するにあんまり長続きしません。
|
504
|
+
今はダイエット実行中!応援して下さい。</description>
|
505
|
+
<profile_image_url>http://a1.twimg.com/profile_images/696691248/yoshi_normal.jpg</profile_image_url>
|
506
|
+
<url>http://ameblo.jp/kurpar/</url>
|
507
|
+
<protected>false</protected>
|
508
|
+
<followers_count>15</followers_count>
|
509
|
+
<profile_background_color>642D8B</profile_background_color>
|
510
|
+
<profile_text_color>3D1957</profile_text_color>
|
511
|
+
<profile_link_color>FF0000</profile_link_color>
|
512
|
+
<profile_sidebar_fill_color>7AC3EE</profile_sidebar_fill_color>
|
513
|
+
<profile_sidebar_border_color>65B0DA</profile_sidebar_border_color>
|
514
|
+
<friends_count>34</friends_count>
|
515
|
+
<created_at>Sun Feb 14 15:35:52 +0000 2010</created_at>
|
516
|
+
<favourites_count>0</favourites_count>
|
517
|
+
<utc_offset>32400</utc_offset>
|
518
|
+
<time_zone>Tokyo</time_zone>
|
519
|
+
<profile_background_image_url>http://s.twimg.com/a/1276654401/images/themes/theme10/bg.gif</profile_background_image_url>
|
520
|
+
<profile_background_tile>true</profile_background_tile>
|
521
|
+
<notifications>false</notifications>
|
522
|
+
<geo_enabled>false</geo_enabled>
|
523
|
+
<verified>false</verified>
|
524
|
+
<following>false</following>
|
525
|
+
<statuses_count>154</statuses_count>
|
526
|
+
<lang>ja</lang>
|
527
|
+
<contributors_enabled>false</contributors_enabled>
|
528
|
+
</user>
|
529
|
+
<geo/>
|
530
|
+
<coordinates/>
|
531
|
+
<place/>
|
532
|
+
<contributors/>
|
533
|
+
</status>
|
534
|
+
<status>
|
535
|
+
<created_at>Mon Jun 21 01:24:28 +0000 2010</created_at>
|
536
|
+
<id>16658174000</id>
|
537
|
+
<text>Modern apartment, Lidingö SEL1: With balcony and nice garden http://bit.ly/adVNLU</text>
|
538
|
+
<source><a href="http://twitterfeed.com" rel="nofollow">twitterfeed</a></source>
|
539
|
+
<truncated>false</truncated>
|
540
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
541
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
542
|
+
<favorited>false</favorited>
|
543
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
544
|
+
<user>
|
545
|
+
<id>88232754</id>
|
546
|
+
<name>Kråke Lithander</name>
|
547
|
+
<screen_name>daysinsweden</screen_name>
|
548
|
+
<location>Stockholm, Sweden</location>
|
549
|
+
<description>Founder of Days in Sweden, cookbook writer and food lover</description>
|
550
|
+
<profile_image_url>http://s.twimg.com/a/1276896641/images/default_profile_1_normal.png</profile_image_url>
|
551
|
+
<url>http://www.daysinsweden.com</url>
|
552
|
+
<protected>false</protected>
|
553
|
+
<followers_count>6</followers_count>
|
554
|
+
<profile_background_color>B2DFDA</profile_background_color>
|
555
|
+
<profile_text_color>333333</profile_text_color>
|
556
|
+
<profile_link_color>93A644</profile_link_color>
|
557
|
+
<profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
|
558
|
+
<profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
|
559
|
+
<friends_count>0</friends_count>
|
560
|
+
<created_at>Sat Nov 07 17:45:57 +0000 2009</created_at>
|
561
|
+
<favourites_count>0</favourites_count>
|
562
|
+
<utc_offset>3600</utc_offset>
|
563
|
+
<time_zone>Stockholm</time_zone>
|
564
|
+
<profile_background_image_url>http://s.twimg.com/a/1276896641/images/themes/theme13/bg.gif</profile_background_image_url>
|
565
|
+
<profile_background_tile>false</profile_background_tile>
|
566
|
+
<notifications></notifications>
|
567
|
+
<geo_enabled>false</geo_enabled>
|
568
|
+
<verified>false</verified>
|
569
|
+
<following></following>
|
570
|
+
<statuses_count>58</statuses_count>
|
571
|
+
<lang>en</lang>
|
572
|
+
<contributors_enabled>false</contributors_enabled>
|
573
|
+
</user>
|
574
|
+
<geo/>
|
575
|
+
<coordinates/>
|
576
|
+
<place/>
|
577
|
+
<contributors/>
|
578
|
+
</status>
|
579
|
+
<status>
|
580
|
+
<created_at>Mon Jun 21 01:24:26 +0000 2010</created_at>
|
581
|
+
<id>16658172000</id>
|
582
|
+
<text>RT @dhitals: RT @viansatrio: YANG MAU DI FOLLOW RT !</text>
|
583
|
+
<source><a href="http://m.tuitwit.com" rel="nofollow">Tuitwit</a></source>
|
584
|
+
<truncated>false</truncated>
|
585
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
586
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
587
|
+
<favorited>false</favorited>
|
588
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
589
|
+
<user>
|
590
|
+
<id>137223260</id>
|
591
|
+
<name>Suci Wulan Lestary</name>
|
592
|
+
<screen_name>suciwl</screen_name>
|
593
|
+
<location>Jl. Dr Sumarno, JKT 13940, ID</location>
|
594
|
+
<description>I'm addicted to music. I loves RAN and STORIA and Lenka. Let's be a friend! Click follow to know me! :)</description>
|
595
|
+
<profile_image_url>http://a1.twimg.com/profile_images/995459430/mypics3792_normal.jpg</profile_image_url>
|
596
|
+
<url>http://formspring.me/suchii</url>
|
597
|
+
<protected>false</protected>
|
598
|
+
<followers_count>202</followers_count>
|
599
|
+
<profile_background_color>B2DFDA</profile_background_color>
|
600
|
+
<profile_text_color>333333</profile_text_color>
|
601
|
+
<profile_link_color>93A644</profile_link_color>
|
602
|
+
<profile_sidebar_fill_color>ffffff</profile_sidebar_fill_color>
|
603
|
+
<profile_sidebar_border_color>eeeeee</profile_sidebar_border_color>
|
604
|
+
<friends_count>118</friends_count>
|
605
|
+
<created_at>Mon Apr 26 04:46:21 +0000 2010</created_at>
|
606
|
+
<favourites_count>6</favourites_count>
|
607
|
+
<utc_offset>-28800</utc_offset>
|
608
|
+
<time_zone>Pacific Time (US & Canada)</time_zone>
|
609
|
+
<profile_background_image_url>http://s.twimg.com/a/1276896641/images/themes/theme13/bg.gif</profile_background_image_url>
|
610
|
+
<profile_background_tile>false</profile_background_tile>
|
611
|
+
<notifications></notifications>
|
612
|
+
<geo_enabled>true</geo_enabled>
|
613
|
+
<verified>false</verified>
|
614
|
+
<following></following>
|
615
|
+
<statuses_count>1535</statuses_count>
|
616
|
+
<lang>en</lang>
|
617
|
+
<contributors_enabled>false</contributors_enabled>
|
618
|
+
</user>
|
619
|
+
<geo/>
|
620
|
+
<coordinates/>
|
621
|
+
<place/>
|
622
|
+
<contributors/>
|
623
|
+
</status>
|
624
|
+
<status>
|
625
|
+
<created_at>Mon Jun 21 01:24:22 +0000 2010</created_at>
|
626
|
+
<id>16658168000</id>
|
627
|
+
<text>O Fantástico agora detonou o Dunga! 'incompatibilidade dos xingamentos do tecnico com o cargo que ele ocupa'...</text>
|
628
|
+
<source>web</source>
|
629
|
+
<truncated>false</truncated>
|
630
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
631
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
632
|
+
<favorited>false</favorited>
|
633
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
634
|
+
<user>
|
635
|
+
<id>59176486</id>
|
636
|
+
<name>TyciCronembergerVaz</name>
|
637
|
+
<screen_name>tycianevaz</screen_name>
|
638
|
+
<location>Teresina - São Paulo</location>
|
639
|
+
<description>Jornalista, mestre em Comunicação Social e esposa do Lucas...</description>
|
640
|
+
<profile_image_url>http://a1.twimg.com/profile_images/850881172/tw_normal.jpg</profile_image_url>
|
641
|
+
<url></url>
|
642
|
+
<protected>false</protected>
|
643
|
+
<followers_count>293</followers_count>
|
644
|
+
<profile_background_color>FF6699</profile_background_color>
|
645
|
+
<profile_text_color>362720</profile_text_color>
|
646
|
+
<profile_link_color>B40B43</profile_link_color>
|
647
|
+
<profile_sidebar_fill_color>E5507E</profile_sidebar_fill_color>
|
648
|
+
<profile_sidebar_border_color>CC3366</profile_sidebar_border_color>
|
649
|
+
<friends_count>234</friends_count>
|
650
|
+
<created_at>Wed Jul 22 16:48:14 +0000 2009</created_at>
|
651
|
+
<favourites_count>1</favourites_count>
|
652
|
+
<utc_offset>-10800</utc_offset>
|
653
|
+
<time_zone>Brasilia</time_zone>
|
654
|
+
<profile_background_image_url>http://s.twimg.com/a/1276654401/images/themes/theme11/bg.gif</profile_background_image_url>
|
655
|
+
<profile_background_tile>true</profile_background_tile>
|
656
|
+
<notifications></notifications>
|
657
|
+
<geo_enabled>false</geo_enabled>
|
658
|
+
<verified>false</verified>
|
659
|
+
<following></following>
|
660
|
+
<statuses_count>1139</statuses_count>
|
661
|
+
<lang>en</lang>
|
662
|
+
<contributors_enabled>false</contributors_enabled>
|
663
|
+
</user>
|
664
|
+
<geo/>
|
665
|
+
<coordinates/>
|
666
|
+
<place/>
|
667
|
+
<contributors/>
|
668
|
+
</status>
|
669
|
+
<status>
|
670
|
+
<created_at>Mon Jun 21 01:24:20 +0000 2010</created_at>
|
671
|
+
<id>16658166000</id>
|
672
|
+
<text>Hey fellow followers If you want MORE followers check out this site: http://is.gd/cBGbG</text>
|
673
|
+
<source><a href="http://apiwiki.twitter.com/" rel="nofollow">API</a></source>
|
674
|
+
<truncated>false</truncated>
|
675
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
676
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
677
|
+
<favorited>false</favorited>
|
678
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
679
|
+
<user>
|
680
|
+
<id>90276995</id>
|
681
|
+
<name>Dave Hastings</name>
|
682
|
+
<screen_name>babymatrix24</screen_name>
|
683
|
+
<location></location>
|
684
|
+
<description></description>
|
685
|
+
<profile_image_url>http://a1.twimg.com/profile_images/554177094/Untitled_normal.jpg</profile_image_url>
|
686
|
+
<url></url>
|
687
|
+
<protected>false</protected>
|
688
|
+
<followers_count>23</followers_count>
|
689
|
+
<profile_background_color>022330</profile_background_color>
|
690
|
+
<profile_text_color>333333</profile_text_color>
|
691
|
+
<profile_link_color>0084B4</profile_link_color>
|
692
|
+
<profile_sidebar_fill_color>C0DFEC</profile_sidebar_fill_color>
|
693
|
+
<profile_sidebar_border_color>a8c7f7</profile_sidebar_border_color>
|
694
|
+
<friends_count>66</friends_count>
|
695
|
+
<created_at>Sun Nov 15 23:49:10 +0000 2009</created_at>
|
696
|
+
<favourites_count>1</favourites_count>
|
697
|
+
<utc_offset></utc_offset>
|
698
|
+
<time_zone></time_zone>
|
699
|
+
<profile_background_image_url>http://a1.twimg.com/profile_background_images/56428090/1969camaro3.jpg</profile_background_image_url>
|
700
|
+
<profile_background_tile>true</profile_background_tile>
|
701
|
+
<notifications>false</notifications>
|
702
|
+
<geo_enabled>false</geo_enabled>
|
703
|
+
<verified>false</verified>
|
704
|
+
<following>false</following>
|
705
|
+
<statuses_count>302</statuses_count>
|
706
|
+
<lang>en</lang>
|
707
|
+
<contributors_enabled>false</contributors_enabled>
|
708
|
+
</user>
|
709
|
+
<geo/>
|
710
|
+
<coordinates/>
|
711
|
+
<place/>
|
712
|
+
<contributors/>
|
713
|
+
</status>
|
714
|
+
<status>
|
715
|
+
<created_at>Mon Jun 21 01:24:16 +0000 2010</created_at>
|
716
|
+
<id>16658162000</id>
|
717
|
+
<text>国立極地研究所で南極・北極科学館オープン & 一般公開 - 中の人なので AC 曰く、 国立極地研究所が 2010 年 7 月 24 日 (土) の「南極・北極科学館」の開館に併せ.. → http://am6.jp/9mZzNd</text>
|
718
|
+
<source><a href="http://feedtweet.am6.jp/" rel="nofollow">☞ feedtweet.jp ☜</a></source>
|
719
|
+
<truncated>false</truncated>
|
720
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
721
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
722
|
+
<favorited>false</favorited>
|
723
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
724
|
+
<user>
|
725
|
+
<id>131736559</id>
|
726
|
+
<name>Matzubotsree</name>
|
727
|
+
<screen_name>matzubotsree</screen_name>
|
728
|
+
<location></location>
|
729
|
+
<description></description>
|
730
|
+
<profile_image_url>http://s.twimg.com/a/1276896641/images/default_profile_3_normal.png</profile_image_url>
|
731
|
+
<url></url>
|
732
|
+
<protected>false</protected>
|
733
|
+
<followers_count>4</followers_count>
|
734
|
+
<profile_background_color>9ae4e8</profile_background_color>
|
735
|
+
<profile_text_color>000000</profile_text_color>
|
736
|
+
<profile_link_color>0000ff</profile_link_color>
|
737
|
+
<profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
|
738
|
+
<profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
|
739
|
+
<friends_count>12</friends_count>
|
740
|
+
<created_at>Sun Apr 11 05:05:41 +0000 2010</created_at>
|
741
|
+
<favourites_count>0</favourites_count>
|
742
|
+
<utc_offset></utc_offset>
|
743
|
+
<time_zone></time_zone>
|
744
|
+
<profile_background_image_url>http://s.twimg.com/a/1276896641/images/themes/theme1/bg.png</profile_background_image_url>
|
745
|
+
<profile_background_tile>false</profile_background_tile>
|
746
|
+
<notifications></notifications>
|
747
|
+
<geo_enabled>false</geo_enabled>
|
748
|
+
<verified>false</verified>
|
749
|
+
<following></following>
|
750
|
+
<statuses_count>507</statuses_count>
|
751
|
+
<lang>ja</lang>
|
752
|
+
<contributors_enabled>false</contributors_enabled>
|
753
|
+
</user>
|
754
|
+
<geo/>
|
755
|
+
<coordinates/>
|
756
|
+
<place/>
|
757
|
+
<contributors/>
|
758
|
+
</status>
|
759
|
+
<status>
|
760
|
+
<created_at>Mon Jun 21 01:24:14 +0000 2010</created_at>
|
761
|
+
<id>16658160000</id>
|
762
|
+
<text>Update: Latest Designer Handbag Auctions http://designerfashionhandbag.com/designer-handbags/latest-designer-handbag-auctions-483/</text>
|
763
|
+
<source><a href="http://alexking.org/projects/wordpress" rel="nofollow">Twitter Tools</a></source>
|
764
|
+
<truncated>false</truncated>
|
765
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
766
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
767
|
+
<favorited>false</favorited>
|
768
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
769
|
+
<user>
|
770
|
+
<id>18464059</id>
|
771
|
+
<name>Jennifer Wolf</name>
|
772
|
+
<screen_name>HandbagInfo</screen_name>
|
773
|
+
<location>NYC</location>
|
774
|
+
<description>Your Online Source for Designer Handbags, Designer Purses and Designer Totes</description>
|
775
|
+
<profile_image_url>http://a1.twimg.com/profile_images/521435946/978-2008_normal.jpg</profile_image_url>
|
776
|
+
<url>http://purseshandbagstotes.com</url>
|
777
|
+
<protected>false</protected>
|
778
|
+
<followers_count>550</followers_count>
|
779
|
+
<profile_background_color>C0DEED</profile_background_color>
|
780
|
+
<profile_text_color>333333</profile_text_color>
|
781
|
+
<profile_link_color>0084B4</profile_link_color>
|
782
|
+
<profile_sidebar_fill_color>ffedf7</profile_sidebar_fill_color>
|
783
|
+
<profile_sidebar_border_color>C0DEED</profile_sidebar_border_color>
|
784
|
+
<friends_count>608</friends_count>
|
785
|
+
<created_at>Tue Dec 30 00:10:12 +0000 2008</created_at>
|
786
|
+
<favourites_count>0</favourites_count>
|
787
|
+
<utc_offset>-18000</utc_offset>
|
788
|
+
<time_zone>Eastern Time (US & Canada)</time_zone>
|
789
|
+
<profile_background_image_url>http://a3.twimg.com/profile_background_images/53174897/handbags.jpg</profile_background_image_url>
|
790
|
+
<profile_background_tile>true</profile_background_tile>
|
791
|
+
<notifications></notifications>
|
792
|
+
<geo_enabled>false</geo_enabled>
|
793
|
+
<verified>false</verified>
|
794
|
+
<following></following>
|
795
|
+
<statuses_count>5200</statuses_count>
|
796
|
+
<lang>en</lang>
|
797
|
+
<contributors_enabled>false</contributors_enabled>
|
798
|
+
</user>
|
799
|
+
<geo/>
|
800
|
+
<coordinates/>
|
801
|
+
<place/>
|
802
|
+
<contributors/>
|
803
|
+
</status>
|
804
|
+
<status>
|
805
|
+
<created_at>Mon Jun 21 01:24:13 +0000 2010</created_at>
|
806
|
+
<id>16658159000</id>
|
807
|
+
<text>Steelcase Creates &quot;Harder Working Spaces&quot; At NeoCon 2010 http://LNK.by/eNPF</text>
|
808
|
+
<source><a href="http://apiwiki.twitter.com/" rel="nofollow">API</a></source>
|
809
|
+
<truncated>false</truncated>
|
810
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
811
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
812
|
+
<favorited>false</favorited>
|
813
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
814
|
+
<user>
|
815
|
+
<id>47705961</id>
|
816
|
+
<name>Howard Gengerke</name>
|
817
|
+
<screen_name>HowGQ</screen_name>
|
818
|
+
<location>Denver, Colorado</location>
|
819
|
+
<description>I am a pilot, real estate investor and I love to have fun!!</description>
|
820
|
+
<profile_image_url>http://s.twimg.com/a/1276654401/images/default_profile_2_normal.png</profile_image_url>
|
821
|
+
<url>http://www.networkerlink.com</url>
|
822
|
+
<protected>false</protected>
|
823
|
+
<followers_count>545</followers_count>
|
824
|
+
<profile_background_color>9ae4e8</profile_background_color>
|
825
|
+
<profile_text_color>000000</profile_text_color>
|
826
|
+
<profile_link_color>0000ff</profile_link_color>
|
827
|
+
<profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
|
828
|
+
<profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
|
829
|
+
<friends_count>456</friends_count>
|
830
|
+
<created_at>Tue Jun 16 18:46:09 +0000 2009</created_at>
|
831
|
+
<favourites_count>0</favourites_count>
|
832
|
+
<utc_offset>-25200</utc_offset>
|
833
|
+
<time_zone>Mountain Time (US & Canada)</time_zone>
|
834
|
+
<profile_background_image_url>http://s.twimg.com/a/1276654401/images/themes/theme1/bg.png</profile_background_image_url>
|
835
|
+
<profile_background_tile>false</profile_background_tile>
|
836
|
+
<notifications>false</notifications>
|
837
|
+
<geo_enabled>false</geo_enabled>
|
838
|
+
<verified>false</verified>
|
839
|
+
<following>false</following>
|
840
|
+
<statuses_count>6475</statuses_count>
|
841
|
+
<lang>en</lang>
|
842
|
+
<contributors_enabled>false</contributors_enabled>
|
843
|
+
</user>
|
844
|
+
<geo/>
|
845
|
+
<coordinates/>
|
846
|
+
<place/>
|
847
|
+
<contributors/>
|
848
|
+
</status>
|
849
|
+
<status>
|
850
|
+
<created_at>Mon Jun 21 01:24:11 +0000 2010</created_at>
|
851
|
+
<id>16658157000</id>
|
852
|
+
<text>10 games that shaped the Lakers' season - Los Angeles Times http://is.gd/cWZSd</text>
|
853
|
+
<source><a href="http://easytweets.com" rel="nofollow">EasyTweets</a></source>
|
854
|
+
<truncated>false</truncated>
|
855
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
856
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
857
|
+
<favorited>false</favorited>
|
858
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
859
|
+
<user>
|
860
|
+
<id>2085081</id>
|
861
|
+
<name>Phoenix Suns</name>
|
862
|
+
<screen_name>Suns</screen_name>
|
863
|
+
<location>phoenix, az</location>
|
864
|
+
<description>Phoenix Suns, Suns, NBA, Basketball. This is an independent twitter account by fans, for fans. We have no official affiliation at all. </description>
|
865
|
+
<profile_image_url>http://a1.twimg.com/profile_images/66589274/pho2_normal.jpg</profile_image_url>
|
866
|
+
<url>http://www.vyous.com/sports/nba/phoenix-suns </url>
|
867
|
+
<protected>false</protected>
|
868
|
+
<followers_count>2285</followers_count>
|
869
|
+
<profile_background_color>929AA0</profile_background_color>
|
870
|
+
<profile_text_color>000000</profile_text_color>
|
871
|
+
<profile_link_color>0000ff</profile_link_color>
|
872
|
+
<profile_sidebar_fill_color>F1F5DF</profile_sidebar_fill_color>
|
873
|
+
<profile_sidebar_border_color>555555</profile_sidebar_border_color>
|
874
|
+
<friends_count>0</friends_count>
|
875
|
+
<created_at>Sat Mar 24 05:53:08 +0000 2007</created_at>
|
876
|
+
<favourites_count>0</favourites_count>
|
877
|
+
<utc_offset>-18000</utc_offset>
|
878
|
+
<time_zone>Eastern Time (US & Canada)</time_zone>
|
879
|
+
<profile_background_image_url>http://a3.twimg.com/profile_background_images/3516993/phoenixsuns.jpg</profile_background_image_url>
|
880
|
+
<profile_background_tile>false</profile_background_tile>
|
881
|
+
<notifications>false</notifications>
|
882
|
+
<geo_enabled>false</geo_enabled>
|
883
|
+
<verified>false</verified>
|
884
|
+
<following>true</following>
|
885
|
+
<statuses_count>6015</statuses_count>
|
886
|
+
<lang>en</lang>
|
887
|
+
<contributors_enabled>false</contributors_enabled>
|
888
|
+
</user>
|
889
|
+
<geo/>
|
890
|
+
<coordinates/>
|
891
|
+
<place/>
|
892
|
+
<contributors/>
|
893
|
+
</status>
|
894
|
+
<status>
|
895
|
+
<created_at>Mon Jun 21 01:24:10 +0000 2010</created_at>
|
896
|
+
<id>16658156000</id>
|
897
|
+
<text>아~~~~~~~~~~~~~~~~~~이폰 사고싶다~.~ 노키아폰 공짜행사했을때 구입했는데 정말 후회되요 ご..ご</text>
|
898
|
+
<source><a href="http://mobileways.de/gravity" rel="nofollow">Gravity</a></source>
|
899
|
+
<truncated>false</truncated>
|
900
|
+
<in_reply_to_status_id></in_reply_to_status_id>
|
901
|
+
<in_reply_to_user_id></in_reply_to_user_id>
|
902
|
+
<favorited>false</favorited>
|
903
|
+
<in_reply_to_screen_name></in_reply_to_screen_name>
|
904
|
+
<user>
|
905
|
+
<id>138910836</id>
|
906
|
+
<name>성창현</name>
|
907
|
+
<screen_name>kxtcsung</screen_name>
|
908
|
+
<location>36.7136033,126.5450626</location>
|
909
|
+
<description>한국 이겨라~!~!~!@#$$%^^&&</description>
|
910
|
+
<profile_image_url>http://a3.twimg.com/profile_images/995120787/63444935744388750_normal.jpg</profile_image_url>
|
911
|
+
<url></url>
|
912
|
+
<protected>false</protected>
|
913
|
+
<followers_count>171</followers_count>
|
914
|
+
<profile_background_color>9ae4e8</profile_background_color>
|
915
|
+
<profile_text_color>000000</profile_text_color>
|
916
|
+
<profile_link_color>0000ff</profile_link_color>
|
917
|
+
<profile_sidebar_fill_color>e0ff92</profile_sidebar_fill_color>
|
918
|
+
<profile_sidebar_border_color>87bc44</profile_sidebar_border_color>
|
919
|
+
<friends_count>310</friends_count>
|
920
|
+
<created_at>Sat May 01 00:31:04 +0000 2010</created_at>
|
921
|
+
<favourites_count>0</favourites_count>
|
922
|
+
<utc_offset>32400</utc_offset>
|
923
|
+
<time_zone>Seoul</time_zone>
|
924
|
+
<profile_background_image_url>http://s.twimg.com/a/1276896641/images/themes/theme1/bg.png</profile_background_image_url>
|
925
|
+
<profile_background_tile>false</profile_background_tile>
|
926
|
+
<notifications></notifications>
|
927
|
+
<geo_enabled>false</geo_enabled>
|
928
|
+
<verified>false</verified>
|
929
|
+
<following></following>
|
930
|
+
<statuses_count>61</statuses_count>
|
931
|
+
<lang>en</lang>
|
932
|
+
<contributors_enabled>false</contributors_enabled>
|
933
|
+
</user>
|
934
|
+
<geo/>
|
935
|
+
<coordinates/>
|
936
|
+
<place/>
|
937
|
+
<contributors/>
|
938
|
+
</status>
|
939
|
+
</statuses>
|
940
|
+
ENDRESP
|
941
|
+
end
|
942
|
+
|
943
|
+
end
|
944
|
+
|
945
|
+
end
|