- From: <simon@lok.net>
- Date: Sat, 7 Sep 2002 14:01:32 -0400 (EDT)
- To: html-tidy@w3.org
--- tidy/src/localize.c Tue Sep 3 02:50:01 2002
+++ tidy.scl/src/localize.c Sat Sep 7 13:57:14 2002
@@ -24,6 +24,8 @@
/* points to the Adaptive Technology Resource Centre at the University of Toronto */
#define ATRC_ACCESS_URL "http://www.aprompt.ca/Tidy/accessibilitychecks.html"
+#define TIDY_PROJ_URL "http://tidy.sourceforge.net"
+
char *release_date = "1st September 2002";
static char *currentFile; /* sasdjb 01May00 for GNU Emacs error parsing */
@@ -48,16 +50,16 @@
{
/*
tidy_out(fp, "HTML Tidy release date: %s\n"
- "See http://www.w3.org/People/Raggett for details\n", release_date);
+ "See %s for details\n", release_date, TIDY_PROJ_URL);
*/
#ifdef PLATFORM_NAME
tidy_out(fp, "\nHTML Tidy for %s (release date: %s; built on %s, at %s)\n"
- "See http://www.w3.org/People/Raggett for details\n",
- PLATFORM_NAME, release_date, __DATE__, __TIME__);
+ "See %s for details\n",
+ PLATFORM_NAME, release_date, __DATE__, __TIME__, TIDY_PROJ_URL);
#else
tidy_out(fp, "\nHTML Tidy (release date: %s; built on %s, at %s)\n"
- "See http://www.w3.org/People/Raggett for details\n",
- release_date, __DATE__, __TIME__);
+ "See %s for details\n",
+ release_date, __DATE__, __TIME__, TIDY_PROJ_URL);
#endif
}
@@ -997,7 +999,7 @@
#if 0 /* old style help text */
tidy_out(out, "%s: file1 file2 ...\n", prog);
tidy_out(out, "Utility to clean up & pretty print html files\n");
- tidy_out(out, "see http://www.w3.org/People/Raggett/tidy/\n");
+ tidy_out(out, "see %s\n", TIDY_PROJ_URL);
tidy_out(out, "options for tidy released on %s\n", release_date);
tidy_out(out, " -config <file> set options from config file\n");
tidy_out(out, " -indent or -i indent element content\n");
@@ -1030,7 +1032,7 @@
#else
tidy_out(out, "%s [option...] [file...]\n", prog);
tidy_out(out, "Utility to clean up and pretty print HTML/XHTML/XML\n");
- tidy_out(out, "see http://www.w3.org/People/Raggett/tidy/\n");
+ tidy_out(out, "see %s\n", TIDY_PROJ_URL);
tidy_out(out, "\n");
#ifdef PLATFORM_NAME
tidy_out(out, "Options for HTML Tidy for %s released on %s:\n", PLATFORM_NAME, release_date);
Received on Tuesday, 10 September 2002 15:16:22 UTC