diff options
author | edwin <edwin@FreeBSD.org> | 2003-02-24 15:56:47 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-02-24 15:56:47 +0800 |
commit | 38b938d0b9f948c7332ea50c5abf080a353021af (patch) | |
tree | c0ccf1f10205c8c552542bc64f9ef31acfe97cc4 /www | |
parent | 9a641932d2ee606f516c5b2316ee544001a1a036 (diff) | |
download | freebsd-ports-gnome-38b938d0b9f948c7332ea50c5abf080a353021af.tar.gz freebsd-ports-gnome-38b938d0b9f948c7332ea50c5abf080a353021af.tar.zst freebsd-ports-gnome-38b938d0b9f948c7332ea50c5abf080a353021af.zip |
new port www/tidy-lib
slave port www/tidy-lib
PR: ports/48549
Submitted by: Thierry Thomas <thierry@pompo.net>
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/tidy-lib/Makefile | 19 | ||||
-rw-r--r-- | www/tidy-lib/pkg-descr | 19 |
3 files changed, 39 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index 50aefaeb5b59..a82c91330851 100644 --- a/www/Makefile +++ b/www/Makefile @@ -418,6 +418,7 @@ SUBDIR += thumbnail_index SUBDIR += tidy SUBDIR += tidy-devel + SUBDIR += tidy-lib SUBDIR += tinyproxy SUBDIR += transproxy SUBDIR += twhttpd diff --git a/www/tidy-lib/Makefile b/www/tidy-lib/Makefile new file mode 100644 index 000000000000..5400475bbae7 --- /dev/null +++ b/www/tidy-lib/Makefile @@ -0,0 +1,19 @@ +# New ports collection makefile for: tidy-lib +# Date created: 21 February 2003 +# Whom: Thierry Thomas <thierry@pompo.net> +# +# $FreeBSD$ +# + +PORTNAME= tidy +CATEGORIES= www +PKGNAMESUFFIX= -lib + +MAINTAINER= thierry@pompo.net +COMMENT= Utility to clean up and pretty print HTML/XHTML/XML (with shared lib) + +MASTERDIR= ${PORTSDIR}/www/tidy-devel + +WITH_SHLIB= yes + +.include "${MASTERDIR}/Makefile" diff --git a/www/tidy-lib/pkg-descr b/www/tidy-lib/pkg-descr new file mode 100644 index 000000000000..366b975f0d1b --- /dev/null +++ b/www/tidy-lib/pkg-descr @@ -0,0 +1,19 @@ +This is tidy-devel, built with a shared lib. + +When editing HTML it's easy to make mistakes. Wouldn't it be nice if +there was a simple way to fix these mistakes automatically and tidy up +sloppy editing into nicely layed out markup? Well now there is thanks +to Hewlett Packard's Dave Raggett. HTML TIDY is a free utility for +doing just that. It also works great on the attrociously hard to read +markup generated by specialized HTML editors and conversion tools, and +can help you identify where you need to pay further attention on +making your pages more accessible to people with disabilities. + +Tidy is able to fix up a wide range of problems and to bring to your +attention things that you need to work on yourself. Each item found is +listed with the line number and column so that you can see where the +problem lies in your markup. Tidy won't generate a cleaned up version +when there are problems that it can't be sure of how to handle. These +are logged as "errors" rather than "warnings". + +WWW: http://tidy.sourceforge.net/ |