Import www/p5-HTML-QuickCheck version 1.0b1
[dports.git] / www / p5-HTML-QuickCheck / pkg-descr
1 The objective of the package is to provide a fast and essential HTML check (esp.
2 for CGI scripts where response time is important) to prevent a piece of user
3 input HTML code from messing up the rest of a file, i.e., to minimize and
4 localize any possible damage created by including a piece of user input HTML
5 text in a dynamic document.
6
7 HTMLQuickCheck checks for unmatched < and >, unmatched tags and improper
8 nesting, which could ruin the rest of the document.  Attributes and elements
9 with optional end tags are not checked, as they should not cause disasters with
10 any decent browsers (they should ignore any unrecognized tags and attributes
11 according to the standard).  A piece of HTML that passes HTMLQuickCheck may not
12 necessarily be valid HTML, but it would be very unlikely to screw others but
13 itself. A valid piece of HTML that doesn't pass the HTMLQuickCheck is however
14 very likely to screw many browsers(which are obviously broken in terms of strict
15 conformance).
16
17 HTMLQuickCheck currently supports HTML 1.0, 2.x (draft), 3.0 (draft) and
18 netscape extensions (1.1).
19
20 WWW: http://search.cpan.org/dist/HTML-QuickCheck/