@@ -116,7 +116,7 @@ func (handler LinkHandler) HandleLink(
116
116
link models.SourcedLink,
117
117
) {
118
118
fmt.Printf (
119
- " have got the link %q from the page %q \n " ,
119
+ " received link %q from page %q \n " ,
120
120
handler.replaceServerURL (link.Link ),
121
121
handler.replaceServerURL (link.SourceLink ),
122
122
)
@@ -199,16 +199,16 @@ func main() {
199
199
)
200
200
201
201
// Unordered output:
202
- // have got the link "http://example.com/1" from the page "http://example.com"
203
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
204
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
205
- // have got the link "http://example.com/2" from the page "http://example.com"
206
- // have got the link "http://example.com/2" from the page "http://example.com"
207
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
208
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
209
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
210
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
211
- // have got the link "https://golang.org/" from the page "http://example.com"
202
+ // received link "http://example.com/1" from page "http://example.com"
203
+ // received link "http://example.com/1/1" from page "http://example.com/1"
204
+ // received link "http://example.com/1/2" from page "http://example.com/1"
205
+ // received link "http://example.com/2" from page "http://example.com"
206
+ // received link "http://example.com/2" from page "http://example.com"
207
+ // received link "http://example.com/2/1" from page "http://example.com/2"
208
+ // received link "http://example.com/2/1" from page "http://example.com/2"
209
+ // received link "http://example.com/2/2" from page "http://example.com/2"
210
+ // received link "http://example.com/2/2" from page "http://example.com/2"
211
+ // received link "https://golang.org/" from page "http://example.com"
212
212
}
213
213
```
214
214
@@ -248,7 +248,7 @@ func (handler LinkHandler) HandleLink(
248
248
link models.SourcedLink,
249
249
) {
250
250
fmt.Printf (
251
- " have got the link %q from the page %q \n " ,
251
+ " received link %q from page %q \n " ,
252
252
handler.replaceServerURL (link.Link ),
253
253
handler.replaceServerURL (link.SourceLink ),
254
254
)
@@ -339,14 +339,14 @@ func main() {
339
339
)
340
340
341
341
// Unordered output:
342
- // have got the link "http://example.com/1" from the page "http://example.com"
343
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
344
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
345
- // have got the link "http://example.com/2" from the page "http://example.com"
346
- // have got the link "http://example.com/2" from the page "http://example.com"
347
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
348
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
349
- // have got the link "https://golang.org/" from the page "http://example.com"
342
+ // received link "http://example.com/1" from page "http://example.com"
343
+ // received link "http://example.com/1/1" from page "http://example.com/1"
344
+ // received link "http://example.com/1/2" from page "http://example.com/1"
345
+ // received link "http://example.com/2" from page "http://example.com"
346
+ // received link "http://example.com/2" from page "http://example.com"
347
+ // received link "http://example.com/2/1" from page "http://example.com/2"
348
+ // received link "http://example.com/2/2" from page "http://example.com/2"
349
+ // received link "https://golang.org/" from page "http://example.com"
350
350
}
351
351
```
352
352
@@ -387,7 +387,7 @@ func (handler LinkHandler) HandleLink(
387
387
link models.SourcedLink,
388
388
) {
389
389
fmt.Printf (
390
- " have got the link %q from the page %q \n " ,
390
+ " received link %q from page %q \n " ,
391
391
handler.replaceServerURL (link.Link ),
392
392
handler.replaceServerURL (link.SourceLink ),
393
393
)
@@ -487,13 +487,13 @@ func main() {
487
487
)
488
488
489
489
// Unordered output:
490
- // have got the link "http://example.com/1" from the page "http://example.com"
491
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
492
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
493
- // have got the link "http://example.com/2" from the page "http://example.com"
494
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
495
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
496
- // have got the link "https://golang.org/" from the page "http://example.com"
490
+ // received link "http://example.com/1" from page "http://example.com"
491
+ // received link "http://example.com/1/1" from page "http://example.com/1"
492
+ // received link "http://example.com/1/2" from page "http://example.com/1"
493
+ // received link "http://example.com/2" from page "http://example.com"
494
+ // received link "http://example.com/2/1" from page "http://example.com/2"
495
+ // received link "http://example.com/2/2" from page "http://example.com/2"
496
+ // received link "https://golang.org/" from page "http://example.com"
497
497
}
498
498
```
499
499
@@ -534,7 +534,7 @@ func (handler LinkHandler) HandleLink(
534
534
link models.SourcedLink,
535
535
) {
536
536
fmt.Printf (
537
- " have got the link %q from the page %q \n " ,
537
+ " received link %q from page %q \n " ,
538
538
handler.replaceServerURL (link.Link ),
539
539
handler.replaceServerURL (link.SourceLink ),
540
540
)
@@ -638,13 +638,13 @@ func main() {
638
638
)
639
639
640
640
// Unordered output:
641
- // have got the link "http://example.com/1" from the page "http://example.com"
642
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
643
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
644
- // have got the link "http://example.com/2" from the page "http://example.com"
645
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
646
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
647
- // have got the link "https://golang.org/" from the page "http://example.com"
641
+ // received link "http://example.com/1" from page "http://example.com"
642
+ // received link "http://example.com/1/1" from page "http://example.com/1"
643
+ // received link "http://example.com/1/2" from page "http://example.com/1"
644
+ // received link "http://example.com/2" from page "http://example.com"
645
+ // received link "http://example.com/2/1" from page "http://example.com/2"
646
+ // received link "http://example.com/2/2" from page "http://example.com/2"
647
+ // received link "https://golang.org/" from page "http://example.com"
648
648
}
649
649
```
650
650
@@ -683,7 +683,7 @@ func (handler LinkHandler) HandleLink(
683
683
link models.SourcedLink,
684
684
) {
685
685
fmt.Printf (
686
- " have got the link %q from the page %q \n " ,
686
+ " received link %q from page %q \n " ,
687
687
handler.replaceServerURL (link.Link ),
688
688
handler.replaceServerURL (link.SourceLink ),
689
689
)
@@ -782,12 +782,12 @@ func main() {
782
782
)
783
783
784
784
// Unordered output:
785
- // have got the link "http://example.com/1" from the page "http://example.com"
786
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
787
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
788
- // have got the link "http://example.com/2" from the page "http://example.com"
789
- // have got the link "http://example.com/2" from the page "http://example.com"
790
- // have got the link "https://golang.org/" from the page "http://example.com"
785
+ // received link "http://example.com/1" from page "http://example.com"
786
+ // received link "http://example.com/1/1" from page "http://example.com/1"
787
+ // received link "http://example.com/1/2" from page "http://example.com/1"
788
+ // received link "http://example.com/2" from page "http://example.com"
789
+ // received link "http://example.com/2" from page "http://example.com"
790
+ // received link "https://golang.org/" from page "http://example.com"
791
791
}
792
792
```
793
793
@@ -827,7 +827,7 @@ func (handler LinkHandler) HandleLink(
827
827
link models.SourcedLink,
828
828
) {
829
829
fmt.Printf (
830
- " have got the link %q from the page %q \n " ,
830
+ " received link %q from page %q \n " ,
831
831
handler.replaceServerURL (link.Link ),
832
832
handler.replaceServerURL (link.SourceLink ),
833
833
)
@@ -926,10 +926,10 @@ func main() {
926
926
)
927
927
928
928
// Unordered output:
929
- // have got the link "http://example.com/1" from the page "http://example.com"
930
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
931
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
932
- // have got the link "https://golang.org/" from the page "http://example.com"
929
+ // received link "http://example.com/1" from page "http://example.com"
930
+ // received link "http://example.com/1/1" from page "http://example.com/1"
931
+ // received link "http://example.com/1/2" from page "http://example.com/1"
932
+ // received link "https://golang.org/" from page "http://example.com"
933
933
}
934
934
```
935
935
@@ -974,7 +974,7 @@ func (handler LinkHandler) HandleLink(
974
974
link models.SourcedLink,
975
975
) {
976
976
fmt.Printf (
977
- " have got the link %q from the page %q \n " ,
977
+ " received link %q from page %q \n " ,
978
978
handler.replaceServerURL (link.Link ),
979
979
handler.replaceServerURL (link.SourceLink ),
980
980
)
@@ -1162,20 +1162,20 @@ func main() {
1162
1162
)
1163
1163
1164
1164
// Unordered output:
1165
- // have got the link "http://example.com/1" from the page "http://example.com"
1166
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
1167
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
1168
- // have got the link "http://example.com/2" from the page "http://example.com"
1169
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
1170
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
1171
- // have got the link "http://example.com/hidden/1" from the page "http://example.com"
1172
- // have got the link "http://example.com/hidden/1/test" from the page "http://example.com/hidden/1"
1173
- // have got the link "http://example.com/hidden/2" from the page "http://example.com"
1174
- // have got the link "http://example.com/hidden/3" from the page "http://example.com"
1175
- // have got the link "http://example.com/hidden/4" from the page "http://example.com"
1176
- // have got the link "http://example.com/hidden/5" from the page "http://example.com/hidden/1/test"
1177
- // have got the link "http://example.com/hidden/6" from the page "http://example.com/hidden/1/test"
1178
- // have got the link "https://golang.org/" from the page "http://example.com"
1165
+ // received link "http://example.com/1" from page "http://example.com"
1166
+ // received link "http://example.com/1/1" from page "http://example.com/1"
1167
+ // received link "http://example.com/1/2" from page "http://example.com/1"
1168
+ // received link "http://example.com/2" from page "http://example.com"
1169
+ // received link "http://example.com/2/1" from page "http://example.com/2"
1170
+ // received link "http://example.com/2/2" from page "http://example.com/2"
1171
+ // received link "http://example.com/hidden/1" from page "http://example.com"
1172
+ // received link "http://example.com/hidden/1/test" from page "http://example.com/hidden/1"
1173
+ // received link "http://example.com/hidden/2" from page "http://example.com"
1174
+ // received link "http://example.com/hidden/3" from page "http://example.com"
1175
+ // received link "http://example.com/hidden/4" from page "http://example.com"
1176
+ // received link "http://example.com/hidden/5" from page "http://example.com/hidden/1/test"
1177
+ // received link "http://example.com/hidden/6" from page "http://example.com/hidden/1/test"
1178
+ // received link "https://golang.org/" from page "http://example.com"
1179
1179
}
1180
1180
```
1181
1181
@@ -1213,7 +1213,7 @@ func (handler LinkHandler) HandleLink(
1213
1213
link models.SourcedLink,
1214
1214
) {
1215
1215
fmt.Printf (
1216
- " have got the link %q from the page %q \n " ,
1216
+ " received link %q from page %q \n " ,
1217
1217
handler.replaceServerURL (link.Link ),
1218
1218
handler.replaceServerURL (link.SourceLink ),
1219
1219
)
@@ -1300,16 +1300,16 @@ func main() {
1300
1300
)
1301
1301
1302
1302
// Unordered output:
1303
- // have got the link "http://example.com/1" from the page "http://example.com"
1304
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
1305
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
1306
- // have got the link "http://example.com/2" from the page "http://example.com"
1307
- // have got the link "http://example.com/2" from the page "http://example.com"
1308
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
1309
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
1310
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
1311
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
1312
- // have got the link "https://golang.org/" from the page "http://example.com"
1303
+ // received link "http://example.com/1" from page "http://example.com"
1304
+ // received link "http://example.com/1/1" from page "http://example.com/1"
1305
+ // received link "http://example.com/1/2" from page "http://example.com/1"
1306
+ // received link "http://example.com/2" from page "http://example.com"
1307
+ // received link "http://example.com/2" from page "http://example.com"
1308
+ // received link "http://example.com/2/1" from page "http://example.com/2"
1309
+ // received link "http://example.com/2/1" from page "http://example.com/2"
1310
+ // received link "http://example.com/2/2" from page "http://example.com/2"
1311
+ // received link "http://example.com/2/2" from page "http://example.com/2"
1312
+ // received link "https://golang.org/" from page "http://example.com"
1313
1313
}
1314
1314
```
1315
1315
@@ -1348,7 +1348,7 @@ func (handler LinkHandler) HandleLink(
1348
1348
link models.SourcedLink,
1349
1349
) {
1350
1350
fmt.Printf (
1351
- " have got the link %q from the page %q \n " ,
1351
+ " received link %q from page %q \n " ,
1352
1352
handler.replaceServerURL (link.Link ),
1353
1353
handler.replaceServerURL (link.SourceLink ),
1354
1354
)
@@ -1439,16 +1439,16 @@ func main() {
1439
1439
waiter.Wait ()
1440
1440
1441
1441
// Unordered output:
1442
- // have got the link "http://example.com/1" from the page "http://example.com"
1443
- // have got the link "http://example.com/1/1" from the page "http://example.com/1"
1444
- // have got the link "http://example.com/1/2" from the page "http://example.com/1"
1445
- // have got the link "http://example.com/2" from the page "http://example.com"
1446
- // have got the link "http://example.com/2" from the page "http://example.com"
1447
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
1448
- // have got the link "http://example.com/2/1" from the page "http://example.com/2"
1449
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
1450
- // have got the link "http://example.com/2/2" from the page "http://example.com/2"
1451
- // have got the link "https://golang.org/" from the page "http://example.com"
1442
+ // received link "http://example.com/1" from page "http://example.com"
1443
+ // received link "http://example.com/1/1" from page "http://example.com/1"
1444
+ // received link "http://example.com/1/2" from page "http://example.com/1"
1445
+ // received link "http://example.com/2" from page "http://example.com"
1446
+ // received link "http://example.com/2" from page "http://example.com"
1447
+ // received link "http://example.com/2/1" from page "http://example.com/2"
1448
+ // received link "http://example.com/2/1" from page "http://example.com/2"
1449
+ // received link "http://example.com/2/2" from page "http://example.com/2"
1450
+ // received link "http://example.com/2/2" from page "http://example.com/2"
1451
+ // received link "https://golang.org/" from page "http://example.com"
1452
1452
}
1453
1453
```
1454
1454
0 commit comments