DTD document name now includes a version number.
XML output displayed by sadf -x points at the DTD document
which applies to this specific version.
Mail from Frank Ch Eigler (fche@redhat.com) 26/09/2012:
From some brief testing, it appears as though sadf's xml output format
has changed a few times over time, but the same xml dtd URL is being
emitted: http://pagesperso-orange.fr/sebastien.godard/sysstat.dtd If
indeed the dtd has changed over time, wouldn't it be wise to keep
newer versions tagged with a version number in the URLs, so that
URL-based xml validation would succeed well into the future?
* [Peter Schiffer]: systemd support added.
* [Peter Schiffer]: Sysstat init script updated to make it
more conforming to LSB.
+ * XML DTD document name is now tagged with a version number.
* sar, sadf and mpstat manual pages updated.
* DTD and XSD documents updated.
* Cosmetic change in sadf -H output.
printf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
printf("<!DOCTYPE sysstat PUBLIC \"DTD v%s sysstat //EN\"\n",
XML_DTD_VERSION);
- printf("\"http://pagesperso-orange.fr/sebastien.godard/sysstat.dtd\">\n");
+ printf("\"http://pagesperso-orange.fr/sebastien.godard/sysstat-%s.dtd\">\n",
+ XML_DTD_VERSION);
xprintf(*tab, "<sysstat>");