Return-Path: Delivered-To: apmail-db-torque-dev-archive@www.apache.org Received: (qmail 85035 invoked from network); 11 Nov 2006 22:43:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 11 Nov 2006 22:43:36 -0000 Received: (qmail 2517 invoked by uid 500); 11 Nov 2006 22:43:46 -0000 Delivered-To: apmail-db-torque-dev-archive@db.apache.org Received: (qmail 2500 invoked by uid 500); 11 Nov 2006 22:43:46 -0000 Mailing-List: contact torque-dev-help@db.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Apache Torque Developers List" Reply-To: "Apache Torque Developers List" Delivered-To: mailing list torque-dev@db.apache.org Received: (qmail 2488 invoked by uid 500); 11 Nov 2006 22:43:46 -0000 Received: (qmail 2483 invoked by uid 99); 11 Nov 2006 22:43:45 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Nov 2006 14:43:45 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 11 Nov 2006 14:43:33 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 46B5C1A985B; Sat, 11 Nov 2006 14:41:56 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r473824 [6/6] - in /db/torque/templates/trunk: ./ src/templates/data/ src/templates/data/dump/ src/templates/doc/ src/templates/doc/anakia/ src/templates/doc/html/ src/templates/ojb/model/ src/templates/ojb/model_broken/ src/templates/ojb/r... Date: Sat, 11 Nov 2006 22:41:50 -0000 To: torque-commits@db.apache.org From: tv@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20061111224156.46B5C1A985B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: db/torque/templates/trunk/src/templates/sql/load/postgresql/row.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/postgresql/row.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/postgresql/row.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/postgresql/row.vm Sat Nov 11 14:41:43 2006 @@ -1,16 +1,19 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. INSERT INTO $row.Table.Name (## #set ($comma="")#foreach($col in $row.ColumnValues)$comma${col.Column.Name}#set($comma=",")#end) VALUES (#set ($comma="")#foreach($col in $row.ColumnValues)$comma${generator.parse("sql/load/postgresql/val.vm", "", "column", $col)}#set ($comma=",")#end); Modified: db/torque/templates/trunk/src/templates/sql/load/postgresql/val.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/postgresql/val.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/postgresql/val.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/postgresql/val.vm Sat Nov 11 14:41:43 2006 @@ -1,14 +1,17 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. #if($column.Column.needEscapedValue())$column.EscapedValue#else$column.Value#end Modified: db/torque/templates/trunk/src/templates/sql/load/sapdb/row.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/sapdb/row.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/sapdb/row.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/sapdb/row.vm Sat Nov 11 14:41:43 2006 @@ -1,16 +1,19 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. INSERT INTO $row.Table.Name (## #set ($comma="")#foreach($col in $row.ColumnValues)$comma${col.Column.Name}#set($comma=",")#end) VALUES (#set ($comma="")#foreach($col in $row.ColumnValues)$comma${generator.parse("sql/load/sapdb/val.vm", "", "column", $col)}#set ($comma=",")#end); Modified: db/torque/templates/trunk/src/templates/sql/load/sapdb/val.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/sapdb/val.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/sapdb/val.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/sapdb/val.vm Sat Nov 11 14:41:43 2006 @@ -1,14 +1,17 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. #if($column.Column.needEscapedValue())$column.EscapedValue#else$column.Value#end Modified: db/torque/templates/trunk/src/templates/sql/load/sybase/row.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/sybase/row.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/sybase/row.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/sybase/row.vm Sat Nov 11 14:41:43 2006 @@ -1,16 +1,19 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. INSERT INTO $row.Table.Name (## #set ($comma="")#foreach($col in $row.ColumnValues)$comma${col.Column.Name}#set($comma=",")#end) VALUES (#set ($comma="")#foreach($col in $row.ColumnValues)$comma${generator.parse("sql/load/sybase/val.vm", "", "column", $col)}#set ($comma=",")#end); Modified: db/torque/templates/trunk/src/templates/sql/load/sybase/val.vm URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/src/templates/sql/load/sybase/val.vm?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/src/templates/sql/load/sybase/val.vm (original) +++ db/torque/templates/trunk/src/templates/sql/load/sybase/val.vm Sat Nov 11 14:41:43 2006 @@ -1,14 +1,17 @@ -## Copyright 2001-2005 The Apache Software Foundation. +## 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 ## -## 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 ## -## 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. +## 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. #if($column.Column.needEscapedValue())$column.EscapedValue#else$column.Value#end Modified: db/torque/templates/trunk/xdocs/navigation.xml URL: http://svn.apache.org/viewvc/db/torque/templates/trunk/xdocs/navigation.xml?view=diff&rev=473824&r1=473823&r2=473824 ============================================================================== --- db/torque/templates/trunk/xdocs/navigation.xml (original) +++ db/torque/templates/trunk/xdocs/navigation.xml Sat Nov 11 14:41:43 2006 @@ -1,18 +1,21 @@ --------------------------------------------------------------------- To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org For additional commands, e-mail: torque-dev-help@db.apache.org