Skip to content

Commit 84a93f4

Browse files
committed
Fix links to www.robotstxt.org
* NEWS: Fix links * doc/wget.texi: Likewise * src/res.c: Likewise Reported-by: Noël Köthe
1 parent f31b934 commit 84a93f4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

NEWS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ addresses when accessing the first one fails.
698698
non-standard port.
699699

700700
** Wget now supports the robots.txt directives specified in
701-
<http://www.robotstxt.org/wc/norobots-rfc.txt>.
701+
<http://www.robotstxt.org/norobots-rfc.txt>.
702702

703703
** URL parser has been fixed, especially the infamous overzealous
704704
quoting. Wget no longer dequotes reserved characters, e.g. `%3F' is

doc/wget.texi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4266,7 +4266,7 @@ server.
42664266

42674267
Until version 1.8, Wget supported the first version of the standard,
42684268
written by Martijn Koster in 1994 and available at
4269-
@url{http://www.robotstxt.org/robotstxt.html}. As of version 1.8,
4269+
@url{http://www.robotstxt.org/orig.html}. As of version 1.8,
42704270
Wget has supported the additional directives specified in the internet
42714271
draft @samp{<draft-koster-robots-00.txt>} titled ``A Method for Web
42724272
Robots Control''. The draft, which has as far as I know never made to
@@ -4285,7 +4285,7 @@ this:
42854285
@end example
42864286

42874287
This is explained in some detail at
4288-
@url{http://www.robotstxt.org/wc/meta-user.html}. Wget supports this
4288+
@url{http://www.robotstxt.org/meta.html}. Wget supports this
42894289
method of robot exclusion in addition to the usual @file{/robots.txt}
42904290
exclusion.
42914291

src/res.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ as that of the covered work. */
3737
disallow access to certain parts of the site.
3838
3939
The first specification was written by Martijn Koster in 1994, and
40-
is still available at <http://www.robotstxt.org/wc/norobots.html>.
40+
is still available at <http://www.robotstxt.org/orig.html>.
4141
In 1996, Martijn wrote an Internet Draft specifying an improved RES
4242
specification; however, that work was apparently abandoned since
4343
the draft has expired in 1997 and hasn't been replaced since. The
4444
draft is available at
45-
<http://www.robotstxt.org/wc/norobots-rfc.html>.
45+
<http://www.robotstxt.org/norobots-rfc.txt>.
4646
4747
This file implements RES as specified by the draft. Note that this
4848
only handles the "robots.txt" support. The META tag that controls
@@ -428,7 +428,7 @@ free_specs (struct robot_specs *specs)
428428

429429
/* The inner matching engine: return true if RECORD_PATH matches
430430
URL_PATH. The rules for matching are described at
431-
<http://www.robotstxt.org/wc/norobots-rfc.txt>, section 3.2.2. */
431+
<http://www.robotstxt.org/norobots-rfc.txt>, section 3.2.2. */
432432

433433
static bool
434434
matches (const char *record_path, const char *url_path)

0 commit comments

Comments
 (0)