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