restfulie-nosqlite 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (516) hide show
  1. data/.gitignore +20 -0
  2. data/.gitmodules +3 -0
  3. data/.rspec +2 -0
  4. data/Gemfile +22 -0
  5. data/LICENSE +17 -0
  6. data/README.textile +93 -0
  7. data/Rakefile +119 -0
  8. data/full-examples/.gitignore +4 -0
  9. data/full-examples/README.textile +1 -0
  10. data/full-examples/mikemaze/README.textile +6 -0
  11. data/full-examples/mikemaze/maze_basic.rb +37 -0
  12. data/full-examples/mikemaze/maze_solver_spec.rb +108 -0
  13. data/full-examples/rest_from_scratch/part_1/.gitignore +4 -0
  14. data/full-examples/rest_from_scratch/part_1/.rspec +1 -0
  15. data/full-examples/rest_from_scratch/part_1/Gemfile +33 -0
  16. data/full-examples/rest_from_scratch/part_1/Gemfile.lock +101 -0
  17. data/full-examples/rest_from_scratch/part_1/README +256 -0
  18. data/full-examples/rest_from_scratch/part_1/Rakefile +7 -0
  19. data/full-examples/rest_from_scratch/part_1/app/controllers/application_controller.rb +3 -0
  20. data/full-examples/rest_from_scratch/part_1/app/controllers/items_controller.rb +20 -0
  21. data/full-examples/rest_from_scratch/part_1/app/helpers/application_helper.rb +2 -0
  22. data/full-examples/rest_from_scratch/part_1/app/helpers/items_helper.rb +2 -0
  23. data/full-examples/rest_from_scratch/part_1/app/models/item.rb +2 -0
  24. data/full-examples/rest_from_scratch/part_1/app/views/items/_form.html.erb +25 -0
  25. data/full-examples/rest_from_scratch/part_1/app/views/items/edit.html.erb +6 -0
  26. data/full-examples/rest_from_scratch/part_1/app/views/items/index.html.erb +25 -0
  27. data/full-examples/rest_from_scratch/part_1/app/views/items/new.html.erb +5 -0
  28. data/full-examples/rest_from_scratch/part_1/app/views/items/show.html.erb +15 -0
  29. data/full-examples/rest_from_scratch/part_1/app/views/layouts/application.html.erb +14 -0
  30. data/full-examples/rest_from_scratch/part_1/autotest/discover.rb +1 -0
  31. data/full-examples/rest_from_scratch/part_1/config/application.rb +42 -0
  32. data/full-examples/rest_from_scratch/part_1/config/boot.rb +13 -0
  33. data/full-examples/rest_from_scratch/part_1/config/database.yml +22 -0
  34. data/full-examples/rest_from_scratch/part_1/config/environment.rb +5 -0
  35. data/full-examples/rest_from_scratch/part_1/config/environments/development.rb +26 -0
  36. data/full-examples/rest_from_scratch/part_1/config/environments/production.rb +49 -0
  37. data/full-examples/rest_from_scratch/part_1/config/environments/test.rb +35 -0
  38. data/full-examples/rest_from_scratch/part_1/config/initializers/backtrace_silencers.rb +7 -0
  39. data/full-examples/rest_from_scratch/part_1/config/initializers/inflections.rb +10 -0
  40. data/full-examples/rest_from_scratch/part_1/config/initializers/mime_types.rb +5 -0
  41. data/full-examples/rest_from_scratch/part_1/config/initializers/secret_token.rb +7 -0
  42. data/full-examples/rest_from_scratch/part_1/config/initializers/session_store.rb +8 -0
  43. data/full-examples/rest_from_scratch/part_1/config/locales/en.yml +5 -0
  44. data/full-examples/rest_from_scratch/part_1/config/routes.rb +60 -0
  45. data/full-examples/rest_from_scratch/part_1/config.ru +4 -0
  46. data/full-examples/rest_from_scratch/part_1/db/migrate/20100830171258_create_items.rb +14 -0
  47. data/full-examples/rest_from_scratch/part_1/db/schema.rb +22 -0
  48. data/full-examples/rest_from_scratch/part_1/db/seeds.rb +7 -0
  49. data/full-examples/rest_from_scratch/part_1/lib/tasks/.gitkeep +0 -0
  50. data/full-examples/rest_from_scratch/part_1/public/404.html +26 -0
  51. data/full-examples/rest_from_scratch/part_1/public/422.html +26 -0
  52. data/full-examples/rest_from_scratch/part_1/public/500.html +26 -0
  53. data/full-examples/rest_from_scratch/part_1/public/favicon.ico +0 -0
  54. data/full-examples/rest_from_scratch/part_1/public/images/rails.png +0 -0
  55. data/full-examples/rest_from_scratch/part_1/public/index.html +239 -0
  56. data/full-examples/rest_from_scratch/part_1/public/javascripts/application.js +2 -0
  57. data/full-examples/rest_from_scratch/part_1/public/javascripts/controls.js +965 -0
  58. data/full-examples/rest_from_scratch/part_1/public/javascripts/dragdrop.js +974 -0
  59. data/full-examples/rest_from_scratch/part_1/public/javascripts/effects.js +1123 -0
  60. data/full-examples/rest_from_scratch/part_1/public/javascripts/prototype.js +6001 -0
  61. data/full-examples/rest_from_scratch/part_1/public/javascripts/rails.js +175 -0
  62. data/full-examples/rest_from_scratch/part_1/public/robots.txt +5 -0
  63. data/full-examples/rest_from_scratch/part_1/public/stylesheets/.gitkeep +0 -0
  64. data/full-examples/rest_from_scratch/part_1/public/stylesheets/scaffold.css +56 -0
  65. data/full-examples/rest_from_scratch/part_1/script/rails +6 -0
  66. data/full-examples/rest_from_scratch/part_1/spec/items_spec.rb +31 -0
  67. data/full-examples/rest_from_scratch/part_1/spec/spec_helper.rb +27 -0
  68. data/full-examples/rest_from_scratch/part_1/test/fixtures/items.yml +9 -0
  69. data/full-examples/rest_from_scratch/part_1/test/functional/items_controller_test.rb +49 -0
  70. data/full-examples/rest_from_scratch/part_1/test/performance/browsing_test.rb +9 -0
  71. data/full-examples/rest_from_scratch/part_1/test/test_helper.rb +13 -0
  72. data/full-examples/rest_from_scratch/part_1/test/unit/helpers/items_helper_test.rb +4 -0
  73. data/full-examples/rest_from_scratch/part_1/test/unit/item_test.rb +8 -0
  74. data/full-examples/rest_from_scratch/part_1/vendor/plugins/.gitkeep +0 -0
  75. data/full-examples/rest_from_scratch/part_2/.gitignore +4 -0
  76. data/full-examples/rest_from_scratch/part_2/.rspec +1 -0
  77. data/full-examples/rest_from_scratch/part_2/Gemfile +34 -0
  78. data/full-examples/rest_from_scratch/part_2/Gemfile.lock +101 -0
  79. data/full-examples/rest_from_scratch/part_2/README +256 -0
  80. data/full-examples/rest_from_scratch/part_2/Rakefile +7 -0
  81. data/full-examples/rest_from_scratch/part_2/app/controllers/application_controller.rb +3 -0
  82. data/full-examples/rest_from_scratch/part_2/app/controllers/baskets_controller.rb +25 -0
  83. data/full-examples/rest_from_scratch/part_2/app/controllers/items_controller.rb +20 -0
  84. data/full-examples/rest_from_scratch/part_2/app/controllers/payments_controller.rb +17 -0
  85. data/full-examples/rest_from_scratch/part_2/app/helpers/application_helper.rb +2 -0
  86. data/full-examples/rest_from_scratch/part_2/app/helpers/baskets_helper.rb +2 -0
  87. data/full-examples/rest_from_scratch/part_2/app/helpers/items_helper.rb +2 -0
  88. data/full-examples/rest_from_scratch/part_2/app/helpers/payments_helper.rb +2 -0
  89. data/full-examples/rest_from_scratch/part_2/app/models/basket.rb +11 -0
  90. data/full-examples/rest_from_scratch/part_2/app/models/item.rb +2 -0
  91. data/full-examples/rest_from_scratch/part_2/app/models/payment.rb +3 -0
  92. data/full-examples/rest_from_scratch/part_2/app/views/baskets/show.tokamak +9 -0
  93. data/full-examples/rest_from_scratch/part_2/app/views/items/_show.tokamak +6 -0
  94. data/full-examples/rest_from_scratch/part_2/app/views/items/index.tokamak +14 -0
  95. data/full-examples/rest_from_scratch/part_2/app/views/layouts/application.html.erb +14 -0
  96. data/full-examples/rest_from_scratch/part_2/autotest/discover.rb +1 -0
  97. data/full-examples/rest_from_scratch/part_2/config/application.rb +42 -0
  98. data/full-examples/rest_from_scratch/part_2/config/boot.rb +13 -0
  99. data/full-examples/rest_from_scratch/part_2/config/database.yml +22 -0
  100. data/full-examples/rest_from_scratch/part_2/config/environment.rb +5 -0
  101. data/full-examples/rest_from_scratch/part_2/config/environments/development.rb +26 -0
  102. data/full-examples/rest_from_scratch/part_2/config/environments/production.rb +49 -0
  103. data/full-examples/rest_from_scratch/part_2/config/environments/test.rb +35 -0
  104. data/full-examples/rest_from_scratch/part_2/config/initializers/backtrace_silencers.rb +7 -0
  105. data/full-examples/rest_from_scratch/part_2/config/initializers/inflections.rb +10 -0
  106. data/full-examples/rest_from_scratch/part_2/config/initializers/mime_types.rb +5 -0
  107. data/full-examples/rest_from_scratch/part_2/config/initializers/secret_token.rb +7 -0
  108. data/full-examples/rest_from_scratch/part_2/config/initializers/session_store.rb +8 -0
  109. data/full-examples/rest_from_scratch/part_2/config/locales/en.yml +5 -0
  110. data/full-examples/rest_from_scratch/part_2/config/routes.rb +65 -0
  111. data/full-examples/rest_from_scratch/part_2/config.ru +4 -0
  112. data/full-examples/rest_from_scratch/part_2/db/migrate/20100830171258_create_items.rb +16 -0
  113. data/full-examples/rest_from_scratch/part_2/db/migrate/20100830180139_create_baskets.rb +12 -0
  114. data/full-examples/rest_from_scratch/part_2/db/migrate/20100830180203_create_payments.rb +16 -0
  115. data/full-examples/rest_from_scratch/part_2/db/migrate/20100830185456_connect_baskets_to_items.rb +13 -0
  116. data/full-examples/rest_from_scratch/part_2/db/schema.rb +43 -0
  117. data/full-examples/rest_from_scratch/part_2/db/seeds.rb +7 -0
  118. data/full-examples/rest_from_scratch/part_2/lib/tasks/.gitkeep +0 -0
  119. data/full-examples/rest_from_scratch/part_2/public/404.html +26 -0
  120. data/full-examples/rest_from_scratch/part_2/public/422.html +26 -0
  121. data/full-examples/rest_from_scratch/part_2/public/500.html +26 -0
  122. data/full-examples/rest_from_scratch/part_2/public/favicon.ico +0 -0
  123. data/full-examples/rest_from_scratch/part_2/public/images/rails.png +0 -0
  124. data/full-examples/rest_from_scratch/part_2/public/index.html +239 -0
  125. data/full-examples/rest_from_scratch/part_2/public/javascripts/application.js +2 -0
  126. data/full-examples/rest_from_scratch/part_2/public/javascripts/controls.js +965 -0
  127. data/full-examples/rest_from_scratch/part_2/public/javascripts/dragdrop.js +974 -0
  128. data/full-examples/rest_from_scratch/part_2/public/javascripts/effects.js +1123 -0
  129. data/full-examples/rest_from_scratch/part_2/public/javascripts/prototype.js +6001 -0
  130. data/full-examples/rest_from_scratch/part_2/public/javascripts/rails.js +175 -0
  131. data/full-examples/rest_from_scratch/part_2/public/robots.txt +5 -0
  132. data/full-examples/rest_from_scratch/part_2/public/stylesheets/.gitkeep +0 -0
  133. data/full-examples/rest_from_scratch/part_2/public/stylesheets/scaffold.css +56 -0
  134. data/full-examples/rest_from_scratch/part_2/script/rails +6 -0
  135. data/full-examples/rest_from_scratch/part_2/spec/full_cycle_spec.rb +31 -0
  136. data/full-examples/rest_from_scratch/part_2/spec/items_spec.rb +31 -0
  137. data/full-examples/rest_from_scratch/part_2/spec/spec_helper.rb +27 -0
  138. data/full-examples/rest_from_scratch/part_2/test/fixtures/items.yml +9 -0
  139. data/full-examples/rest_from_scratch/part_2/test/functional/items_controller_test.rb +49 -0
  140. data/full-examples/rest_from_scratch/part_2/test/performance/browsing_test.rb +9 -0
  141. data/full-examples/rest_from_scratch/part_2/test/test_helper.rb +13 -0
  142. data/full-examples/rest_from_scratch/part_2/test/unit/helpers/items_helper_test.rb +4 -0
  143. data/full-examples/rest_from_scratch/part_2/test/unit/item_test.rb +8 -0
  144. data/full-examples/rest_from_scratch/part_2/vendor/plugins/.gitkeep +0 -0
  145. data/full-examples/rest_from_scratch/part_3/.gitignore +4 -0
  146. data/full-examples/rest_from_scratch/part_3/.rspec +1 -0
  147. data/full-examples/rest_from_scratch/part_3/Gemfile +33 -0
  148. data/full-examples/rest_from_scratch/part_3/Gemfile.lock +101 -0
  149. data/full-examples/rest_from_scratch/part_3/README +256 -0
  150. data/full-examples/rest_from_scratch/part_3/Rakefile +7 -0
  151. data/full-examples/rest_from_scratch/part_3/app/controllers/application_controller.rb +3 -0
  152. data/full-examples/rest_from_scratch/part_3/app/controllers/baskets_controller.rb +34 -0
  153. data/full-examples/rest_from_scratch/part_3/app/controllers/items_controller.rb +20 -0
  154. data/full-examples/rest_from_scratch/part_3/app/controllers/payments_controller.rb +17 -0
  155. data/full-examples/rest_from_scratch/part_3/app/helpers/application_helper.rb +2 -0
  156. data/full-examples/rest_from_scratch/part_3/app/helpers/baskets_helper.rb +2 -0
  157. data/full-examples/rest_from_scratch/part_3/app/helpers/items_helper.rb +2 -0
  158. data/full-examples/rest_from_scratch/part_3/app/helpers/payments_helper.rb +2 -0
  159. data/full-examples/rest_from_scratch/part_3/app/models/basket.rb +11 -0
  160. data/full-examples/rest_from_scratch/part_3/app/models/item.rb +2 -0
  161. data/full-examples/rest_from_scratch/part_3/app/models/payment.rb +3 -0
  162. data/full-examples/rest_from_scratch/part_3/app/views/baskets/show.tokamak +9 -0
  163. data/full-examples/rest_from_scratch/part_3/app/views/items/_show.tokamak +6 -0
  164. data/full-examples/rest_from_scratch/part_3/app/views/items/index.tokamak +14 -0
  165. data/full-examples/rest_from_scratch/part_3/app/views/layouts/application.html.erb +14 -0
  166. data/full-examples/rest_from_scratch/part_3/autotest/discover.rb +1 -0
  167. data/full-examples/rest_from_scratch/part_3/config/application.rb +42 -0
  168. data/full-examples/rest_from_scratch/part_3/config/boot.rb +13 -0
  169. data/full-examples/rest_from_scratch/part_3/config/database.yml +22 -0
  170. data/full-examples/rest_from_scratch/part_3/config/environment.rb +5 -0
  171. data/full-examples/rest_from_scratch/part_3/config/environments/development.rb +26 -0
  172. data/full-examples/rest_from_scratch/part_3/config/environments/production.rb +49 -0
  173. data/full-examples/rest_from_scratch/part_3/config/environments/test.rb +35 -0
  174. data/full-examples/rest_from_scratch/part_3/config/initializers/backtrace_silencers.rb +7 -0
  175. data/full-examples/rest_from_scratch/part_3/config/initializers/inflections.rb +10 -0
  176. data/full-examples/rest_from_scratch/part_3/config/initializers/mime_types.rb +5 -0
  177. data/full-examples/rest_from_scratch/part_3/config/initializers/secret_token.rb +7 -0
  178. data/full-examples/rest_from_scratch/part_3/config/initializers/session_store.rb +8 -0
  179. data/full-examples/rest_from_scratch/part_3/config/locales/en.yml +5 -0
  180. data/full-examples/rest_from_scratch/part_3/config/routes.rb +67 -0
  181. data/full-examples/rest_from_scratch/part_3/config.ru +4 -0
  182. data/full-examples/rest_from_scratch/part_3/db/migrate/20100830171258_create_items.rb +16 -0
  183. data/full-examples/rest_from_scratch/part_3/db/migrate/20100830180139_create_baskets.rb +12 -0
  184. data/full-examples/rest_from_scratch/part_3/db/migrate/20100830180203_create_payments.rb +16 -0
  185. data/full-examples/rest_from_scratch/part_3/db/migrate/20100830185456_connect_baskets_to_items.rb +13 -0
  186. data/full-examples/rest_from_scratch/part_3/db/schema.rb +43 -0
  187. data/full-examples/rest_from_scratch/part_3/db/seeds.rb +7 -0
  188. data/full-examples/rest_from_scratch/part_3/lib/tasks/.gitkeep +0 -0
  189. data/full-examples/rest_from_scratch/part_3/public/404.html +26 -0
  190. data/full-examples/rest_from_scratch/part_3/public/422.html +26 -0
  191. data/full-examples/rest_from_scratch/part_3/public/500.html +26 -0
  192. data/full-examples/rest_from_scratch/part_3/public/favicon.ico +0 -0
  193. data/full-examples/rest_from_scratch/part_3/public/images/rails.png +0 -0
  194. data/full-examples/rest_from_scratch/part_3/public/index.html +239 -0
  195. data/full-examples/rest_from_scratch/part_3/public/javascripts/application.js +2 -0
  196. data/full-examples/rest_from_scratch/part_3/public/javascripts/controls.js +965 -0
  197. data/full-examples/rest_from_scratch/part_3/public/javascripts/dragdrop.js +974 -0
  198. data/full-examples/rest_from_scratch/part_3/public/javascripts/effects.js +1123 -0
  199. data/full-examples/rest_from_scratch/part_3/public/javascripts/prototype.js +6001 -0
  200. data/full-examples/rest_from_scratch/part_3/public/javascripts/rails.js +175 -0
  201. data/full-examples/rest_from_scratch/part_3/public/robots.txt +5 -0
  202. data/full-examples/rest_from_scratch/part_3/public/stylesheets/.gitkeep +0 -0
  203. data/full-examples/rest_from_scratch/part_3/public/stylesheets/scaffold.css +56 -0
  204. data/full-examples/rest_from_scratch/part_3/script/rails +6 -0
  205. data/full-examples/rest_from_scratch/part_3/spec/buying_process_spec.rb +24 -0
  206. data/full-examples/rest_from_scratch/part_3/spec/client/buying_process.rb +23 -0
  207. data/full-examples/rest_from_scratch/part_3/spec/client/scenarios/buying_process.scenario +15 -0
  208. data/full-examples/rest_from_scratch/part_3/spec/client/steps/buying_process.rb +56 -0
  209. data/full-examples/rest_from_scratch/part_3/spec/full_cycle_spec.rb +30 -0
  210. data/full-examples/rest_from_scratch/part_3/spec/items_spec.rb +31 -0
  211. data/full-examples/rest_from_scratch/part_3/spec/spec_helper.rb +27 -0
  212. data/full-examples/rest_from_scratch/part_3/test/fixtures/items.yml +9 -0
  213. data/full-examples/rest_from_scratch/part_3/test/functional/items_controller_test.rb +49 -0
  214. data/full-examples/rest_from_scratch/part_3/test/performance/browsing_test.rb +9 -0
  215. data/full-examples/rest_from_scratch/part_3/test/test_helper.rb +13 -0
  216. data/full-examples/rest_from_scratch/part_3/test/unit/helpers/items_helper_test.rb +4 -0
  217. data/full-examples/rest_from_scratch/part_3/test/unit/item_test.rb +8 -0
  218. data/full-examples/rest_from_scratch/part_3/vendor/plugins/.gitkeep +0 -0
  219. data/init.rb +1 -0
  220. data/lib/restfulie/client/README.textile +33 -0
  221. data/lib/restfulie/client/base.rb +36 -0
  222. data/lib/restfulie/client/cache/basic.rb +78 -0
  223. data/lib/restfulie/client/cache/fake.rb +15 -0
  224. data/lib/restfulie/client/cache/http_ext.rb +123 -0
  225. data/lib/restfulie/client/cache/restrictions.rb +15 -0
  226. data/lib/restfulie/client/cache.rb +11 -0
  227. data/lib/restfulie/client/configuration.rb +67 -0
  228. data/lib/restfulie/client/dsl.rb +52 -0
  229. data/lib/restfulie/client/entry_point.rb +61 -0
  230. data/lib/restfulie/client/ext/http_ext.rb +22 -0
  231. data/lib/restfulie/client/ext/link_ext.rb +11 -0
  232. data/lib/restfulie/client/ext/open_search_ext.rb +26 -0
  233. data/lib/restfulie/client/ext.rb +3 -0
  234. data/lib/restfulie/client/feature/base.rb +75 -0
  235. data/lib/restfulie/client/feature/base_request.rb +46 -0
  236. data/lib/restfulie/client/feature/cache.rb +16 -0
  237. data/lib/restfulie/client/feature/conneg_when_unaccepted.rb +25 -0
  238. data/lib/restfulie/client/feature/enhance_response.rb +12 -0
  239. data/lib/restfulie/client/feature/fake_response.rb +13 -0
  240. data/lib/restfulie/client/feature/follow_request.rb +59 -0
  241. data/lib/restfulie/client/feature/history.rb +26 -0
  242. data/lib/restfulie/client/feature/history_request.rb +17 -0
  243. data/lib/restfulie/client/feature/open_search/pattern_matcher.rb +25 -0
  244. data/lib/restfulie/client/feature/open_search.rb +21 -0
  245. data/lib/restfulie/client/feature/rescue_exception.rb +13 -0
  246. data/lib/restfulie/client/feature/retry_when_unavailable.rb +25 -0
  247. data/lib/restfulie/client/feature/serialize_body.rb +35 -0
  248. data/lib/restfulie/client/feature/setup_header.rb +22 -0
  249. data/lib/restfulie/client/feature/throw_error_request.rb +46 -0
  250. data/lib/restfulie/client/feature/verb.rb +112 -0
  251. data/lib/restfulie/client/feature.rb +5 -0
  252. data/lib/restfulie/client/http/cache.rb +28 -0
  253. data/lib/restfulie/client/http/error.rb +77 -0
  254. data/lib/restfulie/client/http/link_header.rb +39 -0
  255. data/lib/restfulie/client/http/response_holder.rb +29 -0
  256. data/lib/restfulie/client/http.rb +7 -0
  257. data/lib/restfulie/client/master_delegator.rb +31 -0
  258. data/lib/restfulie/client/mikyung/concatenator.rb +18 -0
  259. data/lib/restfulie/client/mikyung/core.rb +71 -0
  260. data/lib/restfulie/client/mikyung/languages/german.rb +24 -0
  261. data/lib/restfulie/client/mikyung/languages/portuguese.rb +23 -0
  262. data/lib/restfulie/client/mikyung/languages.rb +11 -0
  263. data/lib/restfulie/client/mikyung/rest_process_model.rb +191 -0
  264. data/lib/restfulie/client/mikyung/steady_state_walker.rb +38 -0
  265. data/lib/restfulie/client/mikyung/then_condition.rb +39 -0
  266. data/lib/restfulie/client/mikyung/when_condition.rb +57 -0
  267. data/lib/restfulie/client/mikyung.rb +15 -0
  268. data/lib/restfulie/client/stack_navigator.rb +39 -0
  269. data/lib/restfulie/client.rb +24 -0
  270. data/lib/restfulie/common/error.rb +19 -0
  271. data/lib/restfulie/common/logger.rb +19 -0
  272. data/lib/restfulie/common.rb +17 -0
  273. data/lib/restfulie/server/action_controller/base.rb +46 -0
  274. data/lib/restfulie/server/action_controller/params_parser.rb +100 -0
  275. data/lib/restfulie/server/action_controller/patch.rb +6 -0
  276. data/lib/restfulie/server/action_controller/restful_responder.rb +12 -0
  277. data/lib/restfulie/server/action_controller/trait/cacheable.rb +94 -0
  278. data/lib/restfulie/server/action_controller/trait/created.rb +17 -0
  279. data/lib/restfulie/server/action_controller/trait/save_prior_to_create.rb +13 -0
  280. data/lib/restfulie/server/action_controller/trait.rb +9 -0
  281. data/lib/restfulie/server/action_controller.rb +11 -0
  282. data/lib/restfulie/server/configuration.rb +24 -0
  283. data/lib/restfulie/server/controller.rb +74 -0
  284. data/lib/restfulie/server/core_ext/array.rb +35 -0
  285. data/lib/restfulie/server/core_ext.rb +1 -0
  286. data/lib/restfulie/server/hypertemplate.rb +3 -0
  287. data/lib/restfulie/server.rb +26 -0
  288. data/lib/restfulie/version.rb +14 -0
  289. data/lib/restfulie.rb +34 -0
  290. data/restfulie-nosqlite.gemspec +39 -0
  291. data/script/console +8 -0
  292. data/site/README +1 -0
  293. data/site/Rakefile +10 -0
  294. data/site/app/controllers/application_controller.rb +11 -0
  295. data/site/app/controllers/java_controller.rb +53 -0
  296. data/site/app/controllers/javascript_controller.rb +12 -0
  297. data/site/app/controllers/restful_csharp_controller.rb +12 -0
  298. data/site/app/controllers/ruby_controller.rb +24 -0
  299. data/site/app/controllers/systems_controller.rb +14 -0
  300. data/site/app/helpers/application_helper.rb +10 -0
  301. data/site/app/helpers/documentation_helper.rb +2 -0
  302. data/site/app/views/java/features.html.erb +99 -0
  303. data/site/app/views/java/hypermedia.html.erb +97 -0
  304. data/site/app/views/java/server.html.erb +0 -0
  305. data/site/app/views/layouts/_blackmenu.html.erb +11 -0
  306. data/site/app/views/layouts/_uppermenu.html.erb +24 -0
  307. data/site/app/views/layouts/application.html.erb +50 -0
  308. data/site/app/views/layouts/java.html.erb +72 -0
  309. data/site/app/views/layouts/javascript.html.erb +62 -0
  310. data/site/app/views/layouts/restful_csharp.html.erb +81 -0
  311. data/site/app/views/layouts/restful_java.html.erb +87 -0
  312. data/site/app/views/shared/_examples.html.erb +29 -0
  313. data/site/app/views/shared/_negotiation.html.erb +9 -0
  314. data/site/app/views/shared/_simple_representation.html.erb +37 -0
  315. data/site/app/views/systems/features.html.erb +106 -0
  316. data/site/app/views/systems/index.html.erb +97 -0
  317. data/site/app/views/systems/support.html.erb +54 -0
  318. data/site/config/boot.rb +110 -0
  319. data/site/config/database.yml +22 -0
  320. data/site/config/environment.rb +41 -0
  321. data/site/config/environments/development.rb +17 -0
  322. data/site/config/environments/production.rb +28 -0
  323. data/site/config/environments/test.rb +28 -0
  324. data/site/config/initializers/backtrace_silencers.rb +7 -0
  325. data/site/config/initializers/inflections.rb +10 -0
  326. data/site/config/initializers/mime_types.rb +5 -0
  327. data/site/config/initializers/new_rails_defaults.rb +21 -0
  328. data/site/config/initializers/session_store.rb +15 -0
  329. data/site/config/locales/en.yml +5 -0
  330. data/site/config/routes.rb +56 -0
  331. data/site/db/seeds.rb +7 -0
  332. data/site/public/404.html +30 -0
  333. data/site/public/422.html +30 -0
  334. data/site/public/500.html +30 -0
  335. data/site/public/caelumobjects-restful-rails.pdf +0 -0
  336. data/site/public/docs.html +164 -0
  337. data/site/public/favicon.ico +0 -0
  338. data/site/public/images/bgBarHome-trans.png +0 -0
  339. data/site/public/images/bgHeader.png +0 -0
  340. data/site/public/images/bgSubMenu-trans.png +0 -0
  341. data/site/public/images/code_java_01.png +0 -0
  342. data/site/public/images/code_java_02.png +0 -0
  343. data/site/public/images/code_net_01.png +0 -0
  344. data/site/public/images/code_net_02.png +0 -0
  345. data/site/public/images/code_ruby_01.png +0 -0
  346. data/site/public/images/code_ruby_02.png +0 -0
  347. data/site/public/images/dependency.png +0 -0
  348. data/site/public/images/ldl-trans.png +0 -0
  349. data/site/public/images/leftBGBtn.png +0 -0
  350. data/site/public/images/logoCaelumGray-trans.png +0 -0
  351. data/site/public/images/negotiation.png +0 -0
  352. data/site/public/images/rails.png +0 -0
  353. data/site/public/images/restfulieSprites-trans.png +0 -0
  354. data/site/public/images/rightBGBtn.png +0 -0
  355. data/site/public/images/service.png +0 -0
  356. data/site/public/images/subMenuBottom-trans.png +0 -0
  357. data/site/public/images/subMenuTop-trans.png +0 -0
  358. data/site/public/javascripts/application.js +2 -0
  359. data/site/public/javascripts/controls.js +963 -0
  360. data/site/public/javascripts/dragdrop.js +973 -0
  361. data/site/public/javascripts/effects.js +1128 -0
  362. data/site/public/javascripts/prototype.js +4320 -0
  363. data/site/public/robots.txt +5 -0
  364. data/site/public/stylesheets/menu.css +98 -0
  365. data/site/public/stylesheets/screen.css +345 -0
  366. data/site/public/stylesheets/uppermenu.css +87 -0
  367. data/site/script/about +4 -0
  368. data/site/script/console +3 -0
  369. data/site/script/dbconsole +3 -0
  370. data/site/script/destroy +3 -0
  371. data/site/script/generate +3 -0
  372. data/site/script/performance/benchmarker +3 -0
  373. data/site/script/performance/profiler +3 -0
  374. data/site/script/plugin +3 -0
  375. data/site/script/runner +3 -0
  376. data/site/script/server +3 -0
  377. data/site/test/functional/documentation_controller_test.rb +8 -0
  378. data/site/test/performance/browsing_test.rb +9 -0
  379. data/site/test/test_helper.rb +38 -0
  380. data/site/test/unit/helpers/documentation_helper_test.rb +4 -0
  381. data/spec/integration/twitter.rb +945 -0
  382. data/spec/integration/twitter_spec.rb +24 -0
  383. data/spec/spec_helper.rb +4 -0
  384. data/spec/unit/client/base_spec.rb +9 -0
  385. data/spec/unit/client/cache/fake_spec.rb +23 -0
  386. data/spec/unit/client/cache/http_ext_spec.rb +182 -0
  387. data/spec/unit/client/cache/restrictions_spec.rb +24 -0
  388. data/spec/unit/client/configuration_spec.rb +54 -0
  389. data/spec/unit/client/ext/open_search_spec.rb +28 -0
  390. data/spec/unit/client/feature/conneg_when_unaccepted_spec.rb +45 -0
  391. data/spec/unit/client/feature/open_search/pattern_matcher_spec.rb +21 -0
  392. data/spec/unit/client/feature/rescue_exception_spec.rb +27 -0
  393. data/spec/unit/client/feature/retry_when_unavailable_spec.rb +38 -0
  394. data/spec/unit/client/feature/verb_spec.rb +37 -0
  395. data/spec/unit/client/http/link_header_spec.rb +43 -0
  396. data/spec/unit/client/mikyung/concatenator_spec.rb +14 -0
  397. data/spec/unit/client/mikyung/rest_process_model_spec.rb +140 -0
  398. data/spec/unit/client/mikyung/steady_state_walker_spec.rb +39 -0
  399. data/spec/unit/client/mikyung/then_condition_spec.rb +38 -0
  400. data/spec/unit/client/mikyung/when_condition_spec.rb +59 -0
  401. data/spec/unit/client/mikyung_spec.rb +72 -0
  402. data/spec/unit/client/stack_navigator.rb +75 -0
  403. data/spec/unit/common/errors_spec.rb +33 -0
  404. data/spec/unit/restfulie_spec.rb +30 -0
  405. data/spec/unit/server/action_controller/trait/cacheable_spec.rb +48 -0
  406. data/spec/unit/server/action_controller/trait/created_spec.rb +50 -0
  407. data/spec/unit/server/configuration_spec.rb +36 -0
  408. data/spec/unit/server/core_ext/array_spec.rb +35 -0
  409. data/spec/unit/server/restfulie_controller_spec.rb +110 -0
  410. data/spec/unit/spec_helper.rb +1 -0
  411. data/tests/.gitignore +5 -0
  412. data/tests/.rspec +1 -0
  413. data/tests/Gemfile +42 -0
  414. data/tests/README +256 -0
  415. data/tests/Rakefile +7 -0
  416. data/tests/app/controllers/albums_controller.rb +10 -0
  417. data/tests/app/controllers/application_controller.rb +3 -0
  418. data/tests/app/controllers/artists_controller.rb +12 -0
  419. data/tests/app/controllers/cacheable_songs_controller.rb +28 -0
  420. data/tests/app/controllers/projects_controller.rb +13 -0
  421. data/tests/app/controllers/render_controller.rb +15 -0
  422. data/tests/app/controllers/songs_controller.rb +2 -0
  423. data/tests/app/helpers/albums_helper.rb +2 -0
  424. data/tests/app/helpers/application_helper.rb +2 -0
  425. data/tests/app/helpers/artists_helper.rb +2 -0
  426. data/tests/app/helpers/cacheable_clients_helper.rb +2 -0
  427. data/tests/app/helpers/projects_helper.rb +2 -0
  428. data/tests/app/helpers/render_helper.rb +2 -0
  429. data/tests/app/helpers/songs_helper.rb +2 -0
  430. data/tests/app/models/album.rb +4 -0
  431. data/tests/app/models/artist.rb +2 -0
  432. data/tests/app/models/song.rb +3 -0
  433. data/tests/app/views/albums/_member.tokamak +11 -0
  434. data/tests/app/views/albums/index.tokamak +26 -0
  435. data/tests/app/views/albums/show.tokamak +3 -0
  436. data/tests/app/views/artists/_form.html.erb +25 -0
  437. data/tests/app/views/artists/edit.html.erb +6 -0
  438. data/tests/app/views/artists/index.html.erb +25 -0
  439. data/tests/app/views/artists/new.html.erb +5 -0
  440. data/tests/app/views/artists/show.html.erb +15 -0
  441. data/tests/app/views/cacheable_clients/collection.tokamak +0 -0
  442. data/tests/app/views/cacheable_clients/empty.tokamak +0 -0
  443. data/tests/app/views/cacheable_clients/single.tokamak +0 -0
  444. data/tests/app/views/layouts/application.html.erb +14 -0
  445. data/tests/app/views/projects/index.atom.tokamak +14 -0
  446. data/tests/app/views/projects/new.atom.tokamak +7 -0
  447. data/tests/app/views/projects/new.tokamak +0 -0
  448. data/tests/app/views/projects/show.tokamak +7 -0
  449. data/tests/autotest/discover.rb +2 -0
  450. data/tests/config/application.rb +42 -0
  451. data/tests/config/boot.rb +13 -0
  452. data/tests/config/database.yml +22 -0
  453. data/tests/config/environment.rb +5 -0
  454. data/tests/config/environments/development.rb +22 -0
  455. data/tests/config/environments/production.rb +49 -0
  456. data/tests/config/environments/test.rb +35 -0
  457. data/tests/config/initializers/backtrace_silencers.rb +7 -0
  458. data/tests/config/initializers/inflections.rb +10 -0
  459. data/tests/config/initializers/mime_types.rb +5 -0
  460. data/tests/config/initializers/secret_token.rb +7 -0
  461. data/tests/config/initializers/session_store.rb +8 -0
  462. data/tests/config/locales/en.yml +5 -0
  463. data/tests/config/routes.rb +66 -0
  464. data/tests/config.ru +4 -0
  465. data/tests/db/migrate/20100817165415_create_albums.rb +15 -0
  466. data/tests/db/migrate/20100817165436_create_songs.rb +16 -0
  467. data/tests/db/migrate/20100819165238_create_artists.rb +14 -0
  468. data/tests/db/schema.rb +39 -0
  469. data/tests/db/seeds.rb +7 -0
  470. data/tests/lib/tasks/.gitkeep +0 -0
  471. data/tests/public/404.html +26 -0
  472. data/tests/public/422.html +26 -0
  473. data/tests/public/500.html +26 -0
  474. data/tests/public/favicon.ico +0 -0
  475. data/tests/public/images/rails.png +0 -0
  476. data/tests/public/index.html +262 -0
  477. data/tests/public/javascripts/application.js +2 -0
  478. data/tests/public/javascripts/controls.js +965 -0
  479. data/tests/public/javascripts/dragdrop.js +974 -0
  480. data/tests/public/javascripts/effects.js +1123 -0
  481. data/tests/public/javascripts/prototype.js +6001 -0
  482. data/tests/public/javascripts/rails.js +175 -0
  483. data/tests/public/robots.txt +5 -0
  484. data/tests/public/stylesheets/.gitkeep +0 -0
  485. data/tests/public/stylesheets/scaffold.css +56 -0
  486. data/tests/script/rails +6 -0
  487. data/tests/spec/controllers/integration/albums_controller_spec.rb +60 -0
  488. data/tests/spec/controllers/integration/cacheable_songs_controller_spec.rb +43 -0
  489. data/tests/spec/controllers/integration/controller_base_spec.rb +35 -0
  490. data/tests/spec/controllers/integration/created_responder_spec.rb +35 -0
  491. data/tests/spec/controllers/integration/params_parser_spec.rb +150 -0
  492. data/tests/spec/controllers/integration/projects_controller_spec.rb +30 -0
  493. data/tests/spec/requests/_integration_client.txt +1 -0
  494. data/tests/spec/requests/base_spec.rb2 +142 -0
  495. data/tests/spec/requests/fake_server.rb +107 -0
  496. data/tests/spec/requests/http/adapter_spec.rb +105 -0
  497. data/tests/spec/requests/http/content_type_spec.rb +88 -0
  498. data/tests/spec/requests/http/errors_spec.rb +130 -0
  499. data/tests/spec/requests/http/history_spec.rb +56 -0
  500. data/tests/spec/requests/http/marshal_spec.rb2 +113 -0
  501. data/tests/spec/requests/http/parameters_spec.rb +12 -0
  502. data/tests/spec/spec.opts +5 -0
  503. data/tests/spec/spec_helper.rb +61 -0
  504. data/tests/spec/support/atoms/full.rb.txt +63 -0
  505. data/tests/spec/support/atoms/related_songs +30 -0
  506. data/tests/spec/support/atoms/song_1 +11 -0
  507. data/tests/spec/support/atoms/song_2 +11 -0
  508. data/tests/spec/support/atoms/song_3 +11 -0
  509. data/tests/spec/support/atoms/song_4 +11 -0
  510. data/tests/spec/support/atoms/songs +51 -0
  511. data/tests/spec/support/atoms/songs_top_ten +27 -0
  512. data/tests/spec/support/data_helper.rb +13 -0
  513. data/tests/test/performance/browsing_test.rb +9 -0
  514. data/tests/test/test_helper.rb +13 -0
  515. data/tests/vendor/plugins/.gitkeep +0 -0
  516. 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>&lt;a href=&quot;http://ubertwitter.com&quot; rel=&quot;nofollow&quot;&gt;UberTwitter&lt;/a&gt;</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>&#220;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&amp;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 &amp; 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&amp;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>&#12362;&#12399;&#12424;&#12540;&#12290;&#12371;&#12428;&#12363;&#12425;&#24066;&#27665;&#30149;&#38498;&#12356;&#12387;&#12390;&#12365;&#12414;&#12540;</text>
172
+ <source>&lt;a href=&quot;http://twtr.jp&quot; rel=&quot;nofollow&quot;&gt;Keitai Web&lt;/a&gt;</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>&#12415;&#12435;&#12415;&#12435;</name>
181
+ <screen_name>hiromin1412</screen_name>
182
+ <location>&#38745;&#23713;&#30476;&#20234;&#26481;&#24066;</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>&lt;a href=&quot;http://ubertwitter.com&quot; rel=&quot;nofollow&quot;&gt;UberTwitter&lt;/a&gt;</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>&#220;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 &amp; 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>&lt;a href=&quot;http://www.tweets60.com&quot; rel=&quot;nofollow&quot;&gt;Tweets60&lt;/a&gt;</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&#225; acho que no pr&#243;ximo jogo todo mundo vem aqui em casa HSAUHSUAH, vamo deixar a minha m&#227;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>&#21897;&#12364;&#30171;&#12356;&#12398;&#12364;&#12414;&#12384;&#32154;&#12356;&#12390;&#12383;&#12425;&#32819;&#40763;&#31185;&#34892;&#12367;&#12363;&#12394;&#12540;&#12392;&#24605;&#12387;&#12390;&#12383;&#12369;&#12393;&#12289;&#20013;&#36884;&#21322;&#31471;&#12395;&#12510;&#12471;&#12395;&#12394;&#12387;&#12390;&#12427;&#12290;&#12377;&#12387;&#12365;&#12426;&#27835;&#12387;&#12390;&#12427;&#12431;&#12369;&#12391;&#12418;&#12394;&#12356;&#12398;&#12364;&#24494;&#22937;&#12290;&#12393;&#12358;&#12375;&#12383;&#12418;&#12435;&#12363;&#12394;&#12353;&#12290;</text>
352
+ <source>&lt;a href=&quot;http://www.misuzilla.org/dist/net/twitterircgateway/&quot; rel=&quot;nofollow&quot;&gt;TwitterIrcGateway&lt;/a&gt;</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>&#22909;&#12365;&#12394;&#20986;&#29256;&#31038;&#12399;&#26481;&#20140;&#21109;&#20803;&#31038;&#12289;&#22909;&#12365;&#12394;&#12524;&#12540;&#12505;&#12523;&#12399;&#12495;&#12516;&#12459;&#12527;FT&#12290;</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>&#20170;&#26085;&#12418;&#24179;&#21644;&#12384; http://yfrog.com/5br4mej</text>
397
+ <source>&lt;a href=&quot;http://itunes.apple.com/app/twitter/id333903271?mt=8&quot; rel=&quot;nofollow&quot;&gt;Twitter for iPhone&lt;/a&gt;</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>&quot;Que formosa apar&#234;ncia tem a falsidade.&quot; (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>&#12383;&#12371;&#12395;&#12419;&#12435;&#12289;&#30446;&#12364;&#12365;&#12425;&#12365;&#12425;&#12420;&#12290;</text>
490
+ <source>&lt;a href=&quot;http://movatwitter.jp/&quot; rel=&quot;nofollow&quot;&gt;movatwitter&lt;/a&gt;</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>&#20013;&#26449;&#12288;&#32681;&#23558;</name>
499
+ <screen_name>kurkurkurpar</screen_name>
500
+ <location>&#24220;&#20013;</location>
501
+ <description>&#26032;&#31038;&#20250;&#20154;&#65297;&#24180;&#30446;&#12290;
502
+ &#12364;&#12416;&#12375;&#12419;&#12425;&#12395;&#38929;&#24373;&#12387;&#12390;&#12362;&#12426;&#12414;&#12377;&#65281;
503
+ &#36259;&#21619;&#12399;&#27598;&#22238;&#26032;&#12375;&#12356;&#12371;&#12392;&#12434;&#22987;&#12417;&#12427;&#12371;&#12392;&#12290;&#35201;&#12377;&#12427;&#12395;&#12354;&#12435;&#12414;&#12426;&#38263;&#32154;&#12365;&#12375;&#12414;&#12379;&#12435;&#12290;
504
+ &#20170;&#12399;&#12480;&#12452;&#12456;&#12483;&#12488;&#23455;&#34892;&#20013;&#65281;&#24540;&#25588;&#12375;&#12390;&#19979;&#12373;&#12356;&#12290;</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&#246; SEL1: With balcony and nice garden http://bit.ly/adVNLU</text>
538
+ <source>&lt;a href=&quot;http://twitterfeed.com&quot; rel=&quot;nofollow&quot;&gt;twitterfeed&lt;/a&gt;</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&#229;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>&lt;a href=&quot;http://m.tuitwit.com&quot; rel=&quot;nofollow&quot;&gt;Tuitwit&lt;/a&gt;</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 &amp; 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&#225;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&#227;o Paulo</location>
639
+ <description>Jornalista, mestre em Comunica&#231;&#227;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>&lt;a href=&quot;http://apiwiki.twitter.com/&quot; rel=&quot;nofollow&quot;&gt;API&lt;/a&gt;</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>&#22269;&#31435;&#26997;&#22320;&#30740;&#31350;&#25152;&#12391;&#21335;&#26997;&#12539;&#21271;&#26997;&#31185;&#23398;&#39208;&#12458;&#12540;&#12503;&#12531; &amp; &#19968;&#33324;&#20844;&#38283; - &#20013;&#12398;&#20154;&#12394;&#12398;&#12391; AC &#26352;&#12367;&#12289; &#22269;&#31435;&#26997;&#22320;&#30740;&#31350;&#25152;&#12364; 2010 &#24180; 7 &#26376; 24 &#26085; (&#22303;) &#12398;&#12300;&#21335;&#26997;&#12539;&#21271;&#26997;&#31185;&#23398;&#39208;&#12301;&#12398;&#38283;&#39208;&#12395;&#20341;&#12379;.. &#8594; http://am6.jp/9mZzNd</text>
718
+ <source>&lt;a href=&quot;http://feedtweet.am6.jp/&quot; rel=&quot;nofollow&quot;&gt;&#9758; feedtweet.jp &#9756;&lt;/a&gt;</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>&lt;a href=&quot;http://alexking.org/projects/wordpress&quot; rel=&quot;nofollow&quot;&gt;Twitter Tools&lt;/a&gt;</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 &amp; 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 &amp;quot;Harder Working Spaces&amp;quot; At NeoCon 2010 http://LNK.by/eNPF</text>
808
+ <source>&lt;a href=&quot;http://apiwiki.twitter.com/&quot; rel=&quot;nofollow&quot;&gt;API&lt;/a&gt;</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 &amp; 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>&lt;a href=&quot;http://easytweets.com&quot; rel=&quot;nofollow&quot;&gt;EasyTweets&lt;/a&gt;</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 &amp; 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>&#50500;~~~~~~~~~~~~~~~~~~&#51060;&#54256; &#49324;&#44256;&#49910;&#45796;~.~ &#45432;&#53412;&#50500;&#54256; &#44277;&#51676;&#54665;&#49324;&#54664;&#51012;&#46412; &#44396;&#51077;&#54664;&#45716;&#45936; &#51221;&#47568; &#54980;&#54924;&#46104;&#50836; &#12372;..&#12372;</text>
898
+ <source>&lt;a href=&quot;http://mobileways.de/gravity&quot; rel=&quot;nofollow&quot;&gt;Gravity&lt;/a&gt;</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>&#49457;&#52285;&#54788;</name>
907
+ <screen_name>kxtcsung</screen_name>
908
+ <location>36.7136033,126.5450626</location>
909
+ <description>&#54620;&#44397; &#51060;&#44200;&#46972;~!~!~!@#$$%^^&amp;&amp;</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