[xml/sgml-commit] r1725 - in /packages/w3c-markup-validator/trunk/debian: ./ audit/ patches/ source/
periapt-guest at users.alioth.debian.org
periapt-guest at users.alioth.debian.org
Tue Aug 17 16:12:26 UTC 2010
Author: periapt-guest
Date: Tue Aug 17 16:12:07 2010
New Revision: 1725
URL: http://svn.debian.org/wsvn/debian-xml-sgml/?sc=1&rev=1725
Log:
[svn-inject] Applying Debian modifications (1.1-1) to trunk
Added:
packages/w3c-markup-validator/trunk/debian/README.Debian
packages/w3c-markup-validator/trunk/debian/apache.conf
packages/w3c-markup-validator/trunk/debian/audit/
packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl (with props)
packages/w3c-markup-validator/trunk/debian/patches/
packages/w3c-markup-validator/trunk/debian/patches/mootools.patch
packages/w3c-markup-validator/trunk/debian/patches/series
packages/w3c-markup-validator/trunk/debian/patches/validator_conf_debianize.patch
packages/w3c-markup-validator/trunk/debian/rules (with props)
packages/w3c-markup-validator/trunk/debian/source/
packages/w3c-markup-validator/trunk/debian/source/format
packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.docs
Removed:
packages/w3c-markup-validator/trunk/debian/TODO
packages/w3c-markup-validator/trunk/debian/a.txt
packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.lintian-override
Modified:
packages/w3c-markup-validator/trunk/debian/changelog
packages/w3c-markup-validator/trunk/debian/control
packages/w3c-markup-validator/trunk/debian/copyright
Added: packages/w3c-markup-validator/trunk/debian/README.Debian
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/README.Debian?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/README.Debian (added)
+++ packages/w3c-markup-validator/trunk/debian/README.Debian Tue Aug 17 16:12:07 2010
@@ -1,0 +1,12 @@
+How the Debian version differs from upstream
+============================================
+1.) The directory structure as specified in validator.conf has been
+made conformant with Debian policy.
+Suggested post-installation tests
+=================================
+1.) Run /usr/lib/cgi-bin/w3c-markup-validator/check
+This should return an HTML page complaining that that type of document is not
+supported. It should not complain of syntax or configuration errors.
+2.) If online run /usr/lib/cgi-bin/w3c-markup-validator/check 'uri=http://www.periapt.co.uk'.
+This should return an HTML page confirming valid HTML.
+3.) lynx http://localhost/w3c-markup-validator and run any tests you can think of.
Added: packages/w3c-markup-validator/trunk/debian/apache.conf
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/apache.conf?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/apache.conf (added)
+++ packages/w3c-markup-validator/trunk/debian/apache.conf Tue Aug 17 16:12:07 2010
@@ -1,0 +1,7 @@
+ScriptAlias /w3c-markup-validator/check /usr/lib/cgi-bin/w3c-markup-validator/check
+Alias /w3c-markup-validator /usr/share/w3c-markup-validator/html
+
+<Location /w3c-markup-validator>
+ Options +Includes +MultiViews
+ AddHandler server-parsed .html
+</Location>
Added: packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl (added)
+++ packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl Tue Aug 17 16:12:07 2010
@@ -1,0 +1,70 @@
+#!/usr/bin/perl
+use strict;
+use warnings;
+use Carp;
+use Readonly;
+use Config::General;
+use Perl6::Slurp;
+
+Readonly my $TYPES_CONF => 'htdocs/config/types.conf';
+Readonly my $SGML_SOC => 'catalog/sgml.soc';
+Readonly my $XML_SOC => 'catalog/xml.soc';
+Readonly my $DEBIAN_CATALOG => '/usr/share/xml/xhtml/schema/dtd/catalog';
+
+Readonly my $W3C_TAG => 'w3c-markup-validator';
+Readonly my $DEBIAN_TAG => 'debian';
+
+if (! -d 'debian') {
+ croak 'Please run this from the main source directory';
+}
+
+if (! -r $TYPES_CONF) {
+ croak 'Could not find config file from w3c listing doctypes';
+}
+
+if (! -r $SGML_SOC) {
+ croak 'Could not find sgml.soc';
+}
+if (! -r $XML_SOC) {
+ croak 'Could not find xml.soc';
+}
+my %contents = ($W3C_TAG=>'');
+foreach my $catalog ($SGML_SOC, $XML_SOC) {
+ $contents{$W3C_TAG} .= slurp $catalog;
+}
+
+if (! -r $DEBIAN_CATALOG) {
+ croak 'Could not find debian catalog';
+}
+$contents{$DEBIAN_TAG} = slurp $DEBIAN_CATALOG;
+
+my $total = 0;
+my %matched = ($W3C_TAG=>0,$DEBIAN_TAG=>0);
+my %types_config = Config::General->new($TYPES_CONF)->getall;
+foreach my $doctype (keys %types_config) {
+ ++$total;
+ my $pubid = $types_config{$doctype}->{PubID};
+ my $regex = $pubid;
+ $regex =~ s{\s}{\\s}gxms;
+ foreach my $tag (keys %contents) {
+ if ($contents{$tag} =~ m{^PUBLIC\s+\"$regex\"\s+(\S+)$}xms) {
+ my $file = $1;
+ if (-r $file) {
+ print "$pubid : MATCHED in $tag catalog\n";
+ ++$matched{$tag};
+ }
+ else {
+ print "$pubid: File $file from $tag not found\n";
+ }
+ }
+ else {
+ print "$pubid : UNMATCHED in $tag catalog\n";
+ }
+ }
+}
+foreach my $tag (keys %contents) {
+ print "Matched $tag $matched{$tag} out of $total\n";
+}
+
+# Copyright 2010 Nicholas Bamber <nicholas at periapt.co.uk>
+# Distributed under the same terms as perl itself.
Propchange: packages/w3c-markup-validator/trunk/debian/audit/conf2catalogRec.pl
------------------------------------------------------------------------------
svn:executable = *
Modified: packages/w3c-markup-validator/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/changelog?rev=1725&op=diff
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/changelog (original)
+++ packages/w3c-markup-validator/trunk/debian/changelog Tue Aug 17 16:12:07 2010
@@ -1,11 +1,13 @@
-
w3c-markup-validator (1.1-1) unstable; urgency=low
- * New maintainer (Closes: #573497)
- * Upgraded to upstream version (Closes: #461021 and Closes: #437795)
+ TODO: update copyright
+ change ownerhip in control
+
+ * New maintainer rebuilt from first principles (Closes: #573497)
+ * Upgraded to upstream version 1.1 (Closes: #461021 and Closes: #437795)
* Fixed typo in README.debian (Closes: #549025)
- -- Nicholas Bamber <nicholas at periapt.co.uk> Wed, 21 Jul 2010 23:09:55 +0100
+ -- Nicholas Bamber <nicholas at periapt.co.uk> Fri, 30 Jul 2010 22:41:09 +0100
w3c-markup-validator (0.7.4-5.2) unstable; urgency=low
Modified: packages/w3c-markup-validator/trunk/debian/control
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/control?rev=1725&op=diff
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/control (original)
+++ packages/w3c-markup-validator/trunk/debian/control Tue Aug 17 16:12:07 2010
@@ -1,9 +1,9 @@
Source: w3c-markup-validator
Section: web
Priority: optional
-Maintainer: Nicholas Bamber (nicholas at periapt.co.uk)
+Maintainer: Nicholas Bamber <nicholas at periapt.co.uk>
Build-Depends: debhelper (>= 7.5.0)
-Build-Depends-Indep: sharutils, perl
+Build-Depends-Indep: sharutils, perl, lynx, libc-bin
Standards-Version: 3.9.1
Homepage: http://validator.w3.org/about.html
Vcs-Browser: http://github.com/periapt/w3c-markup-validator-1.1
@@ -11,8 +11,8 @@
Package: w3c-markup-validator
Architecture: all
-Depends: perl (>= 5.8), ${misc:Depends}, httpd-cgi, libwww-perl, liburi-perl, libhtml-template-perl (>= 2.6), libhtml-parser-perl (>= 3.60), libtext-iconv-perl, libset-intspan-perl, libnet-ip-perl, libconfig-general-perl (>= 2.32), sgml-data, w3c-dtd-xhtml (>= 1.1-5), libencode-hanextra-perl, libhtml-encoding-perl, libjson-perl, libxml-libxml-perl, libsgml-parser-opensp-perl
-Recommends: w3-dtd-mathml, libencode-jis2k-perl, libhtml-tidy-perl
+Depends: ${perl:Depends}, ${misc:Depends}, apache2, libwww-perl, liburi-perl, libhtml-template-perl (>= 2.6), libhtml-parser-perl (>= 3.60), libtext-iconv-perl, libset-intspan-perl, libnet-ip-perl, libconfig-general-perl (>= 2.32), w3c-dtd-xhtml, libencode-hanextra-perl, libhtml-encoding-perl, libjson-perl (>= 2.00), libxml-libxml-perl (>= 1.70), libsgml-parser-opensp-perl, libjs-mootools
+Recommends: libhtml-tidy-perl, w3c-sgml-lib
Description: W3C Markup Validator
This is a CGI script which lets you enter the URL of a web page which will
be then checked against a validating SGML parser for conformance to official
Modified: packages/w3c-markup-validator/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/copyright?rev=1725&op=diff
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/copyright (original)
+++ packages/w3c-markup-validator/trunk/debian/copyright Tue Aug 17 16:12:07 2010
@@ -1,79 +1,78 @@
-This package was debianized by Frederic Schutz <schutz at mathgen.ch> on
-Mon, 4 Nov 2002 22:14:00 +1100.
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=59
+Maintainer: http://validator.w3.org/feedback.html
+Source: http://validator.w3.org/dist/sgml-lib.tar.gz
+Name: sgml-lib
-It was downloaded from the URL http://validator.w3.org/validator.tar.gz,
-with some pieces coming from the project CVS at
-anonymous at dev.w3.org:/sources/public (see details on the page
-http://validator.w3.org/source/)
+Files: *
+Copyright 1994-2010, W3C(R) (MIT, ERCIM, KEIO)
+License: W3C-Software
-Upstream Authors: Gerald Oskoboiny <gerald at w3.org> and others
+Files: debian/*
+Copyright: 2010, Nicholas Bamber <nicholas at periapt.co.uk>
+License: Artistic
-Copyright: the source code for the W3C markup validation service is
-available under the terms of the W3C Software Copyright (compatible with
-the GNU GPL), which can be found at the URL
+License: W3C-Software
+ Permission to copy, modify, and distribute this software and its
+ documentation, with or without modification, for any purpose and without
+ fee or royalty is hereby granted, provided that you include the following on
+ ALL copies of the software and documentation or portions thereof, including
+ modifications:
+ .
+ * The full text of this NOTICE in a location viewable to users of the
+ redistributed or derivative work.
+ * Any pre-existing intellectual property disclaimers, notices, or terms
+ and conditions. If none exist, the W3C Software Short Notice
+ (http://www.w3.org/Consortium/Legal/2002/copyright-software-short-notice-20021231.html)
+ should be included (hypertext is preferred, text is permitted)
+ within the body of any redistributed or derivative code.
+ * Notice of any changes or modifications to the files, including the date
+ changes were made. (We recommend you provide URIs to the location from
+ which the code is derived.)
+ .
+ Disclaimers
+ .
+ THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
+ MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+ LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
+ PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE
+ ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+ .
+ COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
+ CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
+ DOCUMENTATION.
+ .
+ The name and trademarks of copyright holders may NOT be used in
+ advertising or publicity pertaining to the software without specific, written
+ prior permission. Title to copyright in this software and any associated
+ documentation will at all times remain with copyright holders.
+ .
+ Notes
+ .
+ This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
+ .
+ This formulation of W3C's notice and license became active on December 31
+ 2002. This version removes the copyright ownership notice such that this
+ license can be used with materials other than those owned by the W3C,
+ reflects that ERCIM is now a host of the W3C, includes references to this
+ specific dated version of the license, and removes the ambiguous grant of
+ "use". Otherwise, this version is the same as the
+ (http://www.w3.org/Consortium/Legal/copyright-software-19980720) previous
+ version and is written so as to preserve the
+ (http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses) Free
+ Software Foundation's assessment of GPL compatibility and
+ (http://www.opensource.org/licenses/W3C.php) OSI's certification
+ under the (http://www.opensource.org/docs/definition.php) Open Source
+ Definition.
- http://www.w3.org/Consortium/Legal/copyright-software-19980720
-
-and is reproduced below:
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian GNU/Linux systems, the complete text of the Artistic License
+ can be found in `/usr/share/common-licenses/Artistic'
+ .
+ By obtaining, using and/or copying this work, you (the licensee)
+ agree that you have read, understood, and will comply with the following
+ terms and conditions.
- W3C ® SOFTWARE NOTICE AND LICENSE
-
-
-License
-
-By obtaining, using and/or copying this work, you (the licensee)
-agree that you have read, understood, and will comply with the following
-terms and conditions.
-
-Permission to copy, modify, and distribute this software and its
-documentation, with or without modification, for any purpose and without
-fee or royalty is hereby granted, provided that you include the following on
-ALL copies of the software and documentation or portions thereof, including
-modifications:
-
- * The full text of this NOTICE in a location viewable to users of the
- redistributed or derivative work.
- * Any pre-existing intellectual property disclaimers, notices, or terms
- and conditions. If none exist, the W3C Software Short
- Notice should be included (hypertext is preferred, text is permitted)
- within the body of any redistributed or derivative code.
- * Notice of any changes or modifications to the files, including the
- date changes were made. (We recommend you provide URIs to the location from
- which the code is derived.)
-
-Disclaimers
-
-THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
-MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
-LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
-PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE
-ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
-
-COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
-DOCUMENTATION.
-
-The name and trademarks of copyright holders may NOT be used in
-advertising or publicity pertaining to the software without specific, written
-prior permission. Title to copyright in this software and any associated
-documentation will at all times remain with copyright holders.
-
-Notes
-
-This version: http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
-
-This formulation of W3C's notice and license became active on December 31
-2002. This version removes the copyright ownership notice such that this
-license can be used with materials other than those owned by the W3C,
-reflects that ERCIM is now a host of the W3C, includes references to this
-specific dated version of the license, and removes the ambiguous grant of
-"use". Otherwise, this version is the same as the previous version
-(http://www.w3.org/Consortium/Legal/copyright-software-19980720)
-and is written so as to preserve the Free Software Foundation's assessment of
-GPL compatibility
-(http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses)
-and OSI's certification (http://www.opensource.org/licenses/W3C.php)
-under the Open Source Definition
-(http://www.opensource.org/docs/definition.php).
-
Added: packages/w3c-markup-validator/trunk/debian/patches/mootools.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/patches/mootools.patch?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/patches/mootools.patch (added)
+++ packages/w3c-markup-validator/trunk/debian/patches/mootools.patch Tue Aug 17 16:12:07 2010
@@ -1,0 +1,15 @@
+Subject: Use Debian instance of mootools.js
+Forwarded: not-needed
+Author: Nicholas Bamber <nicholas at periapt.co.uk>
+Last-Update: 2010-08-17
+--- a/htdocs/header.html
++++ b/htdocs/header.html
+@@ -11,7 +11,7 @@
+ @import "<!--#echo var="relroot" -->style/base.css";
+ </style>
+ <!--#if expr="$includeJS = 1" -->
+- <script type="text/javascript" src="scripts/mootools.js"></script>
++ <script type="text/javascript" src="javascript/mootools.js"></script>
+ <script type="text/javascript" src="scripts/w3c-validator.js"></script>
+ <!--#endif -->
+ <meta name="keywords" content="HTML, HyperText Markup Language, Validation,
Added: packages/w3c-markup-validator/trunk/debian/patches/series
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/patches/series?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/patches/series (added)
+++ packages/w3c-markup-validator/trunk/debian/patches/series Tue Aug 17 16:12:07 2010
@@ -1,0 +1,2 @@
+mootools.patch
+validator_conf_debianize.patch
Added: packages/w3c-markup-validator/trunk/debian/patches/validator_conf_debianize.patch
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/patches/validator_conf_debianize.patch?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/patches/validator_conf_debianize.patch (added)
+++ packages/w3c-markup-validator/trunk/debian/patches/validator_conf_debianize.patch Tue Aug 17 16:12:07 2010
@@ -1,0 +1,49 @@
+Subject: Customize main config file
+Forwarded: not-needed
+Author: Nicholas Bamber <nicholas at periapt.co.uk>
+Last-Update: 2010-08-14
+--- a/htdocs/config/validator.conf
++++ b/htdocs/config/validator.conf
+@@ -19,11 +19,11 @@
+ #
+ # Base path. Defaults to the value of the W3C_VALIDATOR_HOME environment
+ # variable or /usr/local/validator if the variable does not exist.
+- #Base = /usr/local/validator
++ Base = /usr/share/w3c-markup-validator
+
+ #
+ # Location of template files
+- Templates = $Base/share/templates
++ Templates = $Base/templates
+
+ #
+ # Directory where to store cached templates. Relative paths are
+@@ -34,12 +34,12 @@
+ #Cache = validator
+
+ # configuration file for HTML Tidy Module, if available
+- TidyConf = $Base/htdocs/config/tidy.conf
++ TidyConf = /etc/w3c/tidy.conf
+
+ <SGML>
+ #
+ # The SGML Library Path.
+- Library = $Base/htdocs/sgml-lib
++ Library = /usr/share/xml/xhtml/schema/dtd
+ </SGML>
+ </Paths>
+
+@@ -77,11 +77,11 @@
+
+ #
+ # Email address of the maintainer of this service.
+-Maintainer = www-validator at w3.org
++Maintainer = webmaster at localhost
+
+ #
+ # The "Home Page" for the service. Make sure this ends with a slash.
+-Home Page = http://validator.w3.org/
++Home Page = http://localhost/w3c-markup-validator/
+
+ # Localization
+ # only English available for now
Added: packages/w3c-markup-validator/trunk/debian/rules
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/rules?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/rules (added)
+++ packages/w3c-markup-validator/trunk/debian/rules Tue Aug 17 16:12:07 2010
@@ -1,0 +1,43 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+PACKAGE = $(shell dh_listpackages)
+CONFIG_DIR = etc/w3c
+CGIBIN_DIR = usr/lib/cgi-bin/$(PACKAGE)
+SHARED_DIR = usr/share/$(PACKAGE)
+
+%:
+ dh $@
+
+override_dh_install:
+ dh_install httpd/cgi-bin/check ${CGIBIN_DIR}
+ dh_install htdocs/config/* ${CONFIG_DIR}
+ dh_install share/templates/en_US/* ${SHARED_DIR}/templates/en_US
+ dh_install debian/apache.conf ${CONFIG_DIR}
+ dh_install htdocs/*.html ${SHARED_DIR}/html
+ dh_install htdocs/*.css ${SHARED_DIR}/html
+ dh_install htdocs/style/*.css ${SHARED_DIR}/html/style
+ dh_install htdocs/dev/tests/* ${SHARED_DIR}/html/dev/tests
+ dh_install htdocs/docs/* ${SHARED_DIR}/html/docs
+ dh_install htdocs/source/* ${SHARED_DIR}/html/source
+ dh_install htdocs/images/*.png ${SHARED_DIR}/html/images
+ dh_install htdocs/images/*.gif ${SHARED_DIR}/html/images
+ dh_install htdocs/images/*.jpg ${SHARED_DIR}/html/images
+ dh_install htdocs/scripts/w3c-validator.js ${SHARED_DIR}/html/scripts
+
+override_dh_installdocs:
+ mkdir -p debian/tmp
+ lynx -dump -nolist htdocs/todo.html | iconv -f latin1 > debian/tmp/TODO
+ lynx -dump -nolist htdocs/whatsnew.html | iconv -f latin1 > debian/tmp/changelog
+ lynx -dump -nolist htdocs/about.html | iconv -f latin1 > debian/tmp/README
+ dh_installdocs
+
+
Propchange: packages/w3c-markup-validator/trunk/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: packages/w3c-markup-validator/trunk/debian/source/format
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/source/format?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/source/format (added)
+++ packages/w3c-markup-validator/trunk/debian/source/format Tue Aug 17 16:12:07 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)
Added: packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.docs
URL: http://svn.debian.org/wsvn/debian-xml-sgml/packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.docs?rev=1725&op=file
==============================================================================
--- packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.docs (added)
+++ packages/w3c-markup-validator/trunk/debian/w3c-markup-validator.docs Tue Aug 17 16:12:07 2010
@@ -1,0 +1,3 @@
+debian/tmp/TODO
+debian/tmp/README
+debian/tmp/changelog
More information about the debian-xml-sgml-commit
mailing list