summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* more complete listHEADmasterTed Guild2015-08-101-0/+8
|
* this file was local only and part of earlier repositoriesTed Guild2015-08-101-0/+205
|
* Merge pull request #13 from w3c/sideshowbarker/docs-apiGuillaume Baudusseau2015-07-2710-641/+545
|\ | | | | Update the docs, particularly with regard to API.
| * Update the docs, particularly with regard to API.origin/sideshowbarker/docs-apiMichael[tm] Smith2015-07-2710-641/+545
| |
* | Merge pull request #9 from w3c/sideshowbarker/file-upload-revertGuillaume Baudusseau2015-07-272-19/+0
|\ \ | | | | | | Partially revert 81a0aed.
| * | Partially revert 81a0aed.origin/sideshowbarker/file-upload-revertMichael[tm] Smith2015-07-222-19/+0
| | | | | | | | | | | | | | | This reverts the UI changes in 81a0aed. Given 0d238f0, those changes are no longer needed nor useful. (This replaces PR #8).
* | | Merge pull request #10 from w3c/sideshowbarker/html5-updatesGuillaume Baudusseau2015-07-274-50/+141
|\ \ \ | | | | | | | | Further refinements to checking of HTML5 documents
| * | | Further refinements to checking of HTML5 documentsorigin/sideshowbarker/html5-updatesMichael[tm] Smith2015-07-274-50/+141
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested and found to be working as expected. This causes all validation requests for HTML5 documents to just get re-posted as-is to https://validator.w3.org/nu/ using an HTTP 307 "Temporary Redirect".* —with the exception of any requests that have `output=soap12` or `output=ucn` parameters. The reason for making temporary exceptions for those soap12/ucn cases is that some existing tools such as Dreamweaver apparently have integrated support for HTML checking that relies on calling https://validator.w3.org/ to do the validation, and that expects the results in the `output=soap12` format. Other than those exceptions, this change properly 307-redirects all requests for checking of HTML5 documents to https://validator.w3.org/nu/ (that includes file-upload requests as well direct-input requests and URL-input GET requests, and any `output=json` requests regardless of method). *Note: Using a 307 gives the meaning "I'm redirecting this particular request to https://validator.w3.org/nu/ but that doesn't imply you should necessarily use https://validator.w3.org/nu/ for any further requests", which seems like the right meaning for this particular case.
* | | Merge pull request #12 from w3c/sideshowbarker/make-productionYves Lafon2015-07-261-0/+5
|\ \ \ | | | | | | | | Add make target to drop test warning, add W3C icon
| * | | Add make target to drop test warning, add W3C iconorigin/sideshowbarker/make-productionMichael[tm] Smith2015-07-261-0/+5
| | |/ | |/|
* | | Merge pull request #11 from w3c/sideshowbarker/faviconYves Lafon2015-07-261-1/+1
|\ \ \ | |/ / |/| | Use scheme-less URL for favicon.ico
| * | Use scheme-less URL for favicon.icoorigin/sideshowbarker/faviconMichael[tm] Smith2015-07-261-1/+1
|/ /
* | updating repo locationTed Guild2015-07-241-42/+13
| |
* | updating repo locationTed Guild2015-07-241-20/+7
|/
* -validator suiteTed Guild2015-07-201-9/+0
|
* Merge pull request #6 from w3c/sideshowbarker/redirect-with-data-uriGuillaume Baudusseau2015-07-161-35/+10
|\ | | | | Use data-URI+redirect to check HTML5 direct input.
| * Use data-URI+redirect to check HTML5 direct input.Michael[tm] Smith2015-07-151-35/+10
|/ | | | | This replaces the different approach we took in PR #1 for re-routing checking of HTML5 documents submitted by direct input.
* Merge pull request #3 from w3c/sideshowbarker-patch-1Guillaume Baudusseau2015-07-141-0/+2
|\ | | | | gzip-decode HTML5 direct input before sending
| * gzip-decode HTML5 direct input before sendingMichael[tm] Smith2015-07-151-0/+2
|/ | | | If the direct input we’re sending on hasn’t actually already been gzip-encoded, the `decode()` call we make here is just a no-op.
* Merge pull request #2 from w3c/sideshowbarker/file-uploadGuillaume Baudusseau2015-07-133-0/+22
|\ | | | | Inform file-upload users about Nu Html Checker.
| * Inform file-upload users about Nu Html Checker.Michael[tm] Smith2015-07-123-0/+22
| | | | | | | | This is a companion to PR #1.
* | Merge pull request #1 from w3c/sideshowbarker/request-rerouteGuillaume Baudusseau2015-07-131-0/+39
|\ \ | |/ |/| Re-route HTML5 validator requests to Nu Checker.
| * Re-route HTML5 validator requests to Nu Checker.Michael[tm] Smith2015-07-121-0/+39
|/ | | | | | | | | | | | | | | | | | | | | | | | This is a simple but powerful change to the markup-validator code to ease migration of users to the Nu Html Checker. You can try the outcomes of the change at http://qa-dev.w3.org/wmvs/mike/ The change has the following specific effects on the behavior of the validator. 1. "Validate by URI": if a document either has an HTML5 `<!doctype html>` doctype, or if a user manually selects the HTML5-checking option, the request is automatically run directly through https://validator.w3.org/nu. That is, the validation results will be shown directly from the http://validator.w3.org/nu Web UI, rather then being passed back to http://validator.w3.org for post-processing and display. 2. "Validate by Direct Input": Same as above; if the text entered into the input areaa has a <!doctype html> doctype or a user manually selects the HTML5-checking option, results are shown by http://validator.w3.org/nu 3. "Validate by File Upload". No change. (It's not possible to automatically redirect file-upload requests to the Nu Html Checker in the way we can for "Validate by URI" and "Validate by Direct Input".
* check port and schemeTed Guild2015-06-221-0/+18
|
* add reserved port messageTed Guild2015-06-221-0/+9
|
* update readme with markdownGuillaume Baudusseau2015-06-172-25/+10
|
* protocol relative link for iconsYves Lafon2015-03-262-4/+4
|
* removed the protocol from the link to w3c-include.js for support for httpsThomas Gambet2013-09-232-2/+2
|
* ~ mention Validator-Suite in the faqsThomas Gambet2013-09-231-5/+8
|
* added Beihang host in the copyrightThomas Gambet2013-09-231-1/+1
|
* updated the donation/sponsorship program to use w3c-include.jsThomas Gambet2013-09-123-9/+9
|
* doc the optionTed Guild2013-03-191-1/+5
|
* allow additional ua info from config fileTed Guild2013-03-191-1/+1
|
* Bump copyright year to 2013.Ville Skytt?2013-02-128-8/+8
|
* Added XHTML + ARIA 1.0 and HTML + ARIA 1.0 to the doctype dbtgambet2013-02-121-0/+47
|
* Fix display of encodings in XML vs meta mismatch message.Takeshi Kurosawa2012-08-111-2/+2
| | | | https://www.w3.org/Bugs/Public/show_bug.cgi?id=18514
* Add missing messages to SOAP templates.Takeshi Kurosawa2012-07-282-0/+25
| | | | https://www.w3.org/Bugs/Public/show_bug.cgi?id=18408
* perltidy: Do not leave backups behind if there are no errors.Ville Skytt?2012-07-161-1/+2
|
* Grammar fix.Ville Skytt?2012-06-251-1/+1
|
* Update XHTML+RDFa 1.1 to REC-xhtml-rdfa-20120607 (no real changes since ↵Ville Skytt?2012-06-247-24/+21
| | | | PR-xhtml-rdfa-20120508).
* Spelling fixes.Ville Skytt?2012-06-042-3/+3
|
* Update HTML+RDFa 1.1 to WD-rdfa-in-html-20120329.Ville Skytt?2012-06-024-5/+1107
|
* Update XHTML+RDFa 1.1 to PR-xhtml-rdfa-20120508 + current ↵Ville Skytt?2012-06-029-21/+40
| | | | xhtml-metaAttributes-2.mod.
* updated xhtml-metaAttributes-1.mod to rev 1.7tgambet2012-06-011-1/+13
|
* + pointer to validator.w3.org/nu on the home pagetgambet2012-03-261-0/+1
|
* Re-sign bundle 1.3.Ville Skytt?2012-03-141-7/+7
|
* Added tag validator-1_3-release for changeset 6c6c7c1f69c5Ville Skytt?2012-03-100-0/+0
|
* 1.3validator-1_3-releaseVille Skytt?2012-03-101-2/+2
|
* Update xhtml-rdfa to 20120131 WD (no real changes).Ville Skytt?2012-03-106-21/+21
|
* Bump version to 1.3 and copyright years to 2012.Ville Skytt?2012-03-1011-28/+28
|
* Note Java and Python libraries recently mentioned on the mailing list.Ville Skytt?2012-03-101-0/+2
|
* Update XHTML+RDFa 1.1 status.Ville Skytt?2011-12-211-1/+1
|
* Update XHTML + RDFa 1.1 to WD-xhtml-rdfa-20111215.Ville Skytt?2011-12-215-46/+44
|
* Regenerated.Ville Skytt?2011-12-211-6/+14
|
* Note previous change in whatsnew.Ville Skytt?2011-12-121-0/+4
|
* Override inline charset indication of HTML5 direct input.Ville Skytt?2011-12-121-11/+9
| | | | | | | The inline charset indication is supposed to be ignored in direct input mode, but validator.nu does not work that way but throws an error if it finds an inconsistency (which may originate from us always POSTing the file to it as UTF-8).
* Simplify doctype overriding start element handler.Ville Skytt?2011-12-121-19/+7
|
* Don't change line numbers when overriding multiline charset indication.Ville Skytt?2011-12-121-4/+13
|
* Add system ids to catalogs.Ville Skytt?2011-11-293-4/+1226
| | | | | This is so that missing/misspelled FPIs when a (proper) system id is present doesn't necessarily cause fetching of DTDs or modules online.
* Remove catalog entries pointing to DTDs or modules we do not have.Ville Skytt?2011-11-292-12/+0
|
* Grammar fix to previous error message change, thanks again to Jukka K. Korpela.Ville Skytt?2011-11-291-1/+1
|
* Replace IETF DTDs with the canonical as-is ones (no real changes).Ville Skytt?2011-11-286-20/+20
|
* Further improvements to "NET-enabling start-tag..." explanation, thanks to ↵Ville Skytt?2011-11-281-6/+14
| | | | Leif Halvard Silli and Jukka K. Korpela.
* Note mod_perl XML catalog setup fix in what's new.Ville Skytt?2011-11-281-0/+3
|
* Make XML::LibXML catalog setup work with mod_perl.Ville Skytt?2011-11-284-3/+22
|
* Cosmetic doc tweak.Ville Skytt?2011-11-281-1/+1
|
* Iterate over hashes more efficiently.Ville Skytt?2011-11-281-29/+22
|
* Replace some regexp uses with index and substr.Ville Skytt?2011-11-281-11/+14
|
* Trivial code cleanups.Ville Skytt?2011-11-281-5/+3
|
* Avoid unnecessary grouping regexp parenthesis.Ville Skytt?2011-11-281-5/+5
|
* Further tweak "NET-enabling start-tag requires SHORTTAG YES" explanation.Ville Skytt?2011-11-172-10/+10
|
* Improve "NET-enabling start-tag requires SHORTTAG YES" warning explanation.Ville Skytt?2011-11-172-12/+12
| | | | The behavior is not exclusive to strict doctypes nor HTML 4.01.
* Drop unused file_warnings template parameter.Ville Skytt?2011-11-141-5/+1
|
* Remove old unused CSS and associated images.Ville Skytt?2011-11-0112-854/+1
|
* Use current CSS for test cases that still used the old one.Ville Skytt?2011-10-302-9/+25
|
* Add VoiceXML 2.0 and 2.1 DTDs.Ville Skytt?2011-10-305-2/+937
|
* Be less specific about path to yuicompressor jar.Ville Skytt?2011-10-271-1/+1
|
* Update news since 1.2 so far.Ville Skytt?2011-10-261-0/+54
|
* Can not -> cannot grammar fixes.Ville Skytt?2011-09-039-10/+10
| | | | http://www.w3.org/Bugs/Public/show_bug.cgi?id=13982
* Drop versions from "use HTML::Template"s to work around 2.x -> 2.10 issues.Ville Skytt?2011-08-303-3/+5
| | | | https://rt.cpan.org/Public/Bug/Display.html?id=70190
* Don't switch to XHTML5 mode for HTML5 docs simply based on presence of xmlns.Ville Skytt?2011-08-241-1/+3
| | | | http://www.w3.org/Bugs/Public/show_bug.cgi?id=9967
* Don't warn about xmlns in non-XML HTML5 documents.Ville Skytt?2011-08-241-1/+1
| | | | http://dev.w3.org/html5/spec/elements.html#global-attributes
* Update SVG 1.1 DTDs to 2nd edition.Ville Skytt?2011-08-2353-488/+347
|
* Fix SVG 1.1 test case title.Ville Skytt?2011-08-232-2/+2
|
* Fix rdfa-in-html WD date.Ville Skytt?2011-08-232-1/+1
|
* Update HTML+RDFa 1.1 to WD-rdfa-in-html-20110524.Ville Skytt?2011-07-243-4/+3
|
* Update XHTML+RDFa 1.1 DTD to WD-xhtml-rdfa-20110331.Ville Skytt?2011-07-245-8/+8
| | | | For tracking purposes only, no real changes.
* Purge workaround for rt.cpan.org#66642, XML::LibXML >= 1.73 is now required.Ville Skytt?2011-07-235-24/+5
| | | | https://rt.cpan.org/Public/Bug/Display.html?id=66642
* Fix transcode error parsing for docs without linefeeds.Ville Skytt?2011-06-081-1/+1
| | | | http://www.w3.org/mid/907C7FACCE66B940A1473B51352419934BDCB570F7%40LNET-SRV-EXMBX1.landsnet.far.local
* Exclude no_referer.asis from dist tarball.Ville Skytt?2011-06-081-0/+1
|
* ~ changed to absolute linkstgambet2011-06-071-5/+5
|
* ~ fixed duplicate base href attributetgambet2011-05-241-2/+1
|
* Remove inactive "tip of the day" functionality.Ville Skytt?2011-05-217-102/+0
| | | | | | The tips haven't been included in validator's output since validator 0.7.0 (hg rev 1018:64d1a483353a) due to nothing referencing/including tip.tmpl.
* Update EARL/RDF output to WD-EARL10-Schema-20110510.Ville Skytt?2011-05-211-6/+8
|
* Add onclick handler to badge sample code to avoid uri=referer redirects.Ville Skytt?2011-05-215-15/+26
| | | | | | | In addition to avoiding the redirect, this removes the need for presence of the Referer header in JavaScript enabled browsers thus making things work in setups that don't send the referer at all, and when the badge is in https docs and the validator isn't.
* Remove unreferenced HTML 4.0 and 4.01 sgml-lib files.Ville Skytt?2011-05-217-690/+0
|
* Revert changeset 3231.Ville Skytt?2011-05-214-515/+3
| | | | | | We already have the entity files catalogued in REC-html401-19991224, and because they're being used by public id, there's no need to duplicate them for HTML 4.01 + RDFa 1.1.
* + readmetgambet2011-05-211-0/+2
|
* use local entity filestgambet2011-05-214-3/+515
|
* ~ fixed path to HTML 4.01+RDFa 1.1 dtdtgambet2011-05-201-1/+1
|