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 2012/10/10 05:35:07 UTC

svn commit: r1396460 [5/9] - in /db/torque/site-scmpublish/torque-3.3: ./ developer-info/ documentation/ dtd/ images/ images/logos/ style/ tools/ version-specific/ version-specific/database-howtos/ version-specific/other-howtos/

Added: db/torque/site-scmpublish/torque-3.3/dtd/database_3_2.dtd
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/dtd/database_3_2.dtd?rev=1396460&view=auto
==============================================================================
--- db/torque/site-scmpublish/torque-3.3/dtd/database_3_2.dtd (added)
+++ db/torque/site-scmpublish/torque-3.3/dtd/database_3_2.dtd Wed Oct 10 03:35:04 2012
@@ -0,0 +1,187 @@
+<!--
+ 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.
+-->
+<!--
+    Torque XML database schema DTD
+    $Id: database.dtd,v 1.8 2005/06/27 21:34:10 tfischer Exp $
+-->
+
+<!--
+For: database.defaultIdMethod and table.idMethod
+
+Do not use autoincrement or sequence. They are deprecated in favor of
+using native which will use the Connection pool to determine
+which database it is talking to (yes, it knows that) and then use
+whatever native database methodology for insert increments that it can.
+Otherwise, you should use idbroker or none. none is good if you have a
+table that is just a join table. idbroker is good if you want a
+centralized repository for brokering out clumps of id's in a database
+agnostic way.
+-->
+
+<!--
+
+defaultJavaNamingMethod determines how a table or column name,
+from the name attribute in the xml database file, is converted to a
+Java class or method name.
+
+     nochange   - indicates not change is performed.
+     underscore - Underscores and dots are removed, first letter is
+              capitalized, first letter after an underscore
+              is capitalized, first letter after a dot is capitalized,
+              the rest of the letters are converted to lowercase.
+     underscoreOmitSchema - The section of the name before and including
+              the last dot in the name is removed. For the remaining part,
+              underscores are removed, first letter is capitalized,
+              first letter after an underscore is capitalized,
+              the rest of the letters are converted to lowercase.
+     javaname   - same as underscore, but no letters are converted
+              to lowercase.
+-->
+
+<!ELEMENT database (external-schema*, domain*, table+)>
+<!ATTLIST database
+  name CDATA #REQUIRED
+  defaultIdMethod (idbroker|native|none) "none"
+  defaultJavaType (object|primitive) "primitive"
+  package CDATA #IMPLIED
+  baseClass CDATA #IMPLIED
+  basePeer CDATA #IMPLIED
+  defaultJavaNamingMethod (nochange|underscore|underscoreOmitSchema|javaname) "underscore"
+  heavyIndexing (true|false) "false"
+>
+
+<!ELEMENT external-schema EMPTY>
+<!ATTLIST external-schema
+  filename CDATA #REQUIRED
+>
+
+<!ELEMENT domain EMPTY>
+<!ATTLIST domain
+  name CDATA #REQUIRED
+  type
+    (
+          BIT  | TINYINT | SMALLINT    | INTEGER    | BIGINT    | FLOAT
+        | REAL | NUMERIC | DECIMAL     | CHAR       | VARCHAR   | LONGVARCHAR
+        | DATE | TIME    | TIMESTAMP   | BINARY     | VARBINARY | LONGVARBINARY
+        | NULL | OTHER   | JAVA_OBJECT | DISTINCT   | STRUCT    | ARRAY
+        | BLOB | CLOB    | REF         | BOOLEANINT | BOOLEANCHAR
+        | DOUBLE
+    ) "VARCHAR"
+  size CDATA #IMPLIED
+  scale CDATA #IMPLIED
+  default CDATA #IMPLIED
+  description CDATA #IMPLIED
+>
+
+
+<!--
+     note: the interface="true", requires that useManagers=true in the
+     properties file.
+-->
+<!ELEMENT table (column+,(foreign-key|index|unique|id-method-parameter)*)>
+<!ATTLIST table
+  name CDATA #REQUIRED
+  javaName CDATA #IMPLIED
+  idMethod (idbroker|native|none|null) "null"
+  skipSql (true|false) "false"
+  abstract (true|false) "false"
+  baseClass CDATA #IMPLIED
+  basePeer CDATA #IMPLIED
+  alias CDATA #IMPLIED
+  interface CDATA #IMPLIED
+  javaNamingMethod (nochange|underscore|underscoreOmitSchema|javaname) #IMPLIED
+  heavyIndexing (true|false) #IMPLIED
+  description CDATA #IMPLIED
+>
+
+<!ELEMENT id-method-parameter EMPTY>
+<!ATTLIST id-method-parameter
+  name CDATA "default"
+  value CDATA #REQUIRED
+>
+
+<!ELEMENT column (inheritance*)>
+<!ATTLIST column
+  name CDATA #REQUIRED
+  javaName CDATA #IMPLIED
+  primaryKey (true|false) "false"
+  required (true|false) "false"
+  protected (true|false) "false"
+  domain CDATA #IMPLIED
+  type
+    (
+          BIT  | TINYINT | SMALLINT    | INTEGER    | BIGINT    | FLOAT
+        | REAL | NUMERIC | DECIMAL     | CHAR       | VARCHAR   | LONGVARCHAR
+        | DATE | TIME    | TIMESTAMP   | BINARY     | VARBINARY | LONGVARBINARY
+        | NULL | OTHER   | JAVA_OBJECT | DISTINCT   | STRUCT    | ARRAY
+        | BLOB | CLOB    | REF         | BOOLEANINT | BOOLEANCHAR
+        | DOUBLE
+    ) #IMPLIED
+  javaType (object|primitive) #IMPLIED
+  size CDATA #IMPLIED
+  scale CDATA #IMPLIED
+  default CDATA #IMPLIED
+  autoIncrement (true|false) #IMPLIED
+  inheritance (single|false) "false"
+  inputValidator CDATA #IMPLIED
+  javaNamingMethod (nochange|underscore|javaname) #IMPLIED
+  description CDATA #IMPLIED
+>
+
+<!ELEMENT inheritance EMPTY>
+<!ATTLIST inheritance
+  key CDATA #REQUIRED
+  class CDATA #REQUIRED
+  extends CDATA #IMPLIED
+>
+
+<!ELEMENT foreign-key (reference+)>
+<!ATTLIST foreign-key
+  foreignTable CDATA #REQUIRED
+  name CDATA #IMPLIED
+  onUpdate (cascade|setnull|restrict|none) "none"
+  onDelete (cascade|setnull|restrict|none) "none"
+>
+
+<!ELEMENT reference EMPTY>
+<!ATTLIST reference
+  local CDATA #REQUIRED
+  foreign CDATA #REQUIRED
+>
+
+<!ELEMENT index (index-column+)>
+<!ATTLIST index
+  name CDATA #IMPLIED
+>
+
+<!ELEMENT index-column EMPTY>
+<!ATTLIST index-column
+  name CDATA #REQUIRED
+  size CDATA #IMPLIED
+>
+
+<!ELEMENT unique (unique-column+)>
+<!ATTLIST unique
+  name CDATA #IMPLIED
+>
+
+<!ELEMENT unique-column EMPTY>
+<!ATTLIST unique-column
+  name CDATA #REQUIRED
+>

Added: db/torque/site-scmpublish/torque-3.3/images/add.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/add.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/add.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/collapsed.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/collapsed.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/collapsed.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/db-logo-blue.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/db-logo-blue.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/db-logo-blue.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/db-logo-white.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/db-logo-white.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/db-logo-white.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/expanded.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/expanded.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/expanded.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/external.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/external.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/external.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/fix.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/fix.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/fix.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/icon_error_sml.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/icon_error_sml.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/icon_error_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/icon_info_sml.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/icon_info_sml.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/icon_info_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/icon_success_sml.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/icon_success_sml.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/icon_success_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/icon_warning_sml.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/icon_warning_sml.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/icon_warning_sml.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/logos/maven-button-1.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/logos/maven-button-1.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/logos/maven-button-1.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/newwindow.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/newwindow.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/newwindow.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/pdf.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/pdf.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/pdf.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/remove.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/remove.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/remove.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/rss.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/rss.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/rss.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/torque-logo-blue.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/torque-logo-blue.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/torque-logo-blue.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/torque-logo-new.png
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/torque-logo-new.png?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/torque-logo-new.png
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/images/update.gif
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/images/update.gif?rev=1396460&view=auto
==============================================================================
Binary file - no diff available.

Propchange: db/torque/site-scmpublish/torque-3.3/images/update.gif
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: db/torque/site-scmpublish/torque-3.3/index.html
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/index.html?rev=1396460&view=auto
==============================================================================
--- db/torque/site-scmpublish/torque-3.3/index.html (added)
+++ db/torque/site-scmpublish/torque-3.3/index.html Wed Oct 10 03:35:04 2012
@@ -0,0 +1,109 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>Apache Torque - Torque</title><style type="text/css" media="all">
+          @import url("./style/maven-base.css");
+          
+          @import url("./style/maven-theme.css");</style><link rel="stylesheet" href="./style/print.css" type="text/css" media="print"></link><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></meta><meta name="author" content="Jason van Zyl"></meta><meta name="email" content="jvanzyl@apache.com"></meta><meta name="author" content="Martin Poeschl"></meta><meta name="email" content="mpoeschl@marmot.at"></meta><meta name="author" content="Scott Eade"></meta><meta name="email" content="seade@backstagetech.com.au"></meta><meta name="author" content="Henning P. Schmiedehausen"></meta><meta name="email" content="hps@intermeta.de"></meta><meta name="author" content="Thomas Fischer"></meta><meta name="email" content="fischer@seitenbau.de"></meta></head><body class="composite"><div id="banner"><a href="http://db.apache.org/" id="organizationLogo"><img alt="Apache Software Foundation" src="./images/db-logo-white.png"></img></a><a href="http://db.apache.org/torque
 /" id="projectLogo"><img alt="Torque Site" src="./images/torque-logo-new.png"></img></a><div class="clear"><hr></hr></div></div><div id="breadcrumbs"><div class="xleft">Last published: 10 October 2012
+                <span class="separator">|</span> Doc for  3.3.1-SNAPSHOT
+                </div><div class="xright">
+        
+        <a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a>
+      </div><div class="clear"><hr></hr></div></div><div id="leftColumn"><div id="navcolumn"><div id="menuTorque"><h5>Torque</h5><ul><li class="none"><strong><a href="index.html">Overview</a></strong></li><li class="none"><a href="status.html">News and Status</a></li><li class="none"><a href="download.html">Downloads</a></li><li class="none"><a href="../torque-4.0/index.html">Torque 4</a></li><li class="none"><a href="addons.html">Addons</a></li><li class="none"><a href="changes-report.html">Changes</a></li><li class="none"><a href="http://wiki.apache.org/db-torque/" class="externalLink" title="External Link">Wiki</a></li><li class="none"><a href="issue-tracking.html">Issue tracker</a></li><li class="none"><a href="mail-lists.html">Mailing lists</a></li><li class="none"><a href="tools/index.html">Tools</a></li><li class="collapsed"><a href="developer-info/index.html">Developer Information</a></li><li class="none"><a href="http://www.apache.org/foundation/sponsorship.html" cl
 ass="externalLink" title="External Link">Sponsorship</a></li><li class="none"><a href="http://www.apache.org/security/" class="externalLink" title="External Link">Security</a></li><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Thanks</a></li><li class="none"><a href="http://www.apache.org/licenses/" class="externalLink" title="External Link">License</a></li><li class="none"><a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a></li></ul></div><div id="menuModule_Documentation"><h5>Module Documentation</h5><ul><li class="none"><a href="documentation/index.html">Overview</a></li><li class="expanded"><a href="documentation/torque-3.3.html">Torque 3.3</a><ul><li class="collapsed"><a href="releases/torque-3.3/generator/index.html">Generator</a></li><li class="collapsed"><a href="releases/torque-3.3/maven-plugin/index.html">Maven 1 Plugin</a></li><li class="none"><a href="releases/t
 orque-3.3/maven2-plugin/index.html" class="newWindow" title="New Window" target="_blank">Maven 2 Plugin</a></li><li class="collapsed"><a href="releases/torque-3.3/runtime/index.html">Runtime</a></li><li class="collapsed"><a href="releases/torque-3.3/tutorial/index.html">Tutorial</a></li><li class="collapsed"><a href="releases/torque-3.3/village/index.html">Village</a></li></ul></li></ul></div><div id="menuOther_Documentation"><h5>Other Documentation</h5><ul><li class="none"><a href="version-specific/supported-databases.html">Supported Databases</a></li><li class="collapsed"><a href="version-specific/database-howtos/index.html">Database Howtos</a></li><li class="collapsed"><a href="version-specific/other-howtos/index.html">Other Howtos</a></li></ul></div><div id="menuProject_Documentation"><h5>Project Documentation</h5><ul><li class="collapsed"><a href="project-info.html">Project info</a></li><li class="collapsed"><a href="project-reports.html">Site Project Reports</a></li></
 ul></div><div id="menuMiscellaneous"><h5>Miscellaneous</h5><ul><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Sponsors</a></li></ul></div><div id="legend"><h5>Legend</h5><ul><li class="externalLink">External Link</li><li class="newWindow">Opens in a new window</li></ul></div><a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"><img alt="Built by Maven" src="./images/logos/maven-button-1.png"></img></a></div></div><div id="bodyColumn"><div class="contentBox"><div class="section"><a name="What_is_Torque_"></a><h2>What is Torque?</h2>
+     <p>
+       Apache Torque is an object-relational mapper for java.  In other words, Torque
+       lets you access and manipulate data in a relational database 
+       using java objects.
+       Unlike most other object-relational mappers, Torque does not use
+       reflection to access user-provided classes, but it generates the
+       necessary classes (including the Data Objects) from an XML schema
+       describing the database layout (which can either be written by hand
+       or generated from an existing database).
+       The XML schema can also be used to generate and execute a SQL script
+       which creates all the tables in the database.
+     </p>
+     
+     <p>
+       As Torque hides database-specific implementation details, 
+       Torque makes an application independent of a specific database
+       if no exotic features of the database are used.
+     </p>
+     
+     <p>
+       Usage of autogeneration eases the customization of the database layer, 
+       as you can override the autogenerated methods and thus easily change
+       their behaviour.
+     </p>
+
+     <p>
+       Torque was developed as part of the
+       <a href="http://turbine.apache.org/" class="externalLink" title="External Link">Turbine Framework</a>.
+       It is now decoupled and can be used by itself. Starting with version
+       2.2 Turbine uses the decoupled Torque.
+     </p>
+   </div><div class="section"><a name="Elements_of_Torque"></a><h2>Elements of Torque</h2>
+    <p>
+     Torque consists of multiple parts:
+     <dl>
+       <dt>runtime</dt>
+       <dd>
+        The Torque runtime contains everything to allow an
+        application to access the database.  It is the only component of Torque
+        needed in your application and can be used standalone.
+       </dd>
+       <dt>generator</dt>
+       <dd>
+         The generator contains ant tasks which do all the work for the 
+         Maven plugin.  If you use the Maven plugin, you do not need to use the 
+         generator directly.
+         However, the generator can also be invoked directly using ant.
+       </dd>
+       <dt>maven-plugin</dt>
+       <dd>
+        The Maven plugin creates the O/R peer and object classes for accessing
+        and storing data from the database.  It can also generate the XML
+        description of an existing database and (in reverse) create an SQL 
+        script to create the tables in the database.  Internally, 
+        the Maven plugin uses the generator to accomplish these tasks.
+       </dd>
+       <dt>templates</dt>
+       <dd>
+         The templates contain the building blocks used by the generator 
+         to create the O/R peer and object classes, SQL scripts and the like.
+         You can change the templates if you want to customize the output 
+         of the generator (this is only necessary in very special 
+         circumstances).
+         Up to release 3.1.x, the templates were a part of the generator.
+         Starting with the 3.2 release of Torque, the templates have been 
+         separated into their own jar archive.
+       </dd>
+       <dt>village</dt>
+       <dd>
+         Village is a 100% Pure Java API that sits on top of the JDBC
+         API. The purpose of this API is to make it easier to interact with
+         a JDBC compliant relational database.
+       </dd>
+     </dl>
+    </p>
+   </div><div class="section"><a name="Releases"></a><h2>Releases</h2>
+    <p>
+     <ul>
+      <li>
+        Most recent <i>production</i> release of Torque is Torque 3.3
+      </li>
+      <li>
+        Most recent <i>production</i> release of the Village component of Torque is Village 3.3.1
+      </li>
+      <li>
+        Most recent <i>development</i> release of Torque is <a href="releases/torque-4.0/download.html">Torque 4.0-beta1</a>
+      </li>
+     </ul>
+    </p>
+   </div><div class="section"><a name="The_Apache_Software_Foundation"></a><h2>The Apache Software Foundation</h2>
+     <p>
+      Torque is an <a href="www.apache.org">Apache</a> project,
+      and is part of a larger community of developers and users.
+     </p>
+     <p>
+      Apache Torque, Torque, Apache, the Apache feather logo,
+      and the Apache Torque project logo are trademarks of 
+      <a href="www.apache.org">The Apache Software Foundation</a>.
+     </p>
+   </div></div></div><div class="clear"><hr></hr></div><div id="footer"><div class="xright">© 2000-2012, Apache Software Foundation</div><div class="clear"><hr></hr></div></div></body></html>
\ No newline at end of file

Added: db/torque/site-scmpublish/torque-3.3/issue-tracking.html
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/issue-tracking.html?rev=1396460&view=auto
==============================================================================
--- db/torque/site-scmpublish/torque-3.3/issue-tracking.html (added)
+++ db/torque/site-scmpublish/torque-3.3/issue-tracking.html Wed Oct 10 03:35:04 2012
@@ -0,0 +1,13 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>Issue Tracking - Torque</title><style type="text/css" media="all">
+          @import url("./style/maven-base.css");
+          
+          @import url("./style/maven-theme.css");</style><link rel="stylesheet" href="./style/print.css" type="text/css" media="print"></link><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></meta></head><body class="composite"><div id="banner"><a href="http://db.apache.org/" id="organizationLogo"><img alt="Apache Software Foundation" src="./images/db-logo-white.png"></img></a><a href="http://db.apache.org/torque/" id="projectLogo"><img alt="Torque Site" src="./images/torque-logo-new.png"></img></a><div class="clear"><hr></hr></div></div><div id="breadcrumbs"><div class="xleft">Last published: 10 October 2012
+                <span class="separator">|</span> Doc for  3.3.1-SNAPSHOT
+                </div><div class="xright">
+        
+        <a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a>
+      </div><div class="clear"><hr></hr></div></div><div id="leftColumn"><div id="navcolumn"><div id="menuTorque"><h5>Torque</h5><ul><li class="none"><a href="index.html">Overview</a></li><li class="none"><a href="status.html">News and Status</a></li><li class="none"><a href="download.html">Downloads</a></li><li class="none"><a href="../torque-4.0/index.html">Torque 4</a></li><li class="none"><a href="addons.html">Addons</a></li><li class="none"><a href="changes-report.html">Changes</a></li><li class="none"><a href="http://wiki.apache.org/db-torque/" class="externalLink" title="External Link">Wiki</a></li><li class="none"><strong><a href="issue-tracking.html">Issue tracker</a></strong></li><li class="none"><a href="mail-lists.html">Mailing lists</a></li><li class="none"><a href="tools/index.html">Tools</a></li><li class="collapsed"><a href="developer-info/index.html">Developer Information</a></li><li class="none"><a href="http://www.apache.org/foundation/sponsorship.html" cl
 ass="externalLink" title="External Link">Sponsorship</a></li><li class="none"><a href="http://www.apache.org/security/" class="externalLink" title="External Link">Security</a></li><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Thanks</a></li><li class="none"><a href="http://www.apache.org/licenses/" class="externalLink" title="External Link">License</a></li><li class="none"><a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a></li></ul></div><div id="menuModule_Documentation"><h5>Module Documentation</h5><ul><li class="none"><a href="documentation/index.html">Overview</a></li><li class="expanded"><a href="documentation/torque-3.3.html">Torque 3.3</a><ul><li class="collapsed"><a href="releases/torque-3.3/generator/index.html">Generator</a></li><li class="collapsed"><a href="releases/torque-3.3/maven-plugin/index.html">Maven 1 Plugin</a></li><li class="none"><a href="releases/t
 orque-3.3/maven2-plugin/index.html" class="newWindow" title="New Window" target="_blank">Maven 2 Plugin</a></li><li class="collapsed"><a href="releases/torque-3.3/runtime/index.html">Runtime</a></li><li class="collapsed"><a href="releases/torque-3.3/tutorial/index.html">Tutorial</a></li><li class="collapsed"><a href="releases/torque-3.3/village/index.html">Village</a></li></ul></li></ul></div><div id="menuOther_Documentation"><h5>Other Documentation</h5><ul><li class="none"><a href="version-specific/supported-databases.html">Supported Databases</a></li><li class="collapsed"><a href="version-specific/database-howtos/index.html">Database Howtos</a></li><li class="collapsed"><a href="version-specific/other-howtos/index.html">Other Howtos</a></li></ul></div><div id="menuProject_Documentation"><h5>Project Documentation</h5><ul><li class="collapsed"><a href="project-info.html">Project info</a></li><li class="collapsed"><a href="project-reports.html">Site Project Reports</a></li></
 ul></div><div id="menuMiscellaneous"><h5>Miscellaneous</h5><ul><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Sponsors</a></li></ul></div><div id="legend"><h5>Legend</h5><ul><li class="externalLink">External Link</li><li class="newWindow">Opens in a new window</li></ul></div><a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"><img alt="Built by Maven" src="./images/logos/maven-button-1.png"></img></a></div></div><div id="bodyColumn"><div class="contentBox"><div class="section"><a name="Issue_Tracking"></a><h2>Issue Tracking</h2>
+            <p>
+                              <a href="http://issues.apache.org/jira/browse/TORQUE" class="externalLink" title="External Link">http://issues.apache.org/jira/browse/TORQUE</a>
+                          </p>
+        </div></div></div><div class="clear"><hr></hr></div><div id="footer"><div class="xright">© 2000-2012, Apache Software Foundation</div><div class="clear"><hr></hr></div></div></body></html>
\ No newline at end of file

Added: db/torque/site-scmpublish/torque-3.3/license.html
URL: http://svn.apache.org/viewvc/db/torque/site-scmpublish/torque-3.3/license.html?rev=1396460&view=auto
==============================================================================
--- db/torque/site-scmpublish/torque-3.3/license.html (added)
+++ db/torque/site-scmpublish/torque-3.3/license.html Wed Oct 10 03:35:04 2012
@@ -0,0 +1,213 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>Project License - Torque</title><style type="text/css" media="all">
+          @import url("./style/maven-base.css");
+          
+          @import url("./style/maven-theme.css");</style><link rel="stylesheet" href="./style/print.css" type="text/css" media="print"></link><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"></meta></head><body class="composite"><div id="banner"><a href="http://db.apache.org/" id="organizationLogo"><img alt="Apache Software Foundation" src="./images/db-logo-white.png"></img></a><a href="http://db.apache.org/torque/" id="projectLogo"><img alt="Torque Site" src="./images/torque-logo-new.png"></img></a><div class="clear"><hr></hr></div></div><div id="breadcrumbs"><div class="xleft">Last published: 10 October 2012
+                <span class="separator">|</span> Doc for  3.3.1-SNAPSHOT
+                </div><div class="xright">
+        
+        <a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a>
+      </div><div class="clear"><hr></hr></div></div><div id="leftColumn"><div id="navcolumn"><div id="menuTorque"><h5>Torque</h5><ul><li class="none"><a href="index.html">Overview</a></li><li class="none"><a href="status.html">News and Status</a></li><li class="none"><a href="download.html">Downloads</a></li><li class="none"><a href="../torque-4.0/index.html">Torque 4</a></li><li class="none"><a href="addons.html">Addons</a></li><li class="none"><a href="changes-report.html">Changes</a></li><li class="none"><a href="http://wiki.apache.org/db-torque/" class="externalLink" title="External Link">Wiki</a></li><li class="none"><a href="issue-tracking.html">Issue tracker</a></li><li class="none"><a href="mail-lists.html">Mailing lists</a></li><li class="none"><a href="tools/index.html">Tools</a></li><li class="collapsed"><a href="developer-info/index.html">Developer Information</a></li><li class="none"><a href="http://www.apache.org/foundation/sponsorship.html" class="externalLink
 " title="External Link">Sponsorship</a></li><li class="none"><a href="http://www.apache.org/security/" class="externalLink" title="External Link">Security</a></li><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Thanks</a></li><li class="none"><a href="http://www.apache.org/licenses/" class="externalLink" title="External Link">License</a></li><li class="none"><a href="http://www.apache.org/" class="externalLink" title="External Link">Apache</a></li></ul></div><div id="menuModule_Documentation"><h5>Module Documentation</h5><ul><li class="none"><a href="documentation/index.html">Overview</a></li><li class="expanded"><a href="documentation/torque-3.3.html">Torque 3.3</a><ul><li class="collapsed"><a href="releases/torque-3.3/generator/index.html">Generator</a></li><li class="collapsed"><a href="releases/torque-3.3/maven-plugin/index.html">Maven 1 Plugin</a></li><li class="none"><a href="releases/torque-3.3/maven2-
 plugin/index.html" class="newWindow" title="New Window" target="_blank">Maven 2 Plugin</a></li><li class="collapsed"><a href="releases/torque-3.3/runtime/index.html">Runtime</a></li><li class="collapsed"><a href="releases/torque-3.3/tutorial/index.html">Tutorial</a></li><li class="collapsed"><a href="releases/torque-3.3/village/index.html">Village</a></li></ul></li></ul></div><div id="menuOther_Documentation"><h5>Other Documentation</h5><ul><li class="none"><a href="version-specific/supported-databases.html">Supported Databases</a></li><li class="collapsed"><a href="version-specific/database-howtos/index.html">Database Howtos</a></li><li class="collapsed"><a href="version-specific/other-howtos/index.html">Other Howtos</a></li></ul></div><div id="menuProject_Documentation"><h5>Project Documentation</h5><ul><li class="collapsed"><a href="project-info.html">Project info</a></li><li class="collapsed"><a href="project-reports.html">Site Project Reports</a></li></ul></div><div id=
 "menuMiscellaneous"><h5>Miscellaneous</h5><ul><li class="none"><a href="http://www.apache.org/foundation/thanks.html" class="externalLink" title="External Link">Sponsors</a></li></ul></div><div id="legend"><h5>Legend</h5><ul><li class="externalLink">External Link</li><li class="newWindow">Opens in a new window</li></ul></div><a href="http://maven.apache.org/" title="Built by Maven" id="poweredBy"><img alt="Built by Maven" src="./images/logos/maven-button-1.png"></img></a></div></div><div id="bodyColumn"><div class="contentBox"><div class="section"><a name="Project_License"></a><h2>Project License</h2><p></p>
+    <div class="source"><pre>
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed 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.
+</pre></div>
+  </div></div></div><div class="clear"><hr></hr></div><div id="footer"><div class="xright">© 2000-2012, Apache Software Foundation</div><div class="clear"><hr></hr></div></div></body></html>
\ No newline at end of file



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