john_stamos 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +7 -0
  2. data/john_stamos.gemspec +11 -11
  3. data/lib/john_stamos.rb +1 -0
  4. data/lib/john_stamos/client.rb +3 -3
  5. data/lib/john_stamos/extraction_helper.rb +17 -0
  6. data/lib/john_stamos/pin.rb +3 -17
  7. data/lib/john_stamos/pin_search.rb +2 -14
  8. data/lib/john_stamos/pinner.rb +4 -16
  9. data/lib/john_stamos/version.rb +1 -1
  10. data/spec/lib/john_stamos/client_spec.rb +2 -1
  11. data/spec/lib/john_stamos/extraction_helper_spec.rb +23 -0
  12. data/spec/lib/john_stamos/pin_search_spec.rb +0 -1
  13. data/spec/lib/john_stamos/pin_spec.rb +2 -2
  14. data/spec/lib/john_stamos/pinner_spec.rb +2 -2
  15. data/spec/spec_helper.rb +2 -1
  16. data/spec/support/vcr_cassettes/JohnStamos_Client/_make_request/returns_a_string_representation_of_the_response_body.yml +13 -11
  17. data/spec/support/vcr_cassettes/JohnStamos_Client/_page_content/returns_a_Nokogiri_HTML_Document_object.yml +13 -11
  18. data/spec/support/vcr_cassettes/JohnStamos_Client/_search_pins/returns_the_correct_number_of_pins.yml +7294 -5813
  19. data/spec/support/vcr_cassettes/JohnStamos_ExtractionHelper/_embedded_page_json/returns_a_hash.yml +811 -0
  20. data/spec/support/vcr_cassettes/JohnStamos_ExtractionHelper/_embedded_page_json/returns_the_extracted_JSON_Pinterest_uses_to_start_the_client_side_backbone_app.yml +811 -0
  21. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/_pinner/returns_a_Pinner_object.yml +385 -415
  22. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/_pinner/shows_my_fake_account_as_the_owning_Pinner.yml +387 -418
  23. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/belongs_to_the_correct_board.yml +385 -415
  24. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/has_the_correct_description.yml +385 -415
  25. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/has_the_correct_image.yml +385 -415
  26. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/has_the_correct_like_count.yml +768 -1328
  27. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/has_the_correct_repin_count.yml +385 -415
  28. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/has_the_correct_source_url.yml +385 -415
  29. data/spec/support/vcr_cassettes/JohnStamos_Pin/scraped_data/is_not_a_video.yml +385 -415
  30. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_execute_/when_using_a_search_term_that_yields_thousands_of_pins/with_a_limit_higher_than_the_default/collects_the_correct_number_of_pin_ids.yml +16126 -15794
  31. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_execute_/when_using_a_search_term_that_yields_thousands_of_pins/with_a_limit_lower_than_the_default/collects_the_correct_number_of_pin_ids.yml +8235 -10652
  32. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_execute_/when_using_a_search_term_that_yields_thousands_of_pins/with_a_limit_lower_than_the_default/never_calls_subsequent_retrieval_.yml +8235 -10652
  33. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_execute_/when_using_a_search_term_that_yields_thousands_of_pins/with_no_limit_specified/limits_the_pin_ids_collected_to_50.yml +11858 -10643
  34. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_execute_/when_using_a_search_term_that_yields_thousands_of_pins/with_no_limit_specified/limits_to_50_the_default.yml +11858 -10643
  35. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/with_results_found/sets_next_bookmark.yml +4929 -4727
  36. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/with_results_found/sets_next_bookmark_with_a_hash_for_the_next_batch_of_results.yml +4929 -4727
  37. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/with_results_found/should_set_pin_ids.yml +4929 -4727
  38. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/without_any_results_found/has_a_nil_next_bookmark.yml +848 -813
  39. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/without_any_results_found/leaves_the_pin_ids_array_empty.yml +848 -813
  40. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_subsequent_retrieval/with_results_found/sets_next_bookmark_with_a_hash_for_the_next_batch_of_results.yml +8309 -8190
  41. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_subsequent_retrieval/with_results_found/sets_the_next_bookmark.yml +8309 -8190
  42. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_subsequent_retrieval/with_results_found/should_append_the_new_pin_ids.yml +8309 -8190
  43. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_about/returns_the_correct_about_text.yml +386 -401
  44. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_avatar/returns_the_correct_avatar_URL.yml +386 -401
  45. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_board_count/returns_the_correct_number_of_boards.yml +386 -401
  46. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_follower_count/returns_a_follower_count_of_0.yml +386 -401
  47. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_location/returns_the_correct_location.yml +386 -401
  48. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_pin_count/returns_the_correct_number_of_pins.yml +386 -401
  49. data/spec/support/vcr_cassettes/JohnStamos_Pinner/_website_url/returns_the_correct_website_url.yml +386 -401
  50. data/spec/support/vcr_cassettes/JohnStamos_Pinner/name_related_attributes/returns_the_correct_first_name.yml +621 -1038
  51. data/spec/support/vcr_cassettes/JohnStamos_Pinner/name_related_attributes/returns_the_correct_full_name.yml +386 -401
  52. data/spec/support/vcr_cassettes/JohnStamos_Pinner/name_related_attributes/returns_the_correct_last_name.yml +386 -401
  53. metadata +160 -154
  54. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_first_retrieval_/with_results_found/sets_next_bookmark_with_a_hash_for_the_next_25_results.yml +0 -5170
  55. data/spec/support/vcr_cassettes/JohnStamos_PinSearch/_subsequent_retrieval/with_results_found/sets_next_bookmark_with_a_hash_for_the_next_25_results.yml +0 -9053
@@ -2,7 +2,7 @@
2
2
  http_interactions:
3
3
  - request:
4
4
  method: get
5
- uri: http://pinterest.com/pin/412149803369441273/
5
+ uri: http://www.pinterest.com/pin/412149803369441273/
6
6
  body:
7
7
  encoding: US-ASCII
8
8
  string: ''
@@ -22,27 +22,31 @@ http_interactions:
22
22
  Content-Type:
23
23
  - text/html; charset=utf-8
24
24
  Date:
25
- - Fri, 16 Aug 2013 23:48:40 GMT
25
+ - Fri, 20 Sep 2013 18:28:37 GMT
26
26
  Pinterest-Breed:
27
27
  - CORGI
28
28
  Pinterest-Generated-By:
29
- - ngapp-2c97997d
29
+ - ngapp-90000cf6
30
30
  Pinterest-Version:
31
- - 559a34d
31
+ - '8814715'
32
32
  Server:
33
33
  - nginx
34
34
  Set-Cookie:
35
- - _pinterest_sess="eJwFwUELwiAUAOB/09lWwS6PIeRB6L0xmZVdIpor35AdbIj++r6vLUde3/OdX3av7MVvNUttJyFWBd3zF6IHHPFA7E7ES0EJsEs+pTCBZorY2Pw4m0DVLMSD6G/mi/EaqSqBoyyOdXZ1aPQH4A+sCCRB";
36
- Domain=.pinterest.com; expires=Mon, 11-Aug-2014 23:48:40 GMT; Max-Age=31103999;
35
+ - _pinterest_sess="eJwFwbEKwjAQANC/cekgrUinQypdMlyOhqslWYTGYhIaqES4+Pe+V+XcHKZOFPsj8UeGtT782tN9ELg9vzFvgIwXYi/IvmoBOJWtlPgClXTAZWot71EnbGk0Oy3zFbMLbjTBsRWXVWd5/qk3wB/R5SSf";
36
+ Domain=.pinterest.com; expires=Mon, 15-Sep-2014 18:28:37 GMT; Max-Age=31103999;
37
37
  Path=/
38
- - csrftoken=vvfMYWvuty0ZISKWqnw2y7ozFgcgMRNc; Domain=.pinterest.com; expires=Fri,
39
- 15-Aug-2014 23:48:40 GMT; Max-Age=31449600; Path=/
38
+ - csrftoken=hT236LZFnre9Ts3FxCr1GJlpzA3RngNd; Domain=.pinterest.com; expires=Fri,
39
+ 19-Sep-2014 18:28:37 GMT; Max-Age=31449600; Path=/
40
40
  Vary:
41
41
  - Cookie, Accept-Encoding
42
42
  Via:
43
43
  - 1.1 varnish
44
+ X-Frame-Options:
45
+ - SAMEORIGIN
46
+ X-Ua-Compatible:
47
+ - IE=edge
44
48
  X-Varnish:
45
- - '1450976604'
49
+ - '1368527562'
46
50
  Transfer-Encoding:
47
51
  - chunked
48
52
  Connection:
@@ -53,286 +57,270 @@ http_interactions:
53
57
  ielt10 en\"><![endif]-->\n<!--[if IE 8 ]><html lang=\"en\" class=\"ie8 ielt9
54
58
  ielt10 en\"><![endif]-->\n<!--[if IE 9 ]><html lang=\"en\" class=\"ie9 ielt10
55
59
  en\"><![endif]-->\n<!--[if (gt IE 9)|!(IE)]><!--><html lang=\"en\" class=\"
56
- en\"><!--<![endif]-->\n\n<head>\n \n \n \n \n\n <link rel=\"stylesheet\"
57
- href=\"http://passets-ak.pinterest.com/webapp/app/desktop/bundle.11457e74.css\">\n
58
- \ <script>\n \n var Pc = {\n e: {\"nrf\": false,
59
- \"nrffr\": false, \"ew\": false, \"wfe\": false, \"ds\": false, \"ff_s\":
60
- false, \"ps\": true, \"pfyh_esb\": false, \"sw\": false, \"rpl\": false, \"jfy\":
61
- false, \"epfftensp\": false, \"nrfsp\": false},\n expns: {}\n };\n
62
- \ var P_TEST_MODE = null;\n \n\n \n var P = window.P
63
- = {};\nP.e = window.Pc.e;\nP.expns = window.Pc.expns;\nP.DEBUG = window.Pc.DEBUG;\nP.FB_KEY
64
- = -1;\nP.CONTEXT = {};\nP.STRINGS = {};\nP.PAGE_INFO = null;\nP.ROUTES = [];\nP.PAGE_ROUTE_PATTERN
65
- = \"\";\nP.PAGE_LOAD_REQUEST_IDENTIFIER = \"\";\nP.setFacebookKey = function(a)
66
- {\n P.FB_KEY = a\n};\nP.setContext = function(a) {\n P.CONTEXT = a\n};\nP.setStrings
67
- = function(a) {\n P.STRINGS = a\n};\nP.setPageInfo = function(a) {\n P.PAGE_INFO
68
- = a\n};\nP.setRoutes = function(a) {\n P.ROUTES = a\n};\nP.setPageRoutePattern
69
- = function(a) {\n P.PAGE_ROUTE_PATTERN = a\n};\nP.setPageLoadRequestIdentifier
70
- = function(a) {\n P.PAGE_LOAD_REQUEST_IDENTIFIER = a\n};\nvar Available =
71
- function() {\n this.queuedCallbacks = [];\n this.available = !1\n};\nAvailable.prototype
72
- = {when:function(a) {\n this.available ? a() : this.queuedCallbacks.push(a)\n},
73
- declare:function() {\n this.available = !0;\n for(var a = 0;a < this.queuedCallbacks.length;a++)
74
- {\n this.queuedCallbacks[a]()\n }\n this.queuedCallbacks = []\n}};\nP.Available
75
- = P.Available;\nP.available = new Available;\nP.Overlap = {isOverlappingViewport:function(a,
76
- b) {\n void 0 === b && (b = 0);\n var c = window.innerWidth || document.documentElement.clientWidth,
77
- d = window.innerHeight || document.documentElement.clientHeight;\n if(!a.getBoundingClientRect)
78
- {\n return!0\n }\n var e = a.getBoundingClientRect(), f = e.bottom -
79
- e.top;\n return 0 < e.right - e.left && 0 < f && e.top < d + b && e.bottom
80
- > -b && e.left < c + b && e.right > -b\n}};\nvar LOADED_CLASS = \" loaded\",
81
- FADE_CLASS = \" fade\";\nP.Lazy = {onImageLoad:function(a) {\n var b = LOADED_CLASS;\n
82
- \ P.Overlap.isOverlappingViewport(a) && (b += FADE_CLASS);\n a.className
83
- += b\n}};\n\n </script>\n <script src=\"http://passets-ak.pinterest.com/webapp/app/desktop/bundle.4ff3d363.js\"></script>\n
84
- \ \n \n\n \n <link rel=\"apple-touch-icon\" href=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/logo_trans_144x144.4d67817d.png\">\n
85
- \ <link rel=\"icon\" href=\"http://passets-ak.pinterest.com/webapp/app/desktop/images/favicon.c37ee67b.png\">\n\n
86
- \ <link rel=\"canonical\" href=\"/pin/412149803369441273/\">\n <!--[if
87
- IE]><link rel=\"shortcut icon\" href=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/favicon.85f9689a.ico\"><![endif]-->\n
60
+ en\"><!--<![endif]-->\n<head>\n <meta charset=\"utf-8\">\n\n <link
61
+ rel=\"stylesheet\" href=\"http://passets-ak.pinterest.com/webapp/app/desktop/bundle.bc88a0f9.css\">\n
62
+ \ \n \n <script>\n window.isMainPinterestSite
63
+ = true;\n \n var Pc = {\n e: {\"nrf\":
64
+ false, \"ew\": false, \"wfe\": false, \"rpl\": false, \"ff_s\": false, \"fwl\":
65
+ false, \"ps\": null, \"sw\": false, \"fwb\": false, \"fwc\": false, \"slm\":
66
+ null, \"sn\": false, \"fww\": true, \"epfftensp\": false},\n expns:
67
+ {}\n };\n Pc.TEST_MODE = null;\n \n var
68
+ goog={require:function(a){},provide:function(a){}};var P=window.P={};P.e=window.Pc.e;P.expns=window.Pc.expns;P.DEBUG=window.Pc.DEBUG;P.interfaces={};P.FB_KEY=-1;P.CONTEXT={};P.STRINGS={};P.PAGE_INFO=null;P.ROUTES=[];P.PAGE_ROUTE_PATTERN=\"\";P.PAGE_LOAD_REQUEST_IDENTIFIER=\"\";P.setFacebookKey=function(a){P.FB_KEY=a};P.setContext=function(a){P.CONTEXT=a};P.setStrings=function(a){P.STRINGS=a};P.setPageInfo=function(a){P.PAGE_INFO=a};P.setRoutes=function(a){P.ROUTES=a};P.setPageRoutePattern=function(a){P.PAGE_ROUTE_PATTERN=a};\nP.setPageLoadRequestIdentifier=function(a){P.PAGE_LOAD_REQUEST_IDENTIFIER=a};P.CONST={};P.Overlap={isOverlappingViewport:function(a,b){void
69
+ 0===b&&(b=0);var c=window.innerWidth||document.documentElement.clientWidth,d=window.innerHeight||document.documentElement.clientHeight;if(!a.getBoundingClientRect)return!0;var
70
+ e=a.getBoundingClientRect(),g=e.bottom-e.top;return 0<e.right-e.left&&0<g&&e.top<d+b&&e.bottom>-b&&e.left<c+b&&e.right>-b}};var
71
+ LOADED_CLASS=\" loaded\",FADE_CLASS=\" fade\";P.Lazy={onImageLoad:function(a){var
72
+ b=LOADED_CLASS;P.Overlap.isOverlappingViewport(a)&&(b+=FADE_CLASS);a.className+=b}};var
73
+ doc=document,head=doc.getElementsByTagName(\"head\")[0],validBase=/^https?:\\/\\//,list={},ids={},delay={},scriptpath,scripts={},s=\"string\",f=!1,push=\"push\",domContentLoaded=\"DOMContentLoaded\",readyState=\"readyState\",addEventListenerName=\"addEventListenerName\",onreadystatechangeName=\"onreadystatechangeName\";function
74
+ every(a,b){for(var c=0,d=a.length;c<d;++c)if(!b(a[c]))return f;return 1}function
75
+ each(a,b){every(a,function(a){return!b(a)})}\n!doc[readyState]&&doc[addEventListenerName]&&(doc[addEventListenerName](domContentLoaded,function
76
+ fn(){doc.removeEventListener(domContentLoaded,fn,f);doc[readyState]=\"complete\"},f),doc[readyState]=\"loading\");\nfunction
77
+ $script(a,b,c){function d(a){return a.call?a():list[a]}function e(){if(!--l){list[m]=1;h&&h();for(var
78
+ a in delay)every(a.split(\"|\"),d)&&!each(delay[a],d)&&(delay[a]=[])}}a=a[push]?a:[a];var
79
+ g=b&&\"function\"==typeof b,h=g?b:c,m=g?a.join(\"\"):b,l=a.length;setTimeout(function(){each(a,function(a){if(null===a)return
80
+ e();if(scripts[a])return m&&(ids[m]=1),2==scripts[a]&&e();scripts[a]=1;m&&(ids[m]=1);create(!validBase.test(a)&&scriptpath?scriptpath+a+\".js\":a,e)})},0);return
81
+ $script}\nfunction create(a,b){var c=doc.createElement(\"script\"),d=f;c.onload=c.onerror=c[onreadystatechangeName]=function(){c[readyState]&&!/^c|loade/.test(c[readyState])||d||(c.onload=c[onreadystatechangeName]=null,d=1,scripts[a]=2,b())};c.async=1;c.src=a;head.insertBefore(c,head.firstChild)}$script.get=create;$script.order=function(a,b,c){(function
82
+ e(){var g=a.shift();a.length?$script(g,e):$script(g,b,c)})()};$script.path=function(a){scriptpath=a};\n$script.ready=function(a,b,c){a=a[push]?a:[a];var
83
+ d=[];!each(a,function(a){list[a]||d[push](a)})&&every(a,function(a){return
84
+ list[a]})?b():function(a){delay[a]=delay[a]||[];delay[a][push](b);c&&c(d)}(a.join(\"|\"));return
85
+ $script};$script.done=function(a){$script([null],a)};P.script={};P.script.ready=function(a,b){$script.ready(a,b)};P.script.load=function(a,b,c){P.script.ready(a,function(){0===b.lastIndexOf(\"//\",0)&&(b=window.location.protocol+b);$script(b,c)})};P.script.done=function(a){$script.done(a)};var
86
+ JS_MODULE_ID_START_ARGS=\"startArgs\",startArgsRef=null;P.start={};P.start.start=function(a){startArgsRef=a;P.script.done(JS_MODULE_ID_START_ARGS)};P.start.ready=function(a){P.script.ready(JS_MODULE_ID_START_ARGS,function(){a(startArgsRef)})};P.start.finishStart=function(){startArgsRef=null};P.BodyColumns={};P.BodyColumns.setNumColumns=function(a){var
87
+ b=document.documentElement;a=a?a:P.BodyColumns.getBodyColumnsNeeded();a=b.className.replace(/
88
+ columns-\\d+/,\"\")+\" columns-\"+a;b.className=a};P.BodyColumns.getBodyColumnsNeeded=function(){var
89
+ a=0;P.e.sn&&(a=22);return Math.min(Math.max(Math.floor((window.innerWidth||document.documentElement.clientWidth)/(P.CONST.PIN_WIDTH+P.CONST.PIN_MARGIN+a)),P.CONST.MIN_COLUMNS),P.CONST.MAX_COLUMNS)};P.BodyColumns.initialize=function(){P.BodyColumns.setNumColumns()};
90
+ \ P.CONST.PIN_WIDTH=236;P.CONST.PIN_MARGIN=14;P.CONST.MIN_COLUMNS=3;P.CONST.MAX_COLUMNS=10;P.BodyColumns.initialize();
91
+ \ </script>\n <script src=\"http://passets-ec.pinterest.com/webapp/app/desktop/bundle.c02a7d67.js\"></script>\n
92
+ \ \n <link rel=\"canonical\" href=\"/pin/412149803369441273/\">\n\n <link
93
+ rel=\"apple-touch-icon\" href=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/logo_trans_144x144.4d67817d.png\">\n
94
+ \ <link rel=\"icon\" href=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/favicon.c37ee67b.png\">\n
95
+ \ <!--[if IE]><link rel=\"shortcut icon\" href=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/favicon.85f9689a.ico\"><![endif]-->\n
88
96
  \ <meta name=\"application-name\" content=\"Pinterest\">\n <meta name=\"msapplication-TileColor\"
89
97
  content=\"#ffffff\">\n <meta name=\"msapplication-TileImage\" content=\"http://passets-ec.pinterest.com/webapp/app/desktop/images/logo_trans_144x144.4d67817d.png\">\n\n
90
98
  \ <meta property=\"fb:app_id\" content=\"274266067164\">\n <meta property=\"og:site_name\"
91
99
  content=\"Pinterest\">\n <meta name=\"viewport\" content=\"width=device-width,
92
- initial-scale=1\">\n\n \n <meta name=\"google-site-verification\" content=\"084yfFbt4cT_4Gt1BBHFINQ71YTJCd9S47fL7IE7S1w\">\n\n
93
- \ <title>JohnStamosgemPin description | JohnStamosgemBoard</title>\n\n
94
- \ \n <meta property=\"og:image\" name=\"og:image\" content=\"http://media-cache-ak0.pinimg.com/736x/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
95
- data-app>\n \n <meta property=\"og:url\" name=\"og:url\" content=\"http://pinterest.com/pin/412149803369441273/\"
96
- data-app>\n \n <meta property=\"og:type\" name=\"og:type\" content=\"pinterestapp:pin\"
97
- data-app>\n \n <meta property=\"pinterestapp:pinner\" name=\"pinterestapp:pinner\"
98
- content=\"http://pinterest.com/johnstamosgem/\" data-app>\n \n <meta
99
- property=\"description\" name=\"description\" content=\"John Stamosgem utiliza
100
- Pinterest, un tablero virtual que te permite reunir y compartir las cosas
101
- que te inspiran.\" data-app>\n \n <meta property=\"og:see_also\"
102
- name=\"og:see_also\" content=\"http://johnstamosgem.com/\" data-app>\n \n
103
- \ <meta property=\"pinterestapp:repins\" name=\"pinterestapp:repins\"
104
- content=\"0\" data-app>\n \n <meta property=\"og:description\" name=\"og:description\"
105
- content=\"JohnStamosgemPin description\" data-app>\n \n <meta property=\"og:title\"
106
- name=\"og:title\" content=\"JohnStamosgemBoard\" data-app>\n \n <meta
107
- property=\"pinterestapp:likes\" name=\"pinterestapp:likes\" content=\"1\"
108
- data-app>\n \n <meta property=\"pinterestapp:pinboard\" name=\"pinterestapp:pinboard\"
109
- content=\"http://pinterest.com/johnstamosgem/johnstamosgemboard/\" data-app>\n
110
- \ \n <meta property=\"pinterestapp:source\" name=\"pinterestapp:source\"
111
- content=\"http://johnstamosgem.com/\" data-app>\n </head><body>\n <div
112
- id=\"fb-root\"></div>\n<script>\n window.fbAsyncInit = function() {\n \n
113
- \ \n FB.init({\n appId: '274266067164',\n status: true\n });\n
114
- \ window.fbApiInit = true;\n P.FB = FB;\n };\n\n \n (function(d, s,
115
- id){\n var js, fjs = d.getElementsByTagName(s)[0];\n if (d.getElementById(id))
116
- {return;}\n js = d.createElement(s); js.id = id;\n js.src = \"//connect.facebook.net/en_US/all.js\";\n
117
- \ fjs.parentNode.insertBefore(js, fjs);\n }(document, 'script', 'facebook-jssdk'));\n\n
118
- \ P.FBEnsureInit = function(callback) {\n if (!window.fbApiInit) {\n
119
- \ setTimeout(function() {\n P.FBEnsureInit(callback);\n
120
- \ }, 50);\n } else {\n if (callback) {\n callback();\n
121
- \ }\n }\n }\n</script><div class=\"App full Module\" id=\"App-42\">\n\n\n\n\n\n\n\n
122
- \ <div class=\"Header Module\" id=\"Header-1\"><div class=\"headerBackground\"></div>\n\n\n\n<div
123
- class=\"headerContainer centeredWithinWrapper \">\n <div class=\"leftHeaderContent\">\n
124
- \ \n \n \n <div class=\"categoriesButton
125
- DropdownButton Module\" id=\"DropdownButton-6\">\n\n\n<button type=\"button\"
126
- class=\"rounded default Button Module primaryOnHover btn categories\" id=\"Button-9\">\n\n\n<em></em>\n<span
127
- class=\"accessibilityText\">Categories</span></button></div>\n\n <div
128
- class=\"ui-SearchForm Module\" id=\"ui-SearchForm-7\">\n<form action=\"/search/\"
129
- method=\"GET\" name=\"search\">\n <div class=\"search Module ui-TypeaheadField\"
130
- id=\"ui-TypeaheadField-10\">\n\n\n\n\n\n\n\n\n\n\n\n <input type=\"text\"
131
- name=\"q\"\n value=\"\" placeholder=\"Search\"\n autocomplete=\"off\"
132
- \ class=\"field\" />\n\n<div class=\"search hidden ui-Typeahead Module\" id=\"ui-Typeahead-11\">\n\n
133
- \ \n\n\n\n\n\n\n<ul class=\"results\"></ul></div></div>\n <button class=\"submit\"
134
- type=\"submit\">Search</button>\n</form></div>\n </div>\n\n <div>\n
135
- \ <a href=\"/\" id=\"logo\" class=\"logo\" data-force-refresh=\"1\">Pinterest</a>\n\n
136
- \ \n </div>\n\n\n \n\n <div class=\"rightHeaderContent\">\n
137
- \ \n <div class=\"unauthActions\">\n <div
138
- class=\"LanguageMenu Module\" id=\"LanguageMenu-8\">\n \n\n\n<div class=\"DropdownButton
139
- Module\" id=\"DropdownButton-12\">\n\n\n<button type=\"button\" class=\"rounded
140
- default Button Module langaugeButton hasText btn\" id=\"Button-13\">\n\n\n<span
141
- class=\"buttonText\">English (US)</span>\n </button></div></div>\n
142
- \ </div>\n \n </div>\n</div></div>\n <div class=\"ScrollToTop
143
- Pillow Module\" id=\"ScrollToTop-2\">\n\n<button>\n \n <div class=\"textContainer\">Scroll
144
- to&nbsp;Top</div>\n</button></div>\n\n<div class=\"appContent\">\n <div
145
- class=\"mainContainer\">\n \n <div class=\"Nags Module\"
146
- id=\"Nags-3\">\n\n\n\n\n\n\n\n \n \n \n \n \n
147
- \ \n \n <!--[if lt IE 8]><div class=\"NagBase Module centeredWithinWrapper\"
148
- id=\"NagBase-14\">\n\n\n\n\n\n\n\n \n <div class=\"message\">Wups, your
149
- browser's a little out of date! <a href=\"http://windows.microsoft.com/en-US/internet-explorer/download-ie\">Update
100
+ initial-scale=1, user-scalable=no\">\n\n <title>JohnStamosgemPin description
101
+ | JohnStamosgemBoard</title>\n\n <meta property=\"og:image\" name=\"og:image\"
102
+ content=\"http://media-cache-ak0.pinimg.com/736x/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
103
+ data-app>\n <meta property=\"og:url\" name=\"og:url\" content=\"http://www.pinterest.com/pin/412149803369441273/\"
104
+ data-app>\n <meta property=\"og:type\" name=\"og:type\" content=\"pinterestapp:pin\"
105
+ data-app>\n <meta property=\"pinterestapp:pinner\" name=\"pinterestapp:pinner\"
106
+ content=\"http://www.pinterest.com/johnstamosgem/\" data-app>\n <meta
107
+ property=\"description\" name=\"description\" content=\"John Stamosgem is
108
+ using Pinterest, an online pinboard to collect and share what inspires you.\"
109
+ data-app>\n <meta property=\"og:see_also\" name=\"og:see_also\"
110
+ content=\"http://johnstamosgem.com/\" data-app>\n <meta property=\"pinterestapp:repins\"
111
+ name=\"pinterestapp:repins\" content=\"0\" data-app>\n <meta property=\"og:description\"
112
+ name=\"og:description\" content=\"JohnStamosgemPin description\" data-app>\n
113
+ \ <meta property=\"og:title\" name=\"og:title\" content=\"JohnStamosgemBoard\"
114
+ data-app>\n <meta property=\"pinterestapp:likes\" name=\"pinterestapp:likes\"
115
+ content=\"1\" data-app>\n <meta property=\"pinterestapp:pinboard\"
116
+ name=\"pinterestapp:pinboard\" content=\"http://www.pinterest.com/johnstamosgem/johnstamosgemboard/\"
117
+ data-app>\n <meta property=\"pinterestapp:source\" name=\"pinterestapp:source\"
118
+ content=\"http://johnstamosgem.com/\" data-app>\n </head><body><div class=\"App
119
+ full Module\" id=\"App-42\">\n\n <div class=\"Header Module\" id=\"Header-1\"><div
120
+ class=\"headerBackground\"></div>\n\n\n<div class=\"headerContainer centeredWithinWrapper
121
+ \">\n <div class=\"leftHeaderContent\">\n <div
122
+ class=\"categoriesButton DropdownButton Module\" id=\"DropdownButton-6\">\n\n<button
123
+ type=\"button\" class=\"rounded Button Module primaryOnHover btn categories\"
124
+ id=\"Button-9\">\n\n<em></em>\n<span class=\"accessibilityText\">Categories</span></button></div>\n
125
+ \ \n <div class=\"inHeader ui-SearchForm Module\" id=\"ui-SearchForm-7\">
126
+ \ \n\n\n<form action=\"/search/\" method=\"GET\" name=\"search\">\n <div
127
+ class=\"inHeader search Module ui-TypeaheadField\" id=\"ui-TypeaheadField-10\">\n
128
+ \ \n\n\n\n <input type=\"text\" name=\"q\" value=\"\" placeholder=\"Search\"\n
129
+ \ autocomplete=\"off\" class=\"field\" />\n<div class=\"search hidden
130
+ ui-Typeahead Module inHeader\" id=\"ui-Typeahead-11\">\n \n\n \n\n<ul
131
+ class=\"results\"></ul></div></div>\n <button class=\"submit\" type=\"submit\">Search</button>\n</form></div>\n
132
+ \ </div>\n\n <div>\n <a href=\"/\" id=\"logo\" class=\"logo\"
133
+ data-force-refresh=\"1\">Pinterest</a>\n\n </div>\n\n\n \n <div
134
+ class=\"rightHeaderContent\">\n <div class=\"unauthActions\">\n
135
+ \ <div class=\"LanguageMenu Module\" id=\"LanguageMenu-8\">
136
+ \ \n<div class=\"DropdownButton Module\" id=\"DropdownButton-12\">\n\n<button
137
+ type=\"button\" class=\"rounded Button Module langaugeButton hasText btn\"
138
+ id=\"Button-13\">\n\n<span class=\"buttonText\">English (US)</span>\n </button></div></div>\n
139
+ \ </div>\n </div>\n</div></div>\n <div class=\"ScrollToTop
140
+ Pillow Module\" id=\"ScrollToTop-2\"><button>\n <div class=\"textContainer\">Scroll
141
+ to&nbsp;Top</div>\n</button></div>\n\n \n<div class=\"appContent\">\n <div
142
+ class=\"mainContainer\">\n <div class=\"Nags Module\" id=\"Nags-3\">\n\n
143
+ \ <!--[if lt IE
144
+ 8]><div class=\"NagBase Module centeredWithinWrapper\" id=\"NagBase-14\">\n\n
145
+ \ \n <div class=\"message\">Wups, your browser's a little out of date!
146
+ <a href=\"http://windows.microsoft.com/en-US/internet-explorer/download-ie\">Update
150
147
  it now</a> or <a href=\"http://whatbrowser.org/\">try another browser</a>
151
- for a faster, smoother Pinterest.</div>\n\n\n\n\n <button type=\"button\"
152
- class=\"default Button nagClose Module borderless\" id=\"Button-16\">\n\n\n\n
153
- \ &nbsp;</button>\n</div><![endif]-->\n \n <div class=\"NagUnauth
154
- NagBase Module centeredWithinWrapper\" id=\"NagUnauth-15\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
155
- class=\"message\">\n <p class=\"messageContent\">\n \n <strong>Pinterest
156
- is an online pinboard.</strong> Organize and share the things you love.\n
157
- \ \n </p>\n\n \n <div class=\"facepileWrapper hidden\">\n <iframe
158
- class=\"fbIframe\" src=\"http://www.facebook.com/plugins/facepile.php?app_id=274266067164&size=small&max_rows=1\"
148
+ for a faster, smoother Pinterest.</div>\n\n <button type=\"button\" class=\"Button
149
+ nagClose Module borderless\" id=\"Button-16\">\n\n &nbsp;</button>\n</div><![endif]-->\n
150
+ \ <div class=\"NagBase fbHidden Module sticky NagUnauth
151
+ centeredWithinWrapper\" id=\"NagUnauth-15\">\n\n\n\n\n\n\n\n<div class=\"message\">\n
152
+ \ <div class=\"centeredContent centeredWithinWrapper\">\n <p class=\"messageContent\">\n
153
+ \ <strong>Pinterest is an online pinboard.</strong>
154
+ Organize and share the things you love. </p>\n\n <div
155
+ class=\"facepileWrapper\">\n <iframe class=\"fbIframe\" src=\"http://www.facebook.com/plugins/facepile.php?app_id=274266067164&size=small&max_rows=1\"
159
156
  scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\"></iframe>\n
160
- \ </div>\n <div class=\"buttonsWrapper\">\n \n \n\n <a
157
+ \ </div>\n <div class=\"buttonsWrapper\">\n \n <a
161
158
  href=\"/join/\" type=\"button\" class=\"rounded JoinButton NavigateButton
162
- Button primary Module joinButton unauthNagButton hasText btn\" id=\"JoinButton-17\">\n\n\n<span
163
- class=\"buttonText\">Join Pinterest</span>\n </a>\n <a href=\"/login/\"
164
- type=\"button\" class=\"rounded NavigateButton default Button loginButton
165
- unauthNagButton Module hasText LoginButton btn\" id=\"LoginButton-18\">\n\n\n<span
166
- class=\"buttonText\">Log in</span>\n </a>\n </div>\n</div></div>\n
167
- \ \n \n</div>\n \n <div class=\"Closeup Module\" id=\"Closeup-4\">\n\n\n\n\n\n\n<div
159
+ Button primary Module joinButton unauthNagButton hasText btn\" id=\"JoinButton-17\">\n\n<span
160
+ class=\"buttonText\">Join Pinterest</span>\n </a>\n <a href=\"/login/\"
161
+ type=\"button\" class=\"rounded NavigateButton Button loginButton unauthNagButton
162
+ Module hasText LoginButton btn\" id=\"LoginButton-18\">\n\n<span class=\"buttonText\">Log
163
+ in</span>\n </a>\n </div>\n </div>\n</div></div>\n </div>\n
164
+ \ <div class=\"Closeup Module\" id=\"Closeup-4\">\n\n\n\n<div
168
165
  class=\"closeupActionBarContainer\">\n <div class=\"PinActionBar Module\"
169
- id=\"PinActionBar-19\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n
170
- \ \n \n \n\n\n<div class=\"repinLike\">\n \n \n \n \n
171
- \ \n\n \n \n\n \n \n \n \n\n \n \n\n <button
172
- type=\"button\" class=\"medium rounded repin pinActionBarButton ShowModalButton
173
- Button primary Module primaryOnHover btn\" id=\"ShowModalButton-23\">\n\n\n<em></em>\n<span
166
+ id=\"PinActionBar-19\">\n\n\n \n<div class=\"repinLike\">\n
167
+ \ \n \n \n \n <button type=\"button\"
168
+ class=\"medium rounded repin pinActionBarButton ShowModalButton Button primary
169
+ Module primaryOnHover btn\" id=\"ShowModalButton-23\">\n\n<em></em>\n<span
174
170
  class=\"accessibilityText\">Pin it</span></button>\n\n <button type=\"button\"
175
171
  class=\"medium rounded NavigateButton Button primary IncrementingNavigateButton
176
- Module btn repinLikeNavigateButton pinActionBarButton hidden\" id=\"IncrementingNavigateButton-24\">\n\n\n\n
177
- \ \n \n\n\n\n\n\n\n\n\n &nbsp;</button>\n\n \n \n \n
178
- \ \n \n \n <button data-text-unlike=\"Unlike\" data-text-like=\"Like\"
179
- type=\"button\" class=\"medium rounded PinLikeButton default Button like leftRounded
180
- pinActionBarButton Module hasText btn\" id=\"PinLikeButton-25\">\n\n\n\n\n\n\n\n<em></em>\n<span
181
- class=\"buttonText\">Like</span>\n \n\n</button>\n <button type=\"button\"
182
- class=\"medium rounded NavigateButton default Button IncrementingNavigateButton
183
- repinLikeNavigateButton like leftRounded pinActionBarButton hasText Module
184
- btn\" id=\"IncrementingNavigateButton-26\">\n\n\n\n\n\n\n\n\n\n<span class=\"buttonText\">1</span>\n
185
- \ </button>\n\n \n \n <a href=\"http://johnstamosgem.com/\"
186
- type=\"button\" class=\"medium rounded website pinActionBarButton NavigateButton
187
- default Button Module hasText btn\" id=\"NavigateButton-27\">\n\n\n<em></em>\n<span
188
- class=\"buttonText\">Website</span>\n </a>\n \n</div>\n\n<div class=\"shareGear\">\n
189
- \ \n \n\n <div class=\"DropdownButton Module\" id=\"DropdownButton-28\">\n\n\n<button
190
- type=\"button\" class=\"medium rounded default Button Module share pinActionBarButton
191
- btn\" id=\"Button-29\">\n\n\n<em></em>\n<span class=\"accessibilityText\">Share</span></button></div>\n
192
- \ \n</div></div>\n</div>\n\n<div class='closeupContainer'><div class=\"CloseupContent
193
- Module\" id=\"CloseupContent-20\">\n\n\n\n\n\n\n\n\n<div class=\"detailed
194
- Pin Module\" id=\"Pin-30\">\n\n\n\n\n\n\n\n\n \n \n \n \n \n
195
- \ \n \n\n\n\n <div class=\"pinWrapper\">\n \n \n \n
196
- \ \n \n \n\n <div class=\"closeupContentSection\">\n <div
197
- class=\"pinImageSourceWrapper\">\n <div class=\"PaddedPin Module\"
198
- id=\"PaddedPin-31\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n \n\n\n
199
- \ \n \n \n\n \n \n \n \n \n\n\n\n\n\n\n
200
- \ <a href=\"http://johnstamosgem.com/\">\n\n\n\n\n\n\n <div class=\"imageContainer\"
172
+ Module btn repinLikeNavigateButton pinActionBarButton hidden\" id=\"IncrementingNavigateButton-24\">\n
173
+ \ \n\n\n\n\n &nbsp;</button>\n\n <button
174
+ data-text-unlike=\"Unlike\" data-text-like=\"Like\" type=\"button\" class=\"medium
175
+ rounded PinLikeButton Button like leftRounded pinActionBarButton Module hasText
176
+ btn\" id=\"PinLikeButton-25\">\n\n\n<em></em>\n<span class=\"buttonText\">Like</span>\n
177
+ \ \n\n</button>\n <button type=\"button\" class=\"medium rounded
178
+ NavigateButton repinLikeNavigateButton like leftRounded pinActionBarButton
179
+ Button IncrementingNavigateButton hasText Module btn\" id=\"IncrementingNavigateButton-26\">\n\n\n\n\n\n<span
180
+ class=\"buttonText\">1</span>\n </button>\n\n <a
181
+ href=\"http://johnstamosgem.com/\" type=\"button\" class=\"medium rounded
182
+ website pinActionBarButton NavigateButton Button Module hasText btn\" id=\"NavigateButton-27\">\n\n<em></em>\n<span
183
+ class=\"buttonText\">Website</span>\n </a>\n </div>\n\n<div class=\"shareGear\">\n
184
+ \ \n <div class=\"DropdownButton Module\" id=\"DropdownButton-28\">\n\n<button
185
+ type=\"button\" class=\"medium rounded Button Module share pinActionBarButton
186
+ btn\" id=\"Button-29\">\n\n<em></em>\n<span class=\"accessibilityText\">Share</span></button></div>\n
187
+ \ </div></div>\n</div>\n\n<div class='closeupContainer'><div class=\"CloseupContent
188
+ Module\" id=\"CloseupContent-20\">\n\n\n<div class=\"detailed Pin Module\"
189
+ id=\"Pin-30\">\n\n\n \n \n <div class=\"pinWrapper\">\n
190
+ \ \n \n\n <div class=\"closeupContentSection\">\n
191
+ \ <div class=\"pinImageSourceWrapper\">\n <div class=\"PaddedPin
192
+ Module\" id=\"PaddedPin-31\">\n\n \n \n \n\n
193
+ \ <a href=\"http://johnstamosgem.com/\">\n\n <div class=\"imageContainer\"
201
194
  style=\"width:736px;\">\n <img src=\"http://media-cache-ak0.pinimg.com/736x/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
202
- class=\"pinImage\" style=\"width: 736px;height: 460px;\"alt=\"JohnStamosgemPin
203
- description\">\n\n </div>\n\n\n\n </a>\n</div>\n \n \n\n
204
- \ <div class=\"sourceFlagWrapper\">\n \n \n
205
- \ <a href=\"http://johnstamosgem.com/\">\n Visit
206
- johnstamosgem.com\n </a>\n \n\n \n
207
- \ </div>\n </div>\n <div class=\"RichPinBase Module\"
208
- id=\"RichPinBase-32\">\n\n\n\n\n\n\n \n \n \n \n\n \n \n
209
- \ \n \n</div>\n </div>\n\n <div class=\"closeupContentSection\">\n
210
- \ \n \n <div class=\"pinDescription
211
- \">\n\n \n <div class=\"pinDescriptionComment detailed\">\n <a
212
- class=\"userThumbContainer\" href=\"/johnstamosgem/\">\n <img class=\"userThumb\"
213
- src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"\n
195
+ class=\"pinImage\" style=\"width: 736px;height: 460px;\"\n\n \n alt=\"JohnStamosgemPin
196
+ description\"\n >\n\n </div>\n\n </a>\n</div>\n \n
197
+ \ <div class=\"sourceFlagWrapper\">\n <a
198
+ href=\"http://johnstamosgem.com/\">\n Visit johnstamosgem.com
199
+ \ </a>\n \n </div>\n
200
+ \ </div>\n <div class=\"RichPinBase Module\" id=\"RichPinBase-32\">\n
201
+ \ </div>\n </div>\n <div class=\"closeupContentSection\">\n
202
+ \ <div class=\"pinDescription \">\n
203
+ \ <div class=\"pinDescriptionComment detailed\">\n <a class=\"userThumbContainer\"
204
+ href=\"/johnstamosgem/\">\n <img class=\"userThumb\" src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"\n
214
205
  \ alt=\"John Stamosgem\">\n </a>\n <div class=\"commenterNameCommentText\">\n
215
- \ <div class=\"commenterWrapper\">\n \n <a
206
+ \ <div class=\"commenterWrapper\">\n <a
216
207
  class=\"commentDescriptionCreator\" href=\"/johnstamosgem/\">John Stamosgem</a>\n\n
217
- \ \n <span class='commentDescriptionTimeAgo'>&bull;
218
- 12 days ago </span>\n \n \n </div>\n
219
- \ \n \n <p class=\"commentDescriptionContent\">JohnStamosgemPin
220
- description</p>\n \n \n \n \n
221
- \ </div>\n </div>\n\n </div>\n \n\n \n
222
- \ \n \n <div class=\"detailed empty PinCommentList
223
- Module\" id=\"PinCommentList-33\">\n\n\n\n\n \n\n\n\n \n\n\n<div class=\"commentsContainer
224
- \">\n\n\n</div>\n\n\n\n\n</div>\n \n\n\n \n </div>\n\n
225
- \ \n \n <div class=\"pinnerViaPinnerCredit closeupContentSection\">\n
226
- \ \n \n \n \n \n
227
- \ \n <div class=\"medium thumb pinner Module
228
- hasText User\" id=\"User-34\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n\n\n\n\n\n\n\n\n
229
- \ \n \n \n \n \n \n\n \n \n
230
- \ \n \n \n\n\n \n \n <a href=\"/johnstamosgem/\">\n
231
- \ \n\n \n \n \n \n \n \n\n
232
- \ \n \n \n\n <div class=\"thumbImageWrapper\">\n
208
+ \ <span class='commentDescriptionTimeAgo'>&bull;
209
+ 6 weeks ago </span>\n </div>\n
210
+ \ <p class=\"commentDescriptionContent\">JohnStamosgemPin
211
+ description</p>\n </div>\n
212
+ \ </div>\n\n </div>\n \n <div
213
+ class=\"detailed empty PinCommentList Module\" id=\"PinCommentList-33\">\n
214
+ \ \n\n \n<div class=\"commentsContainer \">\n\n</div>\n\n\n</div>\n \n\n
215
+ \ </div>\n\n <div class=\"pinnerViaPinnerCredit
216
+ closeupContentSection\">\n <div
217
+ class=\"medium thumb pinner Module hasText User\" id=\"User-34\">\n\n\n\n
218
+ \ \n\n\n\n\n \n \n \n
219
+ \ <a href=\"/johnstamosgem/\">\n \n \n
220
+ \ \n \n <div class=\"thumbImageWrapper\">\n
233
221
  \ <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
234
- alt=\"Profile image of John Stamosgem\" />\n </div>\n \n <h3
235
- class=\"title\">Pinned by</h3>\n \n \n <h4 class=\"fullname\">John
236
- Stamosgem</h4>\n \n \n \n\n \n </a>\n
237
- \ \n \n\n</div>\n\n \n <div class=\"closeupBottomView
238
- boardCredit Board Module\" id=\"Board-35\">\n\n\n\n\n\n \n\n\n\n \n
239
- \ \n \n \n \n\n \n \n \n <button
240
- type=\"button\" class=\"btn rounded default Button hasText Module BoardFollowButton
241
- notNavigatable ui-FollowButton\" id=\"BoardFollowButton-36\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n
242
- \ \n \n\n\n\n\n\n<span class=\"buttonText\">Follow</span>\n \n</button>\n
243
- \ \n\n\n <a href=\"/johnstamosgem/johnstamosgemboard/\" class=\"boardLink\">\n
222
+ alt=\"Profile image of John Stamosgem\" />\n </div>\n <h3
223
+ class=\"title\">Pinned by</h3>\n <h4 class=\"fullname\">John
224
+ Stamosgem</h4>\n \n </a>\n \n</div>\n\n
225
+ \ <div class=\"closeupBottomView boardCredit
226
+ Board Module\" id=\"Board-35\">\n \n\n \n \n
227
+ \ <button type=\"button\" class=\"btn rounded Button
228
+ hasText Module BoardFollowButton notNavigatable ui-FollowButton\" id=\"BoardFollowButton-36\">\n\n\n\n\n
229
+ \ \n\n\n\n<span class=\"buttonText\">Follow</span>\n \n</button>\n
230
+ \ \n <a href=\"/johnstamosgem/johnstamosgemboard/\" class=\"boardLink\">\n
244
231
  \ <span class=\"thumbImageWrapper\">\n <img src=\"http://media-cache-ak0.pinimg.com/upload/412149872087590750_board_thumbnail_2013-08-04-22-38-00_83201_60.jpg\"
245
- class=\"boardThumbnail\" style=\"\">\n\n </span>\n <h3
246
- class=\"boardRepTitle\">Pinned onto</h3>\n <h4 class=\"boardRepSubtitle\">JohnStamosgemBoard</h4>\n
247
- \ </a>\n \n</div>\n </div>\n \n\n \n </div>\n</div></div>\n\n
248
- \ \n <div class=\"Module CloseupSidebar\" id=\"CloseupSidebar-21\">\n\n\n\n\n\n\n\n
249
- \ \n\n\n<div class=\"boardPinsGridContainer\">\n <div class=\"boardPinsGrid
250
- Board Module\" id=\"Board-37\">\n\n\n\n\n\n\n\n \n \n \n \n \n
251
- \ \n\n <div class=\"boardHeader\">\n \n\n <div class=\"hasText
252
- boardRepTitle User Module thumb\" id=\"User-39\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
253
- \ \n \n \n \n \n \n\n \n \n
254
- \ \n \n \n\n\n \n \n <a href=\"/johnstamosgem/johnstamosgemboard/\">\n
255
- \ \n\n \n \n \n \n \n \n\n
256
- \ \n \n \n\n <div class=\"thumbImageWrapper\">\n
257
- \ <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
258
- alt=\"Profile image of John Stamosgem\" />\n </div>\n \n <h3
259
- class=\"title\">JohnStamosgemBoard</h3>\n \n \n <h4
260
- class=\"fullname\">John Stamosgem</h4>\n \n \n \n\n \n
261
- \ </a>\n \n \n\n</div>\n </div>\n\n \n <div class=\"pinGridWrapper\">\n
262
- \ <div class=\"loading Grid Module\" id=\"Grid-40\"></div>\n </div>\n\n
263
- \ \n \n <button type=\"button\" class=\"btn rounded default Button
264
- hasText Module BoardFollowButton notNavigatable followBoardButton ui-FollowButton\"
265
- id=\"BoardFollowButton-41\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n\n\n\n\n\n<span
266
- class=\"buttonText\">Follow Board</span>\n \n</button>\n \n\n</div>\n</div>\n\n<div
267
- id=\"domainContainer\">\n \n <div class=\"Domain Module\" id=\"Domain-38\">\n\n\n\n
268
- \ \n\n\n \n\n<a href=\"/source/johnstamosgem.com/\" class=\"domainLinkWrapper\">\n
269
- \ <h4 class=\"domainSubtitle\">Other pins from</h4>\n <h3 class=\"domainName\">johnstamosgem.com</h3>\n
270
- \ <div class=\"thumbContainer\">\n \n \n \n <ul
271
- class=\"thumbRow\">\n \n <li class=\"thumb\">\n
232
+ class=\"boardThumbnail\" style=\"\"\n\n \n >\n\n </span>\n
233
+ \ <h3 class=\"boardRepTitle\">Pinned onto</h3>\n <h4
234
+ class=\"boardRepSubtitle\">JohnStamosgemBoard</h4>\n </a>\n </div>\n
235
+ \ </div>\n \n </div>\n</div></div>\n\n <div
236
+ class=\"Module CloseupSidebar\" id=\"CloseupSidebar-21\">\n\n \n\n<div
237
+ class=\"boardPinsGridContainer\">\n <div class=\"boardPinsGrid Board Module\"
238
+ id=\"Board-37\">\n\n \n \n \n <div class=\"boardHeader\">\n
239
+ \ \n <div class=\"hasText boardRepTitle User Module thumb\" id=\"User-39\">\n\n\n\n\n\n\n\n
240
+ \ \n \n \n
241
+ \ <a href=\"/johnstamosgem/johnstamosgemboard/\">\n
242
+ \ \n \n \n
243
+ \ \n <div class=\"thumbImageWrapper\">\n <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
244
+ alt=\"Profile image of John Stamosgem\" />\n </div>\n <h3
245
+ class=\"title\">JohnStamosgemBoard</h3>\n <h4 class=\"fullname\">John
246
+ Stamosgem</h4>\n \n </a>\n \n</div>\n
247
+ \ </div>\n\n <div class=\"pinGridWrapper\">\n <div class=\"loading
248
+ Grid Module\" id=\"Grid-40\"></div>\n </div>\n\n <button
249
+ type=\"button\" class=\"btn rounded Button hasText Module BoardFollowButton
250
+ notNavigatable followBoardButton ui-FollowButton\" id=\"BoardFollowButton-41\">\n\n\n\n\n
251
+ \ \n\n\n\n<span class=\"buttonText\">Follow Board</span>\n \n</button>\n
252
+ \ </div>\n</div>\n\n<div id=\"domainContainer\">\n <div class=\"Domain
253
+ Module\" id=\"Domain-38\">\n <a href=\"/source/johnstamosgem.com/\"
254
+ class=\"domainLinkWrapper\">\n <h4 class=\"domainSubtitle\">Other pins
255
+ from</h4>\n <h3 class=\"domainName\">johnstamosgem.com</h3>\n <div class=\"thumbContainer\">\n
256
+ \ <ul class=\"thumbRow\">\n <li
257
+ class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
258
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
259
+ \ \n >\n</li>\n <li class=\"thumb\">\n
272
260
  \ <span class=\"hoverMask\"></span>\n <img
273
- src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n \n <li
261
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n <li
274
262
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
275
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
276
- \ \n <li class=\"thumb\">\n <span
277
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
278
- 70px;height: 70px;\">\n</li>\n \n </ul>\n \n
279
- \ <ul class=\"thumbRow\">\n \n <li
263
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
264
+ \ \n >\n</li>\n </ul>\n <ul
265
+ class=\"thumbRow\">\n <li class=\"thumb\">\n
266
+ \ <span class=\"hoverMask\"></span>\n <img
267
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n <li
280
268
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
281
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
282
- \ \n <li class=\"thumb\">\n <span
283
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
284
- 70px;height: 70px;\">\n</li>\n \n <li class=\"thumb\">\n
269
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
270
+ \ \n >\n</li>\n <li class=\"thumb\">\n
285
271
  \ <span class=\"hoverMask\"></span>\n <img
286
- src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n \n </ul>\n
287
- \ \n <ul class=\"thumbRow\">\n \n <li
272
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n </ul>\n
273
+ \ <ul class=\"thumbRow\">\n <li
288
274
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
289
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
290
- \ \n <li class=\"thumb\">\n <span
291
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
292
- 70px;height: 70px;\">\n</li>\n \n <li class=\"thumb\">\n
275
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
276
+ \ \n >\n</li>\n <li class=\"thumb\">\n
293
277
  \ <span class=\"hoverMask\"></span>\n <img
294
- src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n \n </ul>\n
295
- \ \n </div>\n</a></div>\n \n</div>\n\n</div>\n \n</div>\n\n\n
296
- \ <div class='closeupBottom'>\n <div class=\"Module CloseupBottom\"
297
- id=\"CloseupBottom-22\">\n\n\n\n</div>\n </div>\n</div>\n </div>\n <div
298
- class=\"appendedContainer\">\n </div>\n</div>\n\n\n\n<div class=\"NagNoScript
299
- NagBase Module centeredWithinWrapper\" id=\"NagNoScript-5\">\n\n\n\n\n\n<noscript>\n
300
- \ \n\n\n\n\n\n\n\n \n <div class=\"message\">Oh no! Pinterest doesn't
301
- work unless you <a href=\"http://enable-javascript.com/\" rel=\"nofollow\">turn
302
- on JavaScript.</a></div>\n\n\n\n\n <style>\n .NagBase {\n display:
303
- none;\n }\n </style>\n</noscript></div></div> \n\n \n <script>\n
304
- \ P.setFacebookKey(274266067164);\n P.setContext({\"app_version\":
305
- \"559a34d\"});\n P.setStrings({\"formURLNotValid\": \"Not a valid url.\",
306
- \"google\": \"Gmail\", \"resendConfirmationEmailNoOp\": \"Your account has
307
- already been confirmed.\", \"formFieldRequired\": \"Required\", \"oneNewPin\":
308
- \"1 new pin\", \"errorMessage\": \"Sorry! Something went wrong on our end!\",
309
- \"passwordBlackPasswordStr\": \"Please try using a stronger password\", \"gplusContact\":
310
- \"Google\", \"offsiteInvalidToken\": \"Sorry! This redirect link has expired.\",
311
- \"popupErrorMessage\": \"You must enable popups!\", \"successInviteSentToEmail\":
312
- \"Success! Invitation sent to <%= email %>\", \"emailAddress\": \"Email address\",
313
- \"yahoo\": \"Yahoo\", \"facebookContact\": \"Facebook\", \"cancel\": \"Cancel\",
314
- \"passwordSamePasswordStr\": \"Password and username can't match\", \"savePinTutorial\":
315
- \"Want to save this pin for yourself? Go ahead and Pin it.\", \"connectError\":
316
- \"Couldn't connect. You must authorize Pinterest.\", \"facebookAccountDoesntMatch\":
278
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n <li
279
+ class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
280
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
281
+ \ \n >\n</li>\n </ul>\n </div>\n</a></div>\n
282
+ \ </div>\n\n</div>\n \n</div>\n\n <div class='closeupBottom'>\n <div
283
+ class=\"Module CloseupBottom\" id=\"CloseupBottom-22\">\n</div>\n </div>\n</div>\n
284
+ \ </div>\n <div class=\"appendedContainer\">\n </div>\n</div>\n\n\n<div
285
+ class=\"NagNoScript NagBase Module centeredWithinWrapper\" id=\"NagNoScript-5\">\n\n\n<noscript>\n
286
+ \ \n\n \n <div class=\"message\">Oh no! Pinterest doesn't work unless
287
+ you <a href=\"http://enable-javascript.com/\" rel=\"nofollow\">turn on JavaScript.</a></div>\n\n\n
288
+ \ <style>\n .NagBase {\n display: none;\n }\n </style>\n</noscript></div></div>
289
+ \ \n <script>\n P.setFacebookKey(274266067164);\n P.setContext({\"app_version\":
290
+ \"8814715\"});\n P.setStrings({\"facebookContact\": \"Facebook\", \"cancel\":
291
+ \"Cancel\", \"emailTo\": \"Email to {{ email_address }}\", \"facebookAccountDoesntMatch\":
317
292
  \"Oops! Your account is linked to a different Facebook account than the one
318
- you're logged into now.\", \"createFirstBoard\": \"Collect your pins onto
319
- boards. Create just a few or a whole bunch.\", \"passwordGoodPasswordStr\":
320
- \"Great!\", \"removePinner\": \"Remove Pinner\", \"emailUpdated\": \"Your
321
- email has been updated.\", \"gplus\": \"Google+\", \"pickEmailAddress\": \"Enter
322
- an email address\", \"blockPinner\": \"Block Pinner\", \"resendConfirmationEmailSuccess\":
323
- \"Thanks! You should receive a confirmation email soon.\", \"passwordTooShort\":
324
- \"Too short\", \"formEmailNotValid\": \"Not a valid email.\", \"emailTo\":
325
- \"Email to {{ email_address }}\", \"inviteMessage\": \"Join me on Pinterest!\",
326
- \"passwordMustBeSet\": \"A password must be set before unlinking.\", \"newPins\":
327
- \"new pins\", \"removeBounceNag\": \"Got it! Make sure your inbox isn't full
328
- so that our emails can find their way to you.\", \"continue\": \"Continue\",
329
- \"ok\": \"Ok\", \"error\": \"Error\", \"suggestedUsername\": \"Suggested username\",
330
- \"facebook\": \"Facebook\", \"errorTitle\": \"Whoops!\", \"passwordBadStyle\":
331
- \"Not proper style\", \"fellowPinner\": \"Fellow Pinner\"});\n P.setPageInfo(null);\n
332
- \ P.setRoutes([{\"named\": {\"name\": 0, \"method\": 1}, \"resource_method\":
333
- \"${method}\", \"resource\": {\"name\": \"${name}\", \"options\": \"?{options}\"},
334
- \"url\": \"^\\/resource\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"allow_full_page\":
335
- false, \"module\": \"?{module_name}\", \"options\": \"?{module_options}\",
293
+ you're logged into now.\", \"createFirstBoard\": \"You collect your pins onto
294
+ boards-create as many as you need!\", \"emailUpdated\": \"Your email has been
295
+ updated.\", \"passwordSamePasswordStr\": \"Password and username can't match\",
296
+ \"passwordBadStyle\": \"Not proper style\", \"firstBoardFollowText\": \"Follow
297
+ boards to get new pins right in your feed.\", \"errorMessage\": \"Sorry! Something
298
+ went wrong on our end!\", \"yahoo\": \"Yahoo\", \"emailAddress\": \"Email
299
+ address\", \"passwordGoodPasswordStr\": \"Great!\", \"gplus\": \"Google+\",
300
+ \"formEmailNotValid\": \"Not a valid email.\", \"resendConfirmationEmailSuccess\":
301
+ \"Thanks! You should receive a confirmation email soon.\", \"autobahnEndTourTextV1\":
302
+ \"Try a pin search below. <br>(The more specific, the better!)\", \"inviteMessage\":
303
+ \"Join me on Pinterest!\", \"continue\": \"Continue\", \"error\": \"Error\",
304
+ \"errorTitle\": \"Whoops!\", \"offsiteInvalidToken\": \"Sorry! This redirect
305
+ link has expired.\", \"google\": \"Gmail\", \"formFieldRequired\": \"Required\",
306
+ \"oneNewPin\": \"1 new pin\", \"savePinTutorial\": \"Want to save this pin
307
+ for yourself? Go ahead and Pin it.\", \"connectError\": \"Couldn't connect.
308
+ You must authorize Pinterest.\", \"facebook\": \"Facebook\", \"pickEmailAddress\":
309
+ \"Enter an email address\", \"blockPinner\": \"Block Pinner\", \"passwordTooShort\":
310
+ \"Too short\", \"autobahnEndTourTitleV1\": \"Psst! Before you leave...\",
311
+ \"suggestedUsername\": \"Suggested username\", \"firstFollowTitle\": \"Don't
312
+ miss a pin!\", \"successInviteSentToEmail\": \"Success! Invitation sent to
313
+ {{ email }}\", \"formURLNotValid\": \"Not a valid url.\", \"resendConfirmationEmailNoOp\":
314
+ \"Your account has already been confirmed.\", \"passwordBlackPasswordStr\":
315
+ \"Please try using a stronger password\", \"gplusContact\": \"Google\", \"popupErrorMessage\":
316
+ \"You must enable popups!\", \"removeBounceNag\": \"Got it! Make sure your
317
+ inbox isn't full so that our emails can find their way to you.\", \"ok\":
318
+ \"Ok\", \"passwordMustBeSet\": \"A password must be set before unlinking.\",
319
+ \"newPins\": \"new pins\", \"removePinner\": \"Remove Pinner\", \"fellowPinner\":
320
+ \"Fellow Pinner\"});\n P.setPageInfo(null);\n P.setRoutes([{\"named\":
321
+ {\"name\": 0, \"method\": 1}, \"resource_method\": \"${method}\", \"resource\":
322
+ {\"name\": \"${name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/resource\\/([^\\/]+)\\/([^\\/]+)\\/$\",
323
+ \"allow_full_page\": false, \"module\": \"?{module_name}\", \"options\": \"?{module_options}\",
336
324
  \"append\": \"?{append}\"}, {\"named\": {\"name\": 0}, \"resource\": {\"name\":
337
325
  \"?{resource_name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/module\\/([^\\/]+)\\/$\",
338
326
  \"allow_full_page\": false, \"module\": \"${name}\", \"error_strategy\": \"?{error_strategy}\",
@@ -343,34 +331,51 @@ http_interactions:
343
331
  \"named\": {\"scope\": 0}, \"resource\": {\"name\": \"BaseSearchResource\",
344
332
  \"options\": {\"scope\": \"${scope}\", \"show_scope_selector\": true, \"query\":
345
333
  \"?{q}\"}}, \"options\": {\"scope\": \"${scope}\", \"query\": \"?{q}\"}, \"module\":
346
- \"SearchPage\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/$\", \"https_if_unauth\":
347
- true, \"module\": \"HomePage\", \"content_only_if_unauth\": true, \"deep_link\":
348
- \"pinterest:\\/\\/\", \"options\": {\"tab\": \"following\", \"from_fast_follow\":
349
- \"?{ff}\"}}, {\"require_authentication\": true, \"named\": {}, \"resource\":
350
- {}, \"url\": \"^\\/home\\/picked_for_you\\/$\", \"options\": {\"tab\": \"picked_for_you\"},
351
- \"module\": \"HomePage\"}, {\"url\": \"^\\/categories\\/$\", \"named\": {},
352
- \"resource\": {}, \"options\": {}, \"module\": \"CategoriesPage\"}, {\"url\":
334
+ \"SearchPage\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/oauth\\/dialog\\/$\",
335
+ \"require_authentication\": true, \"module\": \"OAuthDialog\", \"content_only\":
336
+ true, \"https\": true, \"options\": {\"scope\": \"?{scope}\", \"state\": \"?{state}\",
337
+ \"redirect_uri\": \"?{redirect_uri}\", \"response_type\": \"?{response_type}\",
338
+ \"consumer_id\": \"?{consumer_id}\"}}, {\"named\": {}, \"resource\": {}, \"url\":
339
+ \"^\\/$\", \"https_if_unauth\": true, \"module\": \"HomePage\", \"content_only_if_unauth\":
340
+ true, \"deep_link\": \"pinterest:\\/\\/\", \"options\": {\"tab\": \"following\",
341
+ \"from_fast_follow\": \"?{ff}\"}}, {\"url\": \"^\\/categories\\/$\", \"named\":
342
+ {}, \"resource\": {}, \"options\": {}, \"module\": \"CategoriesPage\"}, {\"url\":
353
343
  \"^\\/categories\\/([^\\/]+)\\/$\", \"named\": {\"category\": 0}, \"resource\":
354
344
  {}, \"options\": {\"feed\": \"${category}\", \"is_category\": true}, \"module\":
355
- \"FeedPage\"}, {\"url\": \"^\\/all\\/$\", \"named\": {}, \"resource\": {},
356
- \"options\": {\"feed\": \"everything\", \"scope\": \"?{scope}\"}, \"module\":
357
- \"FeedPage\"}, {\"url\": \"^\\/all\\/([^\\/]+)\\/$\", \"named\": {\"category\":
358
- 0}, \"resource\": {}, \"options\": {\"feed\": \"${category}\", \"is_category\":
359
- true, \"scope\": \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/popular\\/$\",
360
- \"named\": {}, \"resource\": {}, \"options\": {\"feed\": \"popular\", \"scope\":
361
- \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/gifts\\/$\", \"named\":
362
- {}, \"resource\": {}, \"options\": {\"feed\": \"gifts\", \"scope\": \"?{scope}\"},
363
- \"module\": \"FeedPage\"}, {\"url\": \"^\\/videos\\/$\", \"named\": {}, \"resource\":
364
- {}, \"options\": {\"feed\": \"videos\", \"scope\": \"?{scope}\"}, \"module\":
365
- \"FeedPage\"}, {\"url\": \"^\\/picked_for_you\\/$\", \"named\": {}, \"resource\":
366
- {}, \"options\": {\"feed\": \"recommendations\"}, \"module\": \"FeedPage\"},
367
- {\"url\": \"^\\/annotations\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"named\": {\"annotation\":
345
+ \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\": {\"view_parameter\":
346
+ 2, \"view_type\": 1}, \"url\": \"^\\/all\\/$\", \"options\": {\"feed\": \"everything\"},
347
+ \"module\": \"FeedPage\"}, {\"named\": {\"category\": 0}, \"resource\": {},
348
+ \"log\": {\"helper_data\": {\"feed\": \"${category}\", \"is_category\": true},
349
+ \"view_type\": 1}, \"url\": \"^\\/all\\/([^\\/]+)\\/$\", \"options\": {\"feed\":
350
+ \"${category}\", \"is_category\": true}, \"module\": \"FeedPage\"}, {\"named\":
351
+ {}, \"resource\": {}, \"log\": {\"view_parameter\": 3, \"view_type\": 1},
352
+ \"url\": \"^\\/popular\\/$\", \"options\": {\"feed\": \"popular\"}, \"module\":
353
+ \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\": {\"view_parameter\":
354
+ 85, \"view_type\": 1}, \"url\": \"^\\/gifts\\/$\", \"options\": {\"feed\":
355
+ \"gifts\"}, \"module\": \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\":
356
+ {\"view_parameter\": 128, \"view_type\": 1}, \"url\": \"^\\/videos\\/$\",
357
+ \"options\": {\"feed\": \"videos\"}, \"module\": \"FeedPage\"}, {\"url\":
358
+ \"^\\/annotations\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"named\": {\"annotation\":
368
359
  0, \"board\": 1}, \"resource\": {\"name\": \"BoardAnnotationResource\", \"options\":
369
360
  {\"board_id\": \"${board}\"}}, \"options\": {\"board_id\": \"${board}\", \"annotation\":
370
361
  \"${annotation}\"}, \"module\": \"AnnotationFeedPage\"}, {\"url\": \"^\\/interests\\/([^\\/]+)\\/$\",
371
362
  \"named\": {\"interest\": 0}, \"resource\": {}, \"options\": {\"interest\":
372
- \"${interest}\"}, \"module\": \"InterestFeedPage\"}, {\"require_authentication\":
373
- true, \"named\": {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/$\",
363
+ \"${interest}\"}, \"module\": \"InterestFeedPage\"}, {\"named\": {}, \"requires_decider_key\":
364
+ \"fw_enabled\", \"resource\": {}, \"url\": \"^\\/fashionweek\\/$\", \"options\":
365
+ {}, \"module\": \"promo.FashionWeek\"}, {\"named\": {\"feat\": 0}, \"requires_decider_key\":
366
+ \"fw_enabled\", \"resource\": {\"name\": \"ManagedMapItemResource\", \"options\":
367
+ {\"field_set_key\": \"detailed\", \"map\": \"featured_boards\", \"domain\":
368
+ \"fashionweek\", \"key\": \"${feat}\"}}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/$\",
369
+ \"options\": {}, \"module\": \"promo.FashionWeek\"}, {\"named\": {\"section\":
370
+ 0}, \"requires_decider_key\": \"fw_enabled\", \"resource\": {\"name\": \"ManagedListResource\",
371
+ \"options\": {\"field_set_key\": \"grid_item\", \"domain\": \"fashionweek\",
372
+ \"list\": \"${section}\"}}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/all\\/$\",
373
+ \"options\": {\"show_all\": true, \"key\": \"${section}\"}, \"module\": \"promo.FashionWeekSection\"},
374
+ {\"named\": {\"username\": 0, \"slug\": 1}, \"requires_decider_key\": \"fw_enabled\",
375
+ \"resource\": {}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/([^\\/]+)\\/$\",
376
+ \"options\": {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\":
377
+ \"promo.FashionWeekBoardPage\"}, {\"require_authentication\": true, \"named\":
378
+ {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/$\",
374
379
  \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_recent\"},
375
380
  \"module\": \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\":
376
381
  {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/top\\/repins\\/$\",
@@ -403,19 +408,22 @@ http_interactions:
403
408
  {\"named\": {}, \"resource\": {}, \"url\": \"^\\/offsite\\/$\", \"content_only\":
404
409
  true, \"options\": {\"url\": \"?{url}\", \"pin_id\": \"?{pin}\", \"token\":
405
410
  \"?{token}\"}, \"module\": \"OffsitePage\"}, {\"named\": {}, \"resource\":
406
- {}, \"url\": \"^\\/logout\\/\", \"content_only\": true, \"options\": {}, \"module\":
407
- \"LogoutPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true, \"url\":
408
- \"^\\/login\\/$\", \"content_only\": true, \"options\": {\"next\": \"?{next}\"},
409
- \"module\": \"LoginPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true,
410
- \"url\": \"^\\/login\\/reset\\/$\", \"content_only\": true, \"options\": {\"username_or_email\":
411
- \"?{username_or_email}\"}, \"module\": \"PasswordResetOneClick\"}, {\"redirect\":
412
- \"\\/\", \"named\": {}, \"resource\": {}, \"url\": \"^\\/join\\/signup\\/\",
413
- \"options\": {}, \"module\": \"\"}, {\"redirect\": \"\\/\", \"named\": {},
414
- \"resource\": {}, \"url\": \"^\\/signup\\/\", \"options\": {}, \"module\":
415
- \"\"}, {\"named\": {\"network\": 0}, \"resource\": {}, \"https\": true, \"url\":
416
- \"^\\/join\\/register\\/([^\\/]+)\\/\", \"content_only\": true, \"options\":
417
- {\"network\": \"${network}\"}, \"module\": \"UserRegisterPage\"}, {\"named\":
418
- {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/register\\/\",
411
+ {}, \"url\": \"^\\/f\\/signup\\/\", \"is_full_page\": false, \"module\": \"FramedSignupContent\",
412
+ \"xframe_options_exempt\": true, \"https\": true, \"options\": {\"track_key\":
413
+ \"?{track_key}\", \"message_type\": \"?{message_type}\", \"skip_nux\": \"?{skip_nux}\"}},
414
+ {\"named\": {}, \"resource\": {}, \"url\": \"^\\/logout\\/\", \"content_only\":
415
+ true, \"options\": {}, \"module\": \"LogoutPage\"}, {\"named\": {}, \"resource\":
416
+ {}, \"https\": true, \"url\": \"^\\/login\\/$\", \"content_only\": true, \"options\":
417
+ {\"next\": \"?{next}\"}, \"module\": \"LoginPage\"}, {\"named\": {}, \"resource\":
418
+ {}, \"https\": true, \"url\": \"^\\/login\\/reset\\/$\", \"content_only\":
419
+ true, \"options\": {\"username_or_email\": \"?{username_or_email}\"}, \"module\":
420
+ \"PasswordResetOneClick\"}, {\"redirect\": \"\\/\", \"named\": {}, \"resource\":
421
+ {}, \"url\": \"^\\/join\\/signup\\/\", \"options\": {}, \"module\": \"\"},
422
+ {\"redirect\": \"\\/\", \"named\": {}, \"resource\": {}, \"url\": \"^\\/signup\\/\",
423
+ \"options\": {}, \"module\": \"\"}, {\"named\": {\"network\": 0}, \"resource\":
424
+ {}, \"https\": true, \"url\": \"^\\/join\\/register\\/([^\\/]+)\\/\", \"content_only\":
425
+ true, \"options\": {\"network\": \"${network}\"}, \"module\": \"UserRegisterPage\"},
426
+ {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/register\\/\",
419
427
  \"content_only\": true, \"options\": {\"register\": true}, \"module\": \"LoginPage\"},
420
428
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/.*$\",
421
429
  \"content_only\": true, \"options\": {\"invite_follow_board\": \"?{boardname}\",
@@ -428,56 +436,19 @@ http_interactions:
428
436
  1}, \"resource\": {}, \"login_parameters\": {\"username\": \"${username}\",
429
437
  \"boardname\": \"${slug}\", \"auto_follow\": \"true\"}, \"url\": \"^\\/follow\\/([^\\/]+)\\/([^\\/]+)\\/*$\",
430
438
  \"options\": {\"username\": \"${username}\", \"username_and_slug\": \"${username}\\/${slug}\"},
431
- \"module\": \"AutoFollow\"}, {\"url\": \"^\\/website\\/verify\\/$\", \"named\":
432
- {}, \"resource\": {\"name\": \"DomainVerifyResource\"}, \"options\": {}, \"module\":
433
- \"DomainVerify\"}, {\"redirect\": \"\\/developer\\/\", \"named\": {}, \"resource\":
434
- {}, \"url\": \"^\\/developer\\/api\\/\", \"options\": {}, \"module\": \"\"},
435
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/contact_us\\/\",
436
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.ContactUs\",
437
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
438
- {}, \"url\": \"^\\/developer\\/contact_us_thank_you\\/\", \"content_only\":
439
- true, \"options\": {\"module\": {\"name\": \"dev.ContactUsThankYou\", \"options\":
440
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
441
- \"^\\/developer\\/ios\\/\", \"content_only\": true, \"options\": {\"module\":
442
- {\"name\": \"dev.iOS\", \"options\": {}}}, \"module\": \"Developer\"}, {\"named\":
443
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/android\\/\", \"content_only\":
444
- true, \"options\": {\"module\": {\"name\": \"dev.Android\", \"options\": {}}},
445
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/validator\\/\",
446
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
447
- \"RichPinValidateResource\", \"options\": {\"link\": \"?{link}\"}}, \"name\":
448
- \"dev.RichPinValidator\", \"options\": {\"apply\": \"?{apply}\", \"link\":
449
- \"?{link}\", \"custom_sidebar\": true}}}, \"module\": \"Developer\"}, {\"named\":
450
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/pin_it\\/\", \"content_only\":
451
- true, \"options\": {\"module\": {\"name\": \"dev.PinIt\", \"options\": {}}},
452
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/\",
453
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.RichPins\",
454
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
455
- {}, \"url\": \"^\\/developer\\/goodies\\/\", \"content_only\": true, \"options\":
456
- {\"module\": {\"name\": \"dev.Goodies\", \"options\": {}}}, \"module\": \"Developer\"},
457
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/apps\\/\", \"content_only\":
458
- true, \"options\": {\"module\": {\"name\": \"dev.Apps\", \"options\": {}}},
459
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/manage\\/$\",
460
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
461
- \"ConsumerListResource\"}, \"name\": \"ConsumerManagePage\"}}, \"module\":
462
- \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/terms\\/\",
463
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.Terms\",
464
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
465
- {}, \"url\": \"^\\/developer\\/richpins\\/apply\\/$\", \"content_only\": true,
466
- \"options\": {\"module\": {\"name\": \"dev.RichPinApplyForm\", \"options\":
467
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
468
- \"^\\/developer\\/$\", \"content_only\": true, \"options\": {}, \"module\":
469
- \"Developer\"}, {\"url\": \"^\\/business\\/getstarted\\/$\", \"named\": {},
470
- \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"me\"}},
471
- \"options\": {\"username\": \"me\"}, \"module\": \"BusinessGetStarted\"},
439
+ \"module\": \"AutoFollow\"}, {\"require_authentication\": true, \"named\":
440
+ {}, \"resource\": {\"name\": \"DomainVerifyResource\"}, \"url\": \"^\\/website\\/verify\\/$\",
441
+ \"options\": {}, \"module\": \"DomainVerify\"}, {\"url\": \"^\\/business\\/getstarted\\/$\",
442
+ \"named\": {}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
443
+ \"me\"}}, \"options\": {\"username\": \"me\"}, \"module\": \"BusinessGetStarted\"},
472
444
  {\"require_authentication\": true, \"named\": {}, \"resource\": {\"name\":
473
- \"PartnerResource\", \"options\": {\"user_id\": \"me\"}}, \"https\": true,
474
- \"url\": \"^\\/business\\/convert\\/$\", \"options\": {}, \"module\": \"BusinessAccountConvert\"},
475
- {\"url\": \"^\\/business\\/tools\\/site-debugger\\/$\", \"named\": {}, \"resource\":
476
- {\"name\": \"RichPinDebugResource\", \"options\": {\"link\": \"?{link}\"}},
477
- \"options\": {\"link\": \"?{link}\"}, \"module\": \"RichPinDebugger\"}, {\"url\":
478
- \"^\\/business\\/tools\\/rich-pin-builder\\/$\", \"named\": {}, \"resource\":
479
- {\"name\": \"RichPinSamplePinResource\", \"options\": {}}, \"options\": {},
480
- \"module\": \"RichPinBuilder\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-validator\\/$\",
445
+ \"PartnerResource\"}, \"https\": true, \"url\": \"^\\/business\\/convert\\/$\",
446
+ \"options\": {}, \"module\": \"BusinessAccountConvert\"}, {\"url\": \"^\\/business\\/tools\\/site-debugger\\/$\",
447
+ \"named\": {}, \"resource\": {\"name\": \"RichPinDebugResource\", \"options\":
448
+ {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
449
+ \"RichPinDebugger\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-builder\\/$\",
450
+ \"named\": {}, \"resource\": {\"name\": \"RichPinSamplePinResource\", \"options\":
451
+ {}}, \"options\": {}, \"module\": \"RichPinBuilder\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-validator\\/$\",
481
452
  \"named\": {}, \"resource\": {\"name\": \"RichPinValidateResource\", \"options\":
482
453
  {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
483
454
  \"RichPinValidator\"}, {\"url\": \"^\\/browse\\/([^\\/]+)\\/$\", \"named\":
@@ -527,14 +498,13 @@ http_interactions:
527
498
  \"options\": {\"show_edit\": true}, \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\"},
528
499
  {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
529
500
  {\"id\": \"${id}\", \"view_type\": \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/$\",
530
- \"require_authentication\": true, \"module\": \"Closeup\", \"canonical_url\":
531
- \"\\/pin\\/${id}\\/\", \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\", \"options\":
532
- {\"show_repin\": true}}, {\"named\": {\"id\": 0}, \"resource\": {\"name\":
533
- \"PinResource\", \"options\": {\"id\": \"${id}\", \"view_type\": \"repin\"}},
534
- \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/x\\/$\", \"content_only\": true,
535
- \"options\": {\"action\": \"repin\", \"method\": \"bookmarklet\"}, \"module\":
536
- \"PinBookmarklet\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/repins\\/$\", \"named\":
537
- {\"id\": 0}, \"resource\": {\"name\": \"RepinFeedResource\", \"options\":
501
+ \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\", \"options\": {\"show_repin\":
502
+ true}, \"module\": \"Closeup\", \"canonical_url\": \"\\/pin\\/${id}\\/\"},
503
+ {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
504
+ {\"id\": \"${id}\", \"view_type\": \"repin\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/x\\/$\",
505
+ \"content_only\": true, \"options\": {\"action\": \"repin\", \"method\": \"bookmarklet\"},
506
+ \"module\": \"PinBookmarklet\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/repins\\/$\",
507
+ \"named\": {\"id\": 0}, \"resource\": {\"name\": \"RepinFeedResource\", \"options\":
538
508
  {\"pin_id\": \"${id}\", \"page_size\": 50}}, \"options\": {\"pin_id\": \"${id}\",
539
509
  \"title\": \"Repins\"}, \"module\": \"RepinsLikesFeedPage\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/likes\\/$\",
540
510
  \"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinLikesResource\", \"options\":
@@ -575,49 +545,51 @@ http_interactions:
575
545
  \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\":
576
546
  {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\": \"BoardCoverEditPage\"},
577
547
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/password\\/change\\/$\",
578
- \"options\": {}, \"module\": \"UserChangePassword\"}, {\"require_authentication\":
579
- true, \"named\": {\"domain\": 0}, \"resource\": {\"name\": \"DomainAnalyticsCountsResource\",
580
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
581
- \"end_date\": \"?{end_date}\"}}, \"url\": \"^\\/source\\/([^\\/]+)\\/analytics\\/$\",
582
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
583
- \"end_date\": \"?{end_date}\"}, \"module\": \"DomainAnalyticsPage\"}, {\"sandbox\":
584
- true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/close_window\\/$\",
585
- \"options\": {}, \"module\": \"Close\"}, {\"named\": {}, \"resource\": {},
586
- \"url\": \"^\\/oauth\\/dialog\\/$\", \"require_authentication\": true, \"module\":
587
- \"OAuthDialog\", \"content_only\": true, \"https\": true, \"options\": {\"scope\":
588
- \"?{scope}\", \"state\": \"?{state}\", \"redirect_uri\": \"?{redirect_uri}\",
589
- \"response_type\": \"?{response_type}\", \"consumer_id\": \"?{consumer_id}\"}}]);\n
590
- \ P.setPageRoutePattern(\"^\\/pin\\/:id\\/$\");\n P.setPageLoadRequestIdentifier(\"806023293027\");\n\n
591
- \ Pc.startArgs = {\"gaAccountNumber\": \"UA-12967896-7\", \"scrubbedUser\":
592
- {\"autologin\": null}, \"tree\": {\"resource\": null, \"name\": \"App\", \"children\":
593
- [{\"resource\": null, \"name\": \"Header\", \"id\": \"header\", \"children\":
594
- [{\"resource\": null, \"name\": \"DropdownButton\", \"id\": \"categoriesDropdownButton\",
595
- \"children\": [{\"resource\": null, \"name\": \"Button\", \"children\": [],
596
- \"errorStrategy\": 2, \"options\": {\"has_icon\": true, \"text\": \"Categories\",
597
- \"primary_on_hover\": true, \"tagName\": \"button\", \"show_text\": false,
598
- \"class_name\": \"categories\"}, \"uid\": \"Button-9\"}], \"errorStrategy\":
599
- 2, \"options\": {\"class_name\": \"categoriesButton\", \"button_options\":
600
- {\"has_icon\": true, \"tagName\": \"button\", \"primary_on_hover\": true,
601
- \"class_name\": \"categories\", \"text\": \"Categories\", \"show_text\": false},
602
- \"module\": {\"resource\": {\"name\": \"CategoriesResource\", \"options\":
603
- {\"browsable\": true}}, \"name\": \"CategoriesMenu\"}, \"dropdown_options\":
604
- {\"largeCaret\": true, \"fixed\": true, \"prefetch\": true, \"view_type\":
605
- \"categoriesMenu\"}, \"time\": 500, \"tutorial\": {\"topic\": \"categories\",
606
- \"text\": \"Browse Popular, DIY and other categories to find pins you like.\",
607
- \"title\": \"Here are your categories.\"}}, \"uid\": \"DropdownButton-6\"},
548
+ \"options\": {}, \"module\": \"UserChangePassword\"}, {\"named\": {}, \"resource\":
549
+ {}, \"https\": true, \"url\": \"^\\/about\\/trademark\\/form\\/$\", \"options\":
550
+ {}, \"module\": \"TrademarkFormSelector\"}, {\"named\": {\"claim_type\": 0},
551
+ \"resource\": {}, \"https\": true, \"url\": \"^\\/about\\/trademark\\/form\\/([^\\/]+)\\/$\",
552
+ \"options\": {\"claim_type\": \"${claim_type}\"}, \"module\": \"TrademarkForm\"},
553
+ {\"require_authentication\": true, \"named\": {\"domain\": 0}, \"resource\":
554
+ {\"name\": \"DomainAnalyticsCountsResource\", \"options\": {\"domain\": \"${domain}\",
555
+ \"start_date\": \"?{start_date}\", \"end_date\": \"?{end_date}\"}}, \"url\":
556
+ \"^\\/source\\/([^\\/]+)\\/analytics\\/$\", \"options\": {\"domain\": \"${domain}\",
557
+ \"start_date\": \"?{start_date}\", \"end_date\": \"?{end_date}\"}, \"module\":
558
+ \"DomainAnalyticsPage\"}, {\"url\": \"^\\/verify_website\\/$\", \"named\":
559
+ {}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
560
+ \"me\"}}, \"options\": {\"username\": \"me\"}, \"module\": \"VerifyWebsite\"},
561
+ {\"sandbox\": true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/close_window\\/$\",
562
+ \"options\": {}, \"module\": \"Close\"}]);\n P.setPageRoutePattern(\"^\\/pin\\/:id\\/$\");\n
563
+ \ P.setPageLoadRequestIdentifier(\"205489439323\");\n P.start.start({\"gaAccountNumber\":
564
+ \"UA-12967896-7\", \"scrubbedUser\": {\"autologin\": null}, \"tree\": {\"resource\":
565
+ null, \"name\": \"App\", \"children\": [{\"resource\": null, \"name\": \"Header\",
566
+ \"id\": \"header\", \"children\": [{\"resource\": null, \"name\": \"DropdownButton\",
567
+ \"id\": \"categoriesDropdownButton\", \"children\": [{\"resource\": null,
568
+ \"name\": \"Button\", \"children\": [], \"errorStrategy\": 2, \"options\":
569
+ {\"has_icon\": true, \"text\": \"Categories\", \"primary_on_hover\": true,
570
+ \"tagName\": \"button\", \"show_text\": false, \"class_name\": \"categories\"},
571
+ \"uid\": \"Button-9\"}], \"errorStrategy\": 2, \"options\": {\"class_name\":
572
+ \"categoriesButton\", \"button_options\": {\"has_icon\": true, \"tagName\":
573
+ \"button\", \"primary_on_hover\": true, \"class_name\": \"categories\", \"text\":
574
+ \"Categories\", \"show_text\": false}, \"module\": {\"resource\": {\"name\":
575
+ \"CategoriesResource\", \"options\": {\"browsable\": true}}, \"name\": \"CategoriesMenu\"},
576
+ \"dropdown_options\": {\"largeCaret\": true, \"fixed\": true, \"prefetch\":
577
+ true, \"view_type\": \"categoriesMenu\"}, \"time\": 500, \"tutorial\": {\"topic\":
578
+ \"categories\", \"text\": \"Browse Popular, DIY and other categories to find
579
+ pins you like.\", \"title\": \"Here are your categories.\"}}, \"uid\": \"DropdownButton-6\"},
608
580
  {\"resource\": null, \"name\": \"ui.SearchForm\", \"children\": [{\"resource\":
609
581
  null, \"name\": \"ui.TypeaheadField\", \"id\": \"searchField\", \"children\":
610
- [{\"resource\": null, \"name\": \"ui.Typeahead\", \"id\": \"typeahead\", \"extraData\":
611
- {\"inGplusExp\": false}, \"children\": [], \"errorStrategy\": 2, \"options\":
612
- {\"enable_recent_queries\": true, \"tags\": \"autocomplete\", \"class_name\":
613
- null, \"exclude_non_followers\": null, \"view_type\": \"search\", \"template\":
614
- null}, \"uid\": \"ui-Typeahead-11\"}], \"errorStrategy\": 2, \"options\":
615
- {\"enable_recent_queries\": true, \"name\": \"q\", \"view_type\": \"search\",
616
- \"class_name\": null, \"prefetch_on_focus\": true, \"value\": \"\", \"populate_on_result_highlight\":
617
- true, \"search_delay\": 0, \"search_on_focus\": true, \"placeholder\": \"Search\",
618
- \"tags\": \"autocomplete\"}, \"uid\": \"ui-TypeaheadField-10\"}], \"errorStrategy\":
619
- 2, \"options\": {\"navigate_on_search\": true, \"enable_recent_queries\":
620
- true, \"placeholder\": \"Search\"}, \"uid\": \"ui-SearchForm-7\"}, {\"resource\":
582
+ [{\"resource\": null, \"name\": \"ui.Typeahead\", \"id\": \"typeahead\", \"children\":
583
+ [], \"errorStrategy\": 2, \"options\": {\"enable_recent_queries\": true, \"tags\":
584
+ \"autocomplete\", \"class_name\": \"inHeader\", \"exclude_non_followers\":
585
+ null, \"view_type\": \"search\", \"template\": null}, \"uid\": \"ui-Typeahead-11\"}],
586
+ \"errorStrategy\": 2, \"options\": {\"enable_recent_queries\": true, \"name\":
587
+ \"q\", \"view_type\": \"search\", \"class_name\": \"inHeader\", \"prefetch_on_focus\":
588
+ true, \"value\": \"\", \"populate_on_result_highlight\": true, \"search_delay\":
589
+ 0, \"search_on_focus\": true, \"placeholder\": \"Search\", \"tags\": \"autocomplete\"},
590
+ \"uid\": \"ui-TypeaheadField-10\"}], \"errorStrategy\": 2, \"options\": {\"class_name\":
591
+ \"inHeader\", \"enable_recent_queries\": true, \"navigate_on_search\": true,
592
+ \"placeholder\": \"Search\"}, \"uid\": \"ui-SearchForm-7\"}, {\"resource\":
621
593
  {\"name\": \"LocalesResource\", \"options\": {\"locale\": \"en-US\", \"bookmarks\":
622
594
  [\"-end-\"]}}, \"name\": \"LanguageMenu\", \"children\": [{\"resource\": null,
623
595
  \"name\": \"DropdownButton\", \"children\": [{\"resource\": null, \"name\":
@@ -659,17 +631,16 @@ http_interactions:
659
631
  {\"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
660
632
  {\"id\": \"412149803369441273\", \"view_type\": \"repin\"}}, \"name\": \"PinCreate\",
661
633
  \"options\": {\"action\": \"repin\", \"transparent_modal\": false, \"is_video\":
662
- false, \"show_preview\": false, \"fast_repin\": false}}, \"primary_on_hover\":
663
- true, \"color\": \"primary\", \"text\": \"Pin it\", \"extra_options\": {},
664
- \"tagName\": \"button\", \"has_icon\": true, \"show_text\": false, \"ga_category\":
665
- \"repin_create_closeup\", \"class_name\": \"repin pinActionBarButton\", \"require_auth\":
666
- true, \"size\": \"medium\"}, \"uid\": \"ShowModalButton-23\"}, {\"resource\":
667
- null, \"name\": \"IncrementingNavigateButton\", \"id\": \"repinsButton\",
668
- \"extraData\": {\"actionCount\": 0}, \"children\": [], \"errorStrategy\":
669
- 2, \"options\": {\"url\": \"\\/pin\\/412149803369441273\\/repins\\/\", \"text\":
670
- 0, \"actionCount\": 0, \"color\": \"primary\", \"siblingButtonId\": \"pinItButton\",
671
- \"tagName\": \"button\", \"class_name\": \"repinLikeNavigateButton pinActionBarButton
672
- hidden\", \"size\": \"medium\"}, \"uid\": \"IncrementingNavigateButton-24\"},
634
+ false, \"show_suggestions\": false}}, \"primary_on_hover\": true, \"color\":
635
+ \"primary\", \"text\": \"Pin it\", \"extra_options\": {}, \"tagName\": \"button\",
636
+ \"has_icon\": true, \"show_text\": false, \"ga_category\": \"repin_create_closeup\",
637
+ \"class_name\": \"repin pinActionBarButton\", \"require_auth\": true, \"size\":
638
+ \"medium\"}, \"uid\": \"ShowModalButton-23\"}, {\"resource\": null, \"name\":
639
+ \"IncrementingNavigateButton\", \"id\": \"repinsButton\", \"extraData\": {\"actionCount\":
640
+ 0}, \"children\": [], \"errorStrategy\": 2, \"options\": {\"url\": \"\\/pin\\/412149803369441273\\/repins\\/\",
641
+ \"text\": 0, \"actionCount\": 0, \"color\": \"primary\", \"siblingButtonId\":
642
+ \"pinItButton\", \"tagName\": \"button\", \"class_name\": \"repinLikeNavigateButton
643
+ pinActionBarButton hidden\", \"size\": \"medium\"}, \"uid\": \"IncrementingNavigateButton-24\"},
673
644
  {\"resource\": null, \"name\": \"PinLikeButton\", \"id\": \"likeButton\",
674
645
  \"children\": [], \"errorStrategy\": 2, \"options\": {\"liked\": false, \"class_name\":
675
646
  \"like leftRounded pinActionBarButton\", \"pin_id\": \"412149803369441273\",
@@ -733,8 +704,7 @@ http_interactions:
733
704
  \"Pinned onto\"}, \"uid\": \"Board-35\"}], \"errorStrategy\": 1, \"data\":
734
705
  {\"domain\": \"johnstamosgem.com\", \"like_count\": 1, \"images\": {\"736x\":
735
706
  {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
736
- \"width\": 736, \"height\": 460}, \"136x136\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/136x136\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
737
- \"width\": 136, \"height\": 136}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
707
+ \"width\": 736, \"height\": 460}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
738
708
  \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
739
709
  \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
740
710
  \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
@@ -809,8 +779,7 @@ http_interactions:
809
779
  \"Grid\"], \"errorStrategy\": 2, \"attributes\": {\"class\": \"App full Module\",
810
780
  \"id\": \"App-42\"}, \"options\": {\"module\": {\"data\": {\"domain\": \"johnstamosgem.com\",
811
781
  \"like_count\": 1, \"images\": {\"736x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
812
- \"width\": 736, \"height\": 460}, \"136x136\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/136x136\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
813
- \"width\": 136, \"height\": 136}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
782
+ \"width\": 736, \"height\": 460}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
814
783
  \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
815
784
  \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
816
785
  \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
@@ -835,8 +804,8 @@ http_interactions:
835
804
  \"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
836
805
  {\"bookmarks\": [\"-end-\"], \"id\": \"412149803369441273\", \"view_type\":
837
806
  \"detailed\"}}, \"name\": \"Closeup\", \"options\": {}}}, \"uid\": \"App-42\"},
838
- \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false};\n P.available.declare();\n
839
- \ </script>\n</body>\n</html>"
807
+ \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false, \"initialContextLog\":
808
+ null});\n </script>\n</body>\n</html>"
840
809
  http_version:
841
- recorded_at: Fri, 16 Aug 2013 23:48:40 GMT
810
+ recorded_at: Fri, 20 Sep 2013 18:28:38 GMT
842
811
  recorded_with: VCR 2.5.0