You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mj...@apache.org on 2007/02/26 11:53:09 UTC

svn commit: r511780 [1/3] - in /httpd/site/trunk: build.xml docs/security/vulnerabilities-oval.xml xdocs/stylesheets/httpd-oval.xsl

Author: mjc
Date: Mon Feb 26 02:53:08 2007
New Revision: 511780

URL: http://svn.apache.org/viewvc?view=rev&rev=511780
Log:
Create an experimental OVAL definition view of vulnerabilities based
off our httpd vulnerabilites database.  Based on a stylesheet (with 
edits) from Drew Buttner

Note that just like the other xslt we do to generate the html pages 
it doesn't work with the Sun JRE.  (Not figured out why yet as it
works just fine with IBM JRE)

Submitted by: Drew Buttner <abuttner mitre.org>
Reviewed by: mjc

Added:
    httpd/site/trunk/docs/security/vulnerabilities-oval.xml
    httpd/site/trunk/xdocs/stylesheets/httpd-oval.xsl
Modified:
    httpd/site/trunk/build.xml

Modified: httpd/site/trunk/build.xml
URL: http://svn.apache.org/viewvc/httpd/site/trunk/build.xml?view=diff&rev=511780&r1=511779&r2=511780
==============================================================================
--- httpd/site/trunk/build.xml (original)
+++ httpd/site/trunk/build.xml Mon Feb 26 02:53:08 2007
@@ -71,6 +71,8 @@
       <xslt destdir="${docs.src}/security" in="${docs.src}/security/vulnerabilities-httpd.xml" out="${docs.src}/security/vulnerabilities_22.xml" style="${docs.src}/stylesheets/securitydb.xsl">
       <param name="majorversion" expression="2.2"/>
     </xslt>
+      <xslt destdir="${docs.dest}/security" in="${docs.src}/security/vulnerabilities-httpd.xml" out="${docs.dest}/security/vulnerabilities-oval.xml" style="${docs.src}/stylesheets/httpd-oval.xsl">
+    </xslt>
   </target>
 
 </project>