-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsphinx_wiki_broken_links.txt
More file actions
2648 lines (2338 loc) · 128 KB
/
Copy pathsphinx_wiki_broken_links.txt
File metadata and controls
2648 lines (2338 loc) · 128 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
LinkChecker 10.2.1
Copyright (C) 2000-2016 Bastian Kleineidam, 2010-unknown LinkChecker Authors
LinkChecker comes with ABSOLUTELY NO WARRANTY!
This is free software, and you are welcome to redistribute it under
certain conditions. Look at the file `LICENSE' within this distribution.
Read the documentation at https://linkchecker.github.io/linkchecker/
Write comments and bugs to https://github.com/linkchecker/linkchecker/issues
Start checking at 2025-04-08 09:08:53-006
URL `http://www.cansas.org/formats/canSAS2012/1.0/doc/'
Name `canSAS standard for storing multidimensional reduced\nsmall-angle scattering\ndata'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/2014_axes_and_uncertainties.html, line 47, col 22
Real URL https://www.cansas.org/formats/canSAS2012/1.0/doc/
Check time 3.173 seconds
Size 5KB
Info Redirected to
`https://www.cansas.org/formats/canSAS2012/1.0/doc/'.
Result Error: 404 Not Found
URL `http://www.cansas.org/formats/canSAS2012/1.0/doc/implementation.html#algorithm-to-identify-values-given-a-set-of-indices-on-the-i-data'
Name `related\naxes'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/2014_axes_and_uncertainties.html, line 50, col 21
Real URL https://www.cansas.org/formats/canSAS2012/1.0/doc/implementation.html#algorithm-to-identify-values-given-a-set-of-indices-on-the-i-data
Check time 3.472 seconds
Size 5KB
Info Redirected to
`https://www.cansas.org/formats/canSAS2012/1.0/doc/implementation.html#algorithm-to-identify-values-given-a-set-of-indices-on-the-i-data'.
Result Error: 404 Not Found
URL `http://www.cells.es'
Name `Alba'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 62, col 61
Real URL http://www.cells.es
Check time 0.291 seconds
Result Error: ConnectionError: HTTPConnectionPool(host='www.cells.es', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f6de0dcc150>: Failed to establish a new connection: [Errno 11...
URL `http://www.diamond.ac.uk'
Name `Diamond'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 58, col 174
Real URL https://www.diamond.ac.uk/
Check time 0.437 seconds
Info Redirected to `https://www.diamond.ac.uk/'.
Result Error: 403 Forbidden
URL `http://lansce.lanl.gov/lujan'
Name `Los Alamos National Laboratory'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 70, col 45
Real URL http://lansce.lanl.gov/lujan
Check time 0.276 seconds
Result Error: ConnectionError: ('Connection aborted.', ConnectionResetError(104, 'Connection reset by peer'))
URL `http://www.cansas.org/formats/canSAS2012/1.0/doc/examples.html#representing-uncertainty-components'
Name `http://www.cansas.org/formats/canSAS2012/1.0/doc/examples.html#representing-uncertainty-components'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/2014_axes_and_uncertainties.html, line 182, col 1
Real URL https://www.cansas.org/formats/canSAS2012/1.0/doc/examples.html#representing-uncertainty-components
Check time 6.718 seconds
Size 5KB
Info Redirected to
`https://www.cansas.org/formats/canSAS2012/1.0/doc/examples.html#representing-uncertainty-components'.
Result Error: 404 Not Found
URL `http://www.cansas.org/formats/canSAS2012/1.0/doc/framework.html#index-5'
Name `uncertainties'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/2014_axes_and_uncertainties.html, line 53, col 1
Real URL https://www.cansas.org/formats/canSAS2012/1.0/doc/framework.html#index-5
Check time 8.257 seconds
Size 5KB
Info Redirected to
`https://www.cansas.org/formats/canSAS2012/1.0/doc/framework.html#index-5'.
Result Error: 404 Not Found
URL `http://www.ill.eu/instruments-support/computing-for-science/cs-software/all-software/lamp/'
Name `LAMP'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 76, col 709
Real URL https://www.ill.eu/instruments-support/computing-for-science/cs-software/all-software/lamp/
Check time 1.265 seconds
Info Redirected to
`https://www.ill.eu/instruments-support/computing-for-science/cs-software/all-software/lamp/'.
Result Error: 404 Not Found
URL `http://www.europeanspallationsource.se'
Name `ESS'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 84, col 39
Real URL http://www.europeanspallationsource.se
Check time 0.223 seconds
Result Error: ConnectionError: HTTPConnectionPool(host='www.europeanspallationsource.se', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f6de0c43fd0>: Failed to establish a new co...
URL `https://www.psi.ch/en/visit/how-to-find-us'
Name `reach by public transport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 50, col 435
Real URL https://www.psi.ch/en/visit/how-to-find-us
Check time 3.337 seconds
Size 189.54KB
Result Error: 404 Not Found
URL `https://github.com/nexusformat/definitions/issues/986'
Name `issue#986'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 181, col 8
Real URL https://github.com/nexusformat/definitions/issues/986
Check time 0.890 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/1084#issuecomment-1249411564'
Name `Math in NXDL symbol tables'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 185, col 28
Real URL https://github.com/nexusformat/definitions/issues/1084#issuecomment-1249411564
Check time 1.059 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/NIAC/issues/58#issuecomment-1249513045'
Name `Review of NXsas'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 190, col 29
Real URL https://github.com/nexusformat/NIAC/issues/58#issuecomment-1249513045
Check time 0.922 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/522'
Name `issue#522'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 191, col 8
Real URL https://github.com/nexusformat/definitions/issues/522
Check time 1.120 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/NIAC/issues/137#issuecomment-1248281424'
Name `Elect Chair'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 195, col 28
Real URL https://github.com/nexusformat/NIAC/issues/137#issuecomment-1248281424
Check time 1.295 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://www.bag.admin.ch/bag/en/home/krankheiten/ausbrueche-epidemien-pandemien/aktuelle-ausbrueche-epidemien/novel-cov/empfehlungen-fuer-reisende.html'
Name `Swiss government'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2022.html, line 62, col 152
Real URL https://www.bag.admin.ch/bag/en/home/krankheiten/ausbrueche-epidemien-pandemien/aktuelle-ausbrueche-epidemien/novel-cov/empfehlungen-fuer-reisende.html
Check time 4.623 seconds
Size 61.47KB
Result Error: 404 Not Found
URL `http://www.nexusformat.org/index.php?title=NIAC2009'
Name `http://www.nexusformat.org/index.php?title=NIAC2009'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 61, col 8
Real URL http://www.nexusformat.org/index.php?title=NIAC2009
Check time 0.256 seconds
Size 1KB
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/258'
Name `http://trac.nexusformat.org/code/ticket/258'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 248, col 2
Real URL http://trac.nexusformat.org/code/ticket/258
Check time 0.501 seconds
Size 288B
Result Error: 404 Not Found
URL `https://www.aps.anl.gov/About/Visiting/visitor_registration.php'
Name `https://www.aps.anl.gov/About/Visiting/visitor_registration.php'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 338, col 14
Real URL https://www.aps.anl.gov/About/Visiting/visitor_registration.php
Check time 0.342 seconds
Size 59.83KB
Result Error: 404 Not Found
URL `http://www.diamond.ac.uk/'
Name `Diamond'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 489, col 8
Real URL https://www.diamond.ac.uk/
Check time 0.398 seconds
Info Redirected to `https://www.diamond.ac.uk/'.
Result Error: 403 Forbidden
URL `http://msd.anl.gov/'
Name `MSD/ANL'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 517, col 8
Real URL http://msd.anl.gov/
Check time 0.026 seconds
Result Error: ConnectionError: HTTPConnectionPool(host='msd.anl.gov', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f6df81b8dd0>: Failed to establish a new connection: [Errno -5]...
URL `https://github.com/nexusformat/definitions/issues/230'
Name `#230'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2014_CodeCamp.html, line 111, col 8
Real URL https://github.com/nexusformat/definitions/issues/230
Check time 0.763 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://www.bluejeans.com'
Name `Bluejeans'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 81, col 1
Real URL https://www.bluejeans.com
Check time 0.162 seconds
Result Error: ConnectionError: HTTPSConnectionPool(host='www.bluejeans.com', port=443): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6dcb8d3950>: Failed to establish a new connection: [...
URL `https://www.bluejeans.com/premium-numbers'
Name `https://www.bluejeans.com/premium-numbers'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 92, col 24
Real URL https://www.bluejeans.com/premium-numbers
Check time 0.295 seconds
Result Error: ConnectionError: HTTPSConnectionPool(host='www.bluejeans.com', port=443): Max retries exceeded with url: /premium-numbers (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6dcb8d0550>: Failed to establish a ne...
URL `https://bluejeans.com/150847021'
Name `https://bluejeans.com/150847021'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 90, col 13
Real URL https://bluejeans.com/150847021
Check time 0.401 seconds
Result Error: ConnectionError: HTTPSConnectionPool(host='bluejeans.com', port=443): Max retries exceeded with url: /150847021 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6dcb8d3690>: Failed to establish a new connecti...
URL `https://bluejeans.com/111'
Name `https://bluejeans.com/111'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 94, col 44
Real URL https://bluejeans.com/111
Check time 0.570 seconds
Result Error: ConnectionError: HTTPSConnectionPool(host='bluejeans.com', port=443): Max retries exceeded with url: /111 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f6de0a18950>: Failed to establish a new connection: [E...
URL `http://www.airportexpress.com/shuttles/ohare.html'
Name `http://www.airportexpress.com/shuttles/ohare.html'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2011_CodeCamp.html, line 388, col 21
Real URL https://www.airportexpress.com/shuttles/ohare.html
Check time 7.242 seconds
Info Redirected to
`https://airportexpress.com/shuttles/ohare.html'.
Redirected to
`https://www.airportexpress.com/shuttles/ohare.html'.
Result Error: 404 Not Found
URL `http://www.aps.anl.gov/About/Visiting/'
Name `Visiting the APS'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 152, col 22
Real URL https://www.aps.anl.gov/About/Visiting/
Check time 0.397 seconds
Size 59.83KB
Info Redirected to
`https://www.aps.anl.gov/About/Visiting/'.
Result Error: 404 Not Found
URL `https://github.com/nexusformat/definitions/issues/693'
Name `release of NXDL'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 238, col 17
Real URL https://github.com/nexusformat/definitions/issues/693
Check time 0.802 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/663'
Name `publish the manual through GitHub Pages'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 350, col 26
Real URL https://github.com/nexusformat/definitions/issues/663
Check time 0.832 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/307'
Name `NXDL data type vs NAPI type vs NeXus data type: clarify and simplify!'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 367, col 8
Real URL https://github.com/nexusformat/definitions/issues/307
Check time 0.708 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/370'
Name `more prominently document existing scheme for uncertainties'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 371, col 8
Real URL https://github.com/nexusformat/definitions/issues/370
Check time 0.957 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/503'
Name `Recording time-stamped data'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 375, col 8
Real URL https://github.com/nexusformat/definitions/issues/503
Check time 0.924 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/553'
Name `Create structure to incorporate PDB definitions into NeXus'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 379, col 8
Real URL https://github.com/nexusformat/definitions/issues/553
Check time 0.937 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/562'
Name `use consistent terms when names are flexible'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 383, col 8
Real URL https://github.com/nexusformat/definitions/issues/562
Check time 0.689 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/634'
Name `NIAC has decided about how to report errors/uncertainties'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 387, col 8
Real URL https://github.com/nexusformat/definitions/issues/634
Check time 1.032 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/665'
Name `[DOC] C example uses old style NXdata'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 391, col 8
Real URL https://github.com/nexusformat/definitions/issues/665
Check time 1.528 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/667'
Name `How to specify per-shot wavelength'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 399, col 8
Real URL https://github.com/nexusformat/definitions/issues/667
Check time 2.266 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/680'
Name `close branch pixel_as_length_issue_511'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 403, col 8
Real URL https://github.com/nexusformat/definitions/issues/680
Check time 2.526 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/exampledata/issues/10'
Name `Can we remove the file trees from the readme files as they are out of date and need to be manually updated'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 415, col 8
Real URL https://github.com/nexusformat/exampledata/issues/10
Check time 2.822 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/exampledata/issues/3'
Name `separate out non-compliant data files'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 419, col 8
Real URL https://github.com/nexusformat/exampledata/issues/3
Check time 2.381 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/532'
Name `add “uncertainties” attribute to fieldType in nxdl.xsd'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 431, col 8
Real URL https://github.com/nexusformat/definitions/issues/532
Check time 2.286 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/629'
Name `“Are there examples of NeXus data?” - asked at Nobugs 2018'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 435, col 8
Real URL https://github.com/nexusformat/definitions/issues/629
Check time 2.675 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/630'
Name `“Are there examples of code that reads NeXus data?” - asked at Nobugs 2018'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 439, col 8
Real URL https://github.com/nexusformat/definitions/issues/630
Check time 2.825 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/531'
Name `docs: add text when a group name is suggested'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 443, col 8
Real URL https://github.com/nexusformat/definitions/issues/531
Check time 2.381 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/563'
Name `can NXscan be extended to include 1-D data?'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 447, col 8
Real URL https://github.com/nexusformat/definitions/issues/563
Check time 2.376 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/659'
Name `update Sphinx config'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 451, col 8
Real URL https://github.com/nexusformat/definitions/issues/659
Check time 2.550 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/450'
Name `examples of axes/AXISNAME_indices attributes'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 459, col 8
Real URL https://github.com/nexusformat/definitions/issues/450
Check time 2.865 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/541'
Name `datarules.rst contains information on 2014 discussions'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 463, col 8
Real URL https://github.com/nexusformat/definitions/issues/541
Check time 2.793 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/544'
Name `clarify how to name fields and groups'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 467, col 8
Real URL https://github.com/nexusformat/definitions/issues/544
Check time 3.134 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/700'
Name `Is use of UPPER case names described in the manual?'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 479, col 8
Real URL https://github.com/nexusformat/definitions/issues/700
Check time 3.230 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/705'
Name `Need new links to h5toText program'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 483, col 8
Real URL https://github.com/nexusformat/definitions/issues/705
Check time 3.238 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/695'
Name `Slow/fast axis inconsistent in NXdetector_module'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 491, col 8
Real URL https://github.com/nexusformat/definitions/issues/695
Check time 3.615 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/712'
Name `update copyright date to 2020'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 499, col 8
Real URL https://github.com/nexusformat/definitions/issues/712
Check time 3.492 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/714'
Name `some unit tests fail since flexible names are UPPER case'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 507, col 8
Real URL https://github.com/nexusformat/definitions/issues/714
Check time 2.517 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/721'
Name `DATASET_errors naming convention should appear in manual'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 523, col 8
Real URL https://github.com/nexusformat/definitions/issues/721
Check time 3.027 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/696'
Name `NXmx has fields that may not have to be required'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 515, col 8
Real URL https://github.com/nexusformat/definitions/issues/696
Check time 4.003 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/720'
Name `PDF manual does not build'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 527, col 8
Real URL https://github.com/nexusformat/definitions/issues/720
Check time 2.611 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/699'
Name `Remove references to NAPI from schema and documentation'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 531, col 8
Real URL https://github.com/nexusformat/definitions/issues/699
Check time 2.911 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/725'
Name `cleanup in nxdl.xsd'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 543, col 8
Real URL https://github.com/nexusformat/definitions/issues/725
Check time 2.764 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/732'
Name `Makefile can’t build the PDF manual'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 555, col 8
Real URL https://github.com/nexusformat/definitions/issues/732
Check time 2.667 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/733'
Name `editing needed in datarules.rst new content'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 559, col 8
Real URL https://github.com/nexusformat/definitions/issues/733
Check time 2.814 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/697'
Name `Clarify the nature of NeXus application definitions'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 563, col 8
Real URL https://github.com/nexusformat/definitions/issues/697
Check time 3.122 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/728'
Name `GitHub API authentication has changed : affects the release process'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 571, col 8
Real URL https://github.com/nexusformat/definitions/issues/728
Check time 2.553 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/729'
Name `create_release_notes.py should use SHA credentials'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 579, col 8
Real URL https://github.com/nexusformat/definitions/issues/729
Check time 2.145 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/730'
Name `NXstxm nxdl does not specify a type for the energy field for [/NXentry/NXinstrument/NXmonochromator/energy]'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 587, col 8
Real URL https://github.com/nexusformat/definitions/issues/730
Check time 2.764 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/738'
Name `adjust doc string in NXcxi_ptycho'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 603, col 8
Real URL https://github.com/nexusformat/definitions/issues/738
Check time 3.071 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/739'
Name `writer_2_1 example broken'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 607, col 8
Real URL https://github.com/nexusformat/definitions/issues/739
Check time 3.160 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/740'
Name `Bad indentation in NXcxi_ptycho'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 611, col 8
Real URL https://github.com/nexusformat/definitions/issues/740
Check time 3.537 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/741'
Name `add h5py example reader using attributes to find default plottable data'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 615, col 8
Real URL https://github.com/nexusformat/definitions/issues/741
Check time 3.452 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/definitions/issues/749'
Name `in release notes, TOC link to each subsection'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020.html, line 631, col 8
Real URL https://github.com/nexusformat/definitions/issues/749
Check time 3.031 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/NIAC/issues/38'
Name `GitHub issue'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020-2.html, line 52, col 110
Real URL https://github.com/nexusformat/NIAC/issues/38
Check time 2.582 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/NIAC/projects/2'
Name `Agenda on Github'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2020-2.html, line 78, col 4
Real URL https://github.com/nexusformat/NIAC/projects/2
Check time 0.972 seconds
Size 9B
Result Error: 404 Not Found
URL `https://github.com/nexusformat/NIAC/issues/82'
Name `GitHub issue'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2021-1.html, line 53, col 101
Real URL https://github.com/nexusformat/NIAC/issues/82
Check time 1.142 seconds
Size 9KB
Warning [http-rate-limited] Rate limited (Retry-After: None)
Result Valid: 429 Too Many Requests
URL `https://github.com/nexusformat/NIAC/projects/3'
Name `Project on Github'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2021-1.html, line 82, col 4
Real URL https://github.com/nexusformat/NIAC/projects/3
Check time 0.406 seconds
Size 9B
Result Error: 404 Not Found
URL `https://github.com/orgs/nexusformat/projects/1?add_cards_query=is%3Aopen'
Name `add additional issues and pull\nrequests'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/CodeCamp2022.html, line 54, col 24
Real URL https://github.com/orgs/nexusformat/projects/1?add_cards_query=is:open
Check time 0.444 seconds
Size 40B
Result Error: 404 Not Found
URL `http://www.opengda.org/'
Name `GDA'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Facilities.html, line 58, col 88
Real URL http://www.opengda.org/
Check time 60.286 seconds
Result Error: ReadTimeout: HTTPConnectionPool(host='www.opengda.org', port=80): Read timed out. (read timeout=60)
URL `http://trac.nexusformat.org/definitions/ticket/3'
Name `NeXus definitions TRAC ticket\n#3'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Instruments.html, line 69, col 1
Real URL http://trac.nexusformat.org/definitions/ticket/3
Check time 0.250 seconds
Size 288B
Result Error: 404 Not Found
URL `https://wildwoodrestaurants.co.uk/restaurant/abingdon/'
Name `wildwood'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Code_Camp_2017.html, line 112, col 33
Real URL https://wildwoodrestaurants.co.uk/restaurant/abingdon/
Check time 5.464 seconds
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/definitions/newticket'
Name `new TRAC\nticket'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Instruments.html, line 74, col 36
Real URL http://trac.nexusformat.org/definitions/newticket
Check time 0.573 seconds
Size 288B
Result Error: 404 Not Found
URL `http://j-parc.jp/researcher/MatLife/en/meetings/nobugs2014'
Name `2014 NOBUGS conference'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 63, col 340
Real URL http://j-parc.jp/researcher/MatLife/en/meetings/nobugs2014
Check time 0.696 seconds
Result Error: 404 Not Found
URL `https://manual.nexusformat.org/pdf/NeXusManual.pdf'
Name `User Manual'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 74, col 605
Real URL https://manual.nexusformat.org/pdf/NeXusManual.pdf
Check time 2.910 seconds
Size 5KB
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/browser/tags/4.1.0/NEWS'
Name `Release Notes'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 102, col 519
Real URL http://trac.nexusformat.org/code/browser/tags/4.1.0/NEWS
Check time 0.251 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/browser/tags/4.0.0/NEWS'
Name `Release\nNotes'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 120, col 27
Real URL http://trac.nexusformat.org/code/browser/tags/4.0.0/NEWS
Check time 0.476 seconds
Size 288B
Result Error: 404 Not Found
URL `http://www.nexus.anl.gov/nexus_api.html#download'
Name `version 3.0.0 of the NeXus API'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 135, col 94
Real URL http://www.nexus.anl.gov/nexus_api.html#download
Check time 0.293 seconds
Result Error: ConnectionError: HTTPConnectionPool(host='www.nexus.anl.gov', port=80): Max retries exceeded with url: /nexus_api.html (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f6de0eb8e90>: Failed to establish a new co...
URL `http://download.nexusformat.org/doc/html/Tutorial.html'
Name `tutorial on constructing new NXDL\ndefinitions'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 81, col 36
Real URL https://manual.nexusformat.org/Tutorial.html
Check time 3.789 seconds
Size 5KB
Info Redirected to
`https://manual.nexusformat.org/Tutorial.html'.
Result Error: 404 Not Found
URL `ftp://ftp.neutron.anl.gov/nexus'
Name `ftp://ftp.neutron.anl.gov/nexus'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 175, col 105
Real URL ftp://ftp.neutron.anl.gov/nexus
Check time 0.138 seconds
Result Error: Hostname not found
URL `ftp://ftp.neutron.anl.gov/nexus/'
Name `ftp://ftp.neutron.anl.gov/nexus/'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 263, col 126
Real URL ftp://ftp.neutron.anl.gov/nexus/
Check time 0.012 seconds
Result Error: Hostname not found
URL `https://manual.nexusformat.org/doxygen/html-c/'
Name `Doxygen generated\ndocumentation'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NAPI_Routines.html, line 48, col 58
Real URL https://manual.nexusformat.org/doxygen/html-c/
Check time 0.116 seconds
Size 5KB
Result Error: 404 Not Found
URL `ftp://coral.pns.anl.gov/pub/NeXus'
Name `ftp://coral.pns.anl.gov/pub/NeXus'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Latest_News.html, line 267, col 62
Real URL ftp://coral.pns.anl.gov/pub/NeXus
Check time 0.554 seconds
Result Error: Hostname not found
URL `http://trac.nexusformat.org/code/ticket/87'
Name `details'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 82, col 1
Real URL http://trac.nexusformat.org/code/ticket/87
Check time 0.271 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/86'
Name `details'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 84, col 1
Real URL http://trac.nexusformat.org/code/ticket/86
Check time 0.517 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/68'
Name `details\nhere'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 99, col 48
Real URL http://trac.nexusformat.org/code/ticket/68
Check time 0.912 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/83'
Name `bug\nreport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 103, col 15
Real URL http://trac.nexusformat.org/code/ticket/83
Check time 1.122 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/84'
Name `bug\nreport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 105, col 24
Real URL http://trac.nexusformat.org/code/ticket/84
Check time 0.963 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/91'
Name `bug\nreport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 107, col 34
Real URL http://trac.nexusformat.org/code/ticket/91
Check time 1.007 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/92'
Name `bug\nreport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 109, col 46
Real URL http://trac.nexusformat.org/code/ticket/92
Check time 1.163 seconds
Size 288B
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/ticket/93'
Name `bug\nreport'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 111, col 65
Real URL http://trac.nexusformat.org/code/ticket/93
Check time 1.533 seconds
Size 288B
Result Error: 404 Not Found
URL `http://download.nexusformat.org/doxygen/html/classNeXus_1_1File.html'
Name `doxygen\ndocumentation'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_42_Release_Notes.html, line 97, col 12
Real URL https://manual.nexusformat.org/doxygen/html/classNeXus_1_1File.html
Check time 1.381 seconds
Size 5KB
Info Redirected to
`https://manual.nexusformat.org/doxygen/html/classNeXus_1_1File.html'.
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/code/query?status=new&status=assigned&status=reopened&status=closed&version=4.3.0-rc1&order=priority'
Name `can be found\nhere'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_43_Release_Notes.html, line 50, col 28
Real URL http://trac.nexusformat.org/code/query?status=new&status=assigned&status=reopened&status=closed&version=4.3.0-rc1&order=priority
Check time 1.373 seconds
Size 288B
Result Error: 404 Not Found
URL `http://svn.nexusformat.org/code/branches/4.2/test/napi_test_cpp.cxx'
Name `NeXus API test\nprogram'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_42_Release_Notes.html, line 99, col 5
Real URL http://svn.nexusformat.org/code/branches/4.2/test/napi_test_cpp.cxx
Check time 1.742 seconds
Result Error: 401 Unauthorized
URL `http://trac.nexusformat.org/code/query?status=new&status=assigned&status=reopened&status=closed&version=4.0.0&order=priority'
Name `all\nreported 4.0.0\nissues'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_4_Release_Notes.html, line 106, col 68
Real URL http://trac.nexusformat.org/code/query?status=new&status=assigned&status=reopened&status=closed&version=4.0.0&order=priority
Check time 1.241 seconds
Size 288B
Result Error: 404 Not Found
URL `http://coastwatch.noaa.gov/helparc/software/msg00069.html'
Name `http://coastwatch.noaa.gov/helparc/software/msg00069.html'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/Nexus_41_Release_Notes.html, line 73, col 1
Real URL https://coastwatch.noaa.gov/helparc/software/msg00069.html
Check time 5.283 seconds
Size 196B
Info Redirected to
`https://coastwatch.noaa.gov/helparc/software/msg00069.html'.
Result Error: 404 Not Found
URL `http://www.lbl.gov/Workplace/near-our-shuttle.html'
Name `http://www.lbl.gov/Workplace/near-our-shuttle.html'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006LBL.html, line 175, col 1
Real URL https://www.lbl.gov/Workplace/near-our-shuttle.html
Check time 0.956 seconds
Info Redirected to
`https://www.lbl.gov/Workplace/near-our-shuttle.html'.
Result Error: 404 Not Found
URL `http://www.esrf.fr/AboutUs/CompanyInfo/Access'
Name `http://www.esrf.fr/AboutUs/CompanyInfo/Access'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006ILL.html, line 83, col 4
Real URL https://www.esrf.fr/AboutUs/CompanyInfo/Access
Check time 1.553 seconds
Size 1KB
Info Redirected to
`https://www.esrf.fr/AboutUs/CompanyInfo/Access'.
Result Error: 404 Not Found
URL `http://www.lbl.gov/Workplace/lab-site-map.html_LBL_campus_map.html'
Name `http://www.lbl.gov/Workplace/lab-site-map.html LBL campus\nmap'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006LBL.html, line 181, col 8
Real URL https://www.lbl.gov/Workplace/lab-site-map.html_LBL_campus_map.html
Check time 0.450 seconds
Info Redirected to
`https://www.lbl.gov/Workplace/lab-site-map.html_LBL_campus_map.html'.
Result Error: 404 Not Found
URL `http://www.ill.fr/pages/science/User/UGuide.html'
Name `http://www.ill.fr/pages/science/User/UGuide.html'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006ILL.html, line 81, col 4
Real URL https://www.ill.eu/pages/science/User/UGuide.html
Check time 2.496 seconds
Info Redirected to
`https://www.ill.eu/pages/science/User/UGuide.html'.
Result Error: 404 Not Found
URL `http://svn.nexusformat.org/code'
Name `http://svn.nexusformat.org/code'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006LBL.html, line 235, col 1
Real URL http://svn.nexusformat.org/code
Check time 0.253 seconds
Result Error: 401 Unauthorized
URL `http://www.strainet.org'
Name `STRAINET'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007_attendees.html, line 150, col 8
Real URL http://www.strainet.org
Check time 0.063 seconds
Result Error: ConnectionError: HTTPConnectionPool(host='www.strainet.org', port=80): Max retries exceeded with url: / (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f6df82ee310>: Failed to establish a new connection: [Errn...
URL `mailto:hoffmann-j%40hmi.de'
Name `1'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 66, col 1
Real URL mailto:hoffmann-j@hmi.de
Check time 0.279 seconds
Warning [mail-no-mx-host] No MX mail host for hmi.de found.
Result Error: No host for hmi.de found.
URL `http://www.webel.com.au/nexml'
Name `NeXML proposal'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2006LBL.html, line 95, col 1
Real URL https://www.webel.com.au/nexml/
Check time 6.696 seconds
Info Redirected to `https://www.webel.com.au/nexml'.
Redirected to `https://www.webel.com.au/nexml/'.
Result Error: 404 Not Found
URL `http://www.hmi.de/hmi/gebaeudeplan.pdf'
Name `map of the area'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 52, col 11
Real URL https://www.helmholtz-berlin.de/hmi/gebaeudeplan.pdf
Check time 5.893 seconds
Info Redirected to
`https://www.helmholtz-berlin.de/hmi/gebaeudeplan.pdf'.
Result Error: 404 Not Found
URL `http://www.hmi.de/hmi/standorte_en.html#Wannsee'
Name `HMI campus\nWannsee'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 60, col 56
Real URL https://www.helmholtz-berlin.de/hmi/standorte_en.html#Wannsee
Check time 5.474 seconds
Info Redirected to
`https://www.helmholtz-berlin.de/hmi/standorte_en.html#Wannsee'.
Result Error: 404 Not Found
URL `http://trac.nexusformat.org/definitions/report/3'
Name `Open tickets'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 166, col 8
Real URL http://trac.nexusformat.org/definitions/report/3
Check time 0.252 seconds
Size 288B
Result Error: 404 Not Found
URL `http://www.hmi.de/hmi/wegwannsee_en.html'
Name `to Berlin\nWannsee'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 69, col 25
Real URL https://www.helmholtz-berlin.de/hmi/wegwannsee_en.html
Check time 5.757 seconds
Info Redirected to
`https://www.helmholtz-berlin.de/hmi/wegwannsee_en.html'.
Result Error: 404 Not Found
URL `http://www.hmi.de/bensc/misc/flat-cone/nexus/NIACinfo.html'
Name `http://www.hmi.de/bensc/misc/flat-cone/nexus/NIACinfo.html'
Parent URL file:///mnt/c/nexus/11/wiki/source/_build/html/content/NIAC2007.html, line 89, col 1
Real URL https://www.helmholtz-berlin.de/bensc/misc/flat-cone/nexus/NIACinfo.html
Check time 1.864 seconds
Info Redirected to
`https://www.helmholtz-berlin.de/bensc/misc/flat-cone/nexus/NIACinfo.html'.
Result Error: 404 Not Found