From 1cacb8c8c9bbf3fd440fbf810d4618ea8d2df685 Mon Sep 17 00:00:00 2001 From: "Michael[tm] Smith" Date: Thu, 17 Nov 2011 16:21:24 +0900 Subject: [PATCH] reference github location on version output --- README.html | 4 ++-- console/tidy.c | 12 ++++++------ htmldoc/tidy1.xsl | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.html b/README.html index 85cbbaa..6f30b97 100644 --- a/README.html +++ b/README.html @@ -10,8 +10,8 @@

Tidy for HTML5

This repo is a fork of the code from tidy.sourceforge.net. -This source code in this version supports processing of HTML5 documents, -using a +This source code in this version supports processing of HTML5 documents. +The changes for HTML5 support started from a patch developed by Björn Höhrmann.

For *nix platforms, you can build and install from the source code using the diff --git a/console/tidy.c b/console/tidy.c index e54b56c..494abc0 100644 --- a/console/tidy.c +++ b/console/tidy.c @@ -420,10 +420,10 @@ static void help( ctmbstr prog ) printf( "\n"); #ifdef PLATFORM_NAME - printf( "Options for HTML Tidy for %s released on %s:\n", - PLATFORM_NAME, tidyReleaseDate() ); + printf( "Options for HTML Tidy for %s from https://github.com/w3c/tidy-html5\n", + PLATFORM_NAME); #else - printf( "Options for HTML Tidy released on %s:\n", tidyReleaseDate() ); + printf( "Options for HTML Tidy from https://github.com/w3c/tidy-html5\n"); #endif printf( "\n"); @@ -903,10 +903,10 @@ static void optionvalues( TidyDoc tdoc ) static void version( void ) { #ifdef PLATFORM_NAME - printf( "HTML Tidy for %s released on %s\n", - PLATFORM_NAME, tidyReleaseDate() ); + printf( "HTML Tidy for %s from https://github.com/w3c/tidy-html5\n", + PLATFORM_NAME); #else - printf( "HTML Tidy released on %s\n", tidyReleaseDate() ); + printf( "HTML Tidy from https://github.com/w3c/tidy-html5\n"); #endif } diff --git a/htmldoc/tidy1.xsl b/htmldoc/tidy1.xsl index e5c7243..4c7a3a1 100644 --- a/htmldoc/tidy1.xsl +++ b/htmldoc/tidy1.xsl @@ -358,7 +358,7 @@ HTML Tidy Project Page at \fIhttp://tidy.sourceforge.net\fR .SH AUTHOR \fBTidy\fR was written by Dave Raggett <\fIdsr@w3.org\fR>, and is now maintained and developed by the Tidy team at \fIhttp://tidy.sourceforge.net/\fR. It is released under the \fIMIT Licence\fR. .LP -Generated automatically with HTML Tidy released on . +Generated automatically with HTML Tidy from https://github.com/w3c/tidy-html5.