You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2012/01/13 22:59:49 UTC

svn commit: r1231326 - in /incubator/ooo/trunk/main/testautomation: chart2/optional/includes/loadsave/ chart2/required/includes/ chart2/tools/ dbaccess/tools/

Author: arist
Date: Fri Jan 13 21:59:48 2012
New Revision: 1231326

URL: http://svn.apache.org/viewvc?rev=1231326&view=rev
Log:
Update headers to Alv2 headers

Modified:
    incubator/ooo/trunk/main/testautomation/chart2/optional/includes/loadsave/ch2_losa.inc
    incubator/ooo/trunk/main/testautomation/chart2/required/includes/ch2_menu.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_axes.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_chart_type.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_data_labels.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_grids.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_legend.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_select.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_statistics.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_borders_lines.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_pages.inc
    incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_titles.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/controltools.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbcreatetools.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbinit.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbtools.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/formtools.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/querytools.inc
    incubator/ooo/trunk/main/testautomation/dbaccess/tools/reporttools.inc

Modified: incubator/ooo/trunk/main/testautomation/chart2/optional/includes/loadsave/ch2_losa.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/optional/includes/loadsave/ch2_losa.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/optional/includes/loadsave/ch2_losa.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/optional/includes/loadsave/ch2_losa.inc Fri Jan 13 21:59:48 2012
@@ -1,70 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
-******
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Load file of one Spreadsheet format and save to another
-'*
-'\******************************************************************************
-
-sub subLoSaFromTo
-
-    dim sSourcePath as string
-    dim lsInputFileList ( 500 ) as string
-    dim iFilesInList as integer
-    dim sCurrentFileInList as string
-    dim iMainIndex as integer
-
-    dim cRelativePath as string
-        cRelativePath = "chart2\optional\input\" & gsDirectoryInSourcePath &"\"
-
-    '///<u><b>Load/Save files with charts</b></u>
-    printLog Chr(13) + "---------  Save with filter: " & gsFileFormat & "  ----------"
-    sSourcePath = convertPath ( gtesttoolpath & cRelativePath )
-
-    '///+<ul><li>Determine list of files to test (All files in 'chart2\loadsave\input\<gsDirectoryInSourcePath>\')</li>
-    GetAllFileList( sSourcePath , "*." & gsDirectoryInSourcePath , lsInputFileList() )
-    iFilesInList = ListCount( lsInputFileList() )
-    '///+<li>Run testcase 'tLoadSaveFromTo' for each file in list</li></ul>
-    for iMainIndex = 2 to iFilesInList
-
-        sCurrentFileInList = lsInputFileList( iMainIndex )
-        printlog "* * * * * * *"
-        printlog "Loop " & ( iMainIndex - 1 ) & " of " & ( iFilesInList - 1 )
-        printlog "Test document: " & sCurrentFileInList
-        call tLoadSaveFromTo ( sCurrentFileInList )
-
-    next iMainIndex
 
-end sub
-
-'*******************************************************************************
+*****
 
 function hLoSaEscape() as boolean
 

Modified: incubator/ooo/trunk/main/testautomation/chart2/required/includes/ch2_menu.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/required/includes/ch2_menu.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/required/includes/ch2_menu.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/required/includes/ch2_menu.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Resource Test for chart2 main menus
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 tMainMenu          'Checking the count of menu entries in each menu
 '*

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_axes.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_axes.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_axes.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_axes.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Library for automation of the 'Insert::Axes...' dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeAxesDialog
 ' #1 fCloseAxesDialogOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_chart_type.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_chart_type.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_chart_type.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_chart_type.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for chart type dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeChartTypeDialog
 ' #1 fCloseChartTypeDialogOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_data_labels.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_data_labels.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_data_labels.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_data_labels.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Data Labels dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeDataLabelsDialog
 ' #1 fCloseDataLabelsDialogOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_grids.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_grids.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_grids.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_grids.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Grids dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeGridsDialog
 ' #1 fCloseGridsDialogOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_legend.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_legend.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_legend.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_legend.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Legend dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeLegendDialog
 ' #1 fCloseLegendDialogOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_select.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_select.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_select.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_select.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : selecting charts
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fSelectChartByNumber
 ' #1 fCalcSelectSheet

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_statistics.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_statistics.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_statistics.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_statistics.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Statistics dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeTrendlinesDialog
 ' #1 fInvokeInsertYErrorBarsDialog

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_borders_lines.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_borders_lines.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_borders_lines.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_borders_lines.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Borders and Lines tab-page
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeTabLine
 ' #1 fCloseTabLineOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_pages.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_pages.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_pages.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_tab_pages.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Borders and Lines tab-page
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeTabPage
 ' #1 fCloseTabLineOK

Modified: incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_titles.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_titles.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_titles.inc (original)
+++ incubator/ooo/trunk/main/testautomation/chart2/tools/ch_tools_titles.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : oliver.craemer@oracle.com
-'*
-'* short description : Tool library for Titles dialog
-'*
-'**************************************************************************************************
+************************
 '*
 ' #1 fInvokeTitlesDialog
 ' #1 fCloseTitlesDialogOK

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/controltools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/controltools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/controltools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/controltools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Helper Routines for Form and Control Tests
-'*
-'***************************************************************************************
+*************
 '*
 ' #1 fSwitchAutopilotOff
 ' #1 fSetControlProperty

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbcreatetools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbcreatetools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbcreatetools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbcreatetools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Library with function for creating all possible databases
-'*
-'***************************************************************************************
+*************
 '*
 ' #1 fCreateMySQL_ODBC_Datasource
 ' #1 fCreateMySQL_JDBC_Datasource

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbinit.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbinit.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbinit.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbinit.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Helper Routines for Base tests.
-'*
-'***************************************************************************************
+*************
 '*
 ' #1 null
 '*

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbtools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbtools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbtools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/dbtools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Helper Routines for Base tests.
-'*
-'***************************************************************************************
+*************
 '*
 ' #1 fSelectDatasourceInBeamer
 ' #1 fConnectToDatasourceInBeamer

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/formtools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/formtools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/formtools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/formtools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Helper Routines for Base tests.
-'*
-'***************************************************************************************
+*************
 '*
 '* #1 fOpenNewFormDesign
 '* #1 fCloseForm

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/querytools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/querytools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/querytools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/querytools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Helper Routines for Base tests.
-'*
-'***************************************************************************************
+*************
 '*
 ' #1 fFindQuery
 ' #1 fOpenNewQueryDesign

Modified: incubator/ooo/trunk/main/testautomation/dbaccess/tools/reporttools.inc
URL: http://svn.apache.org/viewvc/incubator/ooo/trunk/main/testautomation/dbaccess/tools/reporttools.inc?rev=1231326&r1=1231325&r2=1231326&view=diff
==============================================================================
--- incubator/ooo/trunk/main/testautomation/dbaccess/tools/reporttools.inc (original)
+++ incubator/ooo/trunk/main/testautomation/dbaccess/tools/reporttools.inc Fri Jan 13 21:59:48 2012
@@ -1,37 +1,26 @@
 'encoding UTF-8  Do not remove or change this line!
 '*************************************************************************
 '
-' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
-' 
-' Copyright 2000, 2010 Oracle and/or its affiliates.
-'
-' OpenOffice.org - a multi-platform office productivity suite
-'
-' This file is part of OpenOffice.org.
-'
-' OpenOffice.org is free software: you can redistribute it and/or modify
-' it under the terms of the GNU Lesser General Public License version 3
-' only, as published by the Free Software Foundation.
-'
-' OpenOffice.org is distributed in the hope that it will be useful,
-' but WITHOUT ANY WARRANTY; without even the implied warranty of
-' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-' GNU Lesser General Public License version 3 for more details
-' (a copy is included in the LICENSE file that accompanied this code).
-'
-' You should have received a copy of the GNU Lesser General Public License
-' version 3 along with OpenOffice.org.  If not, see
-' <http://www.openoffice.org/license.html>
-' for a copy of the LGPLv3 License.
+'  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.
 '
 '*************************************************************************
 
-'*
-'* owner : marc.neumann@oracle.com
-'*
-'* short description : Report Helper Routines for Base tests.
-'*
-'***************************************************************************************
+*************
 '*
 '* #1 fOpenNewReoprtDesign
 '* #1 fCloseReportDesign