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
@@ -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:39 GMT
25
+ - Fri, 20 Sep 2013 18:28:36 GMT
26
26
  Pinterest-Breed:
27
27
  - CORGI
28
28
  Pinterest-Generated-By:
29
- - ngapp-051ba604
29
+ - ngapp-5c784127
30
30
  Pinterest-Version:
31
- - 559a34d
31
+ - '8814715'
32
32
  Server:
33
33
  - nginx
34
34
  Set-Cookie:
35
- - _pinterest_sess="eJzzNHcO1dbWTjPwTvX3MTZITgvK8nFJcTfwNna0tY8vycxNtfUN8TX2y4o09cvKrvAPtLVVK04tLs5MsfXMda2MNHLL8Q93NY7K9TT2qwqs9HcJBKrLyPR3cS33DQ+s9Kvyy/arSjf1TLe1BQABZSJw";
36
- Domain=.pinterest.com; expires=Mon, 11-Aug-2014 23:48:39 GMT; Max-Age=31103999;
35
+ - _pinterest_sess="eJzz8HZ0M3eNMnK1CNIOrygpy/QKDM0udTII1DaxtY8vycxNtfUN8TX2D0ku9w1JrvBLt7VVK04tLs5MsfXMcq3wdwmsiArxNY3M8sv1DQnKjnIPywTSuZFVnqZ+WW4ZvllRmf4hoZWeQH0AVQojkw==";
36
+ Domain=.pinterest.com; expires=Mon, 15-Sep-2014 18:28:36 GMT; Max-Age=31103999;
37
37
  Path=/
38
- - csrftoken=vbtE1uxd05qDxB9CYDu65Cd4RhDS4nio; Domain=.pinterest.com; expires=Fri,
39
- 15-Aug-2014 23:48:39 GMT; Max-Age=31449600; Path=/
38
+ - csrftoken=3eQ5mdbXs7FpVEgPfSWRLqIDL49Gk00n; Domain=.pinterest.com; expires=Fri,
39
+ 19-Sep-2014 18:28:36 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
- - '2072377030'
49
+ - '1241294003'
46
50
  Transfer-Encoding:
47
51
  - chunked
48
52
  Connection:
@@ -53,285 +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
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
99
107
  property=\"description\" name=\"description\" content=\"John Stamosgem is
100
108
  using Pinterest, an online pinboard to collect and share what inspires you.\"
101
- data-app>\n \n <meta property=\"og:see_also\" name=\"og:see_also\"
102
- content=\"http://johnstamosgem.com/\" data-app>\n \n <meta property=\"pinterestapp:repins\"
103
- name=\"pinterestapp:repins\" content=\"0\" data-app>\n \n <meta
104
- property=\"og:description\" name=\"og:description\" content=\"JohnStamosgemPin
105
- description\" data-app>\n \n <meta property=\"og:title\" name=\"og:title\"
106
- content=\"JohnStamosgemBoard\" data-app>\n \n <meta property=\"pinterestapp:likes\"
107
- name=\"pinterestapp:likes\" content=\"1\" data-app>\n \n <meta property=\"pinterestapp:pinboard\"
108
- name=\"pinterestapp:pinboard\" content=\"http://pinterest.com/johnstamosgem/johnstamosgemboard/\"
109
- data-app>\n \n <meta property=\"pinterestapp:source\" name=\"pinterestapp:source\"
110
- content=\"http://johnstamosgem.com/\" data-app>\n </head><body>\n <div
111
- id=\"fb-root\"></div>\n<script>\n window.fbAsyncInit = function() {\n \n
112
- \ \n FB.init({\n appId: '274266067164',\n status: true\n });\n
113
- \ window.fbApiInit = true;\n P.FB = FB;\n };\n\n \n (function(d, s,
114
- id){\n var js, fjs = d.getElementsByTagName(s)[0];\n if (d.getElementById(id))
115
- {return;}\n js = d.createElement(s); js.id = id;\n js.src = \"//connect.facebook.net/en_US/all.js\";\n
116
- \ fjs.parentNode.insertBefore(js, fjs);\n }(document, 'script', 'facebook-jssdk'));\n\n
117
- \ P.FBEnsureInit = function(callback) {\n if (!window.fbApiInit) {\n
118
- \ setTimeout(function() {\n P.FBEnsureInit(callback);\n
119
- \ }, 50);\n } else {\n if (callback) {\n callback();\n
120
- \ }\n }\n }\n</script><div class=\"App full Module\" id=\"App-42\">\n\n\n\n\n\n\n\n
121
- \ <div class=\"Header Module\" id=\"Header-1\"><div class=\"headerBackground\"></div>\n\n\n\n<div
122
- class=\"headerContainer centeredWithinWrapper \">\n <div class=\"leftHeaderContent\">\n
123
- \ \n \n \n <div class=\"categoriesButton
124
- DropdownButton Module\" id=\"DropdownButton-6\">\n\n\n<button type=\"button\"
125
- class=\"rounded default Button Module primaryOnHover btn categories\" id=\"Button-9\">\n\n\n<em></em>\n<span
126
- class=\"accessibilityText\">Categories</span></button></div>\n\n <div
127
- class=\"ui-SearchForm Module\" id=\"ui-SearchForm-7\">\n<form action=\"/search/\"
128
- method=\"GET\" name=\"search\">\n <div class=\"search Module ui-TypeaheadField\"
129
- id=\"ui-TypeaheadField-10\">\n\n\n\n\n\n\n\n\n\n\n\n <input type=\"text\"
130
- name=\"q\"\n value=\"\" placeholder=\"Search\"\n autocomplete=\"off\"
131
- \ class=\"field\" />\n\n<div class=\"search hidden ui-Typeahead Module\" id=\"ui-Typeahead-11\">\n\n
132
- \ \n\n\n\n\n\n\n<ul class=\"results\"></ul></div></div>\n <button class=\"submit\"
133
- type=\"submit\">Search</button>\n</form></div>\n </div>\n\n <div>\n
134
- \ <a href=\"/\" id=\"logo\" class=\"logo\" data-force-refresh=\"1\">Pinterest</a>\n\n
135
- \ \n </div>\n\n\n \n\n <div class=\"rightHeaderContent\">\n
136
- \ \n <div class=\"unauthActions\">\n <div
137
- class=\"LanguageMenu Module\" id=\"LanguageMenu-8\">\n \n\n\n<div class=\"DropdownButton
138
- Module\" id=\"DropdownButton-12\">\n\n\n<button type=\"button\" class=\"rounded
139
- default Button Module langaugeButton hasText btn\" id=\"Button-13\">\n\n\n<span
140
- class=\"buttonText\">English (US)</span>\n </button></div></div>\n
141
- \ </div>\n \n </div>\n</div></div>\n <div class=\"ScrollToTop
142
- Pillow Module\" id=\"ScrollToTop-2\">\n\n<button>\n \n <div class=\"textContainer\">Scroll
143
- to&nbsp;Top</div>\n</button></div>\n\n<div class=\"appContent\">\n <div
144
- class=\"mainContainer\">\n \n <div class=\"Nags Module\"
145
- id=\"Nags-3\">\n\n\n\n\n\n\n\n \n \n \n \n \n
146
- \ \n \n <!--[if lt IE 8]><div class=\"NagBase Module centeredWithinWrapper\"
147
- id=\"NagBase-14\">\n\n\n\n\n\n\n\n \n <div class=\"message\">Wups, your
148
- browser's a little out of date! <a href=\"http://windows.microsoft.com/en-US/internet-explorer/download-ie\">Update
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
149
147
  it now</a> or <a href=\"http://whatbrowser.org/\">try another browser</a>
150
- for a faster, smoother Pinterest.</div>\n\n\n\n\n <button type=\"button\"
151
- class=\"default Button nagClose Module borderless\" id=\"Button-16\">\n\n\n\n
152
- \ &nbsp;</button>\n</div><![endif]-->\n \n <div class=\"NagUnauth
153
- NagBase Module centeredWithinWrapper\" id=\"NagUnauth-15\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
154
- class=\"message\">\n <p class=\"messageContent\">\n \n <strong>Pinterest
155
- is an online pinboard.</strong> Organize and share the things you love.\n
156
- \ \n </p>\n\n \n <div class=\"facepileWrapper hidden\">\n <iframe
157
- 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\"
158
156
  scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\"></iframe>\n
159
- \ </div>\n <div class=\"buttonsWrapper\">\n \n \n\n <a
157
+ \ </div>\n <div class=\"buttonsWrapper\">\n \n <a
160
158
  href=\"/join/\" type=\"button\" class=\"rounded JoinButton NavigateButton
161
- Button primary Module joinButton unauthNagButton hasText btn\" id=\"JoinButton-17\">\n\n\n<span
162
- class=\"buttonText\">Join Pinterest</span>\n </a>\n <a href=\"/login/\"
163
- type=\"button\" class=\"rounded NavigateButton default Button loginButton
164
- unauthNagButton Module hasText LoginButton btn\" id=\"LoginButton-18\">\n\n\n<span
165
- class=\"buttonText\">Log in</span>\n </a>\n </div>\n</div></div>\n
166
- \ \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
167
165
  class=\"closeupActionBarContainer\">\n <div class=\"PinActionBar Module\"
168
- 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
169
- \ \n \n \n\n\n<div class=\"repinLike\">\n \n \n \n \n
170
- \ \n\n \n \n\n \n \n \n \n\n \n \n\n <button
171
- type=\"button\" class=\"medium rounded repin pinActionBarButton ShowModalButton
172
- 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
173
170
  class=\"accessibilityText\">Pin it</span></button>\n\n <button type=\"button\"
174
171
  class=\"medium rounded NavigateButton Button primary IncrementingNavigateButton
175
- Module btn repinLikeNavigateButton pinActionBarButton hidden\" id=\"IncrementingNavigateButton-24\">\n\n\n\n
176
- \ \n \n\n\n\n\n\n\n\n\n &nbsp;</button>\n\n \n \n \n
177
- \ \n \n \n <button data-text-unlike=\"Unlike\" data-text-like=\"Like\"
178
- type=\"button\" class=\"medium rounded PinLikeButton default Button like leftRounded
179
- pinActionBarButton Module hasText btn\" id=\"PinLikeButton-25\">\n\n\n\n\n\n\n\n<em></em>\n<span
180
- class=\"buttonText\">Like</span>\n \n\n</button>\n <button type=\"button\"
181
- class=\"medium rounded NavigateButton default Button IncrementingNavigateButton
182
- repinLikeNavigateButton like leftRounded pinActionBarButton hasText Module
183
- btn\" id=\"IncrementingNavigateButton-26\">\n\n\n\n\n\n\n\n\n\n<span class=\"buttonText\">1</span>\n
184
- \ </button>\n\n \n \n <a href=\"http://johnstamosgem.com/\"
185
- type=\"button\" class=\"medium rounded website pinActionBarButton NavigateButton
186
- default Button Module hasText btn\" id=\"NavigateButton-27\">\n\n\n<em></em>\n<span
187
- class=\"buttonText\">Website</span>\n </a>\n \n</div>\n\n<div class=\"shareGear\">\n
188
- \ \n \n\n <div class=\"DropdownButton Module\" id=\"DropdownButton-28\">\n\n\n<button
189
- type=\"button\" class=\"medium rounded default Button Module share pinActionBarButton
190
- btn\" id=\"Button-29\">\n\n\n<em></em>\n<span class=\"accessibilityText\">Share</span></button></div>\n
191
- \ \n</div></div>\n</div>\n\n<div class='closeupContainer'><div class=\"CloseupContent
192
- Module\" id=\"CloseupContent-20\">\n\n\n\n\n\n\n\n\n<div class=\"detailed
193
- Pin Module\" id=\"Pin-30\">\n\n\n\n\n\n\n\n\n \n \n \n \n \n
194
- \ \n \n\n\n\n <div class=\"pinWrapper\">\n \n \n \n
195
- \ \n \n \n\n <div class=\"closeupContentSection\">\n <div
196
- class=\"pinImageSourceWrapper\">\n <div class=\"PaddedPin Module\"
197
- 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
198
- \ \n \n \n\n \n \n \n \n \n\n\n\n\n\n\n
199
- \ <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\"
200
194
  style=\"width:736px;\">\n <img src=\"http://media-cache-ak0.pinimg.com/736x/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
201
- class=\"pinImage\" style=\"width: 736px;height: 460px;\"alt=\"JohnStamosgemPin
202
- description\">\n\n </div>\n\n\n\n </a>\n</div>\n \n \n\n
203
- \ <div class=\"sourceFlagWrapper\">\n \n \n
204
- \ <a href=\"http://johnstamosgem.com/\">\n Visit
205
- johnstamosgem.com\n </a>\n \n\n \n
206
- \ </div>\n </div>\n <div class=\"RichPinBase Module\"
207
- id=\"RichPinBase-32\">\n\n\n\n\n\n\n \n \n \n \n\n \n \n
208
- \ \n \n</div>\n </div>\n\n <div class=\"closeupContentSection\">\n
209
- \ \n \n <div class=\"pinDescription
210
- \">\n\n \n <div class=\"pinDescriptionComment detailed\">\n <a
211
- class=\"userThumbContainer\" href=\"/johnstamosgem/\">\n <img class=\"userThumb\"
212
- 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
213
205
  \ alt=\"John Stamosgem\">\n </a>\n <div class=\"commenterNameCommentText\">\n
214
- \ <div class=\"commenterWrapper\">\n \n <a
206
+ \ <div class=\"commenterWrapper\">\n <a
215
207
  class=\"commentDescriptionCreator\" href=\"/johnstamosgem/\">John Stamosgem</a>\n\n
216
- \ \n <span class='commentDescriptionTimeAgo'>&bull;
217
- 12 days ago </span>\n \n \n </div>\n
218
- \ \n \n <p class=\"commentDescriptionContent\">JohnStamosgemPin
219
- description</p>\n \n \n \n \n
220
- \ </div>\n </div>\n\n </div>\n \n\n \n
221
- \ \n \n <div class=\"detailed empty PinCommentList
222
- Module\" id=\"PinCommentList-33\">\n\n\n\n\n \n\n\n\n \n\n\n<div class=\"commentsContainer
223
- \">\n\n\n</div>\n\n\n\n\n</div>\n \n\n\n \n </div>\n\n
224
- \ \n \n <div class=\"pinnerViaPinnerCredit closeupContentSection\">\n
225
- \ \n \n \n \n \n
226
- \ \n <div class=\"medium thumb pinner Module
227
- 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
228
- \ \n \n \n \n \n \n\n \n \n
229
- \ \n \n \n\n\n \n \n <a href=\"/johnstamosgem/\">\n
230
- \ \n\n \n \n \n \n \n \n\n
231
- \ \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
232
221
  \ <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
233
- alt=\"Profile image of John Stamosgem\" />\n </div>\n \n <h3
234
- class=\"title\">Pinned by</h3>\n \n \n <h4 class=\"fullname\">John
235
- Stamosgem</h4>\n \n \n \n\n \n </a>\n
236
- \ \n \n\n</div>\n\n \n <div class=\"closeupBottomView
237
- boardCredit Board Module\" id=\"Board-35\">\n\n\n\n\n\n \n\n\n\n \n
238
- \ \n \n \n \n\n \n \n \n <button
239
- type=\"button\" class=\"btn rounded default Button hasText Module BoardFollowButton
240
- notNavigatable ui-FollowButton\" id=\"BoardFollowButton-36\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n
241
- \ \n \n\n\n\n\n\n<span class=\"buttonText\">Follow</span>\n \n</button>\n
242
- \ \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
243
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\"
244
- class=\"boardThumbnail\" style=\"\">\n\n </span>\n <h3
245
- class=\"boardRepTitle\">Pinned onto</h3>\n <h4 class=\"boardRepSubtitle\">JohnStamosgemBoard</h4>\n
246
- \ </a>\n \n</div>\n </div>\n \n\n \n </div>\n</div></div>\n\n
247
- \ \n <div class=\"Module CloseupSidebar\" id=\"CloseupSidebar-21\">\n\n\n\n\n\n\n\n
248
- \ \n\n\n<div class=\"boardPinsGridContainer\">\n <div class=\"boardPinsGrid
249
- Board Module\" id=\"Board-37\">\n\n\n\n\n\n\n\n \n \n \n \n \n
250
- \ \n\n <div class=\"boardHeader\">\n \n\n <div class=\"hasText
251
- 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
252
- \ \n \n \n \n \n \n\n \n \n
253
- \ \n \n \n\n\n \n \n <a href=\"/johnstamosgem/johnstamosgemboard/\">\n
254
- \ \n\n \n \n \n \n \n \n\n
255
- \ \n \n \n\n <div class=\"thumbImageWrapper\">\n
256
- \ <img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_75.jpg\"
257
- alt=\"Profile image of John Stamosgem\" />\n </div>\n \n <h3
258
- class=\"title\">JohnStamosgemBoard</h3>\n \n \n <h4
259
- class=\"fullname\">John Stamosgem</h4>\n \n \n \n\n \n
260
- \ </a>\n \n \n\n</div>\n </div>\n\n \n <div class=\"pinGridWrapper\">\n
261
- \ <div class=\"loading Grid Module\" id=\"Grid-40\"></div>\n </div>\n\n
262
- \ \n \n <button type=\"button\" class=\"btn rounded default Button
263
- hasText Module BoardFollowButton notNavigatable followBoardButton ui-FollowButton\"
264
- 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
265
- class=\"buttonText\">Follow Board</span>\n \n</button>\n \n\n</div>\n</div>\n\n<div
266
- id=\"domainContainer\">\n \n <div class=\"Domain Module\" id=\"Domain-38\">\n\n\n\n
267
- \ \n\n\n \n\n<a href=\"/source/johnstamosgem.com/\" class=\"domainLinkWrapper\">\n
268
- \ <h4 class=\"domainSubtitle\">Other pins from</h4>\n <h3 class=\"domainName\">johnstamosgem.com</h3>\n
269
- \ <div class=\"thumbContainer\">\n \n \n \n <ul
270
- 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
271
260
  \ <span class=\"hoverMask\"></span>\n <img
272
- 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
273
262
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
274
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
275
- \ \n <li class=\"thumb\">\n <span
276
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
277
- 70px;height: 70px;\">\n</li>\n \n </ul>\n \n
278
- \ <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
279
268
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
280
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
281
- \ \n <li class=\"thumb\">\n <span
282
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
283
- 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
284
271
  \ <span class=\"hoverMask\"></span>\n <img
285
- src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n \n </ul>\n
286
- \ \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
287
274
  class=\"thumb\">\n <span class=\"hoverMask\"></span>\n
288
- \ <img src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n
289
- \ \n <li class=\"thumb\">\n <span
290
- class=\"hoverMask\"></span>\n <img src=\"\"style=\"width:
291
- 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
292
277
  \ <span class=\"hoverMask\"></span>\n <img
293
- src=\"\"style=\"width: 70px;height: 70px;\">\n</li>\n \n </ul>\n
294
- \ \n </div>\n</a></div>\n \n</div>\n\n</div>\n \n</div>\n\n\n
295
- \ <div class='closeupBottom'>\n <div class=\"Module CloseupBottom\"
296
- id=\"CloseupBottom-22\">\n\n\n\n</div>\n </div>\n</div>\n </div>\n <div
297
- class=\"appendedContainer\">\n </div>\n</div>\n\n\n\n<div class=\"NagNoScript
298
- NagBase Module centeredWithinWrapper\" id=\"NagNoScript-5\">\n\n\n\n\n\n<noscript>\n
299
- \ \n\n\n\n\n\n\n\n \n <div class=\"message\">Oh no! Pinterest doesn't
300
- work unless you <a href=\"http://enable-javascript.com/\" rel=\"nofollow\">turn
301
- on JavaScript.</a></div>\n\n\n\n\n <style>\n .NagBase {\n display:
302
- none;\n }\n </style>\n</noscript></div></div> \n\n \n <script>\n
303
- \ P.setFacebookKey(274266067164);\n P.setContext({\"app_version\":
304
- \"559a34d\"});\n P.setStrings({\"formURLNotValid\": \"Not a valid url.\",
305
- \"google\": \"Gmail\", \"resendConfirmationEmailNoOp\": \"Your account has
306
- already been confirmed.\", \"formFieldRequired\": \"Required\", \"oneNewPin\":
307
- \"1 new pin\", \"errorMessage\": \"Sorry! Something went wrong on our end!\",
308
- \"passwordBlackPasswordStr\": \"Please try using a stronger password\", \"gplusContact\":
309
- \"Google\", \"offsiteInvalidToken\": \"Sorry! This redirect link has expired.\",
310
- \"popupErrorMessage\": \"You must enable popups!\", \"successInviteSentToEmail\":
311
- \"Success! Invitation sent to <%= email %>\", \"emailAddress\": \"Email address\",
312
- \"yahoo\": \"Yahoo\", \"facebookContact\": \"Facebook\", \"cancel\": \"Cancel\",
313
- \"passwordSamePasswordStr\": \"Password and username can't match\", \"savePinTutorial\":
314
- \"Want to save this pin for yourself? Go ahead and Pin it.\", \"connectError\":
315
- \"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\":
316
292
  \"Oops! Your account is linked to a different Facebook account than the one
317
- you're logged into now.\", \"createFirstBoard\": \"Collect your pins onto
318
- boards. Create just a few or a whole bunch.\", \"passwordGoodPasswordStr\":
319
- \"Great!\", \"removePinner\": \"Remove Pinner\", \"emailUpdated\": \"Your
320
- email has been updated.\", \"gplus\": \"Google+\", \"pickEmailAddress\": \"Enter
321
- an email address\", \"blockPinner\": \"Block Pinner\", \"resendConfirmationEmailSuccess\":
322
- \"Thanks! You should receive a confirmation email soon.\", \"passwordTooShort\":
323
- \"Too short\", \"formEmailNotValid\": \"Not a valid email.\", \"emailTo\":
324
- \"Email to {{ email_address }}\", \"inviteMessage\": \"Join me on Pinterest!\",
325
- \"passwordMustBeSet\": \"A password must be set before unlinking.\", \"newPins\":
326
- \"new pins\", \"removeBounceNag\": \"Got it! Make sure your inbox isn't full
327
- so that our emails can find their way to you.\", \"continue\": \"Continue\",
328
- \"ok\": \"Ok\", \"error\": \"Error\", \"suggestedUsername\": \"Suggested username\",
329
- \"facebook\": \"Facebook\", \"errorTitle\": \"Whoops!\", \"passwordBadStyle\":
330
- \"Not proper style\", \"fellowPinner\": \"Fellow Pinner\"});\n P.setPageInfo(null);\n
331
- \ P.setRoutes([{\"named\": {\"name\": 0, \"method\": 1}, \"resource_method\":
332
- \"${method}\", \"resource\": {\"name\": \"${name}\", \"options\": \"?{options}\"},
333
- \"url\": \"^\\/resource\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"allow_full_page\":
334
- 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}\",
335
324
  \"append\": \"?{append}\"}, {\"named\": {\"name\": 0}, \"resource\": {\"name\":
336
325
  \"?{resource_name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/module\\/([^\\/]+)\\/$\",
337
326
  \"allow_full_page\": false, \"module\": \"${name}\", \"error_strategy\": \"?{error_strategy}\",
@@ -342,34 +331,51 @@ http_interactions:
342
331
  \"named\": {\"scope\": 0}, \"resource\": {\"name\": \"BaseSearchResource\",
343
332
  \"options\": {\"scope\": \"${scope}\", \"show_scope_selector\": true, \"query\":
344
333
  \"?{q}\"}}, \"options\": {\"scope\": \"${scope}\", \"query\": \"?{q}\"}, \"module\":
345
- \"SearchPage\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/$\", \"https_if_unauth\":
346
- true, \"module\": \"HomePage\", \"content_only_if_unauth\": true, \"deep_link\":
347
- \"pinterest:\\/\\/\", \"options\": {\"tab\": \"following\", \"from_fast_follow\":
348
- \"?{ff}\"}}, {\"require_authentication\": true, \"named\": {}, \"resource\":
349
- {}, \"url\": \"^\\/home\\/picked_for_you\\/$\", \"options\": {\"tab\": \"picked_for_you\"},
350
- \"module\": \"HomePage\"}, {\"url\": \"^\\/categories\\/$\", \"named\": {},
351
- \"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\":
352
343
  \"^\\/categories\\/([^\\/]+)\\/$\", \"named\": {\"category\": 0}, \"resource\":
353
344
  {}, \"options\": {\"feed\": \"${category}\", \"is_category\": true}, \"module\":
354
- \"FeedPage\"}, {\"url\": \"^\\/all\\/$\", \"named\": {}, \"resource\": {},
355
- \"options\": {\"feed\": \"everything\", \"scope\": \"?{scope}\"}, \"module\":
356
- \"FeedPage\"}, {\"url\": \"^\\/all\\/([^\\/]+)\\/$\", \"named\": {\"category\":
357
- 0}, \"resource\": {}, \"options\": {\"feed\": \"${category}\", \"is_category\":
358
- true, \"scope\": \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/popular\\/$\",
359
- \"named\": {}, \"resource\": {}, \"options\": {\"feed\": \"popular\", \"scope\":
360
- \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/gifts\\/$\", \"named\":
361
- {}, \"resource\": {}, \"options\": {\"feed\": \"gifts\", \"scope\": \"?{scope}\"},
362
- \"module\": \"FeedPage\"}, {\"url\": \"^\\/videos\\/$\", \"named\": {}, \"resource\":
363
- {}, \"options\": {\"feed\": \"videos\", \"scope\": \"?{scope}\"}, \"module\":
364
- \"FeedPage\"}, {\"url\": \"^\\/picked_for_you\\/$\", \"named\": {}, \"resource\":
365
- {}, \"options\": {\"feed\": \"recommendations\"}, \"module\": \"FeedPage\"},
366
- {\"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\":
367
359
  0, \"board\": 1}, \"resource\": {\"name\": \"BoardAnnotationResource\", \"options\":
368
360
  {\"board_id\": \"${board}\"}}, \"options\": {\"board_id\": \"${board}\", \"annotation\":
369
361
  \"${annotation}\"}, \"module\": \"AnnotationFeedPage\"}, {\"url\": \"^\\/interests\\/([^\\/]+)\\/$\",
370
362
  \"named\": {\"interest\": 0}, \"resource\": {}, \"options\": {\"interest\":
371
- \"${interest}\"}, \"module\": \"InterestFeedPage\"}, {\"require_authentication\":
372
- 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\\/([^\\/]+)\\/$\",
373
379
  \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_recent\"},
374
380
  \"module\": \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\":
375
381
  {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/top\\/repins\\/$\",
@@ -402,19 +408,22 @@ http_interactions:
402
408
  {\"named\": {}, \"resource\": {}, \"url\": \"^\\/offsite\\/$\", \"content_only\":
403
409
  true, \"options\": {\"url\": \"?{url}\", \"pin_id\": \"?{pin}\", \"token\":
404
410
  \"?{token}\"}, \"module\": \"OffsitePage\"}, {\"named\": {}, \"resource\":
405
- {}, \"url\": \"^\\/logout\\/\", \"content_only\": true, \"options\": {}, \"module\":
406
- \"LogoutPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true, \"url\":
407
- \"^\\/login\\/$\", \"content_only\": true, \"options\": {\"next\": \"?{next}\"},
408
- \"module\": \"LoginPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true,
409
- \"url\": \"^\\/login\\/reset\\/$\", \"content_only\": true, \"options\": {\"username_or_email\":
410
- \"?{username_or_email}\"}, \"module\": \"PasswordResetOneClick\"}, {\"redirect\":
411
- \"\\/\", \"named\": {}, \"resource\": {}, \"url\": \"^\\/join\\/signup\\/\",
412
- \"options\": {}, \"module\": \"\"}, {\"redirect\": \"\\/\", \"named\": {},
413
- \"resource\": {}, \"url\": \"^\\/signup\\/\", \"options\": {}, \"module\":
414
- \"\"}, {\"named\": {\"network\": 0}, \"resource\": {}, \"https\": true, \"url\":
415
- \"^\\/join\\/register\\/([^\\/]+)\\/\", \"content_only\": true, \"options\":
416
- {\"network\": \"${network}\"}, \"module\": \"UserRegisterPage\"}, {\"named\":
417
- {}, \"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\\/\",
418
427
  \"content_only\": true, \"options\": {\"register\": true}, \"module\": \"LoginPage\"},
419
428
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/.*$\",
420
429
  \"content_only\": true, \"options\": {\"invite_follow_board\": \"?{boardname}\",
@@ -427,56 +436,19 @@ http_interactions:
427
436
  1}, \"resource\": {}, \"login_parameters\": {\"username\": \"${username}\",
428
437
  \"boardname\": \"${slug}\", \"auto_follow\": \"true\"}, \"url\": \"^\\/follow\\/([^\\/]+)\\/([^\\/]+)\\/*$\",
429
438
  \"options\": {\"username\": \"${username}\", \"username_and_slug\": \"${username}\\/${slug}\"},
430
- \"module\": \"AutoFollow\"}, {\"url\": \"^\\/website\\/verify\\/$\", \"named\":
431
- {}, \"resource\": {\"name\": \"DomainVerifyResource\"}, \"options\": {}, \"module\":
432
- \"DomainVerify\"}, {\"redirect\": \"\\/developer\\/\", \"named\": {}, \"resource\":
433
- {}, \"url\": \"^\\/developer\\/api\\/\", \"options\": {}, \"module\": \"\"},
434
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/contact_us\\/\",
435
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.ContactUs\",
436
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
437
- {}, \"url\": \"^\\/developer\\/contact_us_thank_you\\/\", \"content_only\":
438
- true, \"options\": {\"module\": {\"name\": \"dev.ContactUsThankYou\", \"options\":
439
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
440
- \"^\\/developer\\/ios\\/\", \"content_only\": true, \"options\": {\"module\":
441
- {\"name\": \"dev.iOS\", \"options\": {}}}, \"module\": \"Developer\"}, {\"named\":
442
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/android\\/\", \"content_only\":
443
- true, \"options\": {\"module\": {\"name\": \"dev.Android\", \"options\": {}}},
444
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/validator\\/\",
445
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
446
- \"RichPinValidateResource\", \"options\": {\"link\": \"?{link}\"}}, \"name\":
447
- \"dev.RichPinValidator\", \"options\": {\"apply\": \"?{apply}\", \"link\":
448
- \"?{link}\", \"custom_sidebar\": true}}}, \"module\": \"Developer\"}, {\"named\":
449
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/pin_it\\/\", \"content_only\":
450
- true, \"options\": {\"module\": {\"name\": \"dev.PinIt\", \"options\": {}}},
451
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/\",
452
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.RichPins\",
453
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
454
- {}, \"url\": \"^\\/developer\\/goodies\\/\", \"content_only\": true, \"options\":
455
- {\"module\": {\"name\": \"dev.Goodies\", \"options\": {}}}, \"module\": \"Developer\"},
456
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/apps\\/\", \"content_only\":
457
- true, \"options\": {\"module\": {\"name\": \"dev.Apps\", \"options\": {}}},
458
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/manage\\/$\",
459
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
460
- \"ConsumerListResource\"}, \"name\": \"ConsumerManagePage\"}}, \"module\":
461
- \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/terms\\/\",
462
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.Terms\",
463
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
464
- {}, \"url\": \"^\\/developer\\/richpins\\/apply\\/$\", \"content_only\": true,
465
- \"options\": {\"module\": {\"name\": \"dev.RichPinApplyForm\", \"options\":
466
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
467
- \"^\\/developer\\/$\", \"content_only\": true, \"options\": {}, \"module\":
468
- \"Developer\"}, {\"url\": \"^\\/business\\/getstarted\\/$\", \"named\": {},
469
- \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"me\"}},
470
- \"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\"},
471
444
  {\"require_authentication\": true, \"named\": {}, \"resource\": {\"name\":
472
- \"PartnerResource\", \"options\": {\"user_id\": \"me\"}}, \"https\": true,
473
- \"url\": \"^\\/business\\/convert\\/$\", \"options\": {}, \"module\": \"BusinessAccountConvert\"},
474
- {\"url\": \"^\\/business\\/tools\\/site-debugger\\/$\", \"named\": {}, \"resource\":
475
- {\"name\": \"RichPinDebugResource\", \"options\": {\"link\": \"?{link}\"}},
476
- \"options\": {\"link\": \"?{link}\"}, \"module\": \"RichPinDebugger\"}, {\"url\":
477
- \"^\\/business\\/tools\\/rich-pin-builder\\/$\", \"named\": {}, \"resource\":
478
- {\"name\": \"RichPinSamplePinResource\", \"options\": {}}, \"options\": {},
479
- \"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\\/$\",
480
452
  \"named\": {}, \"resource\": {\"name\": \"RichPinValidateResource\", \"options\":
481
453
  {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
482
454
  \"RichPinValidator\"}, {\"url\": \"^\\/browse\\/([^\\/]+)\\/$\", \"named\":
@@ -526,14 +498,13 @@ http_interactions:
526
498
  \"options\": {\"show_edit\": true}, \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\"},
527
499
  {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
528
500
  {\"id\": \"${id}\", \"view_type\": \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/$\",
529
- \"require_authentication\": true, \"module\": \"Closeup\", \"canonical_url\":
530
- \"\\/pin\\/${id}\\/\", \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\", \"options\":
531
- {\"show_repin\": true}}, {\"named\": {\"id\": 0}, \"resource\": {\"name\":
532
- \"PinResource\", \"options\": {\"id\": \"${id}\", \"view_type\": \"repin\"}},
533
- \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/x\\/$\", \"content_only\": true,
534
- \"options\": {\"action\": \"repin\", \"method\": \"bookmarklet\"}, \"module\":
535
- \"PinBookmarklet\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/repins\\/$\", \"named\":
536
- {\"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\":
537
508
  {\"pin_id\": \"${id}\", \"page_size\": 50}}, \"options\": {\"pin_id\": \"${id}\",
538
509
  \"title\": \"Repins\"}, \"module\": \"RepinsLikesFeedPage\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/likes\\/$\",
539
510
  \"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinLikesResource\", \"options\":
@@ -574,49 +545,51 @@ http_interactions:
574
545
  \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\":
575
546
  {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\": \"BoardCoverEditPage\"},
576
547
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/password\\/change\\/$\",
577
- \"options\": {}, \"module\": \"UserChangePassword\"}, {\"require_authentication\":
578
- true, \"named\": {\"domain\": 0}, \"resource\": {\"name\": \"DomainAnalyticsCountsResource\",
579
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
580
- \"end_date\": \"?{end_date}\"}}, \"url\": \"^\\/source\\/([^\\/]+)\\/analytics\\/$\",
581
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
582
- \"end_date\": \"?{end_date}\"}, \"module\": \"DomainAnalyticsPage\"}, {\"sandbox\":
583
- true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/close_window\\/$\",
584
- \"options\": {}, \"module\": \"Close\"}, {\"named\": {}, \"resource\": {},
585
- \"url\": \"^\\/oauth\\/dialog\\/$\", \"require_authentication\": true, \"module\":
586
- \"OAuthDialog\", \"content_only\": true, \"https\": true, \"options\": {\"scope\":
587
- \"?{scope}\", \"state\": \"?{state}\", \"redirect_uri\": \"?{redirect_uri}\",
588
- \"response_type\": \"?{response_type}\", \"consumer_id\": \"?{consumer_id}\"}}]);\n
589
- \ P.setPageRoutePattern(\"^\\/pin\\/:id\\/$\");\n P.setPageLoadRequestIdentifier(\"299753506429\");\n\n
590
- \ Pc.startArgs = {\"gaAccountNumber\": \"UA-12967896-7\", \"scrubbedUser\":
591
- {\"autologin\": null}, \"tree\": {\"resource\": null, \"name\": \"App\", \"children\":
592
- [{\"resource\": null, \"name\": \"Header\", \"id\": \"header\", \"children\":
593
- [{\"resource\": null, \"name\": \"DropdownButton\", \"id\": \"categoriesDropdownButton\",
594
- \"children\": [{\"resource\": null, \"name\": \"Button\", \"children\": [],
595
- \"errorStrategy\": 2, \"options\": {\"has_icon\": true, \"text\": \"Categories\",
596
- \"primary_on_hover\": true, \"tagName\": \"button\", \"show_text\": false,
597
- \"class_name\": \"categories\"}, \"uid\": \"Button-9\"}], \"errorStrategy\":
598
- 2, \"options\": {\"class_name\": \"categoriesButton\", \"button_options\":
599
- {\"has_icon\": true, \"tagName\": \"button\", \"primary_on_hover\": true,
600
- \"class_name\": \"categories\", \"text\": \"Categories\", \"show_text\": false},
601
- \"module\": {\"resource\": {\"name\": \"CategoriesResource\", \"options\":
602
- {\"browsable\": true}}, \"name\": \"CategoriesMenu\"}, \"dropdown_options\":
603
- {\"largeCaret\": true, \"fixed\": true, \"prefetch\": true, \"view_type\":
604
- \"categoriesMenu\"}, \"time\": 500, \"tutorial\": {\"topic\": \"categories\",
605
- \"text\": \"Browse Popular, DIY and other categories to find pins you like.\",
606
- \"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(\"779102309946\");\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\"},
607
580
  {\"resource\": null, \"name\": \"ui.SearchForm\", \"children\": [{\"resource\":
608
581
  null, \"name\": \"ui.TypeaheadField\", \"id\": \"searchField\", \"children\":
609
- [{\"resource\": null, \"name\": \"ui.Typeahead\", \"id\": \"typeahead\", \"extraData\":
610
- {\"inGplusExp\": false}, \"children\": [], \"errorStrategy\": 2, \"options\":
611
- {\"enable_recent_queries\": true, \"tags\": \"autocomplete\", \"class_name\":
612
- null, \"exclude_non_followers\": null, \"view_type\": \"search\", \"template\":
613
- null}, \"uid\": \"ui-Typeahead-11\"}], \"errorStrategy\": 2, \"options\":
614
- {\"enable_recent_queries\": true, \"name\": \"q\", \"view_type\": \"search\",
615
- \"class_name\": null, \"prefetch_on_focus\": true, \"value\": \"\", \"populate_on_result_highlight\":
616
- true, \"search_delay\": 0, \"search_on_focus\": true, \"placeholder\": \"Search\",
617
- \"tags\": \"autocomplete\"}, \"uid\": \"ui-TypeaheadField-10\"}], \"errorStrategy\":
618
- 2, \"options\": {\"navigate_on_search\": true, \"enable_recent_queries\":
619
- 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\":
620
593
  {\"name\": \"LocalesResource\", \"options\": {\"locale\": \"en-US\", \"bookmarks\":
621
594
  [\"-end-\"]}}, \"name\": \"LanguageMenu\", \"children\": [{\"resource\": null,
622
595
  \"name\": \"DropdownButton\", \"children\": [{\"resource\": null, \"name\":
@@ -658,17 +631,16 @@ http_interactions:
658
631
  {\"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
659
632
  {\"id\": \"412149803369441273\", \"view_type\": \"repin\"}}, \"name\": \"PinCreate\",
660
633
  \"options\": {\"action\": \"repin\", \"transparent_modal\": false, \"is_video\":
661
- false, \"show_preview\": false, \"fast_repin\": false}}, \"primary_on_hover\":
662
- true, \"color\": \"primary\", \"text\": \"Pin it\", \"extra_options\": {},
663
- \"tagName\": \"button\", \"has_icon\": true, \"show_text\": false, \"ga_category\":
664
- \"repin_create_closeup\", \"class_name\": \"repin pinActionBarButton\", \"require_auth\":
665
- true, \"size\": \"medium\"}, \"uid\": \"ShowModalButton-23\"}, {\"resource\":
666
- null, \"name\": \"IncrementingNavigateButton\", \"id\": \"repinsButton\",
667
- \"extraData\": {\"actionCount\": 0}, \"children\": [], \"errorStrategy\":
668
- 2, \"options\": {\"url\": \"\\/pin\\/412149803369441273\\/repins\\/\", \"text\":
669
- 0, \"actionCount\": 0, \"color\": \"primary\", \"siblingButtonId\": \"pinItButton\",
670
- \"tagName\": \"button\", \"class_name\": \"repinLikeNavigateButton pinActionBarButton
671
- 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\"},
672
644
  {\"resource\": null, \"name\": \"PinLikeButton\", \"id\": \"likeButton\",
673
645
  \"children\": [], \"errorStrategy\": 2, \"options\": {\"liked\": false, \"class_name\":
674
646
  \"like leftRounded pinActionBarButton\", \"pin_id\": \"412149803369441273\",
@@ -732,8 +704,7 @@ http_interactions:
732
704
  \"Pinned onto\"}, \"uid\": \"Board-35\"}], \"errorStrategy\": 1, \"data\":
733
705
  {\"domain\": \"johnstamosgem.com\", \"like_count\": 1, \"images\": {\"736x\":
734
706
  {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
735
- \"width\": 736, \"height\": 460}, \"136x136\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/136x136\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
736
- \"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\",
737
708
  \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
738
709
  \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
739
710
  \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
@@ -808,8 +779,7 @@ http_interactions:
808
779
  \"Grid\"], \"errorStrategy\": 2, \"attributes\": {\"class\": \"App full Module\",
809
780
  \"id\": \"App-42\"}, \"options\": {\"module\": {\"data\": {\"domain\": \"johnstamosgem.com\",
810
781
  \"like_count\": 1, \"images\": {\"736x\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/736x\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
811
- \"width\": 736, \"height\": 460}, \"136x136\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/136x136\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
812
- \"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\",
813
783
  \"width\": 236, \"height\": 147}, \"orig\": {\"url\": \"http:\\/\\/media-cache-ak0.pinimg.com\\/originals\\/ee\\/39\\/6e\\/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\",
814
784
  \"width\": 1280, \"height\": 800}}, \"id\": \"412149803369441273\", \"price_currency\":
815
785
  \"USD\", \"pinner\": {\"username\": \"johnstamosgem\", \"domain_verified\":
@@ -834,8 +804,8 @@ http_interactions:
834
804
  \"error_strategy\": 0, \"resource\": {\"name\": \"PinResource\", \"options\":
835
805
  {\"bookmarks\": [\"-end-\"], \"id\": \"412149803369441273\", \"view_type\":
836
806
  \"detailed\"}}, \"name\": \"Closeup\", \"options\": {}}}, \"uid\": \"App-42\"},
837
- \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false};\n P.available.declare();\n
838
- \ </script>\n</body>\n</html>"
807
+ \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false, \"initialContextLog\":
808
+ null});\n </script>\n</body>\n</html>"
839
809
  http_version:
840
- recorded_at: Fri, 16 Aug 2013 23:48:39 GMT
810
+ recorded_at: Fri, 20 Sep 2013 18:28:37 GMT
841
811
  recorded_with: VCR 2.5.0