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 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- 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.
 -->
 <project name="Torque" href="http://db.apache.org/torque/";>
 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to