- From: Thomas Gambet via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 12 Jan 2011 15:01:58 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2002/css-validator In directory hutz:/tmp/cvs-serv9051 Modified Files: web.xml validator.html.en build.xml Log Message: Vendor-specific extensions patch by Cyrille Moureaux Index: build.xml =================================================================== RCS file: /sources/public/2002/css-validator/build.xml,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- build.xml 18 Jun 2010 16:03:24 -0000 1.17 +++ build.xml 12 Jan 2011 15:01:56 -0000 1.18 @@ -51,20 +51,20 @@ <get dest="tmp/commons-collections-3.2.1-bin.tar.gz" src="http://www.apache.org/dist/commons/collections/binaries/commons-collections-3.2.1-bin.tar.gz" usetimestamp="true"/> <get dest="tmp/commons-lang-2.5-bin.tar.gz" src="http://www.apache.org/dist/commons/lang/binaries/commons-lang-2.5-bin.tar.gz" usetimestamp="true"/> <get dest="tmp/velocity-1.6.4.tar.gz" src="http://www.apache.org/dist/velocity/engine/1.6.4/velocity-1.6.4.tar.gz" usetimestamp="true"/> - <get dest="tmp/Xerces-J-bin.2.9.1.tar.gz" src="http://www.apache.org/dist/xerces/j/Xerces-J-bin.2.9.1.tar.gz" usetimestamp="true"/> + <get dest="tmp/Xerces-J-bin.2.10.0.tar.gz" src="http://www.apache.org/dist/xerces/j/Xerces-J-bin.2.10.0.tar.gz" usetimestamp="true"/> <untar compression="gzip" src="tmp/jigsaw_2.2.6.tar.gz" dest="tmp"/> <untar compression="gzip" src="tmp/commons-collections-3.2.1-bin.tar.gz" dest="tmp"/> <untar compression="gzip" src="tmp/commons-lang-2.5-bin.tar.gz" dest="tmp"/> <untar compression="gzip" src="tmp/velocity-1.6.4.tar.gz" dest="tmp"/> - <untar compression="gzip" src="tmp/Xerces-J-bin.2.9.1.tar.gz" dest="tmp"/> + <untar compression="gzip" src="tmp/Xerces-J-bin.2.10.0.tar.gz" dest="tmp"/> <copy file="tmp/Jigsaw/classes/jigsaw.jar" tofile="lib/jigsaw.jar"/> <copy file="tmp/commons-collections-3.2.1/commons-collections-3.2.1.jar" tofile="lib/commons-collections-3.2.1.jar"/> <copy file="tmp/commons-lang-2.5/commons-lang-2.5.jar" tofile="lib/commons-lang-2.5.jar"/> <copy file="tmp/velocity-1.6.4/velocity-1.6.4.jar" tofile="lib/velocity-1.6.4.jar"/> - <copy file="tmp/xerces-2_9_1/xercesImpl.jar" tofile="lib/xercesImpl.jar"/> - <copy file="tmp/xerces-2_9_1/xml-apis.jar" tofile="lib/xml-apis.jar"/> + <copy file="tmp/xerces-2_10_0/xercesImpl.jar" tofile="lib/xercesImpl.jar"/> + <copy file="tmp/xerces-2_10_0/xml-apis.jar" tofile="lib/xml-apis.jar"/> <get dest="lib/tagsoup-1.2.jar" src="http://home.ccil.org/~cowan/XML/tagsoup/tagsoup-1.2.jar"/> </target> Index: validator.html.en =================================================================== RCS file: /sources/public/2002/css-validator/validator.html.en,v retrieving revision 1.49 retrieving revision 1.50 diff -u -d -r1.49 -r1.50 --- validator.html.en 3 Mar 2010 19:29:27 -0000 1.49 +++ validator.html.en 12 Jan 2011 15:01:56 -0000 1.50 @@ -86,9 +86,7 @@ <th id="header_warning_uri"> <label for="warning_uri">Warnings :</label> </th> - <td - colspan="3" - headers="header_warning_uri"> + <td headers="header_warning_uri"> <select id="warning_uri" name="warning"> <option value="2">All</option> <option selected="selected" value="1">Normal report</option> @@ -96,6 +94,16 @@ <option value="no">No warnings</option> </select> </td> + <th id="header_vext_warning_uri"> + <label for"vext_warning_uri">Vendor Extensions: </label> + </th> + <td headers="header_vext_warning_uri"> + <select id="vext_warning_uri" name="vextwarning"> + <option value="">Default</option> + <option value="true">Warning</option> + <option value="false">Error</option> + </select> + </td> </tr> </table> </div><!-- item_contents --> @@ -160,12 +168,10 @@ </td> </tr> <tr> - <th id="header_warning_upload"> + <th id="header_warning_upload"> <label for="warning_upload">Warnings :</label> </th> - <td - colspan="3" - headers="header_warning_upload"> + <td headers="header_warning_upload"> <select id="warning_upload" name="warning"> <option value="2">All</option> <option selected="selected" value="1">Normal report</option> @@ -173,6 +179,16 @@ <option value="no">No warnings</option> </select> </td> + <th id="header_vext_warning_upload"> + <label for"vext_warning_upload">Vendor Extensions: </label> + </th> + <td headers="header_vext_warning_upload"> + <select id="vext_warning_upload" name="vextwarning"> + <option value="">Default</option> + <option value="true">Warning</option> + <option value="false">Error</option> + </select> + </td> </tr> </table> </div><!-- item_contents --> @@ -259,6 +275,16 @@ <option value="no">No warnings</option> </select> </td> + <th id="header_vext_warning_input"> + <label for"vext_warning_input">Vendor Extensions: </label> + </th> + <td headers="header_vext_warning_input"> + <select id="vext_warning_input" name="vextwarning"> + <option value="">Default</option> + <option value="true">Warning</option> + <option value="false">Error</option> + </select> + </td> </tr> </table> </div><!-- item_contents --> Index: web.xml =================================================================== RCS file: /sources/public/2002/css-validator/web.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- web.xml 19 Jan 2009 16:59:37 -0000 1.6 +++ web.xml 12 Jan 2011 15:01:56 -0000 1.7 @@ -8,6 +8,10 @@ <servlet> <servlet-name>validator</servlet-name> <servlet-class>org.w3c.css.servlet.CssValidator</servlet-class> + <init-param> + <param-name>vendorExtensionsAsWarnings</param-name> + <param-value>true</param-value> + </init-param> </servlet> <servlet-mapping>
Received on Wednesday, 12 January 2011 15:02:00 UTC