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/johnstamosgem/
5
+ uri: http://www.pinterest.com/johnstamosgem/
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:33 GMT
25
+ - Fri, 20 Sep 2013 18:28:20 GMT
26
26
  Pinterest-Breed:
27
27
  - CORGI
28
28
  Pinterest-Generated-By:
29
- - ngapp-8b3b5255
29
+ - ngapp-397e5343
30
30
  Pinterest-Version:
31
- - 559a34d
31
+ - '8814715'
32
32
  Server:
33
33
  - nginx
34
34
  Set-Cookie:
35
- - _pinterest_sess="eJxzysjPqnR3M04yD9M3SMnx1LYsC84zD863MPa1tY8vycxNtfUN8TX2y4o09cvKrvAtt7VVK04tLs5MsfXMdTX2rXLL8jMKNPV1iayIcgk08Q2PBOFy35CgrCiXnBx/96DsyKyoXM90W1sAVH0jFA==";
36
- Domain=.pinterest.com; expires=Mon, 11-Aug-2014 23:48:33 GMT; Max-Age=31103999;
35
+ - _pinterest_sess="eJwzzjV0jYxI93A2SC9yLLYwzQpKyrAo83R2rEq2tY8vycxNtfUN8TX2D0ku9wVhR1tbteLU4uLMFFvPrFDDyFzP8siQyHI/o6Acv6pAY7+soAzfXK9MXxffCj+XUENfo9ByP5dIY890W1sAd9wjPg==";
36
+ Domain=.pinterest.com; expires=Mon, 15-Sep-2014 18:28:20 GMT; Max-Age=31103999;
37
37
  Path=/
38
- - csrftoken=woOK4U9YoM8l8Mzcryf3S14OU7M2H8En; Domain=.pinterest.com; expires=Fri,
39
- 15-Aug-2014 23:48:33 GMT; Max-Age=31449600; Path=/
38
+ - csrftoken=FfLkDoQb8xiyRBNnc6ughb4chJtxKfE8; Domain=.pinterest.com; expires=Fri,
39
+ 19-Sep-2014 18:28:20 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
- - '1433624655'
49
+ - '1368488981'
46
50
  Transfer-Encoding:
47
51
  - chunked
48
52
  Connection:
@@ -53,220 +57,210 @@ 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=\"/johnstamosgem/\">\n <!--[if IE]><link
87
- 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=\"/johnstamosgem/\">\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>John Stamosgem (johnstamosgem) on Pinterest</title>\n\n \n
94
- \ <meta property=\"og:url\" name=\"og:url\" content=\"http://pinterest.com/johnstamosgem/\"
95
- data-app>\n \n <meta property=\"og:title\" name=\"og:title\" content=\"John
96
- Stamosgem (johnstamosgem)\" data-app>\n \n <meta property=\"description\"
97
- name=\"description\" content=\"John Stamosgem is using Pinterest, an online
98
- pinboard to collect and share what inspires you.\" data-app>\n \n <meta
99
- property=\"pinterestapp:boards\" name=\"pinterestapp:boards\" content=\"1\"
100
- data-app>\n \n <meta property=\"pinterestapp:following\" name=\"pinterestapp:following\"
101
- content=\"5\" data-app>\n \n <meta property=\"og:type\" name=\"og:type\"
102
- content=\"profile\" data-app>\n \n <meta property=\"og:description\"
103
- name=\"og:description\" content=\"John Stamosgem is using Pinterest, an online
104
- pinboard to collect and share what inspires you.\" data-app>\n \n <meta
105
- property=\"pinterestapp:about\" name=\"pinterestapp:about\" content=\"This
106
- is the johnstamos about content.\" data-app>\n \n <meta property=\"pinterestapp:followers\"
107
- name=\"pinterestapp:followers\" content=\"0\" data-app>\n \n <meta
108
- property=\"pinterestapp:pins\" name=\"pinterestapp:pins\" content=\"1\" data-app>\n
109
- \ </head><body>\n <div id=\"fb-root\"></div>\n<script>\n window.fbAsyncInit
110
- = function() {\n \n \n FB.init({\n appId: '274266067164',\n
111
- \ status: true\n });\n window.fbApiInit = true;\n P.FB = FB;\n
112
- \ };\n\n \n (function(d, s, id){\n var js, fjs = d.getElementsByTagName(s)[0];\n
113
- \ if (d.getElementById(id)) {return;}\n js = d.createElement(s); js.id
114
- = id;\n js.src = \"//connect.facebook.net/en_US/all.js\";\n fjs.parentNode.insertBefore(js,
115
- fjs);\n }(document, 'script', 'facebook-jssdk'));\n\n P.FBEnsureInit =
116
- function(callback) {\n if (!window.fbApiInit) {\n setTimeout(function()
117
- {\n P.FBEnsureInit(callback);\n }, 50);\n } else
118
- {\n if (callback) {\n callback();\n }\n }\n
119
- \ }\n</script><div class=\"App full Module\" id=\"App-30\">\n\n\n\n\n\n\n\n
120
- \ <div class=\"Header Module\" id=\"Header-1\"><div class=\"headerBackground\"></div>\n\n\n\n<div
100
+ initial-scale=1, user-scalable=no\">\n\n <title>John Stamosgem (johnstamosgem)
101
+ on Pinterest</title>\n\n <meta property=\"og:url\" name=\"og:url\"
102
+ content=\"http://www.pinterest.com/johnstamosgem/\" data-app>\n <meta
103
+ property=\"og:title\" name=\"og:title\" content=\"John Stamosgem (johnstamosgem)\"
104
+ data-app>\n <meta property=\"description\" name=\"description\"
105
+ content=\"John Stamosgem is using Pinterest, an online pinboard to collect
106
+ and share what inspires you.\" data-app>\n <meta property=\"pinterestapp:boards\"
107
+ name=\"pinterestapp:boards\" content=\"1\" data-app>\n <meta property=\"pinterestapp:following\"
108
+ name=\"pinterestapp:following\" content=\"5\" data-app>\n <meta
109
+ property=\"og:type\" name=\"og:type\" content=\"profile\" data-app>\n <meta
110
+ property=\"og:description\" name=\"og:description\" content=\"John Stamosgem
111
+ is using Pinterest, an online pinboard to collect and share what inspires
112
+ you.\" data-app>\n <meta property=\"pinterestapp:about\" name=\"pinterestapp:about\"
113
+ content=\"This is the johnstamos about content.\" data-app>\n <meta
114
+ property=\"pinterestapp:followers\" name=\"pinterestapp:followers\" content=\"0\"
115
+ data-app>\n <meta property=\"pinterestapp:pins\" name=\"pinterestapp:pins\"
116
+ content=\"1\" data-app>\n </head><body><div class=\"App full Module\" id=\"App-32\">\n\n
117
+ \ <div class=\"Header Module\" id=\"Header-1\"><div class=\"headerBackground\"></div>\n\n\n<div
121
118
  class=\"headerContainer centeredWithinWrapper \">\n <div class=\"leftHeaderContent\">\n
122
- \ \n \n \n <div class=\"categoriesButton
123
- DropdownButton Module\" id=\"DropdownButton-6\">\n\n\n<button type=\"button\"
124
- class=\"rounded default Button Module primaryOnHover btn categories\" id=\"Button-9\">\n\n\n<em></em>\n<span
125
- class=\"accessibilityText\">Categories</span></button></div>\n\n <div
126
- class=\"ui-SearchForm Module\" id=\"ui-SearchForm-7\">\n<form action=\"/search/\"
127
- method=\"GET\" name=\"search\">\n <div class=\"search Module ui-TypeaheadField\"
128
- id=\"ui-TypeaheadField-10\">\n\n\n\n\n\n\n\n\n\n\n\n <input type=\"text\"
129
- name=\"q\"\n value=\"\" placeholder=\"Search\"\n autocomplete=\"off\"
130
- \ class=\"field\" />\n\n<div class=\"search hidden ui-Typeahead Module\" id=\"ui-Typeahead-11\">\n\n
131
- \ \n\n\n\n\n\n\n<ul class=\"results\"></ul></div></div>\n <button class=\"submit\"
132
- type=\"submit\">Search</button>\n</form></div>\n </div>\n\n <div>\n
133
- \ <a href=\"/\" id=\"logo\" class=\"logo\" data-force-refresh=\"1\">Pinterest</a>\n\n
134
- \ \n </div>\n\n\n \n\n <div class=\"rightHeaderContent\">\n
135
- \ \n <div class=\"unauthActions\">\n <div
136
- class=\"LanguageMenu Module\" id=\"LanguageMenu-8\">\n \n\n\n<div class=\"DropdownButton
137
- Module\" id=\"DropdownButton-12\">\n\n\n<button type=\"button\" class=\"rounded
138
- default Button Module langaugeButton hasText btn\" id=\"Button-13\">\n\n\n<span
139
- class=\"buttonText\">English (US)</span>\n </button></div></div>\n
140
- \ </div>\n \n </div>\n</div></div>\n <div class=\"ScrollToTop
141
- Pillow Module\" id=\"ScrollToTop-2\">\n\n<button>\n \n <div class=\"textContainer\">Scroll
142
- to&nbsp;Top</div>\n</button></div>\n\n<div class=\"appContent\">\n <div
143
- class=\"mainContainer\">\n \n <div class=\"Nags Module\"
144
- id=\"Nags-3\">\n\n\n\n\n\n\n\n \n \n \n \n \n
145
- \ \n \n <!--[if lt IE 8]><div class=\"NagBase Module centeredWithinWrapper\"
146
- id=\"NagBase-14\">\n\n\n\n\n\n\n\n \n <div class=\"message\">Wups, your
147
- browser's a little out of date! <a href=\"http://windows.microsoft.com/en-US/internet-explorer/download-ie\">Update
119
+ \ <div class=\"categoriesButton
120
+ DropdownButton Module\" id=\"DropdownButton-6\">\n\n<button type=\"button\"
121
+ class=\"rounded Button Module primaryOnHover btn categories\" id=\"Button-9\">\n\n<em></em>\n<span
122
+ class=\"accessibilityText\">Categories</span></button></div>\n \n <div
123
+ class=\"inHeader ui-SearchForm Module\" id=\"ui-SearchForm-7\"> \n\n\n<form
124
+ action=\"/search/\" method=\"GET\" name=\"search\">\n <div class=\"inHeader
125
+ search Module ui-TypeaheadField\" id=\"ui-TypeaheadField-10\">\n \n\n\n\n
126
+ \ <input type=\"text\" name=\"q\" value=\"\" placeholder=\"Search\"\n
127
+ \ autocomplete=\"off\" class=\"field\" />\n<div class=\"search hidden
128
+ ui-Typeahead Module inHeader\" id=\"ui-Typeahead-11\">\n \n\n \n\n<ul
129
+ class=\"results\"></ul></div></div>\n <button class=\"submit\" type=\"submit\">Search</button>\n</form></div>\n
130
+ \ </div>\n\n <div>\n <a href=\"/\" id=\"logo\" class=\"logo\"
131
+ data-force-refresh=\"1\">Pinterest</a>\n\n </div>\n\n\n \n <div
132
+ class=\"rightHeaderContent\">\n <div class=\"unauthActions\">\n
133
+ \ <div class=\"LanguageMenu Module\" id=\"LanguageMenu-8\">
134
+ \ \n<div class=\"DropdownButton Module\" id=\"DropdownButton-12\">\n\n<button
135
+ type=\"button\" class=\"rounded Button Module langaugeButton hasText btn\"
136
+ id=\"Button-13\">\n\n<span class=\"buttonText\">English (US)</span>\n </button></div></div>\n
137
+ \ </div>\n </div>\n</div></div>\n <div class=\"ScrollToTop
138
+ Pillow Module\" id=\"ScrollToTop-2\"><button>\n <div class=\"textContainer\">Scroll
139
+ to&nbsp;Top</div>\n</button></div>\n\n \n<div class=\"appContent\">\n <div
140
+ class=\"mainContainer\">\n <div class=\"Nags Module\" id=\"Nags-3\">\n\n
141
+ \ <!--[if lt IE
142
+ 8]><div class=\"NagBase Module centeredWithinWrapper\" id=\"NagBase-14\">\n\n
143
+ \ \n <div class=\"message\">Wups, your browser's a little out of date!
144
+ <a href=\"http://windows.microsoft.com/en-US/internet-explorer/download-ie\">Update
148
145
  it now</a> or <a href=\"http://whatbrowser.org/\">try another browser</a>
149
- for a faster, smoother Pinterest.</div>\n\n\n\n\n <button type=\"button\"
150
- class=\"default Button nagClose Module borderless\" id=\"Button-16\">\n\n\n\n
151
- \ &nbsp;</button>\n</div><![endif]-->\n \n <div class=\"NagUnauth
152
- NagBase Module centeredWithinWrapper\" id=\"NagUnauth-15\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n<div
153
- class=\"message\">\n <p class=\"messageContent\">\n \n <strong>Pinterest
154
- is an online pinboard.</strong> Organize and share the things you love.\n
155
- \ \n </p>\n\n \n <div class=\"facepileWrapper hidden\">\n <iframe
156
- class=\"fbIframe\" src=\"http://www.facebook.com/plugins/facepile.php?app_id=274266067164&size=small&max_rows=1\"
146
+ for a faster, smoother Pinterest.</div>\n\n <button type=\"button\" class=\"Button
147
+ nagClose Module borderless\" id=\"Button-16\">\n\n &nbsp;</button>\n</div><![endif]-->\n
148
+ \ <div class=\"NagBase fbHidden Module sticky NagUnauth
149
+ centeredWithinWrapper\" id=\"NagUnauth-15\">\n\n\n\n\n\n\n\n<div class=\"message\">\n
150
+ \ <div class=\"centeredContent centeredWithinWrapper\">\n <p class=\"messageContent\">\n
151
+ \ <strong>Pinterest is an online pinboard.</strong>
152
+ Organize and share the things you love. </p>\n\n <div
153
+ class=\"facepileWrapper\">\n <iframe class=\"fbIframe\" src=\"http://www.facebook.com/plugins/facepile.php?app_id=274266067164&size=small&max_rows=1\"
157
154
  scrolling=\"no\" frameborder=\"0\" allowTransparency=\"true\"></iframe>\n
158
- \ </div>\n <div class=\"buttonsWrapper\">\n \n \n\n <a
155
+ \ </div>\n <div class=\"buttonsWrapper\">\n \n <a
159
156
  href=\"/join/\" type=\"button\" class=\"rounded JoinButton NavigateButton
160
- Button primary Module joinButton unauthNagButton hasText btn\" id=\"JoinButton-17\">\n\n\n<span
161
- class=\"buttonText\">Join Pinterest</span>\n </a>\n <a href=\"/login/\"
162
- type=\"button\" class=\"rounded NavigateButton default Button loginButton
163
- unauthNagButton Module hasText LoginButton btn\" id=\"LoginButton-18\">\n\n\n<span
164
- class=\"buttonText\">Log in</span>\n </a>\n </div>\n</div></div>\n
165
- \ \n \n</div>\n \n <div class=\"UserProfilePage Module\"
166
- id=\"UserProfilePage-4\">\n\n\n\n\n<div class=\"UserProfileHeader Module\"
167
- id=\"UserProfileHeader-19\">\n\n\n\n\n\n\n\n<div class=\"header\">\n <div
168
- class=\"userProfileImage\"><img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_140.jpg\"
169
- class=\"profileImage\" style=\"\"alt=\"John Stamosgem\">\n\n </div>\n\n
170
- \ <div class=\"userInformation\">\n <h2 class=\"userProfileHeaderName\">John
171
- Stamosgem</h2>\n\n <p class=\"userProfileHeaderBio\">This is the johnstamos
172
- about content.</p>\n\n <ul class=\"userProfileHeaderLocationAndLinks\">\n
173
- \ \n <li class=\"userProfileHeaderLocationWrapper\">\n
157
+ Button primary Module joinButton unauthNagButton hasText btn\" id=\"JoinButton-17\">\n\n<span
158
+ class=\"buttonText\">Join Pinterest</span>\n </a>\n <a href=\"/login/\"
159
+ type=\"button\" class=\"rounded NavigateButton Button loginButton unauthNagButton
160
+ Module hasText LoginButton btn\" id=\"LoginButton-18\">\n\n<span class=\"buttonText\">Log
161
+ in</span>\n </a>\n </div>\n </div>\n</div></div>\n </div>\n
162
+ \ <div class=\"UserProfilePage Module\" id=\"UserProfilePage-4\">\n\n<div
163
+ class=\"UserProfileHeader Module\" id=\"UserProfileHeader-19\">\n\n\n\n<div
164
+ class=\"header\">\n <div class=\"userProfileImage\"><img src=\"http://media-cache-ec0.pinimg.com/avatars/johnstamosgem_1375988759_140.jpg\"
165
+ class=\"profileImage\" style=\"\"\n\n \n alt=\"John Stamosgem\"\n
166
+ \ >\n </div>\n\n <div class=\"userInformation\">\n <h2
167
+ class=\"userProfileHeaderName\">John Stamosgem</h2>\n\n <p class=\"userProfileHeaderBio\">This
168
+ is the johnstamos about content.</p>\n\n <ul class=\"userProfileHeaderLocationAndLinks\">\n
169
+ \ <li class=\"userProfileHeaderLocationWrapper\">\n
174
170
  \ <span class=\"locationIcon\"></span>\n California\n
175
- \ </li>\n \n \n \n <li
171
+ \ </li>\n <li
176
172
  class=\"websiteWrapper separator\">\n <a href=\"http://johnstamos.com/\"
177
173
  target=\"_blank\"\n class=\"website \">\n johnstamos.com\n
178
- \ \n </a>\n </li>\n
179
- \ \n \n \n </ul>\n \n </div>\n
180
- \ \n</div>\n\n</div>\n\n\n\n\n\n<div class=\"gridWidth UserInfoBar InfoBarBase
181
- Module centeredWithinWrapper\" id=\"UserInfoBar-20\">\n\n\n\n\n\n\n\n\n\n\n\n
182
- \ \n \n \n <button type=\"button\" class=\"UserFollowButton
174
+ \ </a>\n </li>\n
175
+ \ </ul>\n </div>\n </div>\n\n</div>\n\n\n\n\n<div
176
+ class=\"gridWidth UserInfoBar InfoBarBase Module centeredWithinWrapper\" id=\"UserInfoBar-20\">\n\n\n\n\n\n
177
+ \ \n <button type=\"button\" class=\"UserFollowButton
183
178
  btn rounded Button primary Module hasText notNavigatable ui-FollowButton\"
184
- id=\"UserFollowButton-22\">\n\n\n \n \n \n\n\n\n\n\n<span class=\"buttonText\">Follow
185
- All</span>\n \n</button>\n \n\n\n<ul class=\"userStats\">\n \n\n
186
- \ <li>\n <a href=\"/johnstamosgem/boards/\" type=\"button\" class=\"NavigateButton
187
- default Button Module hasText borderless active BoardCount\" id=\"BoardCount-23\">\n\n\n\n\n\n\n\n<span
188
- class=\"buttonText\">\n \n \n\n \n \n \n \n
189
- \ 1 Board</span>\n </a>\n </li>\n <li>\n <a href=\"/johnstamosgem/pins/\">\n
190
- \ \n \n \n\n \n \n \n \n 1
191
- Pin\n </a>\n </li>\n <li>\n <a href=\"/johnstamosgem/likes/\">\n
192
- \ \n \n \n\n \n \n \n \n 1
193
- Like\n </a>\n </li>\n</ul>\n\n<ul class=\"followersFollowingLinks\">\n
194
- \ <li>\n <a href=\"/johnstamosgem/followers/\" type=\"button\" class=\"FollowerCount
195
- NavigateButton default Button Module hasText borderless\" id=\"FollowerCount-24\">\n\n\n\n\n\n\n\n\n<span
196
- class=\"buttonText\">\n \n \n \n \n\n \n \n \n
197
- \ \n 0 Followers</span>\n </a>\n </li>\n <li>\n
198
- \ <a href=\"/johnstamosgem/following/\" >\n \n \n \n\n
199
- \ \n \n \n \n 5 Following\n </a>\n
200
- \ </li>\n</ul></div>\n\n<div class=\"UserProfileContent Module\" id=\"UserProfileContent-21\">\n\n\n\n\n\n
201
- \ \n\n\n\n\n\n \n \n <div class=\"UserBoards Module\" id=\"UserBoards-25\">\n\n\n\n\n\n\n\n\n<div
202
- class=\"Grid Module\" id=\"Grid-26\"><div class=\"fixedHeightLayout padItems
203
- GridItems Module centeredWithinWrapper\" id=\"GridItems-27\">\n\n\n\n\n\n\n
204
- \ \n\n\n \n\n\n\n\n\n \n\n\n \n\n\n\n \n \n\n \n \n
205
- \ <div class=\"item \" >\n \n \n <div
206
- class=\"noContext Board Module boardCoverImage\" id=\"Board-28\">\n\n\n\n\n\n\n\n
207
- \ \n \n \n\n \n \n \n \n \n \n \n <a href=\"/johnstamosgem/johnstamosgemboard/\"
208
- class=\"boardLinkWrapper\">\n \n \n <h3 class=\"boardName\">\n
209
- \ <div class=\"icons\">\n \n \n </div>\n\n
210
- \ \n \n \n JohnStamosgemBoard\n
211
- \ \n </h3>\n <div class=\"boardCoverWrapper\">\n \n\n
212
- \ <span class=\"hoverMask\"></span>\n \n\n \n
213
- \ <img src=\"http://media-cache-ak0.pinimg.com/216x146/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
214
- class=\"boardCover\">\n <span class=\"boardPinCount\">\n \n
215
- \ \n \n\n \n \n \n \n 1 pin\n
216
- \ </span>\n </div>\n\n <ul class=\"boardThumbs\">\n
217
- \ \n <li>\n \n <span
218
- class=\"hoverMask\"></span>\n \n </li>\n
219
- \ \n <li>\n \n <span
220
- class=\"hoverMask\"></span>\n \n </li>\n
221
- \ \n <li>\n \n <span
222
- class=\"hoverMask\"></span>\n \n </li>\n
223
- \ \n <li>\n \n <span
224
- class=\"hoverMask\"></span>\n \n </li>\n
225
- \ \n </ul>\n\n \n </a>\n \n\n \n \n
226
- \ \n <button type=\"button\" class=\"btn rounded default
227
- Button boardFollowUnfollowButton hasText Module BoardFollowButton notNavigatable
228
- ui-FollowButton\" id=\"BoardFollowButton-29\">\n\n\n\n\n\n\n\n\n\n\n\n\n\n
229
- \ \n \n\n\n\n\n\n<span class=\"buttonText\">Follow</span>\n \n</button>\n
230
- \ \n \n \n \n \n\n\n</div>\n \n </div>\n
231
- \ \n\n</div>\n\n</div>\n\n\n</div>\n \n</div></div>\n </div>\n <div
232
- class=\"appendedContainer\">\n </div>\n</div>\n\n\n\n<div class=\"NagNoScript
233
- NagBase Module centeredWithinWrapper\" id=\"NagNoScript-5\">\n\n\n\n\n\n<noscript>\n
234
- \ \n\n\n\n\n\n\n\n \n <div class=\"message\">Oh no! Pinterest doesn't
235
- work unless you <a href=\"http://enable-javascript.com/\" rel=\"nofollow\">turn
236
- on JavaScript.</a></div>\n\n\n\n\n <style>\n .NagBase {\n display:
237
- none;\n }\n </style>\n</noscript></div></div> \n\n \n <script>\n
238
- \ P.setFacebookKey(274266067164);\n P.setContext({\"app_version\":
239
- \"559a34d\"});\n P.setStrings({\"formURLNotValid\": \"Not a valid url.\",
240
- \"google\": \"Gmail\", \"resendConfirmationEmailNoOp\": \"Your account has
241
- already been confirmed.\", \"formFieldRequired\": \"Required\", \"oneNewPin\":
242
- \"1 new pin\", \"errorMessage\": \"Sorry! Something went wrong on our end!\",
243
- \"passwordBlackPasswordStr\": \"Please try using a stronger password\", \"gplusContact\":
244
- \"Google\", \"offsiteInvalidToken\": \"Sorry! This redirect link has expired.\",
245
- \"popupErrorMessage\": \"You must enable popups!\", \"successInviteSentToEmail\":
246
- \"Success! Invitation sent to <%= email %>\", \"emailAddress\": \"Email address\",
247
- \"yahoo\": \"Yahoo\", \"facebookContact\": \"Facebook\", \"cancel\": \"Cancel\",
248
- \"passwordSamePasswordStr\": \"Password and username can't match\", \"savePinTutorial\":
249
- \"Want to save this pin for yourself? Go ahead and Pin it.\", \"connectError\":
250
- \"Couldn't connect. You must authorize Pinterest.\", \"facebookAccountDoesntMatch\":
179
+ id=\"UserFollowButton-22\">\n\n \n\n\n\n<span class=\"buttonText\">Follow
180
+ All</span>\n \n</button>\n \n<ul class=\"userStats\">\n \n <li>\n
181
+ \ <a href=\"/johnstamosgem/boards/\" type=\"button\" class=\"NavigateButton
182
+ Button Module hasText borderless active BoardCount\" id=\"BoardCount-23\">\n\n\n<span
183
+ class=\"buttonText\"> \n 1
184
+ Board</span>\n </a>\n </li>\n <li>\n <a href=\"/johnstamosgem/pins/\">\n
185
+ \ <div class=\"PinCount Module\" id=\"PinCount-24\">\n\n\n\n\n
186
+ \ \n 1 Pin</div>\n </a>\n
187
+ \ </li>\n <li>\n <a href=\"/johnstamosgem/likes/\">\n \n
188
+ \ 1 Like\n </a>\n </li>\n</ul>\n\n<ul
189
+ class=\"followersFollowingLinks\">\n <li>\n <a href=\"/johnstamosgem/followers/\"
190
+ type=\"button\" class=\"FollowerCount NavigateButton Button Module hasText
191
+ borderless\" id=\"FollowerCount-25\">\n\n\n\n<span class=\"buttonText\"> \n
192
+ \ 0 Followers</span>\n </a>\n
193
+ \ </li>\n <li>\n <a href=\"/johnstamosgem/following/\" >\n \n
194
+ \ 5 Following\n </a>\n </li>\n</ul></div>\n\n<div
195
+ class=\"UserProfileContent Module\" id=\"UserProfileContent-21\">\n\n\n\n
196
+ \ \n <div class=\"UserBoards Module\" id=\"UserBoards-26\">\n\n\n\n\n\n<div
197
+ class=\"Grid Module\" id=\"Grid-27\"><div class=\"fixedHeightLayout padItems
198
+ GridItems Module centeredWithinWrapper\" id=\"GridItems-28\">\n\n \n \n\n
199
+ \ \n\n \n <div class=\"item \" >\n <div
200
+ class=\"noContext Board Module boardCoverImage\" id=\"Board-29\">\n\n \n
201
+ \ \n\n <a href=\"/johnstamosgem/johnstamosgemboard/\"
202
+ class=\"boardLinkWrapper\">\n <h3 class=\"boardName\">\n
203
+ \ <div class=\"icons\">\n </div>\n\n
204
+ \ \n JohnStamosgemBoard\n
205
+ \ </h3>\n <div class=\"boardCoverWrapper\">\n \n
206
+ \ <span class=\"hoverMask\"></span>\n \n <img
207
+ src=\"http://media-cache-ak0.pinimg.com/216x146/ee/39/6e/ee396ebad5cffd3f8f6e83b5fd9f07cb.jpg\"
208
+ class=\"boardCover\">\n <span class=\"boardPinCount\">\n <div
209
+ class=\"PinCount Module\" id=\"PinCount-30\">\n\n\n\n\n \n 1
210
+ pin</div>\n </span>\n </div>\n\n <ul class=\"boardThumbs\">\n
211
+ \ <li>\n <span
212
+ class=\"hoverMask\"></span>\n </li>\n <li>\n
213
+ \ <span class=\"hoverMask\"></span>\n
214
+ \ </li>\n <li>\n
215
+ \ <span class=\"hoverMask\"></span>\n
216
+ \ </li>\n <li>\n
217
+ \ <span class=\"hoverMask\"></span>\n
218
+ \ </li>\n </ul>\n\n </a>\n
219
+ \ \n <button type=\"button\" class=\"btn
220
+ rounded Button boardFollowUnfollowButton hasText Module BoardFollowButton
221
+ notNavigatable ui-FollowButton\" id=\"BoardFollowButton-31\">\n\n\n\n\n \n\n\n\n<span
222
+ class=\"buttonText\">Follow</span>\n \n</button>\n \n</div>\n
223
+ \ </div>\n </div>\n\n\n</div>\n\n</div>\n </div></div>\n
224
+ \ </div>\n <div class=\"appendedContainer\">\n </div>\n</div>\n\n\n<div
225
+ class=\"NagNoScript NagBase Module centeredWithinWrapper\" id=\"NagNoScript-5\">\n\n\n<noscript>\n
226
+ \ \n\n \n <div class=\"message\">Oh no! Pinterest doesn't work unless
227
+ you <a href=\"http://enable-javascript.com/\" rel=\"nofollow\">turn on JavaScript.</a></div>\n\n\n
228
+ \ <style>\n .NagBase {\n display: none;\n }\n </style>\n</noscript></div></div>
229
+ \ \n <script>\n P.setFacebookKey(274266067164);\n P.setContext({\"app_version\":
230
+ \"8814715\"});\n P.setStrings({\"facebookContact\": \"Facebook\", \"cancel\":
231
+ \"Cancel\", \"emailTo\": \"Email to {{ email_address }}\", \"facebookAccountDoesntMatch\":
251
232
  \"Oops! Your account is linked to a different Facebook account than the one
252
- you're logged into now.\", \"createFirstBoard\": \"Collect your pins onto
253
- boards. Create just a few or a whole bunch.\", \"passwordGoodPasswordStr\":
254
- \"Great!\", \"removePinner\": \"Remove Pinner\", \"emailUpdated\": \"Your
255
- email has been updated.\", \"gplus\": \"Google+\", \"pickEmailAddress\": \"Enter
256
- an email address\", \"blockPinner\": \"Block Pinner\", \"resendConfirmationEmailSuccess\":
257
- \"Thanks! You should receive a confirmation email soon.\", \"passwordTooShort\":
258
- \"Too short\", \"formEmailNotValid\": \"Not a valid email.\", \"emailTo\":
259
- \"Email to {{ email_address }}\", \"inviteMessage\": \"Join me on Pinterest!\",
260
- \"passwordMustBeSet\": \"A password must be set before unlinking.\", \"newPins\":
261
- \"new pins\", \"removeBounceNag\": \"Got it! Make sure your inbox isn't full
262
- so that our emails can find their way to you.\", \"continue\": \"Continue\",
263
- \"ok\": \"Ok\", \"error\": \"Error\", \"suggestedUsername\": \"Suggested username\",
264
- \"facebook\": \"Facebook\", \"errorTitle\": \"Whoops!\", \"passwordBadStyle\":
265
- \"Not proper style\", \"fellowPinner\": \"Fellow Pinner\"});\n P.setPageInfo(null);\n
266
- \ P.setRoutes([{\"named\": {\"name\": 0, \"method\": 1}, \"resource_method\":
267
- \"${method}\", \"resource\": {\"name\": \"${name}\", \"options\": \"?{options}\"},
268
- \"url\": \"^\\/resource\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"allow_full_page\":
269
- false, \"module\": \"?{module_name}\", \"options\": \"?{module_options}\",
233
+ you're logged into now.\", \"createFirstBoard\": \"You collect your pins onto
234
+ boards-create as many as you need!\", \"emailUpdated\": \"Your email has been
235
+ updated.\", \"passwordSamePasswordStr\": \"Password and username can't match\",
236
+ \"passwordBadStyle\": \"Not proper style\", \"firstBoardFollowText\": \"Follow
237
+ boards to get new pins right in your feed.\", \"errorMessage\": \"Sorry! Something
238
+ went wrong on our end!\", \"yahoo\": \"Yahoo\", \"emailAddress\": \"Email
239
+ address\", \"passwordGoodPasswordStr\": \"Great!\", \"gplus\": \"Google+\",
240
+ \"formEmailNotValid\": \"Not a valid email.\", \"resendConfirmationEmailSuccess\":
241
+ \"Thanks! You should receive a confirmation email soon.\", \"autobahnEndTourTextV1\":
242
+ \"Try a pin search below. <br>(The more specific, the better!)\", \"inviteMessage\":
243
+ \"Join me on Pinterest!\", \"continue\": \"Continue\", \"error\": \"Error\",
244
+ \"errorTitle\": \"Whoops!\", \"offsiteInvalidToken\": \"Sorry! This redirect
245
+ link has expired.\", \"google\": \"Gmail\", \"formFieldRequired\": \"Required\",
246
+ \"oneNewPin\": \"1 new pin\", \"savePinTutorial\": \"Want to save this pin
247
+ for yourself? Go ahead and Pin it.\", \"connectError\": \"Couldn't connect.
248
+ You must authorize Pinterest.\", \"facebook\": \"Facebook\", \"pickEmailAddress\":
249
+ \"Enter an email address\", \"blockPinner\": \"Block Pinner\", \"passwordTooShort\":
250
+ \"Too short\", \"autobahnEndTourTitleV1\": \"Psst! Before you leave...\",
251
+ \"suggestedUsername\": \"Suggested username\", \"firstFollowTitle\": \"Don't
252
+ miss a pin!\", \"successInviteSentToEmail\": \"Success! Invitation sent to
253
+ {{ email }}\", \"formURLNotValid\": \"Not a valid url.\", \"resendConfirmationEmailNoOp\":
254
+ \"Your account has already been confirmed.\", \"passwordBlackPasswordStr\":
255
+ \"Please try using a stronger password\", \"gplusContact\": \"Google\", \"popupErrorMessage\":
256
+ \"You must enable popups!\", \"removeBounceNag\": \"Got it! Make sure your
257
+ inbox isn't full so that our emails can find their way to you.\", \"ok\":
258
+ \"Ok\", \"passwordMustBeSet\": \"A password must be set before unlinking.\",
259
+ \"newPins\": \"new pins\", \"removePinner\": \"Remove Pinner\", \"fellowPinner\":
260
+ \"Fellow Pinner\"});\n P.setPageInfo(null);\n P.setRoutes([{\"named\":
261
+ {\"name\": 0, \"method\": 1}, \"resource_method\": \"${method}\", \"resource\":
262
+ {\"name\": \"${name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/resource\\/([^\\/]+)\\/([^\\/]+)\\/$\",
263
+ \"allow_full_page\": false, \"module\": \"?{module_name}\", \"options\": \"?{module_options}\",
270
264
  \"append\": \"?{append}\"}, {\"named\": {\"name\": 0}, \"resource\": {\"name\":
271
265
  \"?{resource_name}\", \"options\": \"?{options}\"}, \"url\": \"^\\/module\\/([^\\/]+)\\/$\",
272
266
  \"allow_full_page\": false, \"module\": \"${name}\", \"error_strategy\": \"?{error_strategy}\",
@@ -277,34 +271,51 @@ http_interactions:
277
271
  \"named\": {\"scope\": 0}, \"resource\": {\"name\": \"BaseSearchResource\",
278
272
  \"options\": {\"scope\": \"${scope}\", \"show_scope_selector\": true, \"query\":
279
273
  \"?{q}\"}}, \"options\": {\"scope\": \"${scope}\", \"query\": \"?{q}\"}, \"module\":
280
- \"SearchPage\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/$\", \"https_if_unauth\":
281
- true, \"module\": \"HomePage\", \"content_only_if_unauth\": true, \"deep_link\":
282
- \"pinterest:\\/\\/\", \"options\": {\"tab\": \"following\", \"from_fast_follow\":
283
- \"?{ff}\"}}, {\"require_authentication\": true, \"named\": {}, \"resource\":
284
- {}, \"url\": \"^\\/home\\/picked_for_you\\/$\", \"options\": {\"tab\": \"picked_for_you\"},
285
- \"module\": \"HomePage\"}, {\"url\": \"^\\/categories\\/$\", \"named\": {},
286
- \"resource\": {}, \"options\": {}, \"module\": \"CategoriesPage\"}, {\"url\":
274
+ \"SearchPage\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/oauth\\/dialog\\/$\",
275
+ \"require_authentication\": true, \"module\": \"OAuthDialog\", \"content_only\":
276
+ true, \"https\": true, \"options\": {\"scope\": \"?{scope}\", \"state\": \"?{state}\",
277
+ \"redirect_uri\": \"?{redirect_uri}\", \"response_type\": \"?{response_type}\",
278
+ \"consumer_id\": \"?{consumer_id}\"}}, {\"named\": {}, \"resource\": {}, \"url\":
279
+ \"^\\/$\", \"https_if_unauth\": true, \"module\": \"HomePage\", \"content_only_if_unauth\":
280
+ true, \"deep_link\": \"pinterest:\\/\\/\", \"options\": {\"tab\": \"following\",
281
+ \"from_fast_follow\": \"?{ff}\"}}, {\"url\": \"^\\/categories\\/$\", \"named\":
282
+ {}, \"resource\": {}, \"options\": {}, \"module\": \"CategoriesPage\"}, {\"url\":
287
283
  \"^\\/categories\\/([^\\/]+)\\/$\", \"named\": {\"category\": 0}, \"resource\":
288
284
  {}, \"options\": {\"feed\": \"${category}\", \"is_category\": true}, \"module\":
289
- \"FeedPage\"}, {\"url\": \"^\\/all\\/$\", \"named\": {}, \"resource\": {},
290
- \"options\": {\"feed\": \"everything\", \"scope\": \"?{scope}\"}, \"module\":
291
- \"FeedPage\"}, {\"url\": \"^\\/all\\/([^\\/]+)\\/$\", \"named\": {\"category\":
292
- 0}, \"resource\": {}, \"options\": {\"feed\": \"${category}\", \"is_category\":
293
- true, \"scope\": \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/popular\\/$\",
294
- \"named\": {}, \"resource\": {}, \"options\": {\"feed\": \"popular\", \"scope\":
295
- \"?{scope}\"}, \"module\": \"FeedPage\"}, {\"url\": \"^\\/gifts\\/$\", \"named\":
296
- {}, \"resource\": {}, \"options\": {\"feed\": \"gifts\", \"scope\": \"?{scope}\"},
297
- \"module\": \"FeedPage\"}, {\"url\": \"^\\/videos\\/$\", \"named\": {}, \"resource\":
298
- {}, \"options\": {\"feed\": \"videos\", \"scope\": \"?{scope}\"}, \"module\":
299
- \"FeedPage\"}, {\"url\": \"^\\/picked_for_you\\/$\", \"named\": {}, \"resource\":
300
- {}, \"options\": {\"feed\": \"recommendations\"}, \"module\": \"FeedPage\"},
301
- {\"url\": \"^\\/annotations\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"named\": {\"annotation\":
285
+ \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\": {\"view_parameter\":
286
+ 2, \"view_type\": 1}, \"url\": \"^\\/all\\/$\", \"options\": {\"feed\": \"everything\"},
287
+ \"module\": \"FeedPage\"}, {\"named\": {\"category\": 0}, \"resource\": {},
288
+ \"log\": {\"helper_data\": {\"feed\": \"${category}\", \"is_category\": true},
289
+ \"view_type\": 1}, \"url\": \"^\\/all\\/([^\\/]+)\\/$\", \"options\": {\"feed\":
290
+ \"${category}\", \"is_category\": true}, \"module\": \"FeedPage\"}, {\"named\":
291
+ {}, \"resource\": {}, \"log\": {\"view_parameter\": 3, \"view_type\": 1},
292
+ \"url\": \"^\\/popular\\/$\", \"options\": {\"feed\": \"popular\"}, \"module\":
293
+ \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\": {\"view_parameter\":
294
+ 85, \"view_type\": 1}, \"url\": \"^\\/gifts\\/$\", \"options\": {\"feed\":
295
+ \"gifts\"}, \"module\": \"FeedPage\"}, {\"named\": {}, \"resource\": {}, \"log\":
296
+ {\"view_parameter\": 128, \"view_type\": 1}, \"url\": \"^\\/videos\\/$\",
297
+ \"options\": {\"feed\": \"videos\"}, \"module\": \"FeedPage\"}, {\"url\":
298
+ \"^\\/annotations\\/([^\\/]+)\\/([^\\/]+)\\/$\", \"named\": {\"annotation\":
302
299
  0, \"board\": 1}, \"resource\": {\"name\": \"BoardAnnotationResource\", \"options\":
303
300
  {\"board_id\": \"${board}\"}}, \"options\": {\"board_id\": \"${board}\", \"annotation\":
304
301
  \"${annotation}\"}, \"module\": \"AnnotationFeedPage\"}, {\"url\": \"^\\/interests\\/([^\\/]+)\\/$\",
305
302
  \"named\": {\"interest\": 0}, \"resource\": {}, \"options\": {\"interest\":
306
- \"${interest}\"}, \"module\": \"InterestFeedPage\"}, {\"require_authentication\":
307
- true, \"named\": {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/$\",
303
+ \"${interest}\"}, \"module\": \"InterestFeedPage\"}, {\"named\": {}, \"requires_decider_key\":
304
+ \"fw_enabled\", \"resource\": {}, \"url\": \"^\\/fashionweek\\/$\", \"options\":
305
+ {}, \"module\": \"promo.FashionWeek\"}, {\"named\": {\"feat\": 0}, \"requires_decider_key\":
306
+ \"fw_enabled\", \"resource\": {\"name\": \"ManagedMapItemResource\", \"options\":
307
+ {\"field_set_key\": \"detailed\", \"map\": \"featured_boards\", \"domain\":
308
+ \"fashionweek\", \"key\": \"${feat}\"}}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/$\",
309
+ \"options\": {}, \"module\": \"promo.FashionWeek\"}, {\"named\": {\"section\":
310
+ 0}, \"requires_decider_key\": \"fw_enabled\", \"resource\": {\"name\": \"ManagedListResource\",
311
+ \"options\": {\"field_set_key\": \"grid_item\", \"domain\": \"fashionweek\",
312
+ \"list\": \"${section}\"}}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/all\\/$\",
313
+ \"options\": {\"show_all\": true, \"key\": \"${section}\"}, \"module\": \"promo.FashionWeekSection\"},
314
+ {\"named\": {\"username\": 0, \"slug\": 1}, \"requires_decider_key\": \"fw_enabled\",
315
+ \"resource\": {}, \"url\": \"^\\/fashionweek\\/([^\\/]+)\\/([^\\/]+)\\/$\",
316
+ \"options\": {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\":
317
+ \"promo.FashionWeekBoardPage\"}, {\"require_authentication\": true, \"named\":
318
+ {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/$\",
308
319
  \"options\": {\"domain\": \"${domain}\", \"feed_item_type\": \"most_recent\"},
309
320
  \"module\": \"DomainFeedPage\"}, {\"require_authentication\": true, \"named\":
310
321
  {\"domain\": 0}, \"resource\": {}, \"url\": \"^\\/source\\/([^\\/]+)\\/top\\/repins\\/$\",
@@ -337,19 +348,22 @@ http_interactions:
337
348
  {\"named\": {}, \"resource\": {}, \"url\": \"^\\/offsite\\/$\", \"content_only\":
338
349
  true, \"options\": {\"url\": \"?{url}\", \"pin_id\": \"?{pin}\", \"token\":
339
350
  \"?{token}\"}, \"module\": \"OffsitePage\"}, {\"named\": {}, \"resource\":
340
- {}, \"url\": \"^\\/logout\\/\", \"content_only\": true, \"options\": {}, \"module\":
341
- \"LogoutPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true, \"url\":
342
- \"^\\/login\\/$\", \"content_only\": true, \"options\": {\"next\": \"?{next}\"},
343
- \"module\": \"LoginPage\"}, {\"named\": {}, \"resource\": {}, \"https\": true,
344
- \"url\": \"^\\/login\\/reset\\/$\", \"content_only\": true, \"options\": {\"username_or_email\":
345
- \"?{username_or_email}\"}, \"module\": \"PasswordResetOneClick\"}, {\"redirect\":
346
- \"\\/\", \"named\": {}, \"resource\": {}, \"url\": \"^\\/join\\/signup\\/\",
347
- \"options\": {}, \"module\": \"\"}, {\"redirect\": \"\\/\", \"named\": {},
348
- \"resource\": {}, \"url\": \"^\\/signup\\/\", \"options\": {}, \"module\":
349
- \"\"}, {\"named\": {\"network\": 0}, \"resource\": {}, \"https\": true, \"url\":
350
- \"^\\/join\\/register\\/([^\\/]+)\\/\", \"content_only\": true, \"options\":
351
- {\"network\": \"${network}\"}, \"module\": \"UserRegisterPage\"}, {\"named\":
352
- {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/register\\/\",
351
+ {}, \"url\": \"^\\/f\\/signup\\/\", \"is_full_page\": false, \"module\": \"FramedSignupContent\",
352
+ \"xframe_options_exempt\": true, \"https\": true, \"options\": {\"track_key\":
353
+ \"?{track_key}\", \"message_type\": \"?{message_type}\", \"skip_nux\": \"?{skip_nux}\"}},
354
+ {\"named\": {}, \"resource\": {}, \"url\": \"^\\/logout\\/\", \"content_only\":
355
+ true, \"options\": {}, \"module\": \"LogoutPage\"}, {\"named\": {}, \"resource\":
356
+ {}, \"https\": true, \"url\": \"^\\/login\\/$\", \"content_only\": true, \"options\":
357
+ {\"next\": \"?{next}\"}, \"module\": \"LoginPage\"}, {\"named\": {}, \"resource\":
358
+ {}, \"https\": true, \"url\": \"^\\/login\\/reset\\/$\", \"content_only\":
359
+ true, \"options\": {\"username_or_email\": \"?{username_or_email}\"}, \"module\":
360
+ \"PasswordResetOneClick\"}, {\"redirect\": \"\\/\", \"named\": {}, \"resource\":
361
+ {}, \"url\": \"^\\/join\\/signup\\/\", \"options\": {}, \"module\": \"\"},
362
+ {\"redirect\": \"\\/\", \"named\": {}, \"resource\": {}, \"url\": \"^\\/signup\\/\",
363
+ \"options\": {}, \"module\": \"\"}, {\"named\": {\"network\": 0}, \"resource\":
364
+ {}, \"https\": true, \"url\": \"^\\/join\\/register\\/([^\\/]+)\\/\", \"content_only\":
365
+ true, \"options\": {\"network\": \"${network}\"}, \"module\": \"UserRegisterPage\"},
366
+ {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/register\\/\",
353
367
  \"content_only\": true, \"options\": {\"register\": true}, \"module\": \"LoginPage\"},
354
368
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/join\\/.*$\",
355
369
  \"content_only\": true, \"options\": {\"invite_follow_board\": \"?{boardname}\",
@@ -362,56 +376,19 @@ http_interactions:
362
376
  1}, \"resource\": {}, \"login_parameters\": {\"username\": \"${username}\",
363
377
  \"boardname\": \"${slug}\", \"auto_follow\": \"true\"}, \"url\": \"^\\/follow\\/([^\\/]+)\\/([^\\/]+)\\/*$\",
364
378
  \"options\": {\"username\": \"${username}\", \"username_and_slug\": \"${username}\\/${slug}\"},
365
- \"module\": \"AutoFollow\"}, {\"url\": \"^\\/website\\/verify\\/$\", \"named\":
366
- {}, \"resource\": {\"name\": \"DomainVerifyResource\"}, \"options\": {}, \"module\":
367
- \"DomainVerify\"}, {\"redirect\": \"\\/developer\\/\", \"named\": {}, \"resource\":
368
- {}, \"url\": \"^\\/developer\\/api\\/\", \"options\": {}, \"module\": \"\"},
369
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/contact_us\\/\",
370
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.ContactUs\",
371
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
372
- {}, \"url\": \"^\\/developer\\/contact_us_thank_you\\/\", \"content_only\":
373
- true, \"options\": {\"module\": {\"name\": \"dev.ContactUsThankYou\", \"options\":
374
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
375
- \"^\\/developer\\/ios\\/\", \"content_only\": true, \"options\": {\"module\":
376
- {\"name\": \"dev.iOS\", \"options\": {}}}, \"module\": \"Developer\"}, {\"named\":
377
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/android\\/\", \"content_only\":
378
- true, \"options\": {\"module\": {\"name\": \"dev.Android\", \"options\": {}}},
379
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/validator\\/\",
380
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
381
- \"RichPinValidateResource\", \"options\": {\"link\": \"?{link}\"}}, \"name\":
382
- \"dev.RichPinValidator\", \"options\": {\"apply\": \"?{apply}\", \"link\":
383
- \"?{link}\", \"custom_sidebar\": true}}}, \"module\": \"Developer\"}, {\"named\":
384
- {}, \"resource\": {}, \"url\": \"^\\/developer\\/pin_it\\/\", \"content_only\":
385
- true, \"options\": {\"module\": {\"name\": \"dev.PinIt\", \"options\": {}}},
386
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/rich_pins\\/\",
387
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.RichPins\",
388
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
389
- {}, \"url\": \"^\\/developer\\/goodies\\/\", \"content_only\": true, \"options\":
390
- {\"module\": {\"name\": \"dev.Goodies\", \"options\": {}}}, \"module\": \"Developer\"},
391
- {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/apps\\/\", \"content_only\":
392
- true, \"options\": {\"module\": {\"name\": \"dev.Apps\", \"options\": {}}},
393
- \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/manage\\/$\",
394
- \"content_only\": true, \"options\": {\"module\": {\"resource\": {\"name\":
395
- \"ConsumerListResource\"}, \"name\": \"ConsumerManagePage\"}}, \"module\":
396
- \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\": \"^\\/developer\\/terms\\/\",
397
- \"content_only\": true, \"options\": {\"module\": {\"name\": \"dev.Terms\",
398
- \"options\": {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\":
399
- {}, \"url\": \"^\\/developer\\/richpins\\/apply\\/$\", \"content_only\": true,
400
- \"options\": {\"module\": {\"name\": \"dev.RichPinApplyForm\", \"options\":
401
- {}}}, \"module\": \"Developer\"}, {\"named\": {}, \"resource\": {}, \"url\":
402
- \"^\\/developer\\/$\", \"content_only\": true, \"options\": {}, \"module\":
403
- \"Developer\"}, {\"url\": \"^\\/business\\/getstarted\\/$\", \"named\": {},
404
- \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"me\"}},
405
- \"options\": {\"username\": \"me\"}, \"module\": \"BusinessGetStarted\"},
379
+ \"module\": \"AutoFollow\"}, {\"require_authentication\": true, \"named\":
380
+ {}, \"resource\": {\"name\": \"DomainVerifyResource\"}, \"url\": \"^\\/website\\/verify\\/$\",
381
+ \"options\": {}, \"module\": \"DomainVerify\"}, {\"url\": \"^\\/business\\/getstarted\\/$\",
382
+ \"named\": {}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
383
+ \"me\"}}, \"options\": {\"username\": \"me\"}, \"module\": \"BusinessGetStarted\"},
406
384
  {\"require_authentication\": true, \"named\": {}, \"resource\": {\"name\":
407
- \"PartnerResource\", \"options\": {\"user_id\": \"me\"}}, \"https\": true,
408
- \"url\": \"^\\/business\\/convert\\/$\", \"options\": {}, \"module\": \"BusinessAccountConvert\"},
409
- {\"url\": \"^\\/business\\/tools\\/site-debugger\\/$\", \"named\": {}, \"resource\":
410
- {\"name\": \"RichPinDebugResource\", \"options\": {\"link\": \"?{link}\"}},
411
- \"options\": {\"link\": \"?{link}\"}, \"module\": \"RichPinDebugger\"}, {\"url\":
412
- \"^\\/business\\/tools\\/rich-pin-builder\\/$\", \"named\": {}, \"resource\":
413
- {\"name\": \"RichPinSamplePinResource\", \"options\": {}}, \"options\": {},
414
- \"module\": \"RichPinBuilder\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-validator\\/$\",
385
+ \"PartnerResource\"}, \"https\": true, \"url\": \"^\\/business\\/convert\\/$\",
386
+ \"options\": {}, \"module\": \"BusinessAccountConvert\"}, {\"url\": \"^\\/business\\/tools\\/site-debugger\\/$\",
387
+ \"named\": {}, \"resource\": {\"name\": \"RichPinDebugResource\", \"options\":
388
+ {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
389
+ \"RichPinDebugger\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-builder\\/$\",
390
+ \"named\": {}, \"resource\": {\"name\": \"RichPinSamplePinResource\", \"options\":
391
+ {}}, \"options\": {}, \"module\": \"RichPinBuilder\"}, {\"url\": \"^\\/business\\/tools\\/rich-pin-validator\\/$\",
415
392
  \"named\": {}, \"resource\": {\"name\": \"RichPinValidateResource\", \"options\":
416
393
  {\"link\": \"?{link}\"}}, \"options\": {\"link\": \"?{link}\"}, \"module\":
417
394
  \"RichPinValidator\"}, {\"url\": \"^\\/browse\\/([^\\/]+)\\/$\", \"named\":
@@ -461,14 +438,13 @@ http_interactions:
461
438
  \"options\": {\"show_edit\": true}, \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\"},
462
439
  {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
463
440
  {\"id\": \"${id}\", \"view_type\": \"detailed\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/$\",
464
- \"require_authentication\": true, \"module\": \"Closeup\", \"canonical_url\":
465
- \"\\/pin\\/${id}\\/\", \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\", \"options\":
466
- {\"show_repin\": true}}, {\"named\": {\"id\": 0}, \"resource\": {\"name\":
467
- \"PinResource\", \"options\": {\"id\": \"${id}\", \"view_type\": \"repin\"}},
468
- \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/x\\/$\", \"content_only\": true,
469
- \"options\": {\"action\": \"repin\", \"method\": \"bookmarklet\"}, \"module\":
470
- \"PinBookmarklet\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/repins\\/$\", \"named\":
471
- {\"id\": 0}, \"resource\": {\"name\": \"RepinFeedResource\", \"options\":
441
+ \"deep_link\": \"pinterest:\\/\\/pin\\/${id}\", \"options\": {\"show_repin\":
442
+ true}, \"module\": \"Closeup\", \"canonical_url\": \"\\/pin\\/${id}\\/\"},
443
+ {\"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinResource\", \"options\":
444
+ {\"id\": \"${id}\", \"view_type\": \"repin\"}}, \"url\": \"^\\/pin\\/([^\\/]+)\\/repin\\/x\\/$\",
445
+ \"content_only\": true, \"options\": {\"action\": \"repin\", \"method\": \"bookmarklet\"},
446
+ \"module\": \"PinBookmarklet\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/repins\\/$\",
447
+ \"named\": {\"id\": 0}, \"resource\": {\"name\": \"RepinFeedResource\", \"options\":
472
448
  {\"pin_id\": \"${id}\", \"page_size\": 50}}, \"options\": {\"pin_id\": \"${id}\",
473
449
  \"title\": \"Repins\"}, \"module\": \"RepinsLikesFeedPage\"}, {\"url\": \"^\\/pin\\/([^\\/]+)\\/likes\\/$\",
474
450
  \"named\": {\"id\": 0}, \"resource\": {\"name\": \"PinLikesResource\", \"options\":
@@ -509,49 +485,51 @@ http_interactions:
509
485
  \"deep_link\": \"pinterest:\\/\\/board\\/${username}\\/${slug}\", \"options\":
510
486
  {\"username\": \"${username}\", \"slug\": \"${slug}\"}, \"module\": \"BoardCoverEditPage\"},
511
487
  {\"named\": {}, \"resource\": {}, \"https\": true, \"url\": \"^\\/password\\/change\\/$\",
512
- \"options\": {}, \"module\": \"UserChangePassword\"}, {\"require_authentication\":
513
- true, \"named\": {\"domain\": 0}, \"resource\": {\"name\": \"DomainAnalyticsCountsResource\",
514
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
515
- \"end_date\": \"?{end_date}\"}}, \"url\": \"^\\/source\\/([^\\/]+)\\/analytics\\/$\",
516
- \"options\": {\"domain\": \"${domain}\", \"start_date\": \"?{start_date}\",
517
- \"end_date\": \"?{end_date}\"}, \"module\": \"DomainAnalyticsPage\"}, {\"sandbox\":
518
- true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/close_window\\/$\",
519
- \"options\": {}, \"module\": \"Close\"}, {\"named\": {}, \"resource\": {},
520
- \"url\": \"^\\/oauth\\/dialog\\/$\", \"require_authentication\": true, \"module\":
521
- \"OAuthDialog\", \"content_only\": true, \"https\": true, \"options\": {\"scope\":
522
- \"?{scope}\", \"state\": \"?{state}\", \"redirect_uri\": \"?{redirect_uri}\",
523
- \"response_type\": \"?{response_type}\", \"consumer_id\": \"?{consumer_id}\"}}]);\n
524
- \ P.setPageRoutePattern(\"^\\/:username\\/$\");\n P.setPageLoadRequestIdentifier(\"678820425382\");\n\n
525
- \ Pc.startArgs = {\"gaAccountNumber\": \"UA-12967896-7\", \"scrubbedUser\":
526
- {\"autologin\": null}, \"tree\": {\"resource\": null, \"name\": \"App\", \"children\":
527
- [{\"resource\": null, \"name\": \"Header\", \"id\": \"header\", \"children\":
528
- [{\"resource\": null, \"name\": \"DropdownButton\", \"id\": \"categoriesDropdownButton\",
529
- \"children\": [{\"resource\": null, \"name\": \"Button\", \"children\": [],
530
- \"errorStrategy\": 2, \"options\": {\"has_icon\": true, \"text\": \"Categories\",
531
- \"primary_on_hover\": true, \"tagName\": \"button\", \"show_text\": false,
532
- \"class_name\": \"categories\"}, \"uid\": \"Button-9\"}], \"errorStrategy\":
533
- 2, \"options\": {\"class_name\": \"categoriesButton\", \"button_options\":
534
- {\"has_icon\": true, \"tagName\": \"button\", \"primary_on_hover\": true,
535
- \"class_name\": \"categories\", \"text\": \"Categories\", \"show_text\": false},
536
- \"module\": {\"resource\": {\"name\": \"CategoriesResource\", \"options\":
537
- {\"browsable\": true}}, \"name\": \"CategoriesMenu\"}, \"dropdown_options\":
538
- {\"largeCaret\": true, \"fixed\": true, \"prefetch\": true, \"view_type\":
539
- \"categoriesMenu\"}, \"time\": 500, \"tutorial\": {\"topic\": \"categories\",
540
- \"text\": \"Browse Popular, DIY and other categories to find pins you like.\",
541
- \"title\": \"Here are your categories.\"}}, \"uid\": \"DropdownButton-6\"},
488
+ \"options\": {}, \"module\": \"UserChangePassword\"}, {\"named\": {}, \"resource\":
489
+ {}, \"https\": true, \"url\": \"^\\/about\\/trademark\\/form\\/$\", \"options\":
490
+ {}, \"module\": \"TrademarkFormSelector\"}, {\"named\": {\"claim_type\": 0},
491
+ \"resource\": {}, \"https\": true, \"url\": \"^\\/about\\/trademark\\/form\\/([^\\/]+)\\/$\",
492
+ \"options\": {\"claim_type\": \"${claim_type}\"}, \"module\": \"TrademarkForm\"},
493
+ {\"require_authentication\": true, \"named\": {\"domain\": 0}, \"resource\":
494
+ {\"name\": \"DomainAnalyticsCountsResource\", \"options\": {\"domain\": \"${domain}\",
495
+ \"start_date\": \"?{start_date}\", \"end_date\": \"?{end_date}\"}}, \"url\":
496
+ \"^\\/source\\/([^\\/]+)\\/analytics\\/$\", \"options\": {\"domain\": \"${domain}\",
497
+ \"start_date\": \"?{start_date}\", \"end_date\": \"?{end_date}\"}, \"module\":
498
+ \"DomainAnalyticsPage\"}, {\"url\": \"^\\/verify_website\\/$\", \"named\":
499
+ {}, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
500
+ \"me\"}}, \"options\": {\"username\": \"me\"}, \"module\": \"VerifyWebsite\"},
501
+ {\"sandbox\": true, \"named\": {}, \"resource\": {}, \"url\": \"^\\/close_window\\/$\",
502
+ \"options\": {}, \"module\": \"Close\"}]);\n P.setPageRoutePattern(\"^\\/:username\\/$\");\n
503
+ \ P.setPageLoadRequestIdentifier(\"406456893499\");\n P.start.start({\"gaAccountNumber\":
504
+ \"UA-12967896-7\", \"scrubbedUser\": {\"autologin\": null}, \"tree\": {\"resource\":
505
+ null, \"name\": \"App\", \"children\": [{\"resource\": null, \"name\": \"Header\",
506
+ \"id\": \"header\", \"children\": [{\"resource\": null, \"name\": \"DropdownButton\",
507
+ \"id\": \"categoriesDropdownButton\", \"children\": [{\"resource\": null,
508
+ \"name\": \"Button\", \"children\": [], \"errorStrategy\": 2, \"options\":
509
+ {\"has_icon\": true, \"text\": \"Categories\", \"primary_on_hover\": true,
510
+ \"tagName\": \"button\", \"show_text\": false, \"class_name\": \"categories\"},
511
+ \"uid\": \"Button-9\"}], \"errorStrategy\": 2, \"options\": {\"class_name\":
512
+ \"categoriesButton\", \"button_options\": {\"has_icon\": true, \"tagName\":
513
+ \"button\", \"primary_on_hover\": true, \"class_name\": \"categories\", \"text\":
514
+ \"Categories\", \"show_text\": false}, \"module\": {\"resource\": {\"name\":
515
+ \"CategoriesResource\", \"options\": {\"browsable\": true}}, \"name\": \"CategoriesMenu\"},
516
+ \"dropdown_options\": {\"largeCaret\": true, \"fixed\": true, \"prefetch\":
517
+ true, \"view_type\": \"categoriesMenu\"}, \"time\": 500, \"tutorial\": {\"topic\":
518
+ \"categories\", \"text\": \"Browse Popular, DIY and other categories to find
519
+ pins you like.\", \"title\": \"Here are your categories.\"}}, \"uid\": \"DropdownButton-6\"},
542
520
  {\"resource\": null, \"name\": \"ui.SearchForm\", \"children\": [{\"resource\":
543
521
  null, \"name\": \"ui.TypeaheadField\", \"id\": \"searchField\", \"children\":
544
- [{\"resource\": null, \"name\": \"ui.Typeahead\", \"id\": \"typeahead\", \"extraData\":
545
- {\"inGplusExp\": false}, \"children\": [], \"errorStrategy\": 2, \"options\":
546
- {\"enable_recent_queries\": true, \"tags\": \"autocomplete\", \"class_name\":
547
- null, \"exclude_non_followers\": null, \"view_type\": \"search\", \"template\":
548
- null}, \"uid\": \"ui-Typeahead-11\"}], \"errorStrategy\": 2, \"options\":
549
- {\"enable_recent_queries\": true, \"name\": \"q\", \"view_type\": \"search\",
550
- \"class_name\": null, \"prefetch_on_focus\": true, \"value\": \"\", \"populate_on_result_highlight\":
551
- true, \"search_delay\": 0, \"search_on_focus\": true, \"placeholder\": \"Search\",
552
- \"tags\": \"autocomplete\"}, \"uid\": \"ui-TypeaheadField-10\"}], \"errorStrategy\":
553
- 2, \"options\": {\"navigate_on_search\": true, \"enable_recent_queries\":
554
- true, \"placeholder\": \"Search\"}, \"uid\": \"ui-SearchForm-7\"}, {\"resource\":
522
+ [{\"resource\": null, \"name\": \"ui.Typeahead\", \"id\": \"typeahead\", \"children\":
523
+ [], \"errorStrategy\": 2, \"options\": {\"enable_recent_queries\": true, \"tags\":
524
+ \"autocomplete\", \"class_name\": \"inHeader\", \"exclude_non_followers\":
525
+ null, \"view_type\": \"search\", \"template\": null}, \"uid\": \"ui-Typeahead-11\"}],
526
+ \"errorStrategy\": 2, \"options\": {\"enable_recent_queries\": true, \"name\":
527
+ \"q\", \"view_type\": \"search\", \"class_name\": \"inHeader\", \"prefetch_on_focus\":
528
+ true, \"value\": \"\", \"populate_on_result_highlight\": true, \"search_delay\":
529
+ 0, \"search_on_focus\": true, \"placeholder\": \"Search\", \"tags\": \"autocomplete\"},
530
+ \"uid\": \"ui-TypeaheadField-10\"}], \"errorStrategy\": 2, \"options\": {\"class_name\":
531
+ \"inHeader\", \"enable_recent_queries\": true, \"navigate_on_search\": true,
532
+ \"placeholder\": \"Search\"}, \"uid\": \"ui-SearchForm-7\"}, {\"resource\":
555
533
  {\"name\": \"LocalesResource\", \"options\": {\"locale\": \"en-US\", \"bookmarks\":
556
534
  [\"-end-\"]}}, \"name\": \"LanguageMenu\", \"children\": [{\"resource\": null,
557
535
  \"name\": \"DropdownButton\", \"children\": [{\"resource\": null, \"name\":
@@ -590,60 +568,67 @@ http_interactions:
590
568
  [], \"errorStrategy\": 2, \"data\": {\"username\": \"johnstamosgem\", \"first_name\":
591
569
  \"John\", \"blocked_by_me\": false, \"id\": \"412149940807022226\", \"full_name\":
592
570
  \"John Stamosgem\"}, \"options\": {\"user_id\": \"412149940807022226\", \"report_user_spam\":
593
- null}, \"uid\": \"UserProfileHeader-19\"}, {\"resource\": {\"name\": \"UserResource\",
594
- \"options\": {\"username\": \"johnstamosgem\", \"bookmarks\": [\"-end-\"]}},
595
- \"name\": \"UserInfoBar\", \"children\": [{\"resource\": null, \"name\": \"UserFollowButton\",
596
- \"children\": [], \"errorStrategy\": 2, \"options\": {\"followed\": false,
597
- \"is_me\": {}, \"unfollow_text\": \"Unfollow All\", \"memo\": {\"topic\":
598
- \"auto_follow\", \"show\": false, \"title\": \"You are now following John.\"},
599
- \"follow_ga_category\": \"user_follow\", \"unfollow_ga_category\": \"user_unfollow\",
600
- \"disabled\": false, \"color\": \"primary\", \"tagName\": \"button\", \"text\":
601
- \"Follow All\", \"user_id\": \"412149940807022226\", \"follow_text\": \"Follow
602
- All\", \"follow_class\": \"primary\"}, \"uid\": \"UserFollowButton-22\"},
603
- {\"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\"}},
604
- \"name\": \"BoardCount\", \"children\": [], \"errorStrategy\": 2, \"data\":
605
- {}, \"options\": {\"url\": \"\\/johnstamosgem\\/boards\\/\", \"text\": \"\\n
606
- \ \\n \\n\\n \\n \\n \\n \\n 1
571
+ null, \"tab\": \"boards\"}, \"uid\": \"UserProfileHeader-19\"}, {\"resource\":
572
+ {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\",
573
+ \"bookmarks\": [\"-end-\"]}}, \"name\": \"UserInfoBar\", \"children\": [{\"resource\":
574
+ null, \"name\": \"UserFollowButton\", \"children\": [], \"errorStrategy\":
575
+ 2, \"options\": {\"followed\": false, \"is_me\": {}, \"unfollow_text\": \"Unfollow
576
+ All\", \"memo\": {\"topic\": \"auto_follow\", \"show\": false, \"title\":
577
+ \"You are now following John.\"}, \"follow_ga_category\": \"user_follow\",
578
+ \"unfollow_ga_category\": \"user_unfollow\", \"disabled\": false, \"color\":
579
+ \"primary\", \"tagName\": \"button\", \"text\": \"Follow All\", \"user_id\":
580
+ \"412149940807022226\", \"follow_text\": \"Follow All\", \"follow_class\":
581
+ \"primary\"}, \"uid\": \"UserFollowButton-22\"}, {\"resource\": {\"name\":
582
+ \"UserResource\", \"options\": {\"username\": \"johnstamosgem\"}}, \"name\":
583
+ \"BoardCount\", \"children\": [], \"errorStrategy\": 2, \"data\": {}, \"options\":
584
+ {\"url\": \"\\/johnstamosgem\\/boards\\/\", \"text\": \" \\n 1
607
585
  Board\", \"class_name\": \"active\", \"element_type\": \"a\", \"tagName\":
608
586
  \"a\", \"borderless\": true}, \"uid\": \"BoardCount-23\"}, {\"resource\":
609
- {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\"}},
587
+ {\"name\": \"UserResource\", \"options\": {\"field_set_key\": \"pin_count\",
588
+ \"user_id\": \"412149940807022226\"}}, \"name\": \"PinCount\", \"children\":
589
+ [], \"errorStrategy\": 2, \"data\": {\"id\": \"412149940807022226\"}, \"options\":
590
+ {\"capitalize\": true, \"can_update_count\": {}}, \"uid\": \"PinCount-24\"},
591
+ {\"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\"}},
610
592
  \"name\": \"FollowerCount\", \"children\": [], \"errorStrategy\": 2, \"data\":
611
593
  {\"id\": \"412149940807022226\"}, \"options\": {\"url\": \"\\/johnstamosgem\\/followers\\/\",
612
- \"text\": \"\\n \\n \\n \\n \\n\\n \\n \\n \\n
613
- \ \\n 0 Followers\", \"class_name\": \"\", \"element_type\":
614
- \"a\", \"tagName\": \"a\", \"borderless\": true}, \"uid\": \"FollowerCount-24\"}],
615
- \"errorStrategy\": 2, \"data\": {}, \"options\": {\"user_id\": \"412149940807022226\",
616
- \"tab\": \"boards\", \"show_follow_memo\": null}, \"uid\": \"UserInfoBar-20\"},
617
- {\"resource\": {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\",
594
+ \"text\": \" \\n 0
595
+ Followers\", \"class_name\": \"\", \"element_type\": \"a\", \"tagName\": \"a\",
596
+ \"borderless\": true}, \"uid\": \"FollowerCount-25\"}], \"errorStrategy\":
597
+ 2, \"data\": {}, \"options\": {\"user_id\": \"412149940807022226\", \"tab\":
598
+ \"boards\", \"show_follow_memo\": null}, \"uid\": \"UserInfoBar-20\"}, {\"resource\":
599
+ {\"name\": \"UserResource\", \"options\": {\"username\": \"johnstamosgem\",
618
600
  \"bookmarks\": [\"-end-\"]}}, \"name\": \"UserProfileContent\", \"extraData\":
619
- {\"is_own_profile\": false}, \"children\": [{\"resource\": null, \"name\":
620
- \"UserBoards\", \"extraData\": {\"isOwnProfile\": false}, \"children\": [{\"resource\":
621
- {\"name\": \"ProfileBoardsResource\", \"options\": {\"field_set_key\": \"grid_item\",
601
+ {\"isOwnProfile\": false}, \"children\": [{\"resource\": null, \"name\": \"UserBoards\",
602
+ \"extraData\": {\"isOwnProfile\": false}, \"children\": [{\"resource\": {\"name\":
603
+ \"ProfileBoardsResource\", \"options\": {\"field_set_key\": \"grid_item\",
622
604
  \"username\": \"johnstamosgem\", \"bookmarks\": [\"-end-\"]}}, \"name\": \"Grid\",
623
605
  \"id\": \"publicBoardsGrid\", \"children\": [{\"resource\": {\"name\": \"ProfileBoardsResource\",
624
606
  \"options\": {\"field_set_key\": \"grid_item\", \"username\": \"johnstamosgem\",
625
607
  \"bookmarks\": [\"-end-\"]}}, \"name\": \"GridItems\", \"id\": \"items\",
626
608
  \"children\": [{\"resource\": {\"name\": \"BoardResource\", \"options\": {\"board_id\":
627
609
  \"412149872087590750\", \"field_set_key\": \"grid_item\"}}, \"name\": \"Board\",
628
- \"children\": [{\"resource\": null, \"name\": \"BoardFollowButton\", \"children\":
629
- [], \"errorStrategy\": 2, \"options\": {\"board_id\": \"412149872087590750\",
630
- \"followed\": false, \"class_name\": \"boardFollowUnfollowButton\", \"unfollow_text\":
631
- \"Unfollow\", \"follow_ga_category\": \"board_follow\", \"unfollow_ga_category\":
632
- \"board_unfollow\", \"disabled\": false, \"color\": \"default\", \"tagName\":
633
- \"button\", \"text\": \"Follow\", \"user_id\": \"412149940807022226\", \"follow_text\":
634
- \"Follow\", \"follow_class\": \"default\", \"is_my_board\": null}, \"uid\":
635
- \"BoardFollowButton-29\"}], \"errorStrategy\": 2, \"data\": {\"followed_by_me\":
636
- false, \"id\": \"412149872087590750\"}, \"options\": {\"show_board_context\":
637
- false}, \"uid\": \"Board-28\"}], \"errorStrategy\": 1, \"data\": {}, \"options\":
638
- {\"scrollable\": true, \"show_grid_footer\": false, \"centered\": true, \"reflow_all\":
639
- true, \"virtualize\": true, \"item_options\": {\"show_board_context\": false},
640
- \"layout\": \"fixed_height\"}, \"uid\": \"GridItems-27\"}], \"errorStrategy\":
610
+ \"children\": [{\"resource\": {\"name\": \"BoardResource\", \"options\": {\"board_id\":
611
+ \"412149872087590750\", \"field_set_key\": \"pin_count\"}}, \"name\": \"PinCount\",
612
+ \"children\": [], \"errorStrategy\": 2, \"data\": {\"id\": \"412149872087590750\"},
613
+ \"options\": {\"can_update_count\": false}, \"uid\": \"PinCount-30\"}, {\"resource\":
614
+ null, \"name\": \"BoardFollowButton\", \"children\": [], \"errorStrategy\":
615
+ 2, \"options\": {\"board_id\": \"412149872087590750\", \"followed\": false,
616
+ \"class_name\": \"boardFollowUnfollowButton\", \"unfollow_text\": \"Unfollow\",
617
+ \"follow_ga_category\": \"board_follow\", \"unfollow_ga_category\": \"board_unfollow\",
618
+ \"disabled\": false, \"color\": \"default\", \"tagName\": \"button\", \"text\":
619
+ \"Follow\", \"user_id\": \"412149940807022226\", \"follow_text\": \"Follow\",
620
+ \"follow_class\": \"default\", \"is_my_board\": null}, \"uid\": \"BoardFollowButton-31\"}],
621
+ \"errorStrategy\": 2, \"data\": {\"followed_by_me\": false, \"id\": \"412149872087590750\"},
622
+ \"options\": {\"show_board_context\": false}, \"uid\": \"Board-29\"}], \"errorStrategy\":
641
623
  1, \"data\": {}, \"options\": {\"scrollable\": true, \"show_grid_footer\":
642
624
  false, \"centered\": true, \"reflow_all\": true, \"virtualize\": true, \"item_options\":
643
- {\"show_board_context\": false}, \"layout\": \"fixed_height\"}, \"uid\": \"Grid-26\"}],
625
+ {\"show_board_context\": false}, \"layout\": \"fixed_height\"}, \"uid\": \"GridItems-28\"}],
626
+ \"errorStrategy\": 1, \"data\": {}, \"options\": {\"scrollable\": true, \"show_grid_footer\":
627
+ false, \"centered\": true, \"reflow_all\": true, \"virtualize\": true, \"item_options\":
628
+ {\"show_board_context\": false}, \"layout\": \"fixed_height\"}, \"uid\": \"Grid-27\"}],
644
629
  \"errorStrategy\": 0, \"options\": {\"username\": \"johnstamosgem\", \"secret_board_count\":
645
- 0}, \"uid\": \"UserBoards-25\"}], \"errorStrategy\": 2, \"data\": {\"secret_board_count\":
646
- 0, \"board_count\": 1}, \"options\": {\"tab\": \"boards\"}, \"uid\": \"UserProfileContent-21\"}],
630
+ null}, \"uid\": \"UserBoards-26\"}], \"errorStrategy\": 0, \"data\": {\"board_count\":
631
+ 1}, \"options\": {\"tab\": \"boards\"}, \"uid\": \"UserProfileContent-21\"}],
647
632
  \"errorStrategy\": 0, \"data\": {\"id\": \"412149940807022226\"}, \"options\":
648
633
  {\"username\": \"johnstamosgem\", \"report_user_spam\": null, \"show_follow_memo\":
649
634
  null, \"tab\": \"boards\"}, \"uid\": \"UserProfilePage-4\"}, {\"resource\":
@@ -654,26 +639,26 @@ http_interactions:
654
639
  \"Button\", \"ui.TypeaheadField\", \"ui.Typeahead\", \"Pillow\", \"NagBase\",
655
640
  \"NagUnauth\", \"JoinButton\", \"LoginButton\", \"NavigateButton\", \"UserProfileHeader\",
656
641
  \"UserInfoBar\", \"UserProfileContent\", \"InfoBarBase\", \"UserFollowButton\",
657
- \"BoardCount\", \"FollowerCount\", \"ui.FollowButton\", \"UserBoards\", \"Grid\",
658
- \"GridItems\", \"Board\", \"BoardFollowButton\"], \"errorStrategy\": 2, \"attributes\":
659
- {\"class\": \"App full Module\", \"id\": \"App-30\"}, \"options\": {\"module\":
660
- {\"data\": {\"last_name\": \"Stamosgem\", \"domain_verified\": false, \"following_count\":
661
- 5, \"image_medium_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_75.jpg\",
642
+ \"BoardCount\", \"PinCount\", \"FollowerCount\", \"ui.FollowButton\", \"UserBoards\",
643
+ \"Grid\", \"GridItems\", \"Board\", \"BoardFollowButton\"], \"errorStrategy\":
644
+ 2, \"attributes\": {\"class\": \"App full Module\", \"id\": \"App-32\"}, \"options\":
645
+ {\"module\": {\"data\": {\"last_name\": \"Stamosgem\", \"domain_verified\":
646
+ false, \"following_count\": 5, \"image_medium_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_75.jpg\",
662
647
  \"like_count\": 1, \"full_name\": \"John Stamosgem\", \"image_small_url\":
663
648
  \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_30.jpg\",
664
- \"id\": \"412149940807022226\", \"first_name\": \"John\", \"secret_board_count\":
665
- 0, \"explicitly_followed_by_me\": false, \"location\": \"California\", \"indexed\":
666
- true, \"is_partner\": false, \"type\": \"user\", \"image_large_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_140.jpg\",
649
+ \"id\": \"412149940807022226\", \"first_name\": \"John\", \"explicitly_followed_by_me\":
650
+ false, \"location\": \"California\", \"follower_count\": 0, \"is_partner\":
651
+ false, \"type\": \"user\", \"image_large_url\": \"http:\\/\\/media-cache-ec0.pinimg.com\\/avatars\\/johnstamosgem_1375988759_140.jpg\",
667
652
  \"board_count\": 1, \"username\": \"johnstamosgem\", \"repins_from\": [],
668
- \"twitter_url\": null, \"facebook_url\": null, \"follower_count\": 0, \"pin_count\":
669
- 1, \"about\": \"This is the johnstamos about content.\", \"has_board\": true,
670
- \"website_url\": \"http:\\/\\/johnstamos.com\\/\", \"blocked_by_me\": false},
671
- \"error_strategy\": 0, \"resource\": {\"name\": \"UserResource\", \"options\":
672
- {\"username\": \"johnstamosgem\", \"bookmarks\": [\"-end-\"]}}, \"name\":
673
- \"UserProfilePage\", \"options\": {\"username\": \"johnstamosgem\", \"report_user_spam\":
674
- null, \"tab\": \"boards\", \"show_follow_memo\": null}}}, \"uid\": \"App-30\"},
675
- \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false};\n P.available.declare();\n
676
- \ </script>\n</body>\n</html>"
653
+ \"twitter_url\": null, \"facebook_url\": null, \"pin_count\": 1, \"about\":
654
+ \"This is the johnstamos about content.\", \"has_board\": true, \"website_url\":
655
+ \"http:\\/\\/johnstamos.com\\/\", \"blocked_by_me\": false}, \"error_strategy\":
656
+ 0, \"resource\": {\"name\": \"UserResource\", \"options\": {\"username\":
657
+ \"johnstamosgem\", \"bookmarks\": [\"-end-\"]}}, \"name\": \"UserProfilePage\",
658
+ \"options\": {\"username\": \"johnstamosgem\", \"report_user_spam\": null,
659
+ \"tab\": \"boards\", \"show_follow_memo\": null}}}, \"uid\": \"App-32\"},
660
+ \"canDebug\": false, \"requireJsPaths\": {}, \"isLoggedIn\": false, \"initialContextLog\":
661
+ null});\n </script>\n</body>\n</html>"
677
662
  http_version:
678
- recorded_at: Fri, 16 Aug 2013 23:48:33 GMT
663
+ recorded_at: Fri, 20 Sep 2013 18:28:21 GMT
679
664
  recorded_with: VCR 2.5.0