google-search 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (71) hide show
  1. data/History.rdoc +8 -0
  2. data/Manifest +70 -0
  3. data/README.rdoc +95 -0
  4. data/Rakefile +16 -0
  5. data/examples/image.rb +21 -0
  6. data/examples/images.html +1 -0
  7. data/examples/web.rb +28 -0
  8. data/google-search.gemspec +33 -0
  9. data/lib/google-search.rb +29 -0
  10. data/lib/google-search/item.rb +10 -0
  11. data/lib/google-search/item/base.rb +78 -0
  12. data/lib/google-search/item/blog.rb +34 -0
  13. data/lib/google-search/item/book.rb +40 -0
  14. data/lib/google-search/item/image.rb +40 -0
  15. data/lib/google-search/item/local.rb +107 -0
  16. data/lib/google-search/item/news.rb +46 -0
  17. data/lib/google-search/item/patent.rb +40 -0
  18. data/lib/google-search/item/video.rb +46 -0
  19. data/lib/google-search/item/web.rb +22 -0
  20. data/lib/google-search/response.rb +92 -0
  21. data/lib/google-search/search.rb +11 -0
  22. data/lib/google-search/search/base.rb +212 -0
  23. data/lib/google-search/search/blog.rb +14 -0
  24. data/lib/google-search/search/book.rb +8 -0
  25. data/lib/google-search/search/image.rb +93 -0
  26. data/lib/google-search/search/local.rb +8 -0
  27. data/lib/google-search/search/mixins.rb +4 -0
  28. data/lib/google-search/search/mixins/filter.rb +26 -0
  29. data/lib/google-search/search/mixins/order_by.rb +36 -0
  30. data/lib/google-search/search/mixins/safety_level.rb +40 -0
  31. data/lib/google-search/search/news.rb +66 -0
  32. data/lib/google-search/search/patent.rb +37 -0
  33. data/lib/google-search/search/video.rb +15 -0
  34. data/lib/google-search/search/web.rb +15 -0
  35. data/lib/google-search/version.rb +6 -0
  36. data/spec/fixtures/400-response.json +1 -0
  37. data/spec/fixtures/blog-response.json +1 -0
  38. data/spec/fixtures/book-response.json +1 -0
  39. data/spec/fixtures/image-response.json +1 -0
  40. data/spec/fixtures/invalid-response.json +1 -0
  41. data/spec/fixtures/local-response.json +1 -0
  42. data/spec/fixtures/news-response.json +1 -0
  43. data/spec/fixtures/patent-response.json +1 -0
  44. data/spec/fixtures/video-response.json +1 -0
  45. data/spec/fixtures/web-2-response.json +1 -0
  46. data/spec/fixtures/web-response.json +1 -0
  47. data/spec/item_blog_spec.rb +26 -0
  48. data/spec/item_book_spec.rb +18 -0
  49. data/spec/item_image_spec.rb +21 -0
  50. data/spec/item_local_spec.rb +30 -0
  51. data/spec/item_news_spec.rb +19 -0
  52. data/spec/item_patent_spec.rb +19 -0
  53. data/spec/item_spec.rb +10 -0
  54. data/spec/item_video_spec.rb +20 -0
  55. data/spec/item_web_spec.rb +18 -0
  56. data/spec/response_spec.rb +63 -0
  57. data/spec/search_blog_spec.rb +0 -0
  58. data/spec/search_book_spec.rb +0 -0
  59. data/spec/search_image_spec.rb +71 -0
  60. data/spec/search_local_spec.rb +0 -0
  61. data/spec/search_news_spec.rb +33 -0
  62. data/spec/search_patent_spec.rb +27 -0
  63. data/spec/search_spec.rb +89 -0
  64. data/spec/search_video_spec.rb +42 -0
  65. data/spec/search_web_spec.rb +42 -0
  66. data/spec/spec.opts +2 -0
  67. data/spec/spec_helper.rb +13 -0
  68. data/tasks/docs.rake +18 -0
  69. data/tasks/gemspec.rake +3 -0
  70. data/tasks/spec.rake +25 -0
  71. metadata +168 -0
@@ -0,0 +1,14 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Blog < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include OrderBy
11
+
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,8 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Book < self
5
+ # Nothing book specific
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,93 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Image < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include SafetyLevel
11
+
12
+ #--
13
+ # Constants
14
+ #++
15
+
16
+ SIZES = :icon, :small, :medium, :large, :xlarge, :xxlarge, :huge
17
+ TYPES = :face, :photo, :clipart, :lineart
18
+ EXTENSIONS = :jpg, :png, :gif, :bmp
19
+
20
+ ##
21
+ # Image size:
22
+ #
23
+ # - :icon
24
+ # - :small
25
+ # - :medium
26
+ # - :large
27
+ # - :xlarge
28
+ # - :xxlarge
29
+ # - :huge
30
+ #
31
+
32
+ attr_accessor :image_size
33
+
34
+ ##
35
+ # Image type:
36
+ #
37
+ # - :face
38
+ # - :photo
39
+ # - :clipart
40
+ # - :lineart
41
+ #
42
+
43
+ attr_accessor :image_type
44
+
45
+ ##
46
+ # File type:
47
+ #
48
+ # - :jpg
49
+ # - :gif
50
+ # - :png
51
+ # - :bmp
52
+ #
53
+
54
+ attr_accessor :file_type
55
+
56
+ ##
57
+ # Image color.
58
+
59
+ attr_accessor :color
60
+
61
+ ##
62
+ # Specific uri to fetch images from.
63
+
64
+ attr_accessor :uri
65
+
66
+ #:nodoc:
67
+
68
+ def initialize options = {}, &block
69
+ @color = options.delete :color
70
+ @image_size = options.delete :image_size
71
+ @image_type = options.delete :image_type
72
+ @file_type = options.delete :file_type
73
+ super
74
+ end
75
+
76
+ #:nodoc:
77
+
78
+ def get_uri_params
79
+ validate(:image_size) { |size| size.nil? || size.is_a?(Array) || SIZES.include?(size) }
80
+ validate(:image_type) { |type| type.nil? || TYPES.include?(type) }
81
+ validate(:file_type) { |ext| ext.nil? || EXTENSIONS.include?(ext) }
82
+ super + [
83
+ [:safe, safety_level],
84
+ [:imgsz, image_size.is_a?(Array) ? image_size.join('|') : image_size],
85
+ [:imgcolor, color],
86
+ [:imgtype, image_type],
87
+ [:as_filetype, file_type],
88
+ [:as_sitesearch, uri]
89
+ ]
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,8 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Local < self
5
+ # Nothing local specific
6
+ end
7
+ end
8
+ end
@@ -0,0 +1,4 @@
1
+
2
+ require 'google-search/search/mixins/order_by'
3
+ require 'google-search/search/mixins/safety_level'
4
+ require 'google-search/search/mixins/filter'
@@ -0,0 +1,26 @@
1
+
2
+ module Google
3
+ class Search
4
+ module Filter
5
+
6
+ ##
7
+ # Weither or not to filter duplicate results.
8
+ # Defaults to true.
9
+
10
+ attr_accessor :filter
11
+
12
+ #:nodoc:
13
+
14
+ def initialize options = {}, &block
15
+ @filter = options.delete(:filter) || 1
16
+ super
17
+ end
18
+
19
+ #:nodoc:
20
+
21
+ def get_uri_params
22
+ super + [[:filter, filter ? 1 : 0]]
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,36 @@
1
+
2
+ module Google
3
+ class Search
4
+ module OrderBy
5
+
6
+ #--
7
+ # Constants
8
+ #++
9
+
10
+ ORDER_BY = :relevance, :date
11
+
12
+ ##
13
+ # Order by. Defaults to :relevance
14
+ #
15
+ # - :relevance
16
+ # - :date
17
+ #
18
+
19
+ attr_accessor :order_by
20
+
21
+ #:nodoc:
22
+
23
+ def initialize options = {}, &block
24
+ @order_by = options.delete :order_by
25
+ super
26
+ end
27
+
28
+ #:nodoc:
29
+
30
+ def get_uri_params
31
+ validate(:order_by) { |order| order.nil? || ORDER_BY.include?(order) }
32
+ super + [[:scoring, order_by ? 'd' : nil]]
33
+ end
34
+ end
35
+ end
36
+ end
@@ -0,0 +1,40 @@
1
+
2
+ module Google
3
+ class Search
4
+ module SafetyLevel
5
+
6
+ #--
7
+ # Constants
8
+ #++
9
+
10
+ SAFETY_LEVELS = :active, :moderate, :off
11
+
12
+ ##
13
+ # Safety level:
14
+ #
15
+ # - :active | :high
16
+ # - :moderate | :medium
17
+ # - :off
18
+ #
19
+
20
+ attr_accessor :safety_level
21
+
22
+ #:nodoc:
23
+
24
+ def initialize options = {}, &block
25
+ @safety_level = options.delete :safety_level
26
+ super
27
+ end
28
+
29
+ #:nodoc:
30
+
31
+ def get_uri_params
32
+ @safety_level = :off if @safety_level == :none
33
+ @safety_level = :moderate if @safety_level == :medium
34
+ @safety_level = :active if @safety_level == :high
35
+ validate(:safety_level) { |level| level.nil? || SAFETY_LEVELS.include?(level) }
36
+ super + [[:safe, safety_level]]
37
+ end
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,66 @@
1
+
2
+ module Google
3
+ class Search
4
+ class News < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include OrderBy
11
+
12
+ #--
13
+ # Constants
14
+ #++
15
+
16
+ TOPICS = :headlines, :world, :business, :nation, :science,
17
+ :elections, :politics, :entertainment, :sports, :health
18
+
19
+ ##
20
+ # Relative to city, state, province, zipcode, etc.
21
+
22
+ attr_accessor :relative_to
23
+
24
+ ##
25
+ # Topic:
26
+ #
27
+ # - :headlines
28
+ # - :world
29
+ # - :business
30
+ # - :nation
31
+ # - :science
32
+ # - :elections
33
+ # - :politics
34
+ # - :entertainment
35
+ # - :sports
36
+ # - :health
37
+ #
38
+
39
+ attr_accessor :topic
40
+
41
+ ##
42
+ # Edition, such as :us, :uk, :fr_ca, etc.
43
+
44
+ attr_accessor :edition
45
+
46
+ #:nodoc:
47
+
48
+ def initialize options = {}, &block
49
+ @relative_to = options.delete :relative_to
50
+ @edition = options.delete :edition
51
+ super
52
+ end
53
+
54
+ #:nodoc:
55
+
56
+ def get_uri_params
57
+ validate(:topic) { |topic| topic.nil? || TOPICS.include?(topic) }
58
+ super + [
59
+ [:geo, relative_to],
60
+ [:topic, topic],
61
+ [:ned, edition]
62
+ ]
63
+ end
64
+ end
65
+ end
66
+ end
@@ -0,0 +1,37 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Patent < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include OrderBy
11
+
12
+ ##
13
+ # When nil all parents are returned.
14
+ # When true only issued will be returned,
15
+ # otherwise when false only filed but NOT
16
+ # issued patents will be returned.
17
+
18
+ attr_accessor :issued_only
19
+
20
+ #:nodoc:
21
+
22
+ def initialize options = {}, &block
23
+ @issued_only = options.delete :issued_only
24
+ super
25
+ end
26
+
27
+ #:nodoc:
28
+
29
+ def get_uri_params
30
+ super + [
31
+ [:as_psrg, issued_only ? 1 : nil],
32
+ [:as_psra, issued_only === false ? 1 : nil]
33
+ ]
34
+ end
35
+ end
36
+ end
37
+ end
@@ -0,0 +1,15 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Video < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include OrderBy
11
+ include Filter
12
+
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+
2
+ module Google
3
+ class Search
4
+ class Web < self
5
+
6
+ #--
7
+ # Mixins
8
+ #++
9
+
10
+ include Filter
11
+ include SafetyLevel
12
+
13
+ end
14
+ end
15
+ end
@@ -0,0 +1,6 @@
1
+
2
+ module Google
3
+ class Search
4
+ VERSION = '1.0.2'
5
+ end
6
+ end
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[],"cursor":{"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q"}}, "responseDetails": "invalid start range", "responseStatus": 400}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GblogSearch","title":"\u003cb\u003eFoo\u003c/b\u003e (51), Amsterdam (4-12) shine for Guyana on opening day \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"Foo (51), Amsterdam (4-12) shine for Guyana on opening day ...","postUrl":"http://www.kaieteurnewsonline.com/2009/07/22/foo-51-amsterdam-4-12-shine-for-guyana-on-opening-day/","content":"Jonathon \u003cb\u003eFoo\u003c/b\u003e hit a confident 51 and Alex Amsterdam took 4 last session wickets to keep Guyana in the hunt for first innings points against defending champions Barbados at the Jamalco ground yesterday in their 4 ...","author":"KNews","blogUrl":"http://www.kaieteurnewsonline.com/","publishedDate":"Wed, 22 Jul 2009 02:16:11 -0700"},{"GsearchResultClass":"GblogSearch","title":"Web News Site » Blog Archive » AS220 Annual \u003cb\u003eFoo\u003c/b\u003e Fest","titleNoFormatting":"Web News Site » Blog Archive » AS220 Annual Foo Fest","postUrl":"http://webnewssite.com/2009/07/22/as220-annual-foo-fest/","content":"AS220 is holding their annual \u003cb\u003eFoo\u003c/b\u003e Fest in Providence, Rhode Island. It looks like a really interesting event, especially for kids. Check out the link for the complete schedule of artists, musicians, and other activities. ...","author":"Marc de Vinck","blogUrl":"http://webnewssite.com/","publishedDate":"Wed, 22 Jul 2009 03:00:00 -0700"},{"GsearchResultClass":"GblogSearch","title":"Dnx Rockabilly Zone: \u003cb\u003eFoo\u003c/b\u003e Fighters","titleNoFormatting":"Dnx Rockabilly Zone: Foo Fighters","postUrl":"http://danangfadian.blogspot.com/2009/07/foo-fighters.html","content":"Those tapes would become the foundation of the \u003cb\u003eFoo\u003c/b\u003e Fighters, the band he formed in 1995, after the death of Kurt Cobain. Like Nirvana, the \u003cb\u003eFoo\u003c/b\u003e Fighters melded loud, heavy guitars with pretty melodies and mixed punk sensibilities with a ...","author":"Danang Fadian","blogUrl":"http://danangfadian.blogspot.com/","publishedDate":"Tue, 21 Jul 2009 19:22:00 -0700"},{"GsearchResultClass":"GblogSearch","title":"Fruit Rojak \u0026amp; Tau \u003cb\u003eFoo\u003c/b\u003e Fah @ Damansara Jaya | MICHAEL YIP | 叶志坚","titleNoFormatting":"Fruit Rojak \u0026amp; Tau Foo Fah @ Damansara Jaya | MICHAEL YIP | 叶志坚","postUrl":"http://mikeyip.com/fruit-rojak-tau-foo-fah-damansara-jaya/","content":"Located on a vacant parking space just in front of the Atria main entrance (the entrance in front of KFC is actually the side entrance), it's flanked by the Tau \u003cb\u003eFoo\u003c/b\u003e Fah seller that sells piping hot tau \u003cb\u003efoo\u003c/b\u003e fah to anyone who visits the ...","author":"Michael Yip","blogUrl":"http://mikeyip.com/","publishedDate":"Tue, 21 Jul 2009 21:14:27 -0700"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"2231827","currentPageIndex":0,"moreResultsUrl":"http://blogsearch.google.com/blogsearch?oe\u003dutf8\u0026ie\u003dutf8\u0026safe\u003dactive\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GbookSearch","unescapedUrl":"http://books.google.com/books?id\u003dvUoCAgAACAAJ\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://books.google.com/books%3Fid%3DvUoCAgAACAAJ%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters","titleNoFormatting":"Foo Fighters","authors":"\u003cb\u003eFoo\u003c/b\u003e Fighters (CRT), Hal Leonard Publishing Corporation","bookId":"ISBN1423404580","publishedYear":"2006","tbUrl":"http://bks6.books.google.com/books?id\u003dvUoCAgAACAAJ\u0026printsec\u003dfrontcover\u0026img\u003d1\u0026zoom\u003d5\u0026sig\u003dACfU3U1NHHhXuERH30Xfn0GC3A0BW5nMPg","tbHeight":"80","tbWidth":"60","pageCount":"69"},{"GsearchResultClass":"GbookSearch","unescapedUrl":"http://books.google.com/books?id\u003dYY_JyNscCYAC\u0026printsec\u003dfrontcover\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://books.google.com/books%3Fid%3DYY_JyNscCYAC%26printsec%3Dfrontcover%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"Advanced topics in artificial intelligence: 12th Australian Joint Conference on Artificial Intelligence, AI'99, Sydney, Australia, December 6-10, 1999 : proceedings","titleNoFormatting":"Advanced topics in artificial intelligence: 12th Australian Joint Conference on Artificial Intelligence, AI'99, Sydney, Australia, December 6-10, 1999 : proceedings","authors":"Norman Y. \u003cb\u003eFoo\u003c/b\u003e","bookId":"ISBN3540668225","publishedYear":"1999","tbUrl":"http://bks7.books.google.com/books?id\u003dYY_JyNscCYAC\u0026printsec\u003dfrontcover\u0026img\u003d1\u0026zoom\u003d5\u0026sig\u003dACfU3U3iaZtJ35pPqFz4RUmmDBg2JSwwGA","tbHeight":"80","tbWidth":"60","pageCount":"500"},{"GsearchResultClass":"GbookSearch","unescapedUrl":"http://books.google.com/books?id\u003dj2QrFVEd2GUC\u0026printsec\u003dfrontcover\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://books.google.com/books%3Fid%3Dj2QrFVEd2GUC%26printsec%3Dfrontcover%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"PRICAI '96: topics in artificial intelligence : 4th Pacific Rim International Conference on Artificial Intelligence, Cairns, Australia, August 26-30, 1996 : proceedings","titleNoFormatting":"PRICAI '96: topics in artificial intelligence : 4th Pacific Rim International Conference on Artificial Intelligence, Cairns, Australia, August 26-30, 1996 : proceedings","authors":"Norman Y. \u003cb\u003eFoo\u003c/b\u003e, Randy Goebel","bookId":"ISBN3540615326","publishedYear":"1996","tbUrl":"http://bks8.books.google.com/books?id\u003dj2QrFVEd2GUC\u0026printsec\u003dfrontcover\u0026img\u003d1\u0026zoom\u003d5\u0026sig\u003dACfU3U1-btY8opiKptNpoXupyChBvPeFDA","tbHeight":"80","tbWidth":"60","pageCount":"658"},{"GsearchResultClass":"GbookSearch","unescapedUrl":"http://books.google.com/books?id\u003db6wnl81RguwC\u0026printsec\u003dfrontcover\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://books.google.com/books%3Fid%3Db6wnl81RguwC%26printsec%3Dfrontcover%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"Advanced topics in artificial intelligence: 12th Australian Joint Conference on Artificial Intelligence, AI'99, Sydney, Australia, December 6-10, 1999 : proceedings","titleNoFormatting":"Advanced topics in artificial intelligence: 12th Australian Joint Conference on Artificial Intelligence, AI'99, Sydney, Australia, December 6-10, 1999 : proceedings","authors":"Norman Y. \u003cb\u003eFoo\u003c/b\u003e","bookId":"ISBN3540668225","publishedYear":"1999","tbUrl":"http://bks9.books.google.com/books?id\u003db6wnl81RguwC\u0026printsec\u003dfrontcover\u0026img\u003d1\u0026zoom\u003d5\u0026sig\u003dACfU3U2h-nHauxIQbFENKR-njj5hRpe9lg","tbHeight":"80","tbWidth":"60","pageCount":"500"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"11242","currentPageIndex":0,"moreResultsUrl":"http://books.google.com/books?source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GimageSearch","width":"883","height":"891","imageId":"IYlLzX-w4vX2AM","tbWidth":"145","tbHeight":"146","unescapedUrl":"http://tomdiaz.files.wordpress.com/2009/06/foo_fighters.jpg","url":"http://tomdiaz.files.wordpress.com/2009/06/foo_fighters.jpg","visibleUrl":"tomdiaz.wordpress.com","title":"\u003cb\u003efoo\u003c/b\u003e_fighters.jpg","titleNoFormatting":"foo_fighters.jpg","originalContextUrl":"http://tomdiaz.wordpress.com/2009/06/","content":"Not FBI Agents--\u003cb\u003eFoo\u003c/b\u003e Fighters","contentNoFormatting":"Not FBI Agents--Foo Fighters","tbUrl":"http://images.google.com/images?q\u003dtbn:IYlLzX-w4vX2AM:tomdiaz.files.wordpress.com/2009/06/foo_fighters.jpg"},{"GsearchResultClass":"GimageSearch","width":"720","height":"580","imageId":"iHzf4CaizHK8TM","tbWidth":"140","tbHeight":"113","unescapedUrl":"http://community.post-gazette.com/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.48.45/FooFighters1A.jpg","url":"http://community.post-gazette.com/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.48.45/FooFighters1A.jpg","visibleUrl":"community.post-gazette.com","title":"\u003cb\u003eFoo\u003c/b\u003eFighters1A.jpg","titleNoFormatting":"FooFighters1A.jpg","originalContextUrl":"http://community.post-gazette.com/blogs/popnoise/archive/2008/10/08/foo-fighters-to-mccain-don-t-use-my-hero.aspx","content":"\u003cb\u003e...\u003c/b\u003e \u003cb\u003eFoo\u003c/b\u003e Fighters publicist contacted \u003cb\u003e...\u003c/b\u003e","contentNoFormatting":"... Foo Fighters publicist contacted ...","tbUrl":"http://images.google.com/images?q\u003dtbn:iHzf4CaizHK8TM:community.post-gazette.com/cfs-file.ashx/__key/CommunityServer.Components.UserFiles/00.00.00.48.45/FooFighters1A.jpg"},{"GsearchResultClass":"GimageSearch","width":"360","height":"302","imageId":"-eufEAEMWQ8_-M","tbWidth":"121","tbHeight":"102","unescapedUrl":"http://www.gotdogsonline.com/chinese-foo-dog-pictures-breeders-puppies-rescue/pictures/chinese-foo-dog-0003.jpg","url":"http://www.gotdogsonline.com/chinese-foo-dog-pictures-breeders-puppies-rescue/pictures/chinese-foo-dog-0003.jpg","visibleUrl":"www.gotdogsonline.com","title":"chinese-\u003cb\u003efoo\u003c/b\u003e-dog-0003.jpg","titleNoFormatting":"chinese-foo-dog-0003.jpg","originalContextUrl":"http://www.gotdogsonline.com/pictures/gallery/chinese-foo-dogs/chinese-foo-dog-0003/","content":"Chinese \u003cb\u003eFoo\u003c/b\u003e Dogs","contentNoFormatting":"Chinese Foo Dogs","tbUrl":"http://images.google.com/images?q\u003dtbn:-eufEAEMWQ8_-M:www.gotdogsonline.com/chinese-foo-dog-pictures-breeders-puppies-rescue/pictures/chinese-foo-dog-0003.jpg"},{"GsearchResultClass":"GimageSearch","width":"300","height":"299","imageId":"ZFPGVM71yQ-k_M","tbWidth":"116","tbHeight":"116","unescapedUrl":"http://www.aeg-tv.com/assets/events/Foo%20Fighter%20Logo%20Small.jpg","url":"http://www.aeg-tv.com/assets/events/Foo%2520Fighter%2520Logo%2520Small.jpg","visibleUrl":"djocean.wordpress.com","title":"\u003cb\u003eFoo\u003c/b\u003e Fighter Logo Small.jpg","titleNoFormatting":"Foo Fighter Logo Small.jpg","originalContextUrl":"http://djocean.wordpress.com/2008/07/28/foo-fighters-to-release-dvd-featuring-led-zeppelin-jam/","content":"\u003cb\u003eFoo\u003c/b\u003e Fighters to Release DVD \u003cb\u003e...\u003c/b\u003e","contentNoFormatting":"Foo Fighters to Release DVD ...","tbUrl":"http://images.google.com/images?q\u003dtbn:ZFPGVM71yQ-k_M:www.aeg-tv.com/assets/events/Foo%2520Fighter%2520Logo%2520Small.jpg"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"5120000","currentPageIndex":0,"moreResultsUrl":"http://www.google.com/images?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[],"cursor":{"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GlocalSearch","viewportmode":"computed","listingType":"local","lat":"37.795279","lng":"-122.407451","accuracy":"8","title":"\u003cb\u003eFoo\u003c/b\u003e Wah Cheung","titleNoFormatting":"Foo Wah Cheung","ddUrl":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d852+Washington+St%2C+San+Francisco%2C+CA+%28Foo+Wah+Cheung%29+%4037.795279%2C-122.407451\u0026saddr","ddUrlToHere":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d852+Washington+St%2C+San+Francisco%2C+CA+%28Foo+Wah+Cheung%29+%4037.795279%2C-122.407451\u0026iwstate1\u003ddir%3Ato","ddUrlFromHere":"http://www.google.com/maps?source\u003duds\u0026saddr\u003d852+Washington+St%2C+San+Francisco%2C+CA+%28Foo+Wah+Cheung%29+%4037.795279%2C-122.407451\u0026iwstate1\u003ddir%3Afrom","streetAddress":"852 Washington St","city":"San Francisco","region":"CA","country":"United States","staticMapUrl":"http://mt.google.com/mapdata?cc\u003dus\u0026tstyp\u003d5\u0026Point\u003db\u0026Point.latitude_e6\u003d37795279\u0026Point.longitude_e6\u003d-122407451\u0026Point.iconid\u003d15\u0026Point\u003de\u0026w\u003d150\u0026h\u003d100\u0026zl\u003d4","url":"http://www.google.com/local?source\u003duds\u0026q\u003dfoo\u0026sll\u003d37.795279%2C-122.407451\u0026latlng\u003d37795279%2C-122407451%2C1909516875098392575\u0026near\u003d37.795279%2C-122.407451","content":"","maxAge":604800,"phoneNumbers":[{"type":"","number":"(415) 391-4067"}],"addressLines":["852 Washington St","San Francisco, CA"]},{"GsearchResultClass":"GlocalSearch","viewportmode":"computed","listingType":"local","lat":"37.794836","lng":"-122.403527","accuracy":"8","title":"Timothy \u003cb\u003eFoo\u003c/b\u003e \u0026amp; Co","titleNoFormatting":"Timothy Foo \u0026 Co","ddUrl":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d601+Montgomery+St%2C+San+Francisco%2C+CA+%28Timothy+Foo+%26+Co%29+%4037.794836%2C-122.403527\u0026saddr","ddUrlToHere":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d601+Montgomery+St%2C+San+Francisco%2C+CA+%28Timothy+Foo+%26+Co%29+%4037.794836%2C-122.403527\u0026iwstate1\u003ddir%3Ato","ddUrlFromHere":"http://www.google.com/maps?source\u003duds\u0026saddr\u003d601+Montgomery+St%2C+San+Francisco%2C+CA+%28Timothy+Foo+%26+Co%29+%4037.794836%2C-122.403527\u0026iwstate1\u003ddir%3Afrom","streetAddress":"601 Montgomery St","city":"San Francisco","region":"CA","country":"United States","staticMapUrl":"http://mt.google.com/mapdata?cc\u003dus\u0026tstyp\u003d5\u0026Point\u003db\u0026Point.latitude_e6\u003d37794836\u0026Point.longitude_e6\u003d-122403527\u0026Point.iconid\u003d15\u0026Point\u003de\u0026w\u003d150\u0026h\u003d100\u0026zl\u003d4","url":"http://www.google.com/local?source\u003duds\u0026q\u003dfoo\u0026sll\u003d37.794836%2C-122.403527\u0026latlng\u003d37794836%2C-122403527%2C6926352342283831233\u0026near\u003d37.794836%2C-122.403527","content":"","maxAge":604800,"phoneNumbers":[{"type":"","number":"(415) 986-5215"}],"addressLines":["601 Montgomery St","San Francisco, CA"]},{"GsearchResultClass":"GlocalSearch","viewportmode":"computed","listingType":"local","lat":"37.90716","lng":"-122.305244","accuracy":"8","title":"Yuet \u003cb\u003eFoo\u003c/b\u003e Seafood Restaurant","titleNoFormatting":"Yuet Foo Seafood Restaurant","ddUrl":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d10350+San+Pablo+Ave%2C+El+Cerrito%2C+CA+%28Yuet+Foo+Seafood+Restaurant%29+%4037.90716%2C-122.305244\u0026saddr","ddUrlToHere":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d10350+San+Pablo+Ave%2C+El+Cerrito%2C+CA+%28Yuet+Foo+Seafood+Restaurant%29+%4037.90716%2C-122.305244\u0026iwstate1\u003ddir%3Ato","ddUrlFromHere":"http://www.google.com/maps?source\u003duds\u0026saddr\u003d10350+San+Pablo+Ave%2C+El+Cerrito%2C+CA+%28Yuet+Foo+Seafood+Restaurant%29+%4037.90716%2C-122.305244\u0026iwstate1\u003ddir%3Afrom","streetAddress":"10350 San Pablo Ave","city":"El Cerrito","region":"CA","country":"United States","staticMapUrl":"http://mt.google.com/mapdata?cc\u003dus\u0026tstyp\u003d5\u0026Point\u003db\u0026Point.latitude_e6\u003d37907160\u0026Point.longitude_e6\u003d-122305244\u0026Point.iconid\u003d15\u0026Point\u003de\u0026w\u003d150\u0026h\u003d100\u0026zl\u003d4","url":"http://www.google.com/local?source\u003duds\u0026q\u003dfoo\u0026sll\u003d37.90716%2C-122.305244\u0026latlng\u003d37907160%2C-122305244%2C4537340541452700142\u0026near\u003d37.90716%2C-122.305244","content":"","maxAge":604800,"phoneNumbers":[{"type":"","number":"(510) 528-6847"}],"addressLines":["10350 San Pablo Ave","El Cerrito, CA"]},{"GsearchResultClass":"GlocalSearch","viewportmode":"computed","listingType":"local","lat":"37.901572","lng":"-122.527484","accuracy":"8","title":"\u003cb\u003eFoo\u003c/b\u003e-\u003cb\u003eFoo\u003c/b\u003e Design","titleNoFormatting":"Foo-Foo Design","ddUrl":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d250+Camino+Alto+%23+250%2C+Mill+Valley%2C+CA+%28Foo-Foo+Design%29+%4037.901572%2C-122.527484\u0026saddr","ddUrlToHere":"http://www.google.com/maps?source\u003duds\u0026daddr\u003d250+Camino+Alto+%23+250%2C+Mill+Valley%2C+CA+%28Foo-Foo+Design%29+%4037.901572%2C-122.527484\u0026iwstate1\u003ddir%3Ato","ddUrlFromHere":"http://www.google.com/maps?source\u003duds\u0026saddr\u003d250+Camino+Alto+%23+250%2C+Mill+Valley%2C+CA+%28Foo-Foo+Design%29+%4037.901572%2C-122.527484\u0026iwstate1\u003ddir%3Afrom","streetAddress":"250 Camino Alto # 250","city":"Mill Valley","region":"CA","country":"United States","staticMapUrl":"http://mt.google.com/mapdata?cc\u003dus\u0026tstyp\u003d5\u0026Point\u003db\u0026Point.latitude_e6\u003d37901572\u0026Point.longitude_e6\u003d-122527484\u0026Point.iconid\u003d15\u0026Point\u003de\u0026w\u003d150\u0026h\u003d100\u0026zl\u003d4","url":"http://www.google.com/local?source\u003duds\u0026q\u003dfoo\u0026sll\u003d37.901572%2C-122.527484\u0026latlng\u003d37901572%2C-122527484%2C5970323968344476572\u0026near\u003d37.901572%2C-122.527484","content":"","maxAge":604800,"phoneNumbers":[{"type":"","number":"(415) 888-8337"}],"addressLines":["250 Camino Alto # 250","Mill Valley, CA"]}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4}],"estimatedResultCount":"574","currentPageIndex":0,"moreResultsUrl":"http://www.google.com/local?oe\u003dutf8\u0026ie\u003dutf8\u0026num\u003d4\u0026mrt\u003dyp%2Cloc\u0026sll\u003d37.779160%2C-122.420090\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"},"viewport":{"center":{"lat":"37.78722","lng":"-122.41377"},"span":{"lat":"0.019343","lng":"0.015167"},"sw":{"lat":"37.77755","lng":"-122.42136"},"ne":{"lat":"37.79689","lng":"-122.40619"}}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GnewsSearch","clusterUrl":"","content":"After all, it was Susanna \u003cb\u003eFoo\u003c/b\u003e Chinese Cuisine, a major player in Philadelphia\u0026#39;s restaurant renaissance, an innovative dining palace where Chinese-French \u003cb\u003e...\u003c/b\u003e","unescapedUrl":"http://www.montgomerynews.com/articles/2009/07/22/entertainment/doc4a672746b0941650009917.txt","url":"http%3A%2F%2Fwww.montgomerynews.com%2Farticles%2F2009%2F07%2F22%2Fentertainment%2Fdoc4a672746b0941650009917.txt","title":"TICKET TO DINING: Susanna \u003cb\u003eFoo\u003c/b\u003e Gourmet Kitchen — elegant suburban \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"TICKET TO DINING: Susanna Foo Gourmet Kitchen — elegant suburban ...","location":"Fort Washington,PA,USA","publisher":"Montgomery Newspapers","publishedDate":"Wed, 22 Jul 2009 09:02:05 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-0-0\u0026fd\u003dS\u0026url\u003dhttp://www.montgomerynews.com/articles/2009/07/22/entertainment/doc4a672746b0941650009917.txt\u0026cid\u003d0\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNGsuTniL5DY24lNJ8qy204ZWjQoKA","language":"en"},{"GsearchResultClass":"GnewsSearch","clusterUrl":"http://news.google.com/news/story?ncl\u003ddwbAwUnuy6hZgRMiTb6kcoks-EKYM\u0026hl\u003den\u0026ned\u003dus","content":"After holing up in their native Denmark this spring to lay down new material, members Sune Rose Wagner and Sharin \u003cb\u003eFoo\u003c/b\u003e are now reflecting on the final \u003cb\u003e...\u003c/b\u003e","unescapedUrl":"http://www.billboard.com/bbcom/news/the-raveonettes-unveil-album-release-and-1003995751.story","url":"http%3A%2F%2Fwww.billboard.com%2Fbbcom%2Fnews%2Fthe-raveonettes-unveil-album-release-and-1003995751.story","title":"The Raveonettes Unveil Album Release And Tour Dates","titleNoFormatting":"The Raveonettes Unveil Album Release And Tour Dates","location":"New York,NY,USA","publisher":"Billboard","publishedDate":"Tue, 21 Jul 2009 09:29:52 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-0\u0026fd\u003dS\u0026url\u003dhttp://www.billboard.com/bbcom/news/the-raveonettes-unveil-album-release-and-1003995751.story\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNGP0OBMkBW5SOT9Q_ndo2Jfk2iOYQ","language":"en","image":{"url":"http://www.chartattack.com/files/imagecache/180x150_SC/chart_global/news/20050606-raveonettes.jpg","tbUrl":"http://nt0.ggpht.com/news/tbn/hOEaRUeyqeQJ","originalContextUrl":"http://www.chartattack.com/news/72405/the-raveonettes-are-out-of-control","publisher":"ChartAttack","tbWidth":80,"tbHeight":67},"relatedStories":[{"unescapedUrl":"http://consequenceofsound.net/2009/07/22/the-raveonettes-are-in-and-out-of-control-hit-the-road-to-figure-it-out/","url":"http%3A%2F%2Fconsequenceofsound.net%2F2009%2F07%2F22%2Fthe-raveonettes-are-in-and-out-of-control-hit-the-road-to-figure-it-out%2F","title":"The Raveonettes are In and Out of Control, hit the road to figure \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"The Raveonettes are In and Out of Control, hit the road to figure ...","location":"Manassas,VA,USA","publisher":"Consequence of Sound","publishedDate":"Wed, 22 Jul 2009 11:37:22 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-1\u0026fd\u003dS\u0026url\u003dhttp://consequenceofsound.net/2009/07/22/the-raveonettes-are-in-and-out-of-control-hit-the-road-to-figure-it-out/\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNGKYS-UQiltq5-JH8qOBl_ZQ6Cvaw","language":"en"},{"unescapedUrl":"http://www.clashmusic.com/news/raveonettes-album-details","url":"http%3A%2F%2Fwww.clashmusic.com%2Fnews%2Fraveonettes-album-details","title":"Raveonettes Album Details","titleNoFormatting":"Raveonettes Album Details","location":"London,London,UK","publisher":"ClashMusic.com","publishedDate":"Wed, 22 Jul 2009 08:01:50 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-2\u0026fd\u003dS\u0026url\u003dhttp://www.clashmusic.com/news/raveonettes-album-details\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNE0yNOkyeqoWNAw58Z4PwRjO56FhQ","language":"en"},{"unescapedUrl":"http://www.exclaim.ca/articles/generalarticlesynopsfullart.aspx?csid1\u003d134\u0026csid2\u003d844\u0026fid1\u003d40047","url":"http%3A%2F%2Fwww.exclaim.ca%2Farticles%2Fgeneralarticlesynopsfullart.aspx%3Fcsid1%3D134%26csid2%3D844%26fid1%3D40047","title":"Raveonettes Ready “the Ultimate Light Album,” Play Toronto \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"Raveonettes Ready “the Ultimate Light Album,” Play Toronto ...","location":"Toronto,Ontario,Canada","publisher":"Exclaim!","publishedDate":"Wed, 22 Jul 2009 14:01:54 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-3\u0026fd\u003dS\u0026url\u003dhttp://www.exclaim.ca/articles/generalarticlesynopsfullart.aspx%3Fcsid1%3D134%26csid2%3D844%26fid1%3D40047\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNH-tOgy53FR5RD-zmnbqJuPRgDIqQ","language":"en"},{"unescapedUrl":"http://www.spinner.com/2009/07/20/the-raveonettes-will-lighten-up-on-new-album-sort-of/","url":"http%3A%2F%2Fwww.spinner.com%2F2009%2F07%2F20%2Fthe-raveonettes-will-lighten-up-on-new-album-sort-of%2F","title":"The Raveonettes Will Lighten Up on New Album ... Sort Of","titleNoFormatting":"The Raveonettes Will Lighten Up on New Album ... Sort Of","location":"New York,NY,USA","publisher":"Spinner","publishedDate":"Mon, 20 Jul 2009 13:15:48 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-4\u0026fd\u003dS\u0026url\u003dhttp://www.spinner.com/2009/07/20/the-raveonettes-will-lighten-up-on-new-album-sort-of/\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNE8hqFExKou1mwaMJIoQjXFNXQVpw","language":"en"},{"unescapedUrl":"http://music.rightcelebrity.com/?p\u003d2781","url":"http%3A%2F%2Fmusic.rightcelebrity.com%2F%3Fp%3D2781","title":"Raveonettes Tour Dates: Raveonettes Announce New Album","titleNoFormatting":"Raveonettes Tour Dates: Raveonettes Announce New Album","location":"USA","publisher":"Right On Music","publishedDate":"Wed, 22 Jul 2009 10:24:29 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-5\u0026fd\u003dS\u0026url\u003dhttp://music.rightcelebrity.com/%3Fp%3D2781\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNEZCc_Q_Os4fkrfEPjO4_q2EAQRcA","language":"en"},{"unescapedUrl":"http://www.prefixmag.com/news/raveonettes-announce-tour-and-title-and-release-da/31033/","url":"http%3A%2F%2Fwww.prefixmag.com%2Fnews%2Fraveonettes-announce-tour-and-title-and-release-da%2F31033%2F","title":"Raveonettes Announce In \u0026amp; Out of Control, Tour Dates","titleNoFormatting":"Raveonettes Announce In \u0026amp; Out of Control, Tour Dates","location":"Brooklyn,NY,USA","publisher":"Prefixmag","publishedDate":"Tue, 21 Jul 2009 13:37:27 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-1-6\u0026fd\u003dS\u0026url\u003dhttp://www.prefixmag.com/news/raveonettes-announce-tour-and-title-and-release-da/31033/\u0026cid\u003d1281523655\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNFhxoOl0O5tTTyxNOKxoP9iGzXkrQ","language":"en"}]},{"GsearchResultClass":"GnewsSearch","clusterUrl":"http://news.google.com/news/story?ncl\u003dd2XBGfzTDmHIzvMtwfSQCiP0uifIM\u0026hl\u003den\u0026ned\u003dus","content":"\u003cb\u003eFoo\u003c/b\u003e Fighters have been on hiatus since their last tour wrapped, but they\u0026#39;ll play one show this weekend out of civic duty. Rolling Stone reports that the \u003cb\u003e...\u003c/b\u003e","unescapedUrl":"http://newsroom.mtv.com/2009/07/02/foo-fighters-white-house/","url":"http%3A%2F%2Fnewsroom.mtv.com%2F2009%2F07%2F02%2Ffoo-fighters-white-house%2F","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters Should Avoid Playing These Songs At The White House","titleNoFormatting":"Foo Fighters Should Avoid Playing These Songs At The White House","location":"USA","publisher":"MTV.com","publishedDate":"Thu, 02 Jul 2009 12:55:45 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-0\u0026fd\u003dS\u0026url\u003dhttp://newsroom.mtv.com/2009/07/02/foo-fighters-white-house/\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNGN9FGKFakqx9jyfqgWrf3-K5JMYw","language":"en","image":{"url":"http://akamai-static.nme.com/images/article/0925_172010_foofighterspaphotosL50209.jpg","tbUrl":"http://nt3.ggpht.com/news/tbn/92Q2RWIx1j4J","originalContextUrl":"http://www.nme.com/news/foo-fighters/45873","publisher":"NME.com","tbWidth":80,"tbHeight":49},"relatedStories":[{"unescapedUrl":"http://www.rollingstone.com/rockdaily/index.php/2009/07/02/foo-fighters-head-to-dc-to-rock-white-house-fourth-of-july-bash/","url":"http%3A%2F%2Fwww.rollingstone.com%2Frockdaily%2Findex.php%2F2009%2F07%2F02%2Ffoo-fighters-head-to-dc-to-rock-white-house-fourth-of-july-bash%2F","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters Head to DC to Rock White House Fourth of July Bash","titleNoFormatting":"Foo Fighters Head to DC to Rock White House Fourth of July Bash","location":"USA","publisher":"Rolling Stone","publishedDate":"Thu, 02 Jul 2009 05:15:17 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-1\u0026fd\u003dS\u0026url\u003dhttp://www.rollingstone.com/rockdaily/index.php/2009/07/02/foo-fighters-head-to-dc-to-rock-white-house-fourth-of-july-bash/\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNEXWRX1jpi8R9LFOkAfZ_rjdfApjw","language":"en"},{"unescapedUrl":"http://www.nme.com/news/foo-fighters/45873","url":"http%3A%2F%2Fwww.nme.com%2Fnews%2Ffoo-fighters%2F45873","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters debut new song \u0026#39;Wheels\u0026#39; for Barack Obama - video","titleNoFormatting":"Foo Fighters debut new song \u0026#39;Wheels\u0026#39; for Barack Obama - video","location":"UK","publisher":"NME.com","publishedDate":"Mon, 06 Jul 2009 10:40:05 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-2\u0026fd\u003dS\u0026url\u003dhttp://www.nme.com/news/foo-fighters/45873\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNHdxKm3ogufQMZmAnBDVp1QOEyKcg","language":"en"},{"unescapedUrl":"http://www.examiner.com/x-14721-Boston-Music-Examiner~y2009m7d4-Foo-Fighters-to-rock-the-White-House-4th-of-July-Celebration","url":"http%3A%2F%2Fwww.examiner.com%2Fx-14721-Boston-Music-Examiner%7Ey2009m7d4-Foo-Fighters-to-rock-the-White-House-4th-of-July-Celebration","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters to rock the White House 4th of July Celebration","titleNoFormatting":"Foo Fighters to rock the White House 4th of July Celebration","location":"USA","publisher":"Examiner.com","publishedDate":"Sat, 04 Jul 2009 07:03:43 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-3\u0026fd\u003dS\u0026url\u003dhttp://www.examiner.com/x-14721-Boston-Music-Examiner~y2009m7d4-Foo-Fighters-to-rock-the-White-House-4th-of-July-Celebration\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNHWyu9L0ofwoifhR0h6ZntpX3b3hg","language":"en"},{"unescapedUrl":"http://consequenceofsound.net/2009/07/06/watch-foo-fighters-wheels-new-song/","url":"http%3A%2F%2Fconsequenceofsound.net%2F2009%2F07%2F06%2Fwatch-foo-fighters-wheels-new-song%2F","title":"Watch: \u003cb\u003eFoo\u003c/b\u003e Fighters - “Wheels” (New Song)","titleNoFormatting":"Watch: Foo Fighters - “Wheels” (New Song)","location":"Manassas,VA,USA","publisher":"Consequence of Sound","publishedDate":"Mon, 06 Jul 2009 10:04:34 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-4\u0026fd\u003dS\u0026url\u003dhttp://consequenceofsound.net/2009/07/06/watch-foo-fighters-wheels-new-song/\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNEoW_3LrrZh-UgRwWU5tS6HYyGq9A","language":"en"},{"unescapedUrl":"http://www.filter-mag.com/index.php?id\u003d19307\u0026c\u003d1","url":"http%3A%2F%2Fwww.filter-mag.com%2Findex.php%3Fid%3D19307%26c%3D1","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters Debut New Material At The White House","titleNoFormatting":"Foo Fighters Debut New Material At The White House","location":"Los Angeles,CA,USA","publisher":"Filter Magazine","publishedDate":"Mon, 06 Jul 2009 11:10:13 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-5\u0026fd\u003dS\u0026url\u003dhttp://www.filter-mag.com/index.php%3Fid%3D19307%26c%3D1\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNGIb4EFWS7jPneMOMP7aS9yePcxaA","language":"en"},{"unescapedUrl":"http://newsroom.mtv.com/2009/07/06/foo-fighters-white-house-2/","url":"http%3A%2F%2Fnewsroom.mtv.com%2F2009%2F07%2F06%2Ffoo-fighters-white-house-2%2F","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters Debut New Song On White House Lawn","titleNoFormatting":"Foo Fighters Debut New Song On White House Lawn","location":"USA","publisher":"MTV.com","publishedDate":"Mon, 06 Jul 2009 07:42:56 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-2-6\u0026fd\u003dS\u0026url\u003dhttp://newsroom.mtv.com/2009/07/06/foo-fighters-white-house-2/\u0026cid\u003d1271271606\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNFkB54hu4JmcWmjRmo4BcTDCTfAAA","language":"en"}]},{"GsearchResultClass":"GnewsSearch","clusterUrl":"","content":"\u003cb\u003eFoo\u003c/b\u003e Fighters- On a hiatus but just played the White House on the 4th of July \u0026amp; Sunny Day tour with Nate doesn\u0026#39;t start til Sept. \u003cb\u003eFoo\u003c/b\u003e have a Greatest Hits \u003cb\u003e...\u003c/b\u003e","unescapedUrl":"http://www.signonsandiego.com/entertainment/street/2009/07/street_scene_nogo_beastie_boys.html","url":"http%3A%2F%2Fwww.signonsandiego.com%2Fentertainment%2Fstreet%2F2009%2F07%2Fstreet_scene_nogo_beastie_boys.html","title":"NO TOUR : Beastie Boys cancel gigs, including Street Scene","titleNoFormatting":"NO TOUR : Beastie Boys cancel gigs, including Street Scene","location":"San Diego,CA,USA","publisher":"San Diego Union Tribune","publishedDate":"Mon, 20 Jul 2009 10:45:46 -0700","signedRedirectUrl":"http://news.google.com/news/url?sa\u003dT\u0026ct\u003dus/0-3-0\u0026fd\u003dS\u0026url\u003dhttp://www.signonsandiego.com/entertainment/street/2009/07/street_scene_nogo_beastie_boys.html\u0026cid\u003d1281239545\u0026ei\u003d4aFnSpnxK474rQPutNHRAQ\u0026usg\u003dAFQjCNFyvSZc8q6a7VZlFBqDckNtVlVpdQ","language":"en"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"2071","currentPageIndex":0,"moreResultsUrl":"http://news.google.com/nwshp?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026q\u003dfoo\u0026hl\u003den\u0026start\u003d0"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GpatentSearch","unescapedUrl":"http://www.google.com/patents/about?id\u003dGDMdAAAAEBAJ\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://www.google.com/patents/about%3Fid%3DGDMdAAAAEBAJ%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"SZE-\u003cb\u003eFOO\u003c/b\u003e CHIEN","titleNoFormatting":"SZE-FOO CHIEN","applicationDate":"Tue, 26 Mar 1968 00:00:00 -0800","patentNumber":"3468158","patentStatus":"issued","content":"\u003cb\u003e...\u003c/b\u003e 3468158 METHOD OF AND APPARATUS FOR DETERMINING RHEOLOGICAL PROPERTIES OF NON-NEWTONIAN FLUIDS SUCH AS DRILLING FLUIDS OR THE LIKE Filed March 26, r .£. \u003cb\u003e...\u003c/b\u003e","assignee":"","tbUrl":"http://bks9.books.google.com/patents?id\u003dGDMdAAAAEBAJ\u0026printsec\u003ddrawing\u0026img\u003d1\u0026zoom\u003d1\u0026sig\u003dACfU3U10b3w-4hMfKTEykPmtqnoObaLhaA"},{"GsearchResultClass":"GpatentSearch","unescapedUrl":"http://www.google.com/patents/about?id\u003d9YMBAAAAEBAJ\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://www.google.com/patents/about%3Fid%3D9YMBAAAAEBAJ%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"Method for dynamically linking definable program elements of an interactive data processing system","titleNoFormatting":"Method for dynamically linking definable program elements of an interactive data processing system","applicationDate":"Thu, 28 May 1992 00:00:00 -0700","patentNumber":"5381547","patentStatus":"issued","content":"\u003cb\u003eFOO\u003c/b\u003e is provided in this exemplary embodiment, to which a link header l.FAULT is chained. \u003cb\u003e...\u003c/b\u003e 35 The input symbol \u0026quot;\u003cb\u003eFOO\u003c/b\u003e\u0026quot; is not yet defined at this tune. \u003cb\u003e...\u003c/b\u003e","assignee":"Siemens Aktiengesellschaft","tbUrl":"http://bks0.books.google.com/patents?id\u003d9YMBAAAAEBAJ\u0026printsec\u003ddrawing\u0026img\u003d1\u0026zoom\u003d1\u0026sig\u003dACfU3U1L7MxCO4Y8TeU4eV3PgABUfcPMLA"},{"GsearchResultClass":"GpatentSearch","unescapedUrl":"http://www.google.com/patents/about?id\u003dchwfAAAAEBAJ\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://www.google.com/patents/about%3Fid%3DchwfAAAAEBAJ%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"Method for analyzing calls of application program by inserting monitoring routines into the executable version and redirecting calls to the monitoring routines","titleNoFormatting":"Method for analyzing calls of application program by inserting monitoring routines into the executable version and redirecting calls to the monitoring routines","applicationDate":"Tue, 18 Sep 1990 00:00:00 -0700","patentNumber":"5313616","patentStatus":"issued","content":"The -u option 40 routines can be tested by running \u003cb\u003efoo\u003c/b\u003e under another test causes the names of unexecuted user and system proce- harness as follows: \u003cb\u003e...\u003c/b\u003e","assignee":"88Open Consortium, Ltd.","tbUrl":"http://bks1.books.google.com/patents?id\u003dchwfAAAAEBAJ\u0026printsec\u003ddrawing\u0026img\u003d1\u0026zoom\u003d1\u0026sig\u003dACfU3U08WiFfgEBRGJy3374yvDbEyPZYdQ"},{"GsearchResultClass":"GpatentSearch","unescapedUrl":"http://www.google.com/patents/about?id\u003dDK4aAAAAEBAJ\u0026dq\u003dfoo\u0026client\u003dinternal-uds\u0026source\u003duds","url":"http://www.google.com/patents/about%3Fid%3DDK4aAAAAEBAJ%26dq%3Dfoo%26client%3Dinternal-uds%26source%3duds","title":"System and methods for optimizing object-oriented compilations","titleNoFormatting":"System and methods for optimizing object-oriented compilations","applicationDate":"Fri, 05 Jun 1992 00:00:00 -0700","patentNumber":"5481708","patentStatus":"issued","content":"\u003cb\u003e...\u003c/b\u003e constant \u003d 8 Cast to \u0026#39;\u003cb\u003efoo\u003c/b\u003e *\u0026#39; Expression at ccp.cpp(ll) \u003cb\u003e...\u003c/b\u003e [338f:0562] O_ID \u0026#39;func(\u003cb\u003efoo\u003c/b\u003e) \u0026#39; Cast to \u0026#39;long\u0026#39; Expression at ccp.cpp{5): \u003cb\u003e...\u003c/b\u003e","assignee":"Borland International, Inc.","tbUrl":"http://bks2.books.google.com/patents?id\u003dDK4aAAAAEBAJ\u0026printsec\u003ddrawing\u0026img\u003d1\u0026zoom\u003d1\u0026sig\u003dACfU3U06zm0mTVrpBKve5JQrUe0AlQuseA"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"1226","currentPageIndex":0,"moreResultsUrl":"http://www.google.com/patents?source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GvideoSearch","title":"Foo Fighters - The Pretender","titleNoFormatting":"Foo Fighters - The Pretender","published":"Tue, 28 Aug 2007 16:36:23 PDT","content":"Foo Fighters The Pretender\n(C) 2007 Roswell Records, Inc.","publisher":"www.youtube.com","tbUrl":"http://0.gvt0.com/vi/TVboOdX9icA/default.jpg","tbWidth":"320","tbHeight":"240","videoType":"YouTube","url":"http://www.google.com/url?q\u003dhttp://www.youtube.com/watch%3Fv%3DTVboOdX9icA\u0026source\u003dvideo\u0026vgc\u003drss\u0026usg\u003dAFQjCNFvZftyyTO-IswoCPWEmmQbskBMRA","playUrl":"http://www.youtube.com/v/TVboOdX9icA\u0026fs\u003d1\u0026hl\u003den\u0026source\u003duds\u0026autoplay\u003d1","rating":"4.9076071","duration":"269"},{"GsearchResultClass":"GvideoSearch","title":"foo fighters-my hero","titleNoFormatting":"foo fighters-my hero","published":"Sat, 27 Jan 2007 06:18:10 PST","content":"one of foo fighters best songs - My Hero..definately one of my favourite songs.\nwell enjoy :D","publisher":"www.youtube.com","tbUrl":"http://2.gvt0.com/vi/KVKDQgT_b-Y/default.jpg","tbWidth":"320","tbHeight":"240","videoType":"YouTube","url":"http://www.google.com/url?q\u003dhttp://www.youtube.com/watch%3Fv%3DKVKDQgT_b-Y\u0026source\u003dvideo\u0026vgc\u003drss\u0026usg\u003dAFQjCNH9KepO3M5PVNSefDJylTfTGRB8uA","playUrl":"http://www.youtube.com/v/KVKDQgT_b-Y\u0026fs\u003d1\u0026hl\u003den\u0026source\u003duds\u0026autoplay\u003d1","rating":"4.8932624","duration":"247"},{"GsearchResultClass":"GvideoSearch","title":"Foo Fighters: DOA","titleNoFormatting":"Foo Fighters: DOA","published":"Sat, 25 Feb 2006 05:32:29 PST","content":"New Video Of Foo Fighters","publisher":"www.youtube.com","tbUrl":"http://1.gvt0.com/vi/O2_0Rx780Uk/default.jpg","tbWidth":"320","tbHeight":"240","videoType":"YouTube","url":"http://www.google.com/url?q\u003dhttp://www.youtube.com/watch%3Fv%3DO2_0Rx780Uk\u0026source\u003dvideo\u0026vgc\u003drss\u0026usg\u003dAFQjCNE8yH30j_kHOErl8CpozDRNDgEp5w","playUrl":"http://www.youtube.com/v/O2_0Rx780Uk\u0026fs\u003d1\u0026hl\u003den\u0026source\u003duds\u0026autoplay\u003d1","rating":"4.8958893","duration":"269"},{"GsearchResultClass":"GvideoSearch","title":"Foo Fighters Everywhere But Home Tour","titleNoFormatting":"Foo Fighters Everywhere But Home Tour","published":"Sun, 27 Aug 2006 10:46:57 PDT","content":"Foo Fighters Live In Concert\nDave Grohl","publisher":"video.google.com","tbUrl":"http://0.gvt0.com/ThumbnailServer2?app\u003dvss\u0026contentid\u003d6ea5cd582915b590\u0026offsetms\u003d355000\u0026itag\u003dw160\u0026hl\u003den\u0026sigh\u003dqz4THQ9cvyMcp56d6aiQfkG3lLI","tbWidth":"320","tbHeight":"240","videoType":"Google","url":"http://www.google.com/url?q\u003dhttp://video.google.com/videoplay%3Fdocid%3D2671671510864672199\u0026source\u003dvideo\u0026vgc\u003drss\u0026usg\u003dAFQjCNHcl0UGo5jSWXPwzjMgxTMVEfBdHw","playUrl":"http://video.google.com/s/MyL2xl0HXdE/googleplayer.swf?videoUrl\u003dhttp://v1.lscache2.googlevideo.com/videoplayback%3Fid%3D6ea5cd582915b590%26itag%3D5%26begin%3D0%26ip%3D0.0.0.0%26ipbits%3D0%26expire%3D1248327186%26sparams%3Dip,ipbits,expire,id,itag%26signature%3D1E3D85F02EF1EEB2EF09512BD9441AFAAD979067.0431C0158A8EA1E0523BF2E0F92436398840B178%26key%3Dck1\u0026thumbnailUrl\u003dhttp://0.gvt0.com/ThumbnailServer2%3Fapp%3Dvss%26contentid%3D6ea5cd582915b590%26offsetms%3D355000%26itag%3Dw160%26hl%3Den%26sigh%3Dqz4THQ9cvyMcp56d6aiQfkG3lLI\u0026docid\u003d2671671510864672199\u0026hl\u003den\u0026q\u003dfoo+(site:video.google.com+OR+site:youtube.com)\u0026source\u003duds\u0026playerMode\u003dsimple\u0026autoPlay\u003dtrue","rating":"4.977778","duration":"5568"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"12851","currentPageIndex":0,"moreResultsUrl":"http://video.google.com/videosearch?source\u003duds\u0026type\u003dsearch\u0026q\u003dfoo+%28site%3Avideo.google.com+OR+site%3Ayoutube.com%29\u0026hl\u003den\u0026start\u003d0"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://en.wikipedia.org/wiki/Foobar","url":"http://en.wikipedia.org/wiki/Foobar","visibleUrl":"en.wikipedia.org","cacheUrl":"http://www.google.com/search?q\u003dcache:4styY9qq7tYJ:en.wikipedia.org","title":"foobar - Wikipedia, the free encyclopedia","titleNoFormatting":"foobar - Wikipedia, the free encyclopedia","content":"Foobar is often used alone; \u003cb\u003efoo\u003c/b\u003e, bar, and baz are usually used in that order, \u003cb\u003e...\u003c/b\u003e \u003cb\u003eFoo\u003c/b\u003e has entered the English language as a neologism and is considered by \u003cb\u003e...\u003c/b\u003e"},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.foo.com/","url":"http://www.foo.com/","visibleUrl":"www.foo.com","cacheUrl":"http://www.google.com/search?q\u003dcache:aJjqmBB29rgJ:www.foo.com","title":"Get the 411 on Anyone with Free White Pages, People Search and \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"Get the 411 on Anyone with Free White Pages, People Search and ...","content":"Get the free 411, white pages and people search with a new way to search for people."},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.foofighters.com/","url":"http://www.foofighters.com/","visibleUrl":"www.foofighters.com","cacheUrl":"http://www.google.com/search?q\u003dcache:mH6Rsc-rjNgJ:www.foofighters.com","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters","titleNoFormatting":"Foo Fighters","content":"Jul 8, 2009 \u003cb\u003e...\u003c/b\u003e Official \u003cb\u003eFoo\u003c/b\u003e Fighters guitar, drum, and bass tabs."},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://searchcio-midmarket.techtarget.com/sDefinition/0,,sid183_gci212139,00.html","url":"http://searchcio-midmarket.techtarget.com/sDefinition/0,,sid183_gci212139,00.html","visibleUrl":"searchcio-midmarket.techtarget.com","cacheUrl":"http://www.google.com/search?q\u003dcache:mdfUdBXGcm0J:searchcio-midmarket.techtarget.com","title":"What is \u003cb\u003efoo\u003c/b\u003e? - a definition from Whatis.com","titleNoFormatting":"What is foo? - a definition from Whatis.com","content":"Dec 14, 2006 \u003cb\u003e...\u003c/b\u003e Just as economists sometimes use the term \u0026#39;widget\u0026#39; as the ultimate substitute for \u0026#39;something\u0026#39; that is being measured, programmers tend to \u003cb\u003e...\u003c/b\u003e"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"33400000","currentPageIndex":1,"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseSize" : "small", "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1 @@
1
+ {"responseData": {"results":[{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://en.wikipedia.org/wiki/Foobar","url":"http://en.wikipedia.org/wiki/Foobar","visibleUrl":"en.wikipedia.org","cacheUrl":"http://www.google.com/search?q\u003dcache:4styY9qq7tYJ:en.wikipedia.org","title":"foobar - Wikipedia, the free encyclopedia","titleNoFormatting":"foobar - Wikipedia, the free encyclopedia","content":"Foobar is often used alone; \u003cb\u003efoo\u003c/b\u003e, bar, and baz are usually used in that order, \u003cb\u003e...\u003c/b\u003e \u003cb\u003eFoo\u003c/b\u003e has entered the English language as a neologism and is considered by \u003cb\u003e...\u003c/b\u003e"},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.foo.com/","url":"http://www.foo.com/","visibleUrl":"www.foo.com","cacheUrl":"http://www.google.com/search?q\u003dcache:aJjqmBB29rgJ:www.foo.com","title":"Get the 411 on Anyone with Free White Pages, People Search and \u003cb\u003e...\u003c/b\u003e","titleNoFormatting":"Get the 411 on Anyone with Free White Pages, People Search and ...","content":"Get the free 411, white pages and people search with a new way to search for people."},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://www.foofighters.com/","url":"http://www.foofighters.com/","visibleUrl":"www.foofighters.com","cacheUrl":"http://www.google.com/search?q\u003dcache:mH6Rsc-rjNgJ:www.foofighters.com","title":"\u003cb\u003eFoo\u003c/b\u003e Fighters","titleNoFormatting":"Foo Fighters","content":"Jul 8, 2009 \u003cb\u003e...\u003c/b\u003e Official \u003cb\u003eFoo\u003c/b\u003e Fighters guitar, drum, and bass tabs."},{"GsearchResultClass":"GwebSearch","unescapedUrl":"http://searchcio-midmarket.techtarget.com/sDefinition/0,,sid183_gci212139,00.html","url":"http://searchcio-midmarket.techtarget.com/sDefinition/0,,sid183_gci212139,00.html","visibleUrl":"searchcio-midmarket.techtarget.com","cacheUrl":"http://www.google.com/search?q\u003dcache:mdfUdBXGcm0J:searchcio-midmarket.techtarget.com","title":"What is \u003cb\u003efoo\u003c/b\u003e? - a definition from Whatis.com","titleNoFormatting":"What is foo? - a definition from Whatis.com","content":"Dec 14, 2006 \u003cb\u003e...\u003c/b\u003e Just as economists sometimes use the term \u0026#39;widget\u0026#39; as the ultimate substitute for \u0026#39;something\u0026#39; that is being measured, programmers tend to \u003cb\u003e...\u003c/b\u003e"}],"cursor":{"pages":[{"start":"0","label":1},{"start":"4","label":2},{"start":"8","label":3},{"start":"12","label":4},{"start":"16","label":5},{"start":"20","label":6},{"start":"24","label":7},{"start":"28","label":8}],"estimatedResultCount":"33400000","currentPageIndex":0,"moreResultsUrl":"http://www.google.com/search?oe\u003dutf8\u0026ie\u003dutf8\u0026source\u003duds\u0026start\u003d0\u0026hl\u003den\u0026q\u003dfoo"}}, "responseDetails": null, "responseStatus": 200}
@@ -0,0 +1,26 @@
1
+
2
+ require File.dirname(__FILE__) + '/spec_helper'
3
+
4
+ describe Google::Search::Item::Blog do
5
+ describe "#initialize" do
6
+ it "should populate attributes" do
7
+ hash = json_fixture('blog-response')['responseData']['results'].first
8
+ item = Google::Search::Item::Blog.new hash
9
+ item.title.should include('Foo (51)')
10
+ item.author.should == 'KNews'
11
+ item.uri.should == 'http://www.kaieteurnewsonline.com/2009/07/22/foo-51-amsterdam-4-12-shine-for-guyana-on-opening-day/'
12
+ item.blog_uri.should == 'http://www.kaieteurnewsonline.com/'
13
+ item.content.should include('Jonathon')
14
+ item.published.should be_a(DateTime)
15
+ end
16
+ end
17
+ end
18
+
19
+
20
+
21
+
22
+
23
+
24
+
25
+
26
+