summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Link tweaking.Ville Skytt?2010-11-041-2/+2
|
* Get rid of the "Home Page" configuration parameter.Ville Skytt?2010-11-0412-40/+30
| | | | | Resolve it automatically instead, and use relative URLs more where appropriate.
* Get rid of file_uri_param, URI escape it in templates where needed.Ville Skytt?2010-11-042-2/+1
|
* Make path to opensource-55x48.png relative.Ville Skytt?2010-11-012-2/+2
|
* + warning messages to ucn_output.tmpltom2010-10-271-1/+1
|
* ~ changed level of warnings 0, 27, 28 to infotom2010-10-271-3/+3
|
* ~ warnings moved out of the error looptom2010-10-271-5/+3
|
* ~ fixed missing </TMPL_IF>tom2010-10-271-8/+8
|
* + html description to all warningstom2010-10-271-38/+546
|
* ~ updated Mootools to version 1.2.5 and adapted w3c-validator.jsThomas Gambet2010-09-272-175/+21
|
* ~ open source icon stored locallyThomas Gambet2010-09-163-2/+2
|
* + .project (eclipse project file)Thomas Gambet2010-09-161-0/+1
|
* Prepare for 1.2 release.Ville Skytt?2010-08-203-4/+14
|
* Small typoJean-Guilhem Rouel2010-08-171-1/+1
|
* Fix for ticket #139Jean-Guilhem Rouel2010-08-171-1/+1
|
* adding a Unicorn template for critical errorJean-Guilhem Rouel2010-08-172-0/+133
|
* ~ fixed invalid css code in the congratulation messageThomas Gambet2010-08-101-1/+1
|
* Update XHTML modularization DTDs to version 1.1 second edition (20100729).Ville Skytt?2010-08-0452-134/+131
|
* Update comment about Config::General settings.Ville Skytt?2010-07-241-1/+1
|
* Turn off Config::General CComments for slight performance gain.Ville Skytt?2010-07-242-0/+2
|
* Bump version to 1.2(-dev).Ville Skytt?2010-07-154-3/+16
|
* Don't filter out undefined entity errors from libxml.Ville Skytt?2010-07-151-36/+1
| | | | | We let libxml fetch external entities now (and use catalogs with it) so false positives should no longer occur.
* Remove obsolete (commented) note about XML support limitations.Ville Skytt?2010-07-151-12/+0
|
* Added tag validator-1_1-release for changeset 3cf0fbb70602Thomas Gambet2010-07-120-0/+0
|
* Prepare for 1.1 release.validator-1_1-releaseVille Skytt?2010-07-066-15/+20
|
* Run incomplete input URLs through URI::Heuristic.Ville Skytt?2010-07-064-5/+20
|
* Added tag bundle-1_0 for changeset f8fe838e16abVille Skytt?2010-07-050-0/+0
|
* Update for bundle 1.0.bundle-1_0Ville Skytt?2010-07-041-13/+12
|
* Bump bundle version back to 1.0, no 1.1 related changes so far.Ville Skytt?2010-07-042-2/+2
|
* No longer need to skip CVS related things.Ville Skytt?2010-07-041-2/+0
|
* Link tweaking.Ville Skytt?2010-07-042-2/+2
|
* Fix double escaping of '"&"' in messages; they're entity escaped in templates.Ville Skytt?2010-07-041-2/+0
|
* Improve source extract handling for non-document errors.Ville Skytt?2010-07-041-65/+88
| | | | | | | report_errors() now populates extracts from our doc source only if the extract has not been defined earlier. Checkers are expected to always populate it with something (anything, really, for example empty string if no better info is available) that is defined for non-document errors.
* Improve error location info to include URI for non-doc resources.Ville Skytt?2010-07-044-6/+43
| | | | http://www.w3.org/Bugs/Public/show_bug.cgi?id=9933
* Don't output empty pre,code block in grouped mode if error source is not ↵Ville Skytt?2010-07-041-1/+1
| | | | available.
* Remove old explanation URI conditional that has been a no-op since 0.7.0.Ville Skytt?2010-07-011-1/+0
|
* Drop explanation loader javascript.Ville Skytt?2010-06-303-36/+0
| | | | | The functionality to take advantage of this has no longer apparently existed since introduction of error message grouping in validator 0.8.0.
* Do not make line numbers links when not showing source in grouped display mode.Ville Skytt?2010-06-301-2/+2
|
* Use "W3C Markup Validation Service" instead of "W3C HTML Validation Service" ↵Ville Skytt?2010-06-3017-16/+16
| | | | more.
* Update meta description.Ville Skytt?2010-06-293-3/+3
|
* Call is_xml() less.Ville Skytt?2010-06-291-17/+17
|
* Add "reminder" check for version in various files in "make dist".Ville Skytt?2010-06-291-0/+6
|
* Get version from the check script instead of bundle.Ville Skytt?2010-06-291-1/+1
|
* Drop leftover CVS keyword, set $VERSION to 1.1.Ville Skytt?2010-06-291-5/+1
|
* Make template variables case sensitive to improve output performance.Ville Skytt?2010-06-292-0/+4
| | | | | Decreases time for one complete validation request for my current local copy of http://blip.fm/all (2742 errors, 649 warnings) from ~25s to ~15s.
* Code cleanups, NFC.Ville Skytt?2010-06-291-19/+10
|
* perltidy source, NFC.Ville Skytt?2010-06-291-1/+3
|
* Make ent() faster (up to 25% in some pathological tests of mine).Ville Skytt?2010-06-291-5/+11
|
* Entity escape apostrophes.Ville Skytt?2010-06-291-2/+1
|
* Bump bundle version to 1.1 to get version in "make dist" straight.Ville Skytt?2010-06-292-2/+2
|
* Split long lines.Ville Skytt?2010-06-291-1/+2
|
* Try to cheat HTML::Template into refreshing its cache on upgrades.Ville Skytt?2010-06-291-0/+4
| | | | | | | While it does check file timestamps, it does not check options to new() as of 2.9 which may result in it using stale cached templates and produce incorrect results if those options have changed between validator releases. See HTML::Template's "cache" option for more info.
* Drop CVS keywords.Ville Skytt?2010-06-2373-188/+36
|
* Mark as 1.1-dev.Ville Skytt?2010-06-222-2/+2
|
* Do XML wellformedness check only if other checks do not flag the doc invalid.Ville Skytt?2010-06-222-184/+212
| | | | This is to further mitigate XMLWF performance issues.
* Update instructions etc from CVS to Mercurial.Ville Skytt?2010-06-2215-252/+52
|
* Removing trailing spacesJean-Guilhem Rouel2010-06-221-1/+1
|
* testJean-Guilhem Rouel2010-06-221-4/+4
|
* update tagsconvert-repo2010-06-210-0/+0
|
* 1.0validator-1_0-releaseville2010-06-146-14/+14
|
* Soften #9899 entry a bit.ville2010-06-141-3/+4
|
* Note (candidate) fix for #9899.ville2010-06-131-2/+9
|
* Fix perlcritic warnings.ville2010-06-131-3/+4
|
* Drop another unused variable.ville2010-06-131-3/+2
|
* Drop unused variable.ville2010-06-131-8/+3
|
* Bring back support for non-structured XML::LibXML errors.ville2010-06-131-24/+148
| | | | | This was removed in rev 1.769, but according to the docs, 1.70 may still throw them.
* Update MathML3 to WD-MathML3-20100610.ville2010-06-1329-2292/+2008
|
* Add MathML3 info.ville2010-06-131-1/+17
|
* Regenerated.ville2010-06-101-37/+52
|
* Bring back comment why XML::LibXML 1.70+ is needed.ville2010-06-101-3/+3
|
* Enable external entity loading in XML::LibXML to fix #9899.ville2010-06-103-7/+62
|
* Add generated XML catalog.ville2010-06-101-0/+250
|
* Add note about output being generated.ville2010-06-101-0/+1
|
* Add target for generating catalog.xml.ville2010-06-101-1/+4
|
* uptgambet2010-06-081-5/+2
|
* do not specify line and column attributes if emptytgambet2010-06-081-2/+5
|
* updated description markuptgambet2010-06-011-4/+4
|
* removed context escaping (unicorn schema updated)tgambet2010-06-011-2/+2
|
* escapes context texttgambet2010-06-011-2/+2
|
* updated for the new unicorn output schematgambet2010-06-012-181/+157
|
* Bring whatsnew up to date.ville2010-05-071-3/+14
|
* Spelling fix.ville2010-05-071-3/+3
|
* Clean up duplicate code (for show source/not cases).ville2010-05-071-22/+11
|
* Escape error messages also when showing source.ville2010-05-072-3/+7
|
* Avoid malformed comments when overriding doctype or charset.ville2010-05-072-9/+27
|
* Rephrase previous entry a bit.ville2010-05-071-4/+4
|
* When passing transcoded content to external validators (and the internalville2010-05-072-21/+73
| | | | | | XML one), fix up charset declarations in content to reflect transcoding. http://www.w3.org/mid/Pine.LNX.4.64.1004291710580.13453%40zen.rrzn.uni-hannover.de
* Comment spelling fix.ville2010-05-071-3/+3
|
* Point to Apache 2.2 docs instead of 2.0.ville2010-05-071-4/+4
|
* Add XML entity definitions for characters.ville2010-04-2235-0/+8439
|
* Add crude script for converting SGML Open Catalogs to XML catalogs.ville2010-04-222-2/+38
|
* Comment update.ville2010-04-221-0/+3
|
* Fix syntax.ville2010-04-191-1/+1
|
* Quote versions with significant trailing zeros (to get META.yml right).ville2010-03-101-2/+2
|
* Require XML::LibXML >= 1.70 for structured error bugfixes.ville2010-03-104-11/+9
|
* Update to CR-MathML3-20091215.ville2010-03-0928-2007/+2291
|
* libxml2 comment update.ville2010-03-091-2/+3
|
* Exclude *.py[co] from tarballs.ville2010-03-091-0/+1
|
* Allow FTP by default.ville2010-03-091-2/+2
|
* Typo fix.ville2010-03-091-3/+3
|