summaryrefslogtreecommitdiffstats
path: root/htdocs
diff options
context:
space:
mode:
authorVille Skytt? <ville.skytta@iki.fi>2010-12-12 12:25:50 +0200
committerVille Skytt? <ville.skytta@iki.fi>2010-12-12 12:25:50 +0200
commit1ef6461dd01a8c97533a8155670b0cc8ebd0b3a0 (patch)
tree0f1ecf9bdf3e48384fe85e376c782e96efeb95b5 /htdocs
parent1c467d0702883ae7e80672e2033e46d036074138 (diff)
downloadmarkup-validator-1ef6461dd01a8c97533a8155670b0cc8ebd0b3a0.zip
markup-validator-1ef6461dd01a8c97533a8155670b0cc8ebd0b3a0.tar.gz
markup-validator-1ef6461dd01a8c97533a8155670b0cc8ebd0b3a0.tar.bz2
Remove no longer used xml-results XSL and CSS.
Diffstat (limited to 'htdocs')
-rw-r--r--htdocs/xml-results.css40
-rw-r--r--htdocs/xml-results.xsl73
2 files changed, 0 insertions, 113 deletions
diff --git a/htdocs/xml-results.css b/htdocs/xml-results.css
deleted file mode 100644
index 2aa7e45..0000000
--- a/htdocs/xml-results.css
+++ /dev/null
@@ -1,40 +0,0 @@
-/*
- XML Results Style Sheet for the W3C Markup Validation Service.
-
- Copyright 2002 Terje Bless <link@pobox.com>. All Rights Reserved.
- See http://www.w3.org/Consortium/Legal/ipr-notice.html#Copyright
-*/
-
-result, meta, uri, modified, server, size, encoding, doctype, warnings, messages {display: block}
-strong, a {display: inline}
-
-meta {
- margin-left: 5em;
- margin-bottom: 2em;
- border-bottom: 1px solid black;
- font-weight: bolder;
-}
-
-uri:before { content: 'URL: ' }
-modified:before { content: 'Modified: ' }
-server:before { content: 'Server: ' }
-size:before { content: 'Size: ' }
-encoding:before { content: 'Encoding: ' }
-doctype:before { content: 'Doctype: ' }
-
-warnings {
- border-top: 1px solid red;
- border-bottom: 1px solid red;
- background: gray;
- margin: 3em;
-}
-
-warning {
- background: red;
- display: list-item;
-}
-
-messages {margin: 2em}
-msg {
- display: list-item;
-}
diff --git a/htdocs/xml-results.xsl b/htdocs/xml-results.xsl
deleted file mode 100644
index e107ee8..0000000
--- a/htdocs/xml-results.xsl
+++ /dev/null
@@ -1,73 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
->
-
- <xsl:output method="html" doctype-public="-//W3C//DTD HTML 4.01//EN"/>
-
- <xsl:template match="result">
-<html lang="en">
- <head>
- <title>Report</title>
- <link rel="stylesheet" type="text/css" href="xml-results.css"/>
- </head>
- <body>
-<!-- insert HTML body top parts here -->
- <xsl:apply-templates select="meta"/>
-<!-- insert (whatever) between tables -->
- <xsl:apply-templates select="warnings"/>
-<!-- insert (whatever) between tables -->
- <xsl:apply-templates select="messages"/>
-<!-- insert HTML footer here -->
- </body>
-</html>
- </xsl:template>
-
- <xsl:template match="meta">
- <table id="meta" summary="Metadata concerning the page">
- <tbody>
- <tr><th scope="row">URL</th> <td><a><xsl:attribute name="href"><xsl:value-of select="uri"/></xsl:attribute></a></td></tr>
- <tr><th scope="row">Last Modified</th> <td><xsl:value-of select="modified"/></td></tr>
- <tr><th scope="row">Server</th> <td><xsl:value-of select="server"/></td></tr>
- <tr><th scope="row">Content-Length</th> <td><xsl:value-of select="size"/></td></tr>
- <tr><th scope="row">Encoding</th> <td><xsl:value-of select="encoding"/></td></tr>
- <tr><th scope="row">Doctype</th> <td><xsl:value-of select="doctype"/></td></tr>
- </tbody>
- </table>
- </xsl:template>
-
- <xsl:template match="warnings">
- <ul style="display: list">
- <xsl:apply-templates select="warning"/>
- </ul>
- </xsl:template>
-
- <xsl:template match="messages">
- <table id="errors" summary="Error messages">
- <thead>
- <tr>
- <th scope="col">Line</th>
- <th scope="col">Char</th>
- <th scope="col">Offset</th>
- <th scope="col">Message</th>
- </tr>
- </thead>
- <tbody>
- <xsl:apply-templates select="msg"/>
- </tbody>
- </table>
- </xsl:template>
-
- <xsl:template match="warning">
- <li><xsl:value-of select="text()"/></li>
- </xsl:template>
-
- <xsl:template match="msg">
- <tr>
- <td><xsl:value-of select="@line"/></td>
- <td><xsl:value-of select="@col"/></td>
- <td><xsl:value-of select="@offset"/></td>
- <td><xsl:value-of select="text()"/></td>
- </tr>
- </xsl:template>
-</xsl:stylesheet>