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 15:13:21 UTC

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

Author: tfischer
Date: Wed Feb 17 14:13:20 2010
New Revision: 910985

URL: http://svn.apache.org/viewvc?rev=910985&view=rev
Log:
- created generator documentation index page
- templates reports are now automatically transferred to main page

Added:
    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/templates/dependencies.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/checkstyle.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/cpd.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/findbugs.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/index.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/jdepend-report.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/pmd.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/surefire-report.xml
    db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/taglist.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=910985&r1=910984&r2=910985&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/pom.xml (original)
+++ db/torque/torque4/trunk/torque-site/pom.xml Wed Feb 17 14:13:20 2010
@@ -239,6 +239,55 @@
                     file="${basedir}/target/site/documentation/modules/generator/reports/pmd.html">
                   <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
                 </replace>
+                <!-- templates reports -->
+                <loadfile property="templates.dependencies"
+                    srcFile="${basedir}/target/templates-site-content/dependencies.xml"/>
+                <replace value="${templates.dependencies}"
+                    file="${basedir}/target/site/documentation/modules/templates/dependencies.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.jdepend"
+                    srcFile="${basedir}/target/templates-site-content/jdepend-report.xml"/>
+                <replace value="${templates.jdepend}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/jdepend-report.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.checkstyle"
+                    srcFile="${basedir}/target/templates-site-content/checkstyle.xml"/>
+                <replace value="${templates.checkstyle}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/checkstyle.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.surefire"
+                    srcFile="${basedir}/target/templates-site-content/surefire-report.xml"/>
+                <replace value="${templates.surefire}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/surefire-report.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.taglist"
+                    srcFile="${basedir}/target/templates-site-content/taglist.xml"/>
+                <replace value="${templates.taglist}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/taglist.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.findbugs"
+                    srcFile="${basedir}/target/templates-site-content/findbugs.xml"/>
+                <replace value="${templates.findbugs}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/findbugs.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.cpd"
+                    srcFile="${basedir}/target/templates-site-content/cpd.xml"/>
+                <replace value="${templates.cpd}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/cpd.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
+                <loadfile property="templates.pmd"
+                    srcFile="${basedir}/target/templates-site-content/pmd.xml"/>
+                <replace value="${templates.pmd}"
+                    file="${basedir}/target/site/documentation/modules/templates/reports/pmd.html">
+                  <replacetoken>@MERGEPOINT_BODY_CONTENT@</replacetoken>
+                </replace>
                 
                 <!-- runtime -->
                 <copy todir="${basedir}/target/site/documentation/modules/runtime/cobertura">
@@ -272,6 +321,22 @@
                 <copy todir="${basedir}/target/site/documentation/modules/generator/xref-test">
                   <fileset dir="${basedir}/../torque-generator/target/site/xref-test" />
                 </copy>
+                <!-- templates -->
+                <copy todir="${basedir}/target/site/documentation/modules/templates/cobertura">
+                  <fileset dir="${basedir}/../torque-templates/target/site/cobertura" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/templates/apidocs">
+                  <fileset dir="${basedir}/../torque-templates/target/site/apidocs" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/templates/testapidocs">
+                  <fileset dir="${basedir}/../torque-templates/target/site/testapidocs" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/templates/xref">
+                  <fileset dir="${basedir}/../torque-templates/target/site/xref" />
+                </copy>
+                <copy todir="${basedir}/target/site/documentation/modules/templates/xref-test">
+                  <fileset dir="${basedir}/../torque-templates/target/site/xref-test" />
+                </copy>
               </tasks>
             </configuration>
             <goals>
@@ -303,6 +368,11 @@
               <stylesheet>src/site/xslt/body-content.xsl</stylesheet>
               <outputDir>target/generator-site-content</outputDir>
             </transformationSet>
+            <transformationSet>
+              <dir>target/templates-site</dir>
+              <stylesheet>src/site/xslt/body-content.xsl</stylesheet>
+              <outputDir>target/templates-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=910985&r1=910984&r2=910985&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 14:13:20 2010
@@ -38,7 +38,7 @@
       <item name="Modules"               href="/documentation/modules.html">
         <item name="Generator"           href="/documentation/modules/generator/index.html" collapse="true">
           <item name="Getting started"   href="/documentation/modules/generator/gettingStarted.html"/>
-          <item name="Reference"         href="/documentation/modules/runtime/reference/index.html" collapse="true">
+          <item name="Reference"         href="/documentation/modules/generator/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">
@@ -61,6 +61,23 @@
             <item name="Test Coverage"   href="/documentation/modules/generator/cobertura/index.html" target="_blank"/>
           </item>
         </item>
+        <item name="Templates"           href="/documentation/modules/templates/index.html" collapse="true">
+          <item name="Dependencies"      href="/documentation/modules/templates/dependencies.html"/>
+          <item name="Project Reports"   href="/documentation/modules/templates/reports/index.html" collapse="true">
+            <item name="Metrics"         href="/documentation/modules/templates/reports/jdepend-report.html"/>
+            <item name="JavaDocs"        href="/documentation/modules/templates/apidocs/index.html" target="_blank" />
+            <item name="Test JavaDocs"   href="/documentation/modules/templates/testapidocs/index.html" target="_blank" />
+            <item name="Source Xref"     href="/documentation/modules/templates/xref/index.html" target="_blank" />
+            <item name="Test Xref"       href="/documentation/modules/templates/xref-test/index.html" target="_blank" />
+            <item name="Tag List"        href="/documentation/modules/templates/reports/taglist.html"/>
+            <item name="Checkstyle"      href="/documentation/modules/templates/reports/checkstyle.html"/>
+            <item name="Copy-Paste"      href="/documentation/modules/templates/reports/cpd.html"/>
+            <item name="PMD"             href="/documentation/modules/templates/reports/pmd.html"/>
+            <item name="FindBugs"        href="/documentation/modules/templates/reports/findbugs.html"/>
+            <item name="Unit Tests"      href="/documentation/modules/templates/reports/surefire-report.html"/>
+            <item name="Test Coverage"   href="/documentation/modules/templates/cobertura/index.html" target="_blank"/>
+          </item>
+        </item>
         <item name="Maven 2 Plugin"      href="/documentation/modules/maven2-plugin/index.html" collapse="true">
           <item name="dummy"/>
         </item>

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml?rev=910985&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/generator/reference/index.xml Wed Feb 17 14:13:20 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 Reference</title>
+ </properties>
+
+ <body>
+ 
+  <section name="Contents">
+    <p>
+      This folder contains references on how to use the Torque generator.
+    </p>
+  </section>
+
+ </body>
+</document>

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

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

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

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

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

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

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

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

Added: db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/taglist.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/taglist.xml?rev=910985&view=auto
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/taglist.xml (added)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/documentation/modules/templates/reports/taglist.xml Wed Feb 17 14:13:20 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 Templates - 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