You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tf...@apache.org on 2010/02/17 11:51:31 UTC

svn commit: r910908 - in /db/torque/torque4/trunk/torque-site: ./ src/site/ src/site/xdoc/documentation/modules/generator/ src/site/xdoc/documentation/modules/generator/reference/ src/site/xdoc/documentation/modules/generator/reports/

Author: tfischer
Date: Wed Feb 17 10:51:31 2010
New Revision: 910908

URL: http://svn.apache.org/viewvc?rev=910908&view=rev
Log:
- Added reports for generator for main site
- added navigation for generator for main site
- moved two generator pages from reference to the generator main dir

Added:
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/dependencies.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/gettingStarted.xml
      - copied unchanged from r910869, db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/gettingStarted.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/index.xml
      - copied unchanged from r910869, db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/checkstyle.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/cpd.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/findbugs.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/index.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/jdepend-report.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/pmd.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/surefire-report.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/taglist.xml
Removed:
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/gettingStarted.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml
Modified:
    db/torque/torque4/trunk/torque-site/pom.xml
    db/torque/torque4/trunk/torque-site/src/site/site.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=910908&r1=910907&r2=910908&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/pom.xml (original)
+++ db/torque/torque4/trunk/torque-site/pom.xml Wed Feb 17 10:51:31 2010
@@ -74,26 +74,62 @@
             <configuration>
               <tasks>
                 <mkdir dir="${basedir}/target/runtime-site" />
+                <mkdir dir="${basedir}/target/generator-site" />
+                <mkdir dir="${basedir}/target/templates-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>
+                <copy todir="${basedir}/target/generator-site">
+                  <fileset dir="${basedir}/../torque-generator/target/site">
+                    <include name="*.html"/>
+                  </fileset>
+                  <mapper type="glob" from="*.html" to="*.xml"/>
+                </copy>
+                <copy todir="${basedir}/target/templates-site">
+                  <fileset dir="${basedir}/../torque-templates/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>
+                <replace dir="${basedir}/target/generator-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>
+                <replace dir="${basedir}/target/templates-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 file="${basedir}/target/generator-site/cpd.xml">
+                  <replacetoken><![CDATA[<table class="bodyTable"></p>]]></replacetoken>
+                  <replacevalue><![CDATA[</table></p>]]></replacevalue>
+                </replace>
+                <replace file="${basedir}/target/templates-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>
+                <replace file="${basedir}/target/generator-site/surefire-report.xml">
+                  <replacetoken><![CDATA[elm &&]]></replacetoken>
+                  <replacevalue><![CDATA[!elm) return; if(]]></replacevalue>
+                </replace>
+                <replace file="${basedir}/target/templates-site/surefire-report.xml">
+                  <replacetoken><![CDATA[elm &&]]></replacetoken>
+                  <replacevalue><![CDATA[!elm) return; if(]]></replacevalue>
+                </replace>
               </tasks>
             </configuration>
             <goals>
@@ -105,6 +141,7 @@
             <phase>post-site</phase>
             <configuration>
               <tasks>
+                <!-- runtime reports -->
                 <loadfile property="runtime.dependencies"
                     srcFile="${basedir}/target/runtime-site-content/dependencies.xml"/>
                 <replace value="${runtime.dependencies}"
@@ -153,7 +190,57 @@
                     file="${basedir}/target/site/documentation/modules/runtime/reports/pmd.html">
                   <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
                 </replace>
+                <!-- generator reports -->
+                <loadfile property="generator.dependencies"
+                    srcFile="${basedir}/target/generator-site-content/dependencies.xml"/>
+                <replace value="${generator.dependencies}"
+                    file="${basedir}/target/site/documentation/modules/generator/dependencies.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.jdepend"
+                    srcFile="${basedir}/target/generator-site-content/jdepend-report.xml"/>
+                <replace value="${generator.jdepend}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/jdepend-report.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.checkstyle"
+                    srcFile="${basedir}/target/generator-site-content/checkstyle.xml"/>
+                <replace value="${generator.checkstyle}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/checkstyle.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.surefire"
+                    srcFile="${basedir}/target/generator-site-content/surefire-report.xml"/>
+                <replace value="${generator.surefire}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/surefire-report.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.taglist"
+                    srcFile="${basedir}/target/generator-site-content/taglist.xml"/>
+                <replace value="${generator.taglist}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/taglist.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.findbugs"
+                    srcFile="${basedir}/target/generator-site-content/findbugs.xml"/>
+                <replace value="${generator.findbugs}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/findbugs.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.cpd"
+                    srcFile="${basedir}/target/generator-site-content/cpd.xml"/>
+                <replace value="${generator.cpd}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/cpd.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="generator.pmd"
+                    srcFile="${basedir}/target/generator-site-content/pmd.xml"/>
+                <replace value="${generator.pmd}"
+                    file="${basedir}/target/site/documentation/modules/generator/reports/pmd.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
                 
+                <!-- runtime -->
                 <copy todir="${basedir}/target/site/documentation/modules/runtime/cobertura">
                   <fileset dir="${basedir}/../torque-runtime/target/site/cobertura" />
                 </copy>
@@ -169,6 +256,22 @@
                 <copy todir="${basedir}/target/site/documentation/modules/runtime/xref-test">
                   <fileset dir="${basedir}/../torque-runtime/target/site/xref-test" />
                 </copy>
+                <!-- generator -->
+                <copy todir="${basedir}/target/site/documentation/modules/generator/cobertura">
+                  <fileset dir="${basedir}/../torque-generator/target/site/cobertura" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/generator/apidocs">
+                  <fileset dir="${basedir}/../torque-generator/target/site/apidocs" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/generator/testapidocs">
+                  <fileset dir="${basedir}/../torque-generator/target/site/testapidocs" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/generator/xref">
+                  <fileset dir="${basedir}/../torque-generator/target/site/xref" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/generator/xref-test">
+                  <fileset dir="${basedir}/../torque-generator/target/site/xref-test" />
+                </copy>
               </tasks>
             </configuration>
             <goals>
@@ -195,6 +298,11 @@
               <stylesheet>src/site/xslt/body-content.xsl</stylesheet>
               <outputDir>target/runtime-site-content</outputDir>
             </transformationSet>
+            <transformationSet>
+              <dir>target/generator-site</dir>
+              <stylesheet>src/site/xslt/body-content.xsl</stylesheet>
+              <outputDir>target/generator-site-content</outputDir>
+            </transformationSet>
           </transformationSets>
         </configuration>
       </plugin>

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=910908&r1=910907&r2=910908&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/site.xml (original)
+++ db/torque/torque4/trunk/torque-site/src/site/site.xml Wed Feb 17 10:51:31 2010
@@ -37,7 +37,29 @@
       <item name="Overview"              href="/documentation/index.html"/>
       <item name="Modules"               href="/documentation/modules.html">
         <item name="Generator"           href="/documentation/modules/generator/index.html" collapse="true">
-          <item name="dummy"/>
+          <item name="Getting started"   href="/documentation/modules/generator/gettingStarted.html"/>
+          <item name="Reference"         href="/documentation/modules/runtime/reference/index.html" collapse="true">
+            <item name="Concepts"        href="/documentation/modules/generator/reference/concepts.html"/>
+            <item name="Configuration"   href="/documentation/modules/generator/reference/configuration.html"/>
+            <item name="Internals"       href="/documentation/modules/generator/reference/internals.html" collapse="true">
+              <item name="Generator Types" href="/documentation/modules/generator/reference/internals/generatorTypes.html"/>
+            </item>
+          </item>
+          <item name="Dependencies"      href="/documentation/modules/generator/dependencies.html"/>
+          <item name="Project Reports"   href="/documentation/modules/generator/reports/index.html" collapse="true">
+            <item name="Metrics"         href="/documentation/modules/generator/reports/jdepend-report.html"/>
+            <item name="JavaDocs"        href="/documentation/modules/generator/apidocs/index.html" target="_blank" />
+            <item name="Test JavaDocs"   href="/documentation/modules/generator/testapidocs/index.html" target="_blank" />
+            <item name="Source Xref"     href="/documentation/modules/generator/xref/index.html" target="_blank" />
+            <item name="Test Xref"       href="/documentation/modules/generator/xref-test/index.html" target="_blank" />
+            <item name="Tag List"        href="/documentation/modules/generator/reports/taglist.html"/>
+            <item name="Checkstyle"      href="/documentation/modules/generator/reports/checkstyle.html"/>
+            <item name="Copy-Paste"      href="/documentation/modules/generator/reports/cpd.html"/>
+            <item name="PMD"             href="/documentation/modules/generator/reports/pmd.html"/>
+            <item name="FindBugs"        href="/documentation/modules/generator/reports/findbugs.html"/>
+            <item name="Unit Tests"      href="/documentation/modules/generator/reports/surefire-report.html"/>
+            <item name="Test Coverage"   href="/documentation/modules/generator/cobertura/index.html" target="_blank"/>
+          </item>
         </item>
         <item name="Maven 2 Plugin"      href="/documentation/modules/maven2-plugin/index.html" collapse="true">
           <item name="dummy"/>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/dependencies.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/dependencies.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/dependencies.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/dependencies.xml Wed Feb 17 10:51:31 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 Generator - Dependencies</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/checkstyle.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/checkstyle.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/checkstyle.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/checkstyle.xml Wed Feb 17 10:51:31 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 Generator - Checkstyle</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/cpd.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/cpd.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/cpd.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/cpd.xml Wed Feb 17 10:51:31 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 Generator - CPD</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/findbugs.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/findbugs.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/findbugs.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/findbugs.xml Wed Feb 17 10:51:31 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 Generator - Findbugs</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/index.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/index.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/index.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/index.xml Wed Feb 17 10:51:31 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 Generator - Reports</title>
+  </properties>
+
+  <body>
+
+    <section name="Torque Generator">
+      <p>
+        This folder contains various reports for the Torque generator module.
+      </p>      
+    </section>
+
+  </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/jdepend-report.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/jdepend-report.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/jdepend-report.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/jdepend-report.xml Wed Feb 17 10:51:31 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 Generator - Metrics</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/pmd.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/pmd.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/pmd.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/pmd.xml Wed Feb 17 10:51:31 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 Generator - PMD</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/surefire-report.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/surefire-report.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/surefire-report.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/surefire-report.xml Wed Feb 17 10:51:31 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 Generator - Unit Tests</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/taglist.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/taglist.xml?rev=910908&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/taglist.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reports/taglist.xml Wed Feb 17 10:51:31 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 Generator - Tag List</title>
+ </properties>
+
+ <body>
+  @MERGEPOINT_BODY_CONTENT@
+ </body>
+</document>



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org