john_stamos 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -0,0 +1,811 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://www.pinterest.com/pin/412149803369441273
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_4) AppleWebKit/537.36 (KHTML,
12
+ like Gecko) Chrome/28.0.1500.95 Safari/537.36
13
+ response:
14
+ status:
15
+ code: 200
16
+ message: OK
17
+ headers:
18
+ Age:
19
+ - '0'
20
+ Cache-Control:
21
+ - no-cache
22
+ Content-Type:
23
+ - text/html; charset=utf-8
24
+ Date:
25
+ - Fri, 20 Sep 2013 18:28:26 GMT
26
+ Pinterest-Breed:
27
+ - CORGI
28
+ Pinterest-Generated-By:
29
+ - ngapp-e94d6291
30
+ Pinterest-Version:
31
+ - '8814715'
32
+ Server:
33
+ - nginx
34
+ Set-Cookie:
35
+ - _pinterest_sess="eJwrtMgx9gwpKsh2dvYLMKwMN8xJN3ZPTXL0ziu3tY8vycxNtfUN8TX2D0ku9wViv3RbW7Xi1OLizBRbz9ygzMhcT1P/8LBMPxe3bF+XQJOo3KgMf/fAKl/30HI/I1dT39zICn8X30pPoD4AmYIj0A==";
36
+ Domain=.pinterest.com; expires=Mon, 15-Sep-2014 18:28:26 GMT; Max-Age=31103999;
37
+ Path=/
38
+ - csrftoken=9VmDoRiJmMRVXojIo7XGfsJ0DEYHoIIt; Domain=.pinterest.com; expires=Fri,
39
+ 19-Sep-2014 18:28:26 GMT; Max-Age=31449600; Path=/
40
+ Vary:
41
+ - Cookie, Accept-Encoding
42
+ Via:
43
+ - 1.1 varnish
44
+ X-Frame-Options:
45
+ - SAMEORIGIN
46
+ X-Ua-Compatible:
47
+ - IE=edge
48
+ X-Varnish:
49
+ - '1727561469'
50
+ Transfer-Encoding:
51
+ - chunked
52
+ Connection:
53
+ - keep-alive
54
+ body:
55
+ encoding: UTF-8
56
+ string: "<!DOCTYPE html>\n<!--[if IE 7 ]><html lang=\"en\" class=\"ie7 ielt9
57
+ ielt10 en\"><![endif]-->\n<!--[if IE 8 ]><html lang=\"en\" class=\"ie8 ielt9
58
+ ielt10 en\"><![endif]-->\n<!--[if IE 9 ]><html lang=\"en\" class=\"ie9 ielt10
59
+ en\"><![endif]-->\n<!--[if (gt IE 9)|!(IE)]><!--><html lang=\"en\" class=\"
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
+ true, \"ps\": null, \"sw\": false, \"fwb\": false, \"fwc\": false, \"slm\":
66
+ null, \"sn\": false, \"fww\": false, \"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
96
+ \ <meta name=\"application-name\" content=\"Pinterest\">\n <meta name=\"msapplication-TileColor\"
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
98
+ \ <meta property=\"fb:app_id\" content=\"274266067164\">\n <meta property=\"og:site_name\"
99
+ content=\"Pinterest\">\n <meta name=\"viewport\" content=\"width=device-width,
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
147
+ it now</a> or <a href=\"http://whatbrowser.org/\">try another browser</a>
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\"
156
+ scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\"></iframe>\n
157
+ \ </div>\n <div class=\"buttonsWrapper\">\n \n <a
158
+ href=\"/join/\" type=\"button\" class=\"rounded JoinButton NavigateButton
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
165
+ class=\"closeupActionBarContainer\">\n <div class=\"PinActionBar Module\"
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
170
+ class=\"accessibilityText\">Pin it</span></button>\n\n <button type=\"button\"
171
+ class=\"medium rounded NavigateButton Button primary IncrementingNavigateButton
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\"
194
+ style=\"width:736px;\">\n <img src=\"http://media-cache-ak0.pinimg.com/736x/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
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
205
+ \ alt=\"John Stamosgem\">\n </a>\n <div class=\"commenterNameCommentText\">\n
206
+ \ <div class=\"commenterWrapper\">\n <a
207
+ class=\"commentDescriptionCreator\" href=\"/johnstamosgem/\">John Stamosgem</a>\n\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
221
+ \ <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
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
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\"
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
260
+ \ <span class=\"hoverMask\"></span>\n <img
261
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n <li
262
+ class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
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
268
+ class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
269
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
270
+ \ \n >\n</li>\n <li class=\"thumb\">\n
271
+ \ <span class=\"hoverMask\"></span>\n <img
272
+ src=\"\"style=\"width: 70px;height: 70px;\"\n\n \n >\n</li>\n </ul>\n
273
+ \ <ul class=\"thumbRow\">\n <li
274
+ class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
275
+ \ <img src=\"\"style=\"width: 70px;height: 70px;\"\n\n
276
+ \ \n >\n</li>\n <li class=\"thumb\">\n
277
+ \ <span class=\"hoverMask\"></span>\n <img
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\":
292
+ \"Oops! Your account is linked to a different Facebook account than the one
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}\",
324
+ \"append\": \"?{append}\"}, {\"named\": {\"name\": 0}, \"resource\": {\"name\":
325
+ \"?{resource_name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/module\\/([^\\/]+)\\/$\",
326
+ \"allow_full_page\": false, \"module\": \"${name}\", \"error_strategy\": \"?{error_strategy}\",
327
+ \"options\": \"?{module_options}\", \"append\": \"?{append}\"}, {\"url\":
328
+ \"^\\/search\\/$\", \"named\": {}, \"resource\": {\"name\": \"BaseSearchResource\",
329
+ \"options\": {\"scope\": \"pins\", \"query\": \"?{q}\"}}, \"options\": {\"scope\":
330
+ \"pins\", \"query\": \"?{q}\"}, \"module\": \"SearchPage\"}, {\"url\": \"^\\/search\\/([^\\/]+)\\/$\",
331
+ \"named\": {\"scope\": 0}, \"resource\": {\"name\": \"BaseSearchResource\",
332
+ \"options\": {\"scope\": \"${scope}\", \"show_scope_selector\": true, \"query\":
333
+ \"?{q}\"}}, \"options\": {\"scope\": \"${scope}\", \"query\": \"?{q}\"}, \"module\":
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\":
343
+ \"^\\/categories\\/([^\\/]+)\\/$\", \"named\": {\"category\": 0}, \"resource\":
344
+ {}, \"options\": {\"feed\": \"${category}\", \"is_category\": true}, \"module\":
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\":
359
+ 0, \"board\": 1}, \"resource\": {\"name\": \"BoardAnnotationResource\", \"options\":
360
+ {\"board_id\": \"${board}\"}}, \"options\": {\"board_id\": \"${board}\", \"annotation\":
361
+ \"${annotation}\"}, \"module\": \"AnnotationFeedPage\"}, {\"url\": \"^\\/interests\\/([^\\/]+)\\/$\",
362
+ \"named\": {\"interest\": 0}, \"resource\": {}, \"options\": {\"interest\":
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\\/([^\\/]+)\\/$\",
379
+ \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_recent\"},
380
+ \"module\": \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\":
381
+ {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/top\\/repins\\/$\",
382
+ \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_repinned\",
383
+ \"aggregation\": \"?{aggregation}\", \"end_date\": \"?{end_date}\"}, \"module\":
384
+ \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\": {\"domain\":
385
+ 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/top\\/clicks\\/$\",
386
+ \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_clicked\",
387
+ \"aggregation\": \"?{aggregation}\", \"end_date\": \"?{end_date}\"}, \"module\":
388
+ \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\": {\"domain\":
389
+ 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/trending\\/$\",
390
+ \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"trending\"},
391
+ \"module\": \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\":
392
+ {}, \"resource\": {}, \"url\": \"^\\/find_friends\\/$\", \"options\": {},
393
+ \"module\": \"FindFriendsPage\"}, {\"require_authentication\": true, \"named\":
394
+ {}, \"resource\": {}, \"url\": \"^\\/find_friends\\/facebook\\/$\", \"options\":
395
+ {\"tab\": \"facebook\"}, \"module\": \"FindFriendsPage\"}, {\"require_authentication\":
396
+ true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/find_friends\\/twitter\\/$\",
397
+ \"options\": {\"tab\": \"twitter\"}, \"module\": \"FindFriendsPage\"}, {\"require_authentication\":
398
+ true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/find_friends\\/invite\\/$\",
399
+ \"options\": {\"focus\": \"invite\"}, \"module\": \"FindFriendsPage\"}, {\"require_authentication\":
400
+ true, \"named\": {}, \"resource\": {\"name\": \"FeedEditorPageResource\"},
401
+ \"url\": \"^\\/edit_home\\/$\", \"options\": {\"tab\": \"follow_boards\"},
402
+ \"module\": \"FeedEditorPage\"}, {\"require_authentication\": true, \"named\":
403
+ {}, \"resource\": {\"name\": \"FeedEditorPageResource\"}, \"url\": \"^\\/edit_home\\/follow_boards\\/$\",
404
+ \"options\": {\"tab\": \"follow_boards\"}, \"module\": \"FeedEditorPage\"},
405
+ {\"require_authentication\": true, \"named\": {}, \"resource\": {\"name\":
406
+ \"FeedEditorPageResource\"}, \"url\": \"^\\/edit_home\\/unfollow_boards\\/$\",
407
+ \"options\": {\"tab\": \"unfollow_boards\"}, \"module\": \"FeedEditorPage\"},
408
+ {\"named\": {}, \"resource\": {}, \"url\": \"^\\/offsite\\/$\", \"content_only\":
409
+ true, \"options\": {\"url\": \"?{url}\", \"pin_id\": \"?{pin}\", \"token\":
410
+ \"?{token}\"}, \"module\": \"OffsitePage\"}, {\"named\": {}, \"resource\":
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\\/\",
427
+ \"content_only\": true, \"options\": {\"register\": true}, \"module\": \"LoginPage\"},
428
+ {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/.*$\",
429
+ \"content_only\": true, \"options\": {\"invite_follow_board\": \"?{boardname}\",
430
+ \"register\": true, \"invite_follow_user\": \"?{username}\", \"next\": \"?{next}\"},
431
+ \"module\": \"LoginPage\"}, {\"require_authentication\": true, \"named\":
432
+ {\"username\": 0}, \"resource\": {}, \"login_parameters\": {\"username\":
433
+ \"${username}\", \"auto_follow\": \"true\"}, \"url\": \"^\\/follow\\/([^\\/]+)\\/*$\",
434
+ \"options\": {\"username\": \"${username}\"}, \"module\": \"AutoFollow\"},
435
+ {\"require_authentication\": true, \"named\": {\"username\": 0, \"slug\":
436
+ 1}, \"resource\": {}, \"login_parameters\": {\"username\": \"${username}\",
437
+ \"boardname\": \"${slug}\", \"auto_follow\": \"true\"}, \"url\": \"^\\/follow\\/([^\\/]+)\\/([^\\/]+)\\/*$\",
438
+ \"options\": {\"username\": \"${username}\", \"username_and_slug\": \"${username}\\/${slug}\"},
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\"},
444
+ {\"require_authentication\": true, \"named\": {}, \"resource\": {\"name\":
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\\/$\",
452
+ \"named\": {}, \"resource\": {\"name\": \"RichPinValidateResource\", \"options\":
453
+ {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
454
+ \"RichPinValidator\"}, {\"url\": \"^\\/browse\\/([^\\/]+)\\/$\", \"named\":
455
+ {\"query\": 0}, \"resource\": {\"name\": \"BrowseResource\", \"options\":
456
+ {\"query\": \"${query}\"}}, \"options\": {\"query\": \"${query}\"}, \"module\":
457
+ \"SearchPage\"}, {\"named\": {}, \"resource\": {\"name\": \"UserSettingsResource\"},
458
+ \"url\": \"^\\/settings\\/$\", \"require_authentication\": true, \"module\":
459
+ \"UserSettingsPage\", \"https\": true, \"require_explicit_login\": true, \"options\":
460
+ {}}, {\"named\": {\"username\": 0}, \"resource\": {\"name\": \"UserResource\",
461
+ \"options\": {\"username\": \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/$\",
462
+ \"deep_link\": \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\":
463
+ \"${username}\", \"report_user_spam\": \"?{report_user_spam}\", \"show_follow_memo\":
464
+ \"?{auto_follow}\", \"tab\": \"boards\"}, \"module\": \"UserProfilePage\"},
465
+ {\"named\": {\"username\": 0}, \"resource\": {\"name\": \"UserResource\",
466
+ \"options\": {\"username\": \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/boards\\/$\",
467
+ \"deep_link\": \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\":
468
+ \"${username}\", \"tab\": \"boards\"}, \"module\": \"UserProfilePage\"}, {\"named\":
469
+ {\"username\": 0}, \"resource\": {\"name\": \"UserResource\", \"options\":
470
+ {\"username\": \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/pins\\/$\", \"deep_link\":
471
+ \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\": \"${username}\",
472
+ \"tab\": \"pins\"}, \"module\": \"UserProfilePage\"}, {\"named\": {\"username\":
473
+ 0}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
474
+ \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/likes\\/$\", \"deep_link\":
475
+ \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\": \"${username}\",
476
+ \"tab\": \"likes\"}, \"module\": \"UserProfilePage\"}, {\"named\": {\"username\":
477
+ 0}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
478
+ \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/followers\\/$\", \"deep_link\":
479
+ \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\": \"${username}\",
480
+ \"tab\": \"followers\"}, \"module\": \"UserProfilePage\"}, {\"named\": {\"username\":
481
+ 0}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
482
+ \"${username}\"}}, \"url\": \"^\\/([^\\/]+)\\/following\\/$\", \"deep_link\":
483
+ \"pinterest:\\/\\/user\\/${username}\", \"options\": {\"username\": \"${username}\",
484
+ \"tab\": \"following\"}, \"module\": \"UserProfilePage\"}, {\"require_authentication\":
485
+ true, \"named\": {\"method\": 0}, \"resource\": {}, \"url\": \"^\\/pin\\/create\\/([^\\/]+)\\/$\",
486
+ \"content_only\": true, \"options\": {\"description\": \"?{description}\",
487
+ \"title\": \"?{title}\", \"url\": \"?{url}\", \"image_url\": \"?{media}\",
488
+ \"is_video\": \"?{is_video}\", \"method\": \"${method}\"}, \"module\": \"PinBookmarklet\"},
489
+ {\"url\": \"^\\/pin\\/find\\/$\", \"named\": {}, \"resource\": {\"name\":
490
+ \"FindPinImagesResource\", \"options\": {\"url\": \"?{url}\"}}, \"options\":
491
+ {}, \"module\": \"ImagesFeedPage\"}, {\"named\": {\"id\": 0}, \"resource\":
492
+ {\"name\": \"PinResource\", \"options\": {\"id\": \"${id}\", \"view_type\":
493
+ \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/$\", \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\",
494
+ \"options\": {}, \"module\": \"Closeup\"}, {\"named\": {\"id\": 0}, \"resource\":
495
+ {\"name\": \"PinResource\", \"options\": {\"id\": \"${id}\", \"view_type\":
496
+ \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/edit\\/$\", \"module\": \"Closeup\",
497
+ \"canonical_url\": \"\\/pin\\/${id}\\/\", \"require_explicit_login\": true,
498
+ \"options\": {\"show_edit\": true}, \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\"},
499
+ {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
500
+ {\"id\": \"${id}\", \"view_type\": \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/$\",
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\":
508
+ {\"pin_id\": \"${id}\", \"page_size\": 50}}, \"options\": {\"pin_id\": \"${id}\",
509
+ \"title\": \"Repins\"}, \"module\": \"RepinsLikesFeedPage\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/likes\\/$\",
510
+ \"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinLikesResource\", \"options\":
511
+ {\"pin_id\": \"${id}\", \"page_size\": 50}}, \"options\": {\"pin_id\": \"${id}\",
512
+ \"title\": \"Likes\"}, \"module\": \"RepinsLikesFeedPage\"}, {\"url\": \"^\\/board\\/create\\/$\",
513
+ \"named\": {}, \"resource\": {}, \"options\": {}, \"module\": \"BoardCreate\"},
514
+ {\"url\": \"^\\/board\\/([^\\/]+)\\/$\", \"named\": {\"id\": 0}, \"resource\":
515
+ {\"name\": \"BoardResource\", \"options\": {\"board_id\": \"${id}\", \"field_set_key\":
516
+ \"detailed\"}}, \"options\": {\"tab\": \"pins\"}, \"module\": \"BoardPage\"},
517
+ {\"named\": {\"username\": 0, \"slug\": 1}, \"resource\": {\"name\": \"BoardResource\",
518
+ \"options\": {\"username\": \"${username}\", \"field_set_key\": \"detailed\",
519
+ \"slug\": \"${slug}\"}}, \"url\": \"^\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"deep_link\":
520
+ \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\": {\"show_follow_memo\":
521
+ \"?{auto_follow}\", \"tab\": \"pins\"}, \"module\": \"BoardPage\"}, {\"url\":
522
+ \"^\\/([^\\/]+)\\/([^\\/]+)\\/search\\/$\", \"named\": {\"username\": 0, \"slug\":
523
+ 1}, \"resource\": {\"name\": \"BaseSearchResource\", \"options\": {\"board_slug\":
524
+ \"${slug}\", \"scope\": \"my_pins\", \"user\": \"${username}\", \"query\":
525
+ \"?{q}\"}}, \"options\": {\"board_slug\": \"${slug}\", \"scope\": \"my_pins\",
526
+ \"user\": \"${username}\", \"query\": \"?{q}\"}, \"module\": \"SearchPage\"},
527
+ {\"named\": {\"username\": 0, \"slug\": 1}, \"resource\": {\"name\": \"BoardResource\",
528
+ \"options\": {\"username\": \"${username}\", \"field_set_key\": \"detailed\",
529
+ \"slug\": \"${slug}\"}}, \"url\": \"^\\/([^\\/]+)\\/([^\\/]+)\\/edit\\/$\",
530
+ \"module\": \"BoardPage\", \"canonical_url\": \"\\/${username}\\/${slug}\\/\",
531
+ \"require_explicit_login\": true, \"options\": {\"show_edit\": true, \"tab\":
532
+ \"pins\"}, \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\"},
533
+ {\"named\": {\"username\": 0, \"slug\": 1}, \"resource\": {\"name\": \"BoardResource\",
534
+ \"options\": {\"username\": \"${username}\", \"field_set_key\": \"detailed\",
535
+ \"slug\": \"${slug}\"}}, \"url\": \"^\\/([^\\/]+)\\/([^\\/]+)\\/pins\\/$\",
536
+ \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\":
537
+ {\"tab\": \"pins\"}, \"module\": \"BoardPage\"}, {\"named\": {\"username\":
538
+ 0, \"slug\": 1}, \"resource\": {\"name\": \"BoardResource\", \"options\":
539
+ {\"username\": \"${username}\", \"field_set_key\": \"detailed\", \"slug\":
540
+ \"${slug}\"}}, \"url\": \"^\\/([^\\/]+)\\/([^\\/]+)\\/followers\\/$\", \"deep_link\":
541
+ \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\": {\"tab\":
542
+ \"followers\"}, \"module\": \"BoardPage\"}, {\"named\": {\"username\": 0,
543
+ \"slug\": 1}, \"resource\": {\"name\": \"BoardFeedResource\", \"options\":
544
+ {\"username\": \"${username}\", \"slug\": \"${slug}\"}}, \"url\": \"^\\/([^\\/]+)\\/([^\\/]+)\\/cover\\/$\",
545
+ \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\":
546
+ {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\": \"BoardCoverEditPage\"},
547
+ {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/password\\/change\\/$\",
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(\"120627517529\");\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\"},
580
+ {\"resource\": null, \"name\": \"ui.SearchForm\", \"children\": [{\"resource\":
581
+ null, \"name\": \"ui.TypeaheadField\", \"id\": \"searchField\", \"children\":
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\":
593
+ {\"name\": \"LocalesResource\", \"options\": {\"locale\": \"en-US\", \"bookmarks\":
594
+ [\"-end-\"]}}, \"name\": \"LanguageMenu\", \"children\": [{\"resource\": null,
595
+ \"name\": \"DropdownButton\", \"children\": [{\"resource\": null, \"name\":
596
+ \"Button\", \"children\": [], \"errorStrategy\": 2, \"options\": {\"class_name\":
597
+ \"langaugeButton\", \"text\": \"English (US)\", \"tagName\": \"button\"},
598
+ \"uid\": \"Button-13\"}], \"errorStrategy\": 2, \"options\": {\"dropdown_options\":
599
+ {\"position_point\": \"BOTTOM_RIGHT\", \"hide_caret\": true, \"fixed\": true},
600
+ \"button_options\": {\"class_name\": \"langaugeButton\", \"text\": \"English
601
+ (US)\", \"tagName\": \"button\"}, \"module\": {\"resource\": {\"name\": \"LocalesResource\"},
602
+ \"name\": \"LanguageDropdown\", \"options\": {\"selected\": \"English (US)\"}}},
603
+ \"uid\": \"DropdownButton-12\"}], \"errorStrategy\": 2, \"data\": {}, \"options\":
604
+ {}, \"uid\": \"LanguageMenu-8\"}], \"errorStrategy\": 2, \"options\": {},
605
+ \"uid\": \"Header-1\"}, {\"resource\": null, \"name\": \"ScrollToTop\", \"id\":
606
+ \"scrollToTop\", \"children\": [], \"errorStrategy\": 2, \"options\": {},
607
+ \"uid\": \"ScrollToTop-2\"}, {\"resource\": null, \"name\": \"Nags\", \"children\":
608
+ [{\"resource\": null, \"name\": \"NagBase\", \"extraData\": {\"type\": \"upgrade_ie\"},
609
+ \"children\": [{\"resource\": null, \"name\": \"Button\", \"children\": [],
610
+ \"errorStrategy\": 2, \"options\": {\"class_name\": \"nagClose\", \"tagName\":
611
+ \"button\", \"borderless\": true}, \"uid\": \"Button-16\"}], \"errorStrategy\":
612
+ 2, \"data\": {}, \"options\": {\"can_close\": true}, \"uid\": \"NagBase-14\"},
613
+ {\"resource\": null, \"name\": \"NagUnauth\", \"children\": [{\"resource\":
614
+ null, \"name\": \"JoinButton\", \"id\": \"join\", \"children\": [], \"errorStrategy\":
615
+ 2, \"options\": {\"color\": \"primary\", \"text\": \"Join Pinterest\", \"class_name\":
616
+ \"joinButton unauthNagButton\", \"element_type\": \"a\", \"tagName\": \"a\",
617
+ \"ga_category\": \"unauth_nag_join\"}, \"uid\": \"JoinButton-17\"}, {\"resource\":
618
+ null, \"name\": \"LoginButton\", \"id\": \"login\", \"children\": [], \"errorStrategy\":
619
+ 2, \"options\": {\"class_name\": \"loginButton unauthNagButton\", \"text\":
620
+ \"Log in\", \"element_type\": \"a\", \"ga_category\": \"unauth_nag_login\",
621
+ \"tagName\": \"a\"}, \"uid\": \"LoginButton-18\"}], \"errorStrategy\": 2,
622
+ \"options\": {}, \"uid\": \"NagUnauth-15\"}], \"errorStrategy\": 2, \"options\":
623
+ {}, \"uid\": \"Nags-3\"}, {\"resource\": {\"name\": \"PinResource\", \"options\":
624
+ {\"bookmarks\": [\"-end-\"], \"id\": \"412149803369441273\", \"view_type\":
625
+ \"detailed\"}}, \"name\": \"Closeup\", \"id\": \"mainModule\", \"extraData\":
626
+ {\"canEdit\": false, \"pinUrl\": \"\\/pin\\/412149803369441273\\/\"}, \"children\":
627
+ [{\"resource\": {\"name\": \"PinResource\", \"options\": {\"id\": \"412149803369441273\",
628
+ \"view_type\": \"action_bar\"}}, \"name\": \"PinActionBar\", \"id\": \"actions\",
629
+ \"children\": [{\"resource\": null, \"name\": \"ShowModalButton\", \"id\":
630
+ \"pinItButton\", \"children\": [], \"errorStrategy\": 2, \"options\": {\"submodule\":
631
+ {\"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
632
+ {\"id\": \"412149803369441273\", \"view_type\": \"repin\"}}, \"name\": \"PinCreate\",
633
+ \"options\": {\"action\": \"repin\", \"transparent_modal\": false, \"is_video\":
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\"},
644
+ {\"resource\": null, \"name\": \"PinLikeButton\", \"id\": \"likeButton\",
645
+ \"children\": [], \"errorStrategy\": 2, \"options\": {\"liked\": false, \"class_name\":
646
+ \"like leftRounded pinActionBarButton\", \"pin_id\": \"412149803369441273\",
647
+ \"has_icon\": true, \"tagName\": \"button\", \"text\": \"Like\", \"show_text\":
648
+ true, \"size\": \"medium\"}, \"uid\": \"PinLikeButton-25\"}, {\"resource\":
649
+ null, \"name\": \"IncrementingNavigateButton\", \"id\": \"likesButton\", \"extraData\":
650
+ {\"actionCount\": 1}, \"children\": [], \"errorStrategy\": 2, \"options\":
651
+ {\"url\": \"\\/pin\\/412149803369441273\\/likes\\/\", \"text\": 1, \"actionCount\":
652
+ 1, \"class_name\": \"repinLikeNavigateButton like leftRounded pinActionBarButton\",
653
+ \"siblingButtonId\": \"likeButton\", \"tagName\": \"button\", \"size\": \"medium\"},
654
+ \"uid\": \"IncrementingNavigateButton-26\"}, {\"resource\": null, \"name\":
655
+ \"NavigateButton\", \"id\": \"viewPinSource\", \"children\": [], \"errorStrategy\":
656
+ 2, \"options\": {\"tagName\": \"a\", \"has_icon\": true, \"text\": \"Website\",
657
+ \"url\": \"http:\\/\\/johnstamosgem.com\\/\", \"element_type\": \"a\", \"safe_link\":
658
+ true, \"safe_link_pin_id\": \"412149803369441273\", \"class_name\": \"website
659
+ pinActionBarButton\", \"size\": \"medium\"}, \"uid\": \"NavigateButton-27\"},
660
+ {\"resource\": null, \"name\": \"DropdownButton\", \"children\": [{\"resource\":
661
+ null, \"name\": \"Button\", \"children\": [], \"errorStrategy\": 2, \"options\":
662
+ {\"has_icon\": true, \"text\": \"Share\", \"class_name\": \"share pinActionBarButton\",
663
+ \"tagName\": \"button\", \"show_text\": false, \"size\": \"medium\"}, \"uid\":
664
+ \"Button-29\"}], \"errorStrategy\": 2, \"options\": {\"dropdown_options\":
665
+ {\"largeCaret\": true, \"position_point\": \"BOTTOM_RIGHT\", \"fixed\": false,
666
+ \"view_type\": \"closeupShare\"}, \"button_options\": {\"has_icon\": true,
667
+ \"tagName\": \"button\", \"class_name\": \"share pinActionBarButton\", \"text\":
668
+ \"Share\", \"show_text\": false, \"size\": \"medium\"}, \"module\": {\"resource\":
669
+ {\"name\": \"PinResource\", \"options\": {\"id\": \"412149803369441273\",
670
+ \"view_type\": \"closeup_share\"}}, \"name\": \"PinCloseupShare\", \"options\":
671
+ {}}}, \"uid\": \"DropdownButton-28\"}], \"errorStrategy\": 3, \"data\": {},
672
+ \"options\": {\"pin_id\": \"412149803369441273\"}, \"uid\": \"PinActionBar-19\"},
673
+ {\"resource\": {\"name\": \"PinResource\", \"options\": {\"id\": \"412149803369441273\",
674
+ \"view_type\": \"detailed\"}}, \"name\": \"CloseupContent\", \"id\": \"content\",
675
+ \"children\": [{\"resource\": {\"name\": \"PinResource\", \"options\": {\"id\":
676
+ \"412149803369441273\"}}, \"name\": \"Pin\", \"id\": \"pin\", \"children\":
677
+ [{\"resource\": {\"name\": \"PinResource\", \"options\": {\"id\": \"412149803369441273\"}},
678
+ \"name\": \"PaddedPin\", \"children\": [], \"errorStrategy\": 2, \"data\":
679
+ {}, \"options\": {\"fixed_width\": 736, \"image_size\": \"LARGE\"}, \"uid\":
680
+ \"PaddedPin-31\"}, {\"resource\": {\"name\": \"PinResource\", \"options\":
681
+ {\"id\": \"412149803369441273\", \"view_type\": \"detailed\"}}, \"name\":
682
+ \"RichPinBase\", \"children\": [], \"errorStrategy\": 2, \"data\": {}, \"options\":
683
+ {}, \"uid\": \"RichPinBase-32\"}, {\"resource\": null, \"name\": \"PinCommentList\",
684
+ \"id\": \"commentList\", \"children\": [], \"errorStrategy\": 2, \"options\":
685
+ {\"count\": 0, \"view_type\": \"detailed\", \"pin_id\": \"412149803369441273\",
686
+ \"max_num_to_show\": 50, \"show_actions\": true, \"image_size\": \"medium\",
687
+ \"field_set_key\": \"pin_detailed\"}, \"uid\": \"PinCommentList-33\"}, {\"resource\":
688
+ {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\"}},
689
+ \"name\": \"User\", \"children\": [], \"errorStrategy\": 2, \"data\": {\"id\":
690
+ \"412149940807022226\"}, \"options\": {\"class_name\": \"pinner\", \"button_class_name\":
691
+ \"closeupBottomView\", \"title_text\": \"Pinned by\", \"view_type\": \"thumb\"},
692
+ \"uid\": \"User-34\"}, {\"resource\": {\"name\": \"BoardResource\", \"options\":
693
+ {\"field_set_key\": \"thumb\", \"board_id\": \"412149872087590750\", \"bookmarks\":
694
+ [\"-end-\"]}}, \"name\": \"Board\", \"children\": [{\"resource\": null, \"name\":
695
+ \"BoardFollowButton\", \"children\": [], \"errorStrategy\": 2, \"options\":
696
+ {\"board_id\": \"412149872087590750\", \"user_id\": \"412149940807022226\",
697
+ \"color\": \"default\", \"unfollow_text\": \"Unfollow\", \"follow_ga_category\":
698
+ \"board_follow\", \"unfollow_ga_category\": \"board_unfollow\", \"disabled\":
699
+ false, \"tagName\": \"button\", \"text\": \"Follow\", \"followed\": false,
700
+ \"follow_text\": \"Follow\", \"follow_class\": \"default\", \"is_my_board\":
701
+ false}, \"uid\": \"BoardFollowButton-36\"}], \"errorStrategy\": 2, \"data\":
702
+ {}, \"options\": {\"class_name\": \"boardCredit\", \"view_type\": \"closeupBottomView\",
703
+ \"subtitle\": \"JohnStamosgemBoard\", \"show_follow_button\": true, \"title\":
704
+ \"Pinned onto\"}, \"uid\": \"Board-35\"}], \"errorStrategy\": 1, \"data\":
705
+ {\"domain\": \"johnstamosgem.com\", \"like_count\": 1, \"images\": {\"736x\":
706
+ {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
707
+ \"width\": 736, \"height\": 460}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
708
+ \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
709
+ \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
710
+ \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
711
+ false, \"twitter_url\": null, \"image_medium_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_75.jpg\",
712
+ \"explicitly_followed_by_me\": false, \"location\": \"California\", \"full_name\":
713
+ \"John Stamosgem\", \"image_small_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_30.jpg\",
714
+ \"followed_by_me\": false, \"type\": \"user\", \"id\": \"412149940807022226\"},
715
+ \"privacy\": \"public\", \"comments\": {\"bookmark\": null, \"data\": [],
716
+ \"uri\": \"\\/v3\\/pins\\/412149803369441273\\/comments\\/\"}, \"access\":
717
+ [], \"comment_count\": 0, \"board\": {\"category\": null, \"is_collaborative\":
718
+ false, \"name\": \"JohnStamosgemBoard\", \"privacy\": \"public\", \"url\":
719
+ \"\\/johnstamosgem\\/johnstamosgemboard\\/\", \"image_cover_url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/200x150\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
720
+ \"pin_thumbnail_urls\": [], \"access\": [], \"owner\": {\"id\": \"412149940807022226\"},
721
+ \"followed_by_me\": false, \"type\": \"board\", \"id\": \"412149872087590750\"},
722
+ \"type\": \"pin\", \"method\": \"uploaded\", \"location\": null, \"attribution\":
723
+ null, \"description\": \"JohnStamosgemPin description\", \"price_value\":
724
+ 0.0, \"is_playable\": false, \"rich_metadata\": null, \"via_pinner\": null,
725
+ \"link\": \"http:\\/\\/johnstamosgem.com\\/\", \"is_repin\": false, \"liked_by_me\":
726
+ false, \"description_html\": \"JohnStamosgemPin description\", \"repin_count\":
727
+ 0, \"tracked_link\": \"http:\\/\\/johnstamosgem.com\\/\", \"created_at\":
728
+ \"Sun, 04 Aug 2013 22:37:58 +0000\", \"embed\": null, \"is_video\": false},
729
+ \"options\": {\"pin_id\": \"412149803369441273\", \"view_type\": \"detailed\"},
730
+ \"uid\": \"Pin-30\"}], \"errorStrategy\": 1, \"data\": {\"domain\": \"johnstamosgem.com\",
731
+ \"id\": \"412149803369441273\"}, \"options\": {}, \"uid\": \"CloseupContent-20\"},
732
+ {\"resource\": {\"name\": \"PinResource\", \"options\": {\"id\": \"412149803369441273\",
733
+ \"view_type\": \"closeup_sidebar\"}}, \"name\": \"CloseupSidebar\", \"id\":
734
+ \"sidebar\", \"children\": [{\"resource\": {\"name\": \"BoardResource\", \"options\":
735
+ {\"field_set_key\": \"board_pins_grid\", \"board_id\": \"412149872087590750\"}},
736
+ \"name\": \"Board\", \"id\": \"boardGrid\", \"children\": [{\"resource\":
737
+ {\"name\": \"UserResource\", \"options\": {\"field_set_key\": \"summary\",
738
+ \"bookmarks\": [\"-end-\"], \"user_id\": \"412149940807022226\"}}, \"name\":
739
+ \"User\", \"children\": [], \"errorStrategy\": 2, \"data\": {\"id\": \"412149940807022226\"},
740
+ \"options\": {\"url\": \"\\/johnstamosgem\\/johnstamosgemboard\\/\", \"view_type\":
741
+ \"thumb\", \"title_text\": \"JohnStamosgemBoard\", \"show_follow_button\":
742
+ false, \"size\": \"boardRepTitle\"}, \"uid\": \"User-39\"}, {\"resource\":
743
+ {\"name\": \"BoardFeedResource\", \"options\": {\"field_set_key\": \"board_pins_grid_item\",
744
+ \"board_id\": \"412149872087590750\"}}, \"name\": \"Grid\", \"id\": \"pinGrid\",
745
+ \"children\": [], \"errorStrategy\": 1, \"async\": true, \"options\": {\"scrollable\":
746
+ true, \"show_grid_footer\": false, \"view_type\": \"boardPinsGrid\", \"centered\":
747
+ false, \"track_active_item\": true, \"item_options\": {\"view_type\": \"boardPinsGrid\"},
748
+ \"layout\": \"variable_height\", \"prevent_default_scroll\": true, \"active_item_id\":
749
+ \"412149803369441273\"}, \"uid\": \"Grid-40\"}, {\"resource\": null, \"name\":
750
+ \"BoardFollowButton\", \"id\": \"followBoardButton\", \"children\": [], \"errorStrategy\":
751
+ 2, \"options\": {\"board_id\": \"412149872087590750\", \"followed\": false,
752
+ \"class_name\": \"followBoardButton\", \"unfollow_text\": \"Unfollow Board\",
753
+ \"follow_ga_category\": \"board_follow\", \"unfollow_ga_category\": \"board_unfollow\",
754
+ \"disabled\": false, \"color\": \"default\", \"tagName\": \"button\", \"text\":
755
+ \"Follow Board\", \"user_id\": \"412149940807022226\", \"follow_text\": \"Follow
756
+ Board\", \"follow_class\": \"default\", \"is_my_board\": null}, \"uid\": \"BoardFollowButton-41\"}],
757
+ \"errorStrategy\": 1, \"data\": {\"id\": \"412149872087590750\"}, \"options\":
758
+ {\"scrollable\": true, \"view_type\": \"boardPinsGrid\", \"centered\": false,
759
+ \"board_follow_button_options\": {\"board_id\": \"412149872087590750\", \"board_followed_by_me\":
760
+ false, \"board_access\": [], \"board_owner\": \"412149940807022226\"}, \"prevent_default_scroll\":
761
+ true, \"active_item_id\": \"412149803369441273\"}, \"uid\": \"Board-37\"},
762
+ {\"resource\": {\"name\": \"DomainResource\", \"options\": {\"domain\": \"johnstamosgem.com\",
763
+ \"bookmarks\": [\"-end-\"]}}, \"name\": \"Domain\", \"id\": \"domain\", \"children\":
764
+ [], \"errorStrategy\": 2, \"data\": {}, \"options\": {}, \"uid\": \"Domain-38\"}],
765
+ \"errorStrategy\": 3, \"data\": {\"id\": \"412149803369441273\"}, \"options\":
766
+ {}, \"uid\": \"CloseupSidebar-21\"}, {\"resource\": null, \"name\": \"CloseupBottom\",
767
+ \"id\": \"bottom\", \"children\": [], \"errorStrategy\": 2, \"options\": {\"pin_id\":
768
+ \"412149803369441273\"}, \"uid\": \"CloseupBottom-22\"}], \"errorStrategy\":
769
+ 0, \"data\": {}, \"options\": {}, \"uid\": \"Closeup-4\"}, {\"resource\":
770
+ null, \"name\": \"NagNoScript\", \"extraData\": {\"type\": \"no_script\"},
771
+ \"children\": [], \"errorStrategy\": 2, \"options\": {}, \"uid\": \"NagNoScript-5\"}],
772
+ \"deps\": [\"App\", \"Header\", \"ScrollToTop\", \"Nags\", \"Closeup\", \"NagNoScript\",
773
+ \"DropdownButton\", \"ui.SearchForm\", \"LanguageMenu\", \"Button\", \"ui.TypeaheadField\",
774
+ \"ui.Typeahead\", \"Pillow\", \"NagBase\", \"NagUnauth\", \"JoinButton\",
775
+ \"LoginButton\", \"NavigateButton\", \"PinActionBar\", \"CloseupContent\",
776
+ \"CloseupSidebar\", \"CloseupBottom\", \"ShowModalButton\", \"IncrementingNavigateButton\",
777
+ \"PinLikeButton\", \"Pin\", \"PaddedPin\", \"RichPinBase\", \"PinCommentList\",
778
+ \"User\", \"Board\", \"BoardFollowButton\", \"ui.FollowButton\", \"Domain\",
779
+ \"Grid\"], \"errorStrategy\": 2, \"attributes\": {\"class\": \"App full Module\",
780
+ \"id\": \"App-42\"}, \"options\": {\"module\": {\"data\": {\"domain\": \"johnstamosgem.com\",
781
+ \"like_count\": 1, \"images\": {\"736x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
782
+ \"width\": 736, \"height\": 460}, \"236x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/236x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
783
+ \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
784
+ \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
785
+ \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
786
+ false, \"twitter_url\": null, \"image_medium_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_75.jpg\",
787
+ \"explicitly_followed_by_me\": false, \"location\": \"California\", \"full_name\":
788
+ \"John Stamosgem\", \"image_small_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_30.jpg\",
789
+ \"followed_by_me\": false, \"type\": \"user\", \"id\": \"412149940807022226\"},
790
+ \"privacy\": \"public\", \"comments\": {\"bookmark\": null, \"data\": [],
791
+ \"uri\": \"\\/v3\\/pins\\/412149803369441273\\/comments\\/\"}, \"access\":
792
+ [], \"comment_count\": 0, \"board\": {\"category\": null, \"is_collaborative\":
793
+ false, \"name\": \"JohnStamosgemBoard\", \"privacy\": \"public\", \"url\":
794
+ \"\\/johnstamosgem\\/johnstamosgemboard\\/\", \"image_cover_url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/200x150\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
795
+ \"pin_thumbnail_urls\": [], \"access\": [], \"owner\": {\"id\": \"412149940807022226\"},
796
+ \"followed_by_me\": false, \"type\": \"board\", \"id\": \"412149872087590750\"},
797
+ \"type\": \"pin\", \"method\": \"uploaded\", \"location\": null, \"attribution\":
798
+ null, \"description\": \"JohnStamosgemPin description\", \"price_value\":
799
+ 0.0, \"is_playable\": false, \"rich_metadata\": null, \"via_pinner\": null,
800
+ \"link\": \"http:\\/\\/johnstamosgem.com\\/\", \"is_repin\": false, \"liked_by_me\":
801
+ false, \"description_html\": \"JohnStamosgemPin description\", \"repin_count\":
802
+ 0, \"tracked_link\": \"http:\\/\\/johnstamosgem.com\\/\", \"created_at\":
803
+ \"Sun, 04 Aug 2013 22:37:58 +0000\", \"embed\": null, \"is_video\": false},
804
+ \"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
805
+ {\"bookmarks\": [\"-end-\"], \"id\": \"412149803369441273\", \"view_type\":
806
+ \"detailed\"}}, \"name\": \"Closeup\", \"options\": {}}}, \"uid\": \"App-42\"},
807
+ \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false, \"initialContextLog\":
808
+ null});\n </script>\n</body>\n</html>"
809
+ http_version:
810
+ recorded_at: Fri, 20 Sep 2013 18:28:26 GMT
811
+ recorded_with: VCR 2.5.0