diff options
Diffstat (limited to 'htdocs')
-rwxr-xr-x | htdocs/favlets.html | 128 | ||||
-rwxr-xr-x | htdocs/p3p.html | 119 |
2 files changed, 0 insertions, 247 deletions
diff --git a/htdocs/favlets.html b/htdocs/favlets.html deleted file mode 100755 index 309379e..0000000 --- a/htdocs/favlets.html +++ /dev/null @@ -1,128 +0,0 @@ -<!--#set var="revision" value="\$Id: favlets.html,v 1.6 2002-10-30 16:46:59 link Exp $" ---><!--#set var="date" value="\$Date: 2002-10-30 16:46:59 $" ---><!--#set var="title" value="Favlets For The W3C MarkUp Validation Service" ---><!--#set var="relroot" value="./" ---><!--#include virtual="header.html" --> - - <script type="text/javascript"> -<!-- - var xmlhttp - /*@cc_on @*/ - /*@if (@_jscript_version >= 5) - try { - xmlhttp=new ActiveXObject("Msxml2.XMLHTTP") - } catch (e) { - try { - xmlhttp=new ActiveXObject("Microsoft.XMLHTTP") - } catch (E) { - xmlhttp=false - } - } - @else - xmlhttp=false - @end @*/ - if (!xmlhttp) { - try { - xmlhttp = new XMLHttpRequest() - } catch (e) { - xmlhttp=false - } - } - if (xmlhttp && location.hash && location.hash.substr) { - var hsh=location.hash.substr(1) - if (hsh.indexOf('http://')==0) { - url="http://validator.w3.org:8001/check?uri="+hsh+";output=xml"; - xmlhttp.open("HEAD",url,true); - xmlhttp.onreadystatechange=function() { - if (xmlhttp.readyState==4) { - if (xmlhttp.getResponseHeader('X-W3C-Validator-Status')!='') { - alert(hsh+' is '+xmlhttp.getResponseHeader('X-W3C-Validator-Status')+'\nErrors: '+xmlhttp.getResponseHeader('X-W3C-Validator-Errors')); - } else { - alert("Validation result not found, this may be for a number of reasons, including url not being available, or a character coding not detected.") - } - } - } - xmlhttp.setRequestHeader('User-Agent','Validator+Favlet'); - xmlhttp.send("") - } - } -// --> - </script> - - <div id="skip"> - <h2><a href="http://Favlets.com/">Favlets</a> - For The Validator</h2> - <div class="intro"> - <p> - Favlets are small snippets of JavaScript embedded in a Bookmark - <acronym title="Universal Resource Identifier">URL</acronym> - that allows Bookmarks in browsers do various advanced things. - Popular Favlets include variants that prompts the user for a - phrase and searches the web for that phrase, or that finds older - versions of the currently viewed page in the - <a class="offsite" title="The Internet Archive WayBack Machine" - href="http://www.archive.org/">WayBack Machine</a>. - </p> - <p> - Favlets depend on support for <code>javascript:</code> - <acronym title="Universal Resource Identifiers">URLs</acronym> - in your browser's Bookmarks feature, and each Favlet may depend on - support for a specific part of the JavaScript specification to work - properly. <acronym title="Microsoft Internet Explorer">MSIE</acronym> - versions more recent then 5.0, and Mozilla 1.0 and later — this - includes browsers using the embedded version of Mozilla, such as - Netscape 7.0 — are known to support most Favlets. - <acronym title="Microsoft Internet Explorer for Mac OS">MSIE:mac</acronym> - supports basic Favlets, but it's general support for JavaScript - may render certain advanced Favlets inoperable. Netscape 4.x is - a lost cause in this regard, and with it's poor support for standards - in general it is probably better to avoid it altogether. - </p> - </div> - <div> - <dl> - <dt>"<a href="javascript:void(location='http://validator.w3.org/check?uri='+location)" - title="Validate This Page">Validate <em>This</em> Page</a>"</dt> - <dd> - This is the basic "Validate This Page" Favlet. - It simply submits the URL for the currently viewed page to the - Validator for processing. Results appear in the same window. - </dd> - <dt>"<a href="javascript:window.open('http://validator.w3.org/check?uri='+location);void%200" - title="Validate This Page In New Window">Validate <em>This</em> Page In New Window</a>"</dt> - <dd> - Like the last Favlet, this also submits the URL of the current - page to the Validator for processing, but this version will show - the results in a new window. - </dd> - <dt>"<a href="javascript:void(q=prompt('Validate Page:',''));if(q)void(location='http://validator.w3.org/check?uri='+escape(q))" - title="Validate Page...">Validate Page...</a>"</dt> - <dd> - Puts up a dialog with a text entry field where you can type in the - URL of a page you would like to Validate. The results appear in the - current window. - </dd> - <dt>"<a href="javascript:void(q=prompt('Validate Page:',''));if(q)window.open('http://validator.w3.org/check?uri='+escape(q));void%200" - title="Validate Page In New Window...">Validate Page In New Window...</a>"</dt> - <dd>Same as above but shows results in a new window.</dd> - <dt>"<a href="javascript:_is=document.createElement('iframe');_is.setAttribute('src','http://validator.w3.org:8001/favlets.html#'+location.href);_is.setAttribute('height','0');_is.setAttribute('width','0');_is.setAttribute('style','border:0;');document.body.appendChild(_is);void 0" - title="Is This Page Valid?">Is <em>This</em> Page Valid?</a>"</dt> - <dd> - From the Head Of The "JavaScript Juju" Department, - <a href="http://jibbering.com/">Jim Ley</a>, comes this gem. - When invoked, this Favlet will submit the - <acronym title="Universal Resource Identifier">URL</acronym> - for the current page to the Validator for processing and pop up - a dialog that shows whether the page is Valid and how many errors - where found in the page. As with all Jim does, this Black Magic is - so deep I'm <em>afraid</em> to ask him how it works. - <q>Here There Be Dragons!</q> - </dd> - </dl> - </div> - </div> - -<!--#include virtual="footer.html" --> - </body> -</html> - diff --git a/htdocs/p3p.html b/htdocs/p3p.html deleted file mode 100755 index d23621e..0000000 --- a/htdocs/p3p.html +++ /dev/null @@ -1,119 +0,0 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - -<html xmlns="http://www.w3.org/1999/xhtml"> - -<head> -<title>About the W3C HTML Validation Service</title> -<meta name="revision" - content="$Id: p3p.html,v 1.3 2002-12-08 14:39:25 ville Exp $" /> -</head> - -<body bgcolor="#FFFFFF" text="#000000" link="#0000ee" vlink="#551a8b"> - -<p> - <a href="http://www.w3.org/"><img - src="http://www.w3.org/Icons/WWW/w3c_home" height="48" border="0" - alt="W3C" /></a> -</p> - - <h2>About the W3C HTML Validation Service</h2> - - <p> - <a href="./">This service</a> checks HTML documents for - conformance to W3C HTML and XHTML Recommendations and other - HTML standards. Related resources include: - </p> - - <ul> - <li><a href="source/">Information on the source code availability</a></li> - <li><a href="todo.html">The to-do list for the service</a></li> - <li><a href="sgml-lib/catalog">DTDs (document types) supported by this - service</a> (the SGML catalog)</li> - <li><a href="http://lists.w3.org/Archives/Public/www-validator/">The - www-validator mailing list</a></li> - <li><a href="feedback.html">How to provide feedback on this service</a></li> - <!-- - <li>@@ conneg'd icons - --> - </ul> - - <h2><a name="others">Other resources</a></h2> - - <ul> - <li><a href="http://www.w3.org/MarkUp/">W3C's HTML home page</a></li> - <li><a href="http://www.w3.org/TR/html401/">The W3C HTML 4.01 - Recommendation</a></li> - <li><a href="http://www.w3.org/TR/xhtml1/">The W3C XHTML 1.0 - Recommendation</a></li> - <li>The <a - href="http://www.htmlhelp.com/tools/validator/">WDG HTML - validator</a> is another excellent online validation - service</li> - <li><a href="http://arealvalidator.com/">A Real Validator</a> - is a shareware HTML syntax checker for Windows systems, - from the author of the WDG validator</li> - <!-- - <li>@@ bookmarklets</li> - --> - </ul> - -<h2><a name="credits">Credits</a></h2> - - <p> - This service uses: - </p> - - <ul> - - <li> - <a href="http://www.jclark.com/">James Clark</a>'s excellent <a - href="http://www.jclark.com/sp/">SGML parser</a>, - </li> - - <li> - The <a href="http://www.linpro.no/lwp/">libwww-perl library</a> - by Gisle Aas and Martijn Koster for retrieving documents. - </li> - - <!-- - <li> - <a href="http://www.weblint.org/~neilb/">Neil Bowers</a>' HTML - style checker, <a - href="http://www.weblint.org/">Weblint</a>. - </li> - - <li> - SGML error explanations written by Scott Bigham. - </li> - --> - - <li> - Patches and ideas from Terje Bless, <a - href="http://www.htmlhelp.com/%7Eliam/">Liam Quinn</a>, and - others. - </li> - - </ul> - -<p> - The <a - href="http://lists.w3.org/Archives/Public/www-html/1994Jul/0015">first - online HTML validation service</a> was created by <a - href="http://www.w3.org/People/Connolly/">Dan Connolly</a> and <a - href="http://www.gaither.com/mark/">Mark Gaither</a>. -</p> - -<hr /> - -<address> - <a href="http://validator.w3.org/check/referer"><img - src="http://validator.w3.org/images/vxhtml10" height="31" width="88" - align="right" border="0" alt="Valid XHTML 1.0!" /></a> - <a href="/feedback.html">Gerald Oskoboiny</a><br /> - $Date: 2002-12-08 14:39:25 $ -</address> - -</body> - -</html> |