Author: tfischer
Date: Sat Feb 13 10:50:21 2010
New Revision: 909788
URL: http://svn.apache.org/viewvc?rev=909788&view=rev
Log:
- pull runtime reports over
- add distribution management part from parent site
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/dependencies.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/checkstyle.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/cpd.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/findbugs.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/index.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/jdepend-report.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/pmd.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/surefire-report.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/taglist.xml
db/torque/torque4/trunk/torque-site/src/site/xslt/
db/torque/torque4/trunk/torque-site/src/site/xslt/body-content.xsl
Removed:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/previous-releases.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/torque-3.2.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/torque-3.3.xml
Modified:
db/torque/torque4/trunk/torque-site/pom.xml
db/torque/torque4/trunk/torque-site/src/site/site.xml
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/index.xml
Modified: db/torque/torque4/trunk/torque-site/pom.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/pom.xml?rev=909788&r1=909787&r2=909788&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/pom.xml (original)
+++ db/torque/torque4/trunk/torque-site/pom.xml Sat Feb 13 10:50:21 2010
@@ -33,12 +33,23 @@
<artifactId>torque-site</artifactId>
<packaging>pom</packaging>
<name>Torque Site</name>
+ <!-- prevent the site plugin from converting absolute links to relative ones
-->
+ <url>http://dummy.apache.org</url>
+ <distributionManagement>
+ <site>
+ <id>apache.db.torque.site</id>
+ <name>Apache DB Torque Site</name>
+
<url>scp://people.apache.org/www/db.apache.org/torque/releases/torque-4.0</url>
+ </site>
+ </distributionManagement>
+
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changes-plugin</artifactId>
+ <version>2.3</version>
<reportSets>
<reportSet>
<reports>
@@ -47,7 +58,147 @@
</reportSet>
</reportSets>
</plugin>
+ <!--report>maven-linkcheck-plugin</report-->
</plugins>
</reporting>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>process-other-sites</id>
+ <phase>pre-site</phase>
+ <configuration>
+ <tasks>
+ <mkdir dir="${basedir}/target/runtime-site" />
+ <copy todir="${basedir}/target/runtime-site">
+ <fileset dir="${basedir}/../torque-runtime/target/site">
+ <include name="*.html"/>
+ </fileset>
+ <mapper type="glob" from="*.html" to="*.xml"/>
+ </copy>
+ <!-- replace doctype headers because these cannot be resolved
-->
+ <replace dir="${basedir}/target/runtime-site">
+ <replacetoken><![CDATA[<!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">]]></replacetoken>
+ </replace>
+ <!-- fix broken xhtml in cpd report -->
+ <replace file="${basedir}/target/runtime-site/cpd.xml">
+ <replacetoken><![CDATA[<table
class="bodyTable"></p>]]></replacetoken>
+ <replacevalue><![CDATA[</table></p>]]></replacevalue>
+ </replace>
+ <!-- replace && in javascript in surefire -->
+ <replace
file="${basedir}/target/runtime-site/surefire-report.xml">
+ <replacetoken><![CDATA[elm &&]]></replacetoken>
+ <replacevalue><![CDATA[!elm) return; if(]]></replacevalue>
+ </replace>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ <execution>
+ <id>merge-content</id>
+ <phase>post-site</phase>
+ <configuration>
+ <tasks>
+ <loadfile property="runtime.dependencies"
+
srcFile="${basedir}/target/runtime-site-content/dependencies.xml"/>
+ <replace value="${runtime.dependencies}"
+
file="${basedir}/target/site/documentation/modules/runtime/dependencies.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.jdepend"
+
srcFile="${basedir}/target/runtime-site-content/jdepend-report.xml"/>
+ <replace value="${runtime.jdepend}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/jdepend-report.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.checkstyle"
+
srcFile="${basedir}/target/runtime-site-content/checkstyle.xml"/>
+ <replace value="${runtime.checkstyle}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/checkstyle.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.surefire"
+
srcFile="${basedir}/target/runtime-site-content/surefire-report.xml"/>
+ <replace value="${runtime.surefire}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/surefire-report.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.taglist"
+
srcFile="${basedir}/target/runtime-site-content/taglist.xml"/>
+ <replace value="${runtime.taglist}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/taglist.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.findbugs"
+
srcFile="${basedir}/target/runtime-site-content/findbugs.xml"/>
+ <replace value="${runtime.findbugs}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/findbugs.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.cpd"
+ srcFile="${basedir}/target/runtime-site-content/cpd.xml"/>
+ <replace value="${runtime.cpd}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/cpd.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+ <loadfile property="runtime.pmd"
+ srcFile="${basedir}/target/runtime-site-content/pmd.xml"/>
+ <replace value="${runtime.pmd}"
+
file="${basedir}/target/site/documentation/modules/runtime/reports/pmd.html">
+ <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+ </replace>
+
+ <copy
todir="${basedir}/target/site/documentation/modules/runtime/cobertura">
+ <fileset
dir="${basedir}/../torque-runtime/target/site/cobertura" />
+ </copy>
+ <copy
todir="${basedir}/target/site/documentation/modules/runtime/apidocs">
+ <fileset
dir="${basedir}/../torque-runtime/target/site/apidocs" />
+ </copy>
+ <copy
todir="${basedir}/target/site/documentation/modules/runtime/testapidocs">
+ <fileset
dir="${basedir}/../torque-runtime/target/site/testapidocs" />
+ </copy>
+ <copy
todir="${basedir}/target/site/documentation/modules/runtime/xref">
+ <fileset dir="${basedir}/../torque-runtime/target/site/xref"
/>
+ </copy>
+ <copy
todir="${basedir}/target/site/documentation/modules/runtime/xref-test">
+ <fileset
dir="${basedir}/../torque-runtime/target/site/xref-test" />
+ </copy>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>xml-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>transform</goal>
+ </goals>
+ <phase>site</phase>
+ </execution>
+ </executions>
+ <configuration>
+ <transformationSets>
+ <transformationSet>
+ <dir>target/runtime-site</dir>
+ <stylesheet>src/site/xslt/body-content.xsl</stylesheet>
+ <outputDir>target/runtime-site-content</outputDir>
+ </transformationSet>
+ </transformationSets>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+
</project>
Modified: db/torque/torque4/trunk/torque-site/src/site/site.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/site.xml?rev=909788&r1=909787&r2=909788&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/site.xml (original)
+++ db/torque/torque4/trunk/torque-site/src/site/site.xml Sat Feb 13 10:50:21
2010
@@ -20,6 +20,8 @@
<item name="Issue tracker" href="/issue-tracking.html"/>
<item name="Mailing lists" href="/mail-lists.html"/>
<item name="Tools" href="/tools/index.html" />
+ <item name="License" href="/license.html"/>
+ <item name="Team" href="/team-list.html"/>
<item name="Developer Information" href="/developer-info/index.html"
collapse="true">
<item name="Subversion / CVS"
href="/developer-info/subversion.html"/>
<item name="Test project"
href="/developer-info/test-project.html"/>
@@ -33,30 +35,44 @@
<menu name="Module Documentation">
<item name="Overview" href="/documentation/index.html"/>
- <item name="Torque 3.3" href="/documentation/torque-3.3.html">
- <item name="Generator"
href="/releases/torque-3.3/generator/index.html" collapse="true">
+ <item name="Modules" href="/documentation/modules.html">
+ <item name="Generator"
href="/documentation/modules/generator/index.html" collapse="true">
<item name="dummy"/>
</item>
- <item name="Maven 1 Plugin"
href="/releases/torque-3.3/maven-plugin/index.html" collapse="true">
+ <item name="Maven 2 Plugin"
href="/documentation/modules/maven2-plugin/index.html" collapse="true">
<item name="dummy"/>
</item>
- <item name="Maven 2 Plugin"
href="/releases/torque-3.3/maven2-plugin/index.html" target="_blank"/>
- <item name="Runtime"
href="/releases/torque-3.3/runtime/index.html" collapse="true">
- <item name="dummy"/>
- </item>
- <item name="Tutorial"
href="/releases/torque-3.3/tutorial/index.html" collapse="true">
- <item name="dummy"/>
- </item>
- <item name="Village"
href="/releases/torque-3.3/village/index.html" collapse="true">
- <item name="dummy"/>
+ <item name="Runtime"
href="/documentation/modules/runtime/index.html" collapse="true">
+ <item name="Reference"
href="/documentation/modules/runtime/reference/index.html" collapse="true">
+ <item name="Initialisation"
href="/documentation/modules/runtime/reference/initialisation-configuration.html"/>
+ <item name="Reading from the DB"
href="/documentation/modules/runtime/reference/read-from-db.html"/>
+ <item name="Writing to the DB"
href="/documentation/modules/runtime/reference/write-to-db.html"/>
+ <item name="Extending classes"
href="/documentation/modules/runtime/reference/extend-classes.html"/>
+ <item name="Connections"
href="/documentation/modules/runtime/reference/connections-transactions.html"/>
+ <item name="Managers and Cache"
href="/documentation/modules/runtime/reference/managers-cache.html"/>
+ <item name="Beans"
href="/documentation/modules/runtime/reference/beans.html"/>
+ <item name="Relevant classes"
href="/documentation/modules/runtime/reference/relevant-classes.html"/>
+ <item name="Supporting a new DB"
href="/documentation/modules/runtime/reference/new-database-support.html"/>
+ </item>
+ <item name="Dependencies"
href="/documentation/modules/runtime/dependencies.html"/>
+ <item name="Project Reports"
href="/documentation/modules/runtime/reports/index.html" collapse="true">
+ <item name="Metrics"
href="/documentation/modules/runtime/reports/jdepend-report.html"/>
+ <item name="JavaDocs"
href="/documentation/modules/runtime/apidocs/index.html" target="_blank" />
+ <item name="Test JavaDocs"
href="/documentation/modules/runtime/testapidocs/index.html" target="_blank" />
+ <item name="Source Xref"
href="/documentation/modules/runtime/xref/index.html" target="_blank" />
+ <item name="Test Xref"
href="/documentation/modules/runtime/xref-test/index.html" target="_blank" />
+ <item name="Tag List"
href="/documentation/modules/runtime/reports/taglist.html"/>
+ <item name="Checkstyle"
href="/documentation/modules/runtime/reports/checkstyle.html"/>
+ <item name="Copy-Paste"
href="/documentation/modules/runtime/reports/cpd.html"/>
+ <item name="PMD"
href="/documentation/modules/runtime/reports/pmd.html"/>
+ <item name="FindBugs"
href="/documentation/modules/runtime/reports/findbugs.html"/>
+ <item name="Unit Tests"
href="/documentation/modules/runtime/reports/surefire-report.html"/>
+ <item name="Test Coverage"
href="/documentation/modules/runtime/cobertura/index.html" target="_blank"/>
+ </item>
</item>
</item>
- <item name="Previous releases"
href="/documentation/previous-releases.html" collapse="true">
- <!-- The following href attributes need to be absolute links,
- Otherwise they will not work in an archived version of the site.
-->
- <item name="Torque 3.2"
href="http://db.apache.org/torque/releases/torque-3.2/index.html"
target="_blank"/>
- <item name="Torque 3.1.1"
href="http://db.apache.org/torque/releases/torque-3.1.1/index.html"
target="_blank"/>
- <item name="Torque 3.1"
href="http://db.apache.org/torque/releases/torque-3.1/index.html"
target="_blank"/>
+ <item name="Tutorial"
href="/documentation/tutorial/index.html" collapse="true">
+ <item name="dummy"/>
</item>
</menu>
@@ -76,8 +92,15 @@
<item name="Avalon Component"
href="/version-specific/other-howtos/avalon-howto.html"/>
</item>
</menu>
-
- <menu ref="reports"/>
+
+ <menu name="Previous releases">
+ <!-- The following href attributes need to be absolute links,
+ Otherwise they will not work in an archived version of the site. -->
+ <item name="Torque 3.3"
href="http://db.apache.org/torque/releases/torque-3.3/index.html"
target="_blank"/>
+ <item name="Torque 3.2"
href="http://db.apache.org/torque/releases/torque-3.2/index.html"
target="_blank"/>
+ <item name="Torque 3.1.1"
href="http://db.apache.org/torque/releases/torque-3.1.1/index.html"
target="_blank"/>
+ <item name="Torque 3.1"
href="http://db.apache.org/torque/releases/torque-3.1/index.html"
target="_blank"/>
+ </menu>
</body>
</project>
\ No newline at end of file
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/dependencies.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/dependencies.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/dependencies.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/dependencies.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Dependencies</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Modified:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/index.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/index.xml?rev=909788&r1=909787&r2=909788&view=diff
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/index.xml
(original)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/index.xml
Sat Feb 13 10:50:21 2010
@@ -21,7 +21,7 @@
<document>
<properties>
- <title>Torque - Runtime Documentation</title>
+ <title>Torque Runtime - Documentation</title>
<author email="[email protected]">Jason van Zyl</author>
<author email="[email protected]">Martin Poeschl</author>
<author email="[email protected]">Scott Eade</author>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/checkstyle.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/checkstyle.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/checkstyle.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/checkstyle.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Checkstyle</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/cpd.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/cpd.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/cpd.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/cpd.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - CPD</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/findbugs.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/findbugs.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/findbugs.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/findbugs.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Findbugs</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/index.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/index.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/index.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/index.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,36 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+
+ <properties>
+ <title>Torque Runtime - Reports</title>
+ </properties>
+
+ <body>
+
+ <section name="Torque Runtime">
+ <p>
+ This folder contains various reports for the Torque runtime module.
+ </p>
+ </section>
+
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/jdepend-report.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/jdepend-report.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/jdepend-report.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/jdepend-report.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Metrics</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/pmd.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/pmd.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/pmd.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/pmd.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - PMD</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/surefire-report.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/surefire-report.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/surefire-report.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/surefire-report.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Unit Tests</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added:
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/taglist.xml
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/taglist.xml?rev=909788&view=auto
==============================================================================
---
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/taglist.xml
(added)
+++
db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/runtime/reports/taglist.xml
Sat Feb 13 10:50:21 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+
+<document>
+ <properties>
+ <title>Torque Runtime - Tag List</title>
+ </properties>
+
+ <body>
+ @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>
Added: db/torque/torque4/trunk/torque-site/src/site/xslt/body-content.xsl
URL:
http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xslt/body-content.xsl?rev=909788&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xslt/body-content.xsl (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xslt/body-content.xsl Sat Feb
13 10:50:21 2010
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements. See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership. The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License. You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ KIND, either express or implied. See the License for the
+ specific language governing permissions and limitations
+ under the License.
+-->
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:xhtml="http://www.w3.org/1999/xhtml">
+
+
+ <xsl:output method="xml" encoding="UTF-8" omit-xml-declaration="yes" />
+
+ <xsl:template match="@*|node()">
+ <xsl:apply-templates/>
+ </xsl:template>
+
+ <xsl:template match="xhtml:d...@id='contentBox']">
+ <xsl:apply-templates mode="copy"/>
+ </xsl:template>
+
+ <xsl:template match="@*|node()" mode="copy">
+ <xsl:copy>
+ <xsl:apply-templates select="@*|node()" mode="copy"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>
\ No newline at end of file
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]