2008-06-13 04:27:15 -05:00
|
|
|
'encoding UTF-8 Do not remove or change this line!
|
|
|
|
'**************************************************************************
|
2010-02-26 07:17:49 -06:00
|
|
|
' 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.
|
|
|
|
'
|
2008-06-13 04:27:15 -05:00
|
|
|
'/************************************************************************
|
|
|
|
'*
|
2010-07-20 09:15:47 -05:00
|
|
|
'* owner : thorsten.bosbach@oracle.com
|
2008-06-13 04:27:15 -05:00
|
|
|
'*
|
|
|
|
'* short description : update and resouce test for all option pages (at tools/options)
|
|
|
|
'*
|
|
|
|
'\***********************************************************************
|
2009-08-27 03:35:08 -05:00
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
global sErrMes as String
|
|
|
|
global iSectionNumber as Integer
|
|
|
|
|
|
|
|
sub tToolsOptionsTest
|
2009-04-01 12:35:56 -05:00
|
|
|
' To prevent users from running just a subsection from this file, without THIS
|
2008-06-13 04:27:15 -05:00
|
|
|
' subroutine, in every subsection the value of 'iSectionNumber' is checked.
|
2009-04-01 12:35:56 -05:00
|
|
|
' The test will exit with warnlog, if iSectionNumber is 0
|
2008-06-13 04:27:15 -05:00
|
|
|
sErrMes = ""
|
2009-04-01 12:35:56 -05:00
|
|
|
select case uCase(gApplication)
|
2009-09-16 11:04:37 -05:00
|
|
|
case "WRITER","MASTERDOCUMENT","HTML" : iSectionNumber = 8
|
|
|
|
case "IMPRESS","DRAW","MATH","CALC" : iSectionNumber = 7
|
2009-04-01 12:35:56 -05:00
|
|
|
end select
|
2008-06-13 04:27:15 -05:00
|
|
|
' common testcases are placed in this library
|
|
|
|
' these tab-sets are always available:
|
|
|
|
Call tToolsOptionsStarOffice
|
|
|
|
Call tToolsOptionsLoadSave
|
|
|
|
Call tToolsOptionsLanguageSettings
|
|
|
|
Call tToolsOptionsDataSources
|
|
|
|
Call tToolsOptionsChart
|
|
|
|
Call tToolsOptionsInternet
|
2009-03-18 05:45:43 -05:00
|
|
|
Call tToolsOptionsImprovementProgram
|
2008-06-13 04:27:15 -05:00
|
|
|
end sub
|
|
|
|
|
2009-08-27 03:35:08 -05:00
|
|
|
'-------------------------------------------------------------------------
|
2009-04-01 12:35:56 -05:00
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
testcase tToolsOptionsStarOffice
|
2009-04-01 12:35:56 -05:00
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
dim EchteAnzahl as Integer, i as Integer
|
|
|
|
dim gefunden as Boolean, bSave as Boolean
|
|
|
|
dim iMenuShould as integer
|
|
|
|
'/// We have 12 tab pages in this category. If the <i>central configuration</i> feature is being used 13 (<i>Single SignOn</i>)
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>OpenOffice.org</i>
|
|
|
|
PrintLog "- Tools/Options/StarOffice ( Extras/Optionen/StarOffice )"
|
2009-04-01 12:35:56 -05:00
|
|
|
if (0 = iSectionNumber) then
|
2008-06-13 04:27:15 -05:00
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
|
|
|
|
if ( gApplication = "BACKGROUND" ) then
|
|
|
|
' Do not open any document
|
|
|
|
else
|
|
|
|
Call hNewDocument
|
|
|
|
endif
|
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
ToolsOptions
|
|
|
|
ToPosInOptionlist ( 1 )
|
|
|
|
Kontext "ExtrasOptionenDlg"
|
|
|
|
EchteAnzahl = Optionsliste.GetItemCount - iSectionNumber
|
2009-03-18 05:45:43 -05:00
|
|
|
iMenuShould = 14
|
2009-04-01 12:35:56 -05:00
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
if EchteAnzahl <> iMenuShould then
|
|
|
|
if ((gtplatform = "sol") OR (gtplatform = "x86") OR gOOO) AND EchteAnzahl = 12 then
|
2009-04-01 12:35:56 -05:00
|
|
|
printLog "One Tabpage is missing. This is ok for a patched Solaris (sparc and x86) or OOo installation."
|
2008-06-13 04:27:15 -05:00
|
|
|
else
|
|
|
|
Warnlog "The number of entries is not " + iMenuShould + "! => the current number is " + EchteAnzahl
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
endif
|
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
Kontext "Active"
|
|
|
|
try
|
|
|
|
if Active.Exists then Active.OK
|
|
|
|
catch
|
|
|
|
if Active.Exists then Active.No
|
|
|
|
endcatch
|
2009-04-01 12:35:56 -05:00
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
for i=1 to EchteAnzahl
|
|
|
|
gefunden = FALSE
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
select case i
|
2009-04-01 12:35:56 -05:00
|
|
|
case 1 :
|
|
|
|
Kontext "TabAllgemeines"
|
|
|
|
'///+<ul><li>User data</li>
|
|
|
|
printlog " - Userdata / Benutzerdaten"
|
|
|
|
if TabAllgemeines.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabAllgemeines )
|
|
|
|
endif
|
|
|
|
case 2 :
|
|
|
|
Kontext "TabSonstigesAllgemein"
|
|
|
|
'///+<li>General</li>
|
|
|
|
printlog " - General / Allgemein"
|
|
|
|
if TabSonstigesAllgemein.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSonstigesAllgemein )
|
|
|
|
endif
|
|
|
|
case 3 :
|
|
|
|
Kontext "TabMemory"
|
|
|
|
'///+<li>Memory</li>
|
|
|
|
printlog " - Memory / Arbeitsspeicher"
|
|
|
|
if TabMemory.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabMemory )
|
|
|
|
endif
|
|
|
|
case 4 :
|
|
|
|
Kontext "TabAnsichtAllgemein"
|
|
|
|
'///+<li>View</li>
|
|
|
|
printlog " - View / Ansicht"
|
|
|
|
if TabAnsichtAllgemein.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabAnsichtAllgemein )
|
|
|
|
endif
|
|
|
|
case 5 :
|
|
|
|
Kontext "TabPrintStarOffice"
|
|
|
|
'///+<li>Print</li>
|
|
|
|
printlog " - Print / Drucken"
|
|
|
|
if TabPrintStarOffice.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabPrintStarOffice )
|
|
|
|
endif
|
|
|
|
case 6 :
|
|
|
|
Kontext "TabPfade"
|
|
|
|
'///+<li>Paths
|
|
|
|
'///+ <ul><li>Click <i>edit</i> to all list entries and then close the file dialog</li></ul></li>
|
|
|
|
printlog " - Paths / Pfade"
|
|
|
|
if TabPfade.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabPfade )
|
|
|
|
Call DialogeFuerTypenKontrollieren
|
|
|
|
endif
|
|
|
|
case 7 :
|
|
|
|
Kontext "TabFarben"
|
|
|
|
'///+<li>Colors
|
|
|
|
'///+<ul><li>Click on <i>Add</i></li>
|
|
|
|
'///+<li>Click <i>OK</i> on message box</li>
|
|
|
|
'///+<li>Click <i>cancel> on <i>Name</i> dialog</li>
|
|
|
|
'///+<li>Click on <i>Edit</i></li>
|
|
|
|
'///+<li>Click on <i>Close</i> in <i>Colors</i> dialog</li></ul></li>
|
|
|
|
printlog " - Color / Farben"
|
|
|
|
if ( TabFarben.exists( 4 ) ) then
|
2008-06-13 04:27:15 -05:00
|
|
|
if TabFarben.IsVisible then
|
2009-04-01 12:35:56 -05:00
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest (TabFarben)
|
|
|
|
Farbe.Select(1)
|
|
|
|
Hinzufuegen.Click
|
|
|
|
Kontext "Active"
|
|
|
|
Active.OK
|
|
|
|
Kontext "NameDlg"
|
|
|
|
Call DialogTest (NameDlg)
|
|
|
|
NameDlg.Cancel
|
|
|
|
Kontext "TabFarben"
|
|
|
|
Bearbeiten.Click
|
|
|
|
WaitSlot( 3000 )
|
|
|
|
Kontext "FarbeDlg"
|
|
|
|
FarbeDlg.Cancel
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
case 8 :
|
|
|
|
Kontext "TabSchriftErsetzung"
|
|
|
|
'///+<li>Font replacement</li>
|
|
|
|
printlog " - Font Replacement / Schriftersetzung"
|
|
|
|
if TabSchriftErsetzung.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSchriftErsetzung )
|
|
|
|
endif
|
|
|
|
case 9:
|
|
|
|
Kontext "TabSecurity"
|
|
|
|
'///+<li>Security</li>
|
|
|
|
printlog " - Security / Sicherheit"
|
|
|
|
if TabSecurity.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSecurity )
|
|
|
|
MacroSecurity.click()
|
|
|
|
|
|
|
|
kontext "TabSecurityLevel"
|
|
|
|
if ( TabSecurityLevel.exists( 2 ) ) then
|
|
|
|
call DialogTest( TabSecurityLevel )
|
|
|
|
kontext
|
|
|
|
active.setpage TabTrustedSources
|
|
|
|
kontext "TabTrustedSources"
|
|
|
|
call DialogTest( TabTrustedSources )
|
|
|
|
TabTrustedSources.cancel
|
|
|
|
else
|
|
|
|
warnlog( "Macro Security Options dialog is missing" )
|
|
|
|
qaerrorlog( "#i45295# or office built without mozilla support" )
|
|
|
|
endif
|
|
|
|
|
|
|
|
Kontext "TabSecurity"
|
|
|
|
if ( TabSecurity.exists( 1 ) ) then
|
|
|
|
Options.click
|
|
|
|
Kontext "TabSecurityOptionsAndWarnings"
|
|
|
|
Call DialogTest(TabSecurityOptionsAndWarnings)
|
|
|
|
TabSecurityOptionsAndWarnings.cancel
|
2008-06-13 04:27:15 -05:00
|
|
|
else
|
2009-04-01 12:35:56 -05:00
|
|
|
warnlog( "Tabsecurity did not open" )
|
2008-06-13 04:27:15 -05:00
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
|
|
|
|
endif
|
|
|
|
case 10:
|
|
|
|
Kontext "TabAppearance"
|
|
|
|
'///+<li>Appearance</li>
|
|
|
|
printlog " - Appearance / Aussehen"
|
|
|
|
if TabAppearance.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabAppearance )
|
|
|
|
endif
|
|
|
|
case 11:
|
|
|
|
Kontext "TabAccessibility"
|
|
|
|
'///+<li>Accessibility</li>
|
|
|
|
printlog " - Accessibility"
|
|
|
|
if TabAccessibility.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabAccessibility )
|
|
|
|
endif
|
|
|
|
case 12:
|
|
|
|
Kontext "TabJava"
|
|
|
|
'///+<li>Java</li></ul>
|
|
|
|
printlog " - Java"
|
|
|
|
if TabJava.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabJava )
|
|
|
|
endif
|
|
|
|
if useJava.isChecked then
|
|
|
|
Add.click
|
|
|
|
Kontext "OeffnenDlg"
|
|
|
|
if ( OeffnenDlg.exists( 1 ) ) then
|
|
|
|
OeffnenDlg.Cancel
|
|
|
|
else
|
|
|
|
warnlog( "OeffnenDlg is missing" )
|
|
|
|
endif
|
|
|
|
Kontext "TabJava"
|
|
|
|
Parameters.click
|
|
|
|
Kontext "JavaStartParameter"
|
|
|
|
Call DialogTest ( JavaStartParameter )
|
|
|
|
JavaStartParameter.cancel
|
|
|
|
Kontext "TabJava"
|
|
|
|
ClassPath.click
|
|
|
|
Kontext "JavaClassPath"
|
|
|
|
Call DialogTest ( JavaClassPath )
|
|
|
|
JavaClassPath.cancel
|
|
|
|
else
|
|
|
|
printlog "Use Java is disabled."
|
|
|
|
endif
|
|
|
|
case 13:
|
|
|
|
kontext "TabOnlineUpdate"
|
|
|
|
'///+<li>Online update</li>
|
|
|
|
printlog " - Online update"
|
|
|
|
if TabOnlineUpdate.isVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest( TabOnlineUpdate )
|
|
|
|
endif
|
|
|
|
'CheckNow.click
|
|
|
|
case 14:
|
|
|
|
Kontext "TabOOoImprovement"
|
|
|
|
printlog( " - OpenOffice.org Improvement Program" )
|
|
|
|
if ( TabOOoImprovement.isVisible() ) then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest( TabOOoImprovement )
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
end select
|
2009-03-18 05:45:43 -05:00
|
|
|
if ( NOT gefunden ) then
|
|
|
|
Warnlog "Error with the " & i & ".page, perhaps this page has been deleted or changed its position"
|
2008-06-13 04:27:15 -05:00
|
|
|
EchteAnzahl = EchteAnzahl - 1
|
|
|
|
if EchteAnzahl < 13 then
|
|
|
|
i=10
|
|
|
|
else
|
|
|
|
i=1-1
|
2009-04-01 12:35:56 -05:00
|
|
|
endif
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
next i
|
2009-04-01 12:35:56 -05:00
|
|
|
'/// Close the options dialog
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
if ( OptionenDlg.exists( 1 ) ) then
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
else
|
|
|
|
warnlog( "Options Dialog not ready" )
|
|
|
|
endif
|
|
|
|
'/// Close the document
|
|
|
|
if ( gApplication = "BACKGROUND" ) then
|
|
|
|
' We should be on the backing window
|
|
|
|
else
|
|
|
|
Call hCloseDocument()
|
|
|
|
endif
|
|
|
|
|
2008-06-13 04:27:15 -05:00
|
|
|
endcase
|
|
|
|
|
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
testcase tToolsOptionsLoadSave
|
2009-04-01 12:35:56 -05:00
|
|
|
|
|
|
|
dim EchteAnzahl as Integer, i as Integer
|
|
|
|
dim gefunden as Boolean
|
|
|
|
PrintLog "- Tools/Options/Load Save ( Extras/Optionen/Laden Speichern )"
|
|
|
|
if (0 = iSectionNumber) then
|
2008-06-13 04:27:15 -05:00
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
if gApplication <> "BACKGROUND" then Call hNewDocument
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>Load/Save</i>
|
|
|
|
ToolsOptions
|
|
|
|
ToPosInOptionlist (2)
|
|
|
|
EchteAnzahl = OptionTabPageZaehler (4, FALSE)
|
|
|
|
for i=1 to EchteAnzahl
|
|
|
|
gefunden = FALSE
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
select case i
|
|
|
|
case 1 :
|
|
|
|
Kontext "TabSpeichern"
|
|
|
|
'///+<ul><li>General</li>
|
|
|
|
printlog " - General / Save"
|
|
|
|
if TabSpeichern.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSpeichern )
|
|
|
|
endif
|
|
|
|
case 2 :
|
|
|
|
Kontext "TabMicrosoftOffice97"
|
|
|
|
'///+<li>VBA settings</li>
|
|
|
|
printlog " - VBA Settings / VBA Eigenschaften"
|
|
|
|
if TabMicrosoftOffice97.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabMicrosoftOffice97 )
|
|
|
|
endif
|
|
|
|
case 3 :
|
|
|
|
Kontext "TabMicrosoftOffice2"
|
|
|
|
'///+<li>Microsoft Office</li>
|
|
|
|
printlog " - Microsoft Office"
|
|
|
|
if TabMicrosoftOffice2.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabMicrosoftOffice2 )
|
|
|
|
endif
|
|
|
|
case 4 :
|
|
|
|
Kontext "TabHTML"
|
|
|
|
'///+<li>HTML Compatibility</li></ul>
|
|
|
|
printlog " - HTML Compatibility / HTML Kompatibilitaet"
|
|
|
|
if TabHTML.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabHTML )
|
|
|
|
endif
|
|
|
|
end select
|
|
|
|
if gefunden=FALSE then
|
|
|
|
Warnlog "Error with the " + i + ".page, perhaps this page is deleted or change the place!"
|
|
|
|
EchteAnzahl = EchteAnzahl - 1
|
|
|
|
if EchteAnzahl < 5 then
|
|
|
|
i=11
|
|
|
|
else
|
|
|
|
i=1-1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
next i
|
|
|
|
'/// Close the options dialog
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
'/// Close the document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hCloseDocument
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
endcase
|
|
|
|
|
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
testcase tToolsOptionsLanguageSettings
|
|
|
|
|
2009-04-01 12:35:56 -05:00
|
|
|
dim EchteAnzahl as Integer, i as Integer, j as Integer
|
|
|
|
dim gefunden as Boolean
|
|
|
|
dim bAsianSup as Boolean
|
|
|
|
|
|
|
|
PrintLog "- Tools/Options/Language Settings ( Extras/Optionen/Spracheinstellungen )"
|
|
|
|
if (0 = iSectionNumber) then
|
2008-06-13 04:27:15 -05:00
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
if gApplication <> "BACKGROUND" then Call hNewDocument
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>Language settings</i>
|
|
|
|
ToolsOptions
|
2008-06-13 04:27:15 -05:00
|
|
|
ToPosInOptionlist ( 3 )
|
2009-04-01 12:35:56 -05:00
|
|
|
EchteAnzahl = Optionsliste.GetItemCount - iSectionNumber
|
|
|
|
'/// We only have two tab pages in this section:
|
|
|
|
'///+ <ul><li><i>Languages</i> and <i>Writing Aids</i></li>
|
|
|
|
'///+<ol><li>In asian languages we have two additional tab pages:
|
|
|
|
'///+ <ul><li><i>Japanese Find</i> and <i>Asian Layout</i></li></ul></li>
|
|
|
|
'///+<li>In languages with CTL (<i>Complex Text Layout</i>) there is also one more:
|
|
|
|
'///+<ul><li><i>Complex Text Layout</i></li></ul></li></ol></li></ul>
|
|
|
|
select case (EchteAnzahl)
|
|
|
|
case 2:
|
|
|
|
printlog "Asian or Complex Text Layout support is not activated (on languages-page)!"
|
|
|
|
case 3:
|
|
|
|
printlog "Complex Text Layout support is activated (on languages-page)!"
|
|
|
|
case 4:
|
|
|
|
printlog "Asian support is activated (on languages-page)!"
|
|
|
|
case 5:
|
|
|
|
if (gAsianSup AND gCTLSup) then
|
|
|
|
printlog "Asian and Complex Text Layout support is activated (on languages-page)!"
|
|
|
|
else
|
|
|
|
Warnlog "There are more than 4 pages!"
|
|
|
|
endif
|
|
|
|
case else
|
|
|
|
Warnlog "There are more than 5 pages!"
|
|
|
|
end select
|
|
|
|
Kontext "Active"
|
|
|
|
try
|
|
|
|
if Active.Exists then Active.OK
|
|
|
|
catch
|
|
|
|
if Active.Exists then Active.No
|
|
|
|
endcatch
|
|
|
|
for i=1 to EchteAnzahl
|
|
|
|
gefunden = FALSE
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
select case i
|
|
|
|
case 1 :
|
|
|
|
Kontext "TabSprachen"
|
|
|
|
'Languages
|
|
|
|
printlog " - Languages / Sprachen"
|
|
|
|
if TabSprachen.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSprachen )
|
|
|
|
endif
|
|
|
|
case 2 :
|
|
|
|
Kontext "TabLinguistik"
|
|
|
|
printlog " - Writing Aids / Linguistik"
|
|
|
|
if TabLinguistik.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabLinguistik )
|
2008-06-13 04:27:15 -05:00
|
|
|
'/// In <i>Writing aids</i>
|
|
|
|
'///+<ul><li> On <i>modules<i> click <i>edit</i></li>
|
2009-04-01 12:35:56 -05:00
|
|
|
SprachmoduleBearbeiten.Click
|
|
|
|
Kontext "ModuleBearbeiten"
|
|
|
|
Call DialogTest ( ModuleBearbeiten )
|
|
|
|
ModuleBearbeiten.Close
|
|
|
|
'///+<li> close dialog</li></ul>
|
|
|
|
Kontext "TabLinguistik"
|
2008-06-13 04:27:15 -05:00
|
|
|
'///+<ul><li>On <i>dictionaries</i> click <i>new</i></li>
|
|
|
|
'///+<li>close dialog</li></ul>
|
2009-04-01 12:35:56 -05:00
|
|
|
Neu.Click
|
|
|
|
Kontext "BenutzerwoerterbuchAnlegen"
|
|
|
|
Call DialogTest ( BenutzerwoerterbuchAnlegen )
|
|
|
|
BenutzerwoerterbuchAnlegen.Cancel
|
2008-06-13 04:27:15 -05:00
|
|
|
|
|
|
|
'///+<ul><li>On <i>dictionaries</i> click <i>edit</i></li>
|
|
|
|
'///+<li>close dialog</li></ul>
|
2009-04-01 12:35:56 -05:00
|
|
|
Kontext "TabLinguistik"
|
|
|
|
for j=1 to 5
|
|
|
|
if Bearbeiten.IsEnabled then
|
|
|
|
Bearbeiten.Click
|
|
|
|
j=6
|
|
|
|
else
|
|
|
|
Benutzerwoerterbuch.TypeKeys "<Down>"
|
|
|
|
endif
|
|
|
|
next j
|
|
|
|
Kontext "BenutzerwoerterbuchBearbeiten"
|
|
|
|
if BenutzerwoerterbuchBearbeiten.Exists then
|
|
|
|
Call DialogTest ( BenutzerwoerterbuchBearbeiten )
|
|
|
|
BenutzerwoerterbuchBearbeiten.Close
|
|
|
|
else
|
|
|
|
warnlog "Edit the 'user-defined dictionary' is not possible => Bug?"
|
|
|
|
endif
|
|
|
|
'/// <i>Options</i>
|
2008-06-13 04:27:15 -05:00
|
|
|
'///+<ul><li>On 9th, 10th and 11th entry click <i>edit</i></li>
|
|
|
|
'///+<li>close dialog</li></ul>
|
2009-04-01 12:35:56 -05:00
|
|
|
Kontext "TabLinguistik"
|
|
|
|
Optionen.TypeKeys "<PageUp>", 3
|
|
|
|
WaitSlot() ' similar effect as a NOOP
|
|
|
|
Optionen.TypeKeys "<Down>", 6
|
|
|
|
WaitSlot() ' similar effect as a NOOP
|
|
|
|
OptionenBearbeiten.Click
|
2010-02-25 04:08:48 -06:00
|
|
|
Kontext "HyphenationOptions"
|
|
|
|
Call DialogTest ( HyphenationOptions )
|
|
|
|
HyphenationOptions.Cancel
|
2009-04-01 12:35:56 -05:00
|
|
|
Kontext "TabLinguistik"
|
|
|
|
Optionen.TypeKeys "<Down>"
|
|
|
|
OptionenBearbeiten.Click
|
2010-02-25 04:08:48 -06:00
|
|
|
Kontext "HyphenationOptions"
|
|
|
|
Call DialogTest ( HyphenationOptions )
|
|
|
|
HyphenationOptions.Cancel
|
2009-04-01 12:35:56 -05:00
|
|
|
Kontext "TabLinguistik"
|
|
|
|
Optionen.TypeKeys "<Down>"
|
|
|
|
OptionenBearbeiten.Click
|
2010-02-25 04:08:48 -06:00
|
|
|
Kontext "HyphenationOptions"
|
|
|
|
Call DialogTest ( HyphenationOptions )
|
|
|
|
HyphenationOptions.Cancel
|
2009-04-01 12:35:56 -05:00
|
|
|
endif
|
|
|
|
case 3,5 :
|
|
|
|
try
|
|
|
|
Kontext "TabJapaneseFind"
|
|
|
|
'Japanese find
|
|
|
|
if TabJapaneseFind.IsVisible then
|
|
|
|
printlog " - Japanese Find / Japanische Suche"
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabJapaneseFind )
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
endcatch
|
|
|
|
try
|
|
|
|
Kontext "TabComplexTextLayout"
|
|
|
|
'Complex Text Layout
|
|
|
|
if TabComplexTextLayout.IsVisible then
|
|
|
|
printlog " - Complex Text Layout"
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabComplexTextLayout )
|
|
|
|
endif
|
|
|
|
catch
|
|
|
|
endcatch
|
|
|
|
case 4 :
|
|
|
|
Kontext "TabAsianLayoutOptions"
|
|
|
|
'Asian layout
|
|
|
|
printlog " - Asian Layout / Asiatisches Layout"
|
|
|
|
if TabAsianLayoutOptions.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabAsianLayoutOptions )
|
|
|
|
endif
|
|
|
|
end select
|
|
|
|
if gefunden=FALSE then
|
|
|
|
Warnlog "Error with the " + i + ".page, perhaps this page is deleted or change the place!"
|
|
|
|
EchteAnzahl = EchteAnzahl - 1
|
|
|
|
if EchteAnzahl < 5 then
|
|
|
|
i=5
|
|
|
|
else
|
|
|
|
i=1-1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
next i
|
|
|
|
'/// Close the options dialog
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
'/// Close the document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hCloseDocument
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
endcase
|
|
|
|
|
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
testcase tToolsOptionsInternet
|
|
|
|
|
2009-04-01 12:35:56 -05:00
|
|
|
dim EchteAnzahl as Integer, i as Integer
|
|
|
|
dim gefunden as Boolean
|
|
|
|
|
|
|
|
PrintLog "- Tools/Options/Internet ( Extras/Optionen/Internet )"
|
|
|
|
if (0 = iSectionNumber) then
|
2008-06-13 04:27:15 -05:00
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
if gApplication <> "BACKGROUND" then Call hNewDocument
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>Internet</i>
|
|
|
|
ToolsOptions
|
|
|
|
'/// (The last section in Tools / Options is <i>Internet</i>)
|
|
|
|
ToPosInOptionlist ( iSectionNumber)
|
2008-06-13 04:27:15 -05:00
|
|
|
|
2008-07-31 13:25:49 -05:00
|
|
|
if gPlatgroup = "w95" OR gPlatform = lcase("osx") then
|
|
|
|
'/// On MacOS X systems this section includes the tab pages:
|
|
|
|
'///+<ol><li>Proxy</li>
|
|
|
|
'///+<li>Search</li>
|
|
|
|
'///+<li>E-Mai</li></ol>
|
2008-06-13 04:27:15 -05:00
|
|
|
'/// On Win32 systems this section includes the tab pages:
|
|
|
|
'///+<ol><li>Proxy</li>
|
|
|
|
'///+<li>Search</li>
|
|
|
|
'///+<li>Mozilla Plugin</li></ol>
|
2010-07-06 07:40:48 -05:00
|
|
|
EchteAnzahl = OptionTabPageZaehler ( 3 , TRUE )
|
|
|
|
if (EchteAnzahl > 3) then
|
|
|
|
qaErrorLog ("Due to some installed extensions the tabpage count is not 3 it is: " + EchteAnzahl)
|
|
|
|
else
|
|
|
|
if (EchteAnzahl < 3) then
|
|
|
|
warnlog "Number of tabpages old : 3 new : " + EchteAnzahl
|
|
|
|
endif
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
else
|
|
|
|
'/// On Unix systems this section includes four tab pages.
|
|
|
|
'///+<ol><li>Proxy</li>
|
|
|
|
'///+<li>Search</li>
|
|
|
|
'///+<li>E-Mail</li>
|
|
|
|
'///+<li>Mozilla Plugin</li></ol>
|
2010-07-06 07:40:48 -05:00
|
|
|
EchteAnzahl = OptionTabPageZaehler ( 4 , TRUE )
|
|
|
|
if (EchteAnzahl > 4) then
|
|
|
|
qaErrorLog ("Due to some installed extensions the tabpage count is not 3 it is: " + EchteAnzahl)
|
|
|
|
else
|
|
|
|
if (EchteAnzahl < 4) then
|
|
|
|
warnlog "Number of tabpages old : 3 new : " + EchteAnzahl
|
|
|
|
endif
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
for i=1 to EchteAnzahl
|
|
|
|
gefunden = FALSE
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
|
|
|
|
select case i
|
|
|
|
case 1 :
|
|
|
|
Kontext "TabProxyServer"
|
|
|
|
'Proxy
|
|
|
|
printlog " - Proxy / Proxy"
|
|
|
|
if TabProxyServer.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabProxyServer )
|
|
|
|
endif
|
|
|
|
case 2 :
|
|
|
|
Kontext "Active"
|
|
|
|
'Search
|
|
|
|
printlog " - Search / Suche"
|
|
|
|
if Active.Exists then
|
|
|
|
sErrMes = Active.GetText
|
|
|
|
Warnlog "A messagebox exists => BUG : " + sErrMes
|
|
|
|
Active.OK
|
|
|
|
endif
|
|
|
|
Kontext "TabSuche"
|
|
|
|
if TabSuche.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabSuche )
|
|
|
|
endif
|
|
|
|
case 3 :
|
|
|
|
if gPlatgroup = "unx" then
|
|
|
|
Kontext "TabEmail"
|
|
|
|
'E-mail
|
|
|
|
printlog " - E-mail"
|
|
|
|
if TabEmail.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabEmail )
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
if gPlatgroup = "w95" then
|
|
|
|
Kontext "TabMozillaPlugin"
|
|
|
|
'Mozilla Plug-in (On Win32)
|
|
|
|
printlog " - Mozilla Plug-in"
|
|
|
|
if TabMozillaPlugin.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabMozillaPlugin )
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
case 4 :
|
|
|
|
if gPlatgroup = "w95" then
|
|
|
|
warnlog "On Win32 platform there should be only 3 tab pages in section 'Internet'!?"
|
|
|
|
else
|
|
|
|
Kontext "TabMozillaPlugin"
|
|
|
|
printlog " - Mozilla Plug-in"
|
|
|
|
if TabMozillaPlugin.IsVisible then
|
|
|
|
gefunden = TRUE
|
|
|
|
Call DialogTest ( TabMozillaPlugin )
|
|
|
|
endif
|
|
|
|
endif
|
2010-07-06 07:40:48 -05:00
|
|
|
case 5,6 : Kontext "TabMediaWiki"
|
|
|
|
if TabMediaWiki.exists then
|
|
|
|
qaerrorlog " - Wiki Publisher"
|
|
|
|
Call DialogTest ( TabMediaWiki )
|
|
|
|
gefunden = TRUE
|
|
|
|
endif
|
|
|
|
Kontext "TabWeblog"
|
|
|
|
if TabWeblog.exists then
|
|
|
|
qaerrorlog " - Weblog Publisher"
|
|
|
|
Call DialogTest ( TabWeblog )
|
|
|
|
gefunden = TRUE
|
|
|
|
endif
|
2009-04-01 12:35:56 -05:00
|
|
|
end select
|
|
|
|
if gefunden=FALSE then
|
|
|
|
Warnlog "Error with the " + i + ".page, perhaps this page is deleted or change the place!"
|
|
|
|
EchteAnzahl = EchteAnzahl - 1
|
|
|
|
if EchteAnzahl < 4 then
|
|
|
|
i=11
|
|
|
|
else
|
|
|
|
i=1-1
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
next i
|
|
|
|
'/// Close the options dialog
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
'/// Close document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hCloseDocument
|
|
|
|
endif
|
2008-06-13 04:27:15 -05:00
|
|
|
endcase
|
|
|
|
|
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
2009-03-18 05:45:43 -05:00
|
|
|
testcase tToolsOptionsImprovementProgram
|
|
|
|
|
|
|
|
printlog( "Update test for the tools/options dialog of the OOo Improvement Program" )
|
2009-04-01 12:35:56 -05:00
|
|
|
|
2009-10-21 08:00:21 -05:00
|
|
|
if (gOOO AND NOT gOOoImprovementIsEnabled) then
|
|
|
|
'In StarOffice this test should always work - but on OOo contributet builds the function is not available - only on OOo builds provided by Sun Microsystems
|
|
|
|
qaErrorlog ("This build does not participate in the OOo Improvement Program - test exit")
|
|
|
|
goto endsub
|
|
|
|
endif
|
|
|
|
|
2009-03-18 05:45:43 -05:00
|
|
|
dim cLogFile as string
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
cLogFile = gOfficePath & "user\temp\feedback\Current.csv"
|
|
|
|
cLogFile = convertpath( cLogFile )
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
|
|
|
|
dim bImportDialogHasBeenDisplayed as boolean : bImportDialogHasBeenDisplayed = false
|
2009-03-18 05:45:43 -05:00
|
|
|
|
|
|
|
if ( hDeleteFile( cLogFile ) ) then
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
|
2009-03-18 05:45:43 -05:00
|
|
|
printlog( "Test environment is clean, no logfile present (anymore)" )
|
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
ToolsOptions
|
|
|
|
hToolsOptions( "StarOffice", "Improvement" )
|
|
|
|
printlog( "Improvement Program tabpage" )
|
2009-03-18 05:45:43 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
call DialogTest( TabOOoImprovement )
|
2009-03-18 05:45:43 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
ParticipateNo.check()
|
|
|
|
ParticipateYes.check()
|
2009-04-01 12:35:56 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
if ( ShowData.isEnabled() ) then
|
2009-03-18 05:45:43 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
ShowData.click()
|
2009-03-18 05:45:43 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
' Two different IDs for practically the same dialog: FilterAuswahl and TextImport.
|
|
|
|
' It depends on the application which one comes up. We just handle them both.
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
Kontext "FilterAuswahl"
|
|
|
|
if ( FilterAuswahl.exists( 1 ) ) then
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
printlog( "FilterAuswahl present" )
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
call DialogTest( FilterAuswahl )
|
|
|
|
FilterAuswahl.cancel()
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
bImportDialogHasBeenDisplayed = true
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
endif
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
|
|
|
|
kontext "TextImport"
|
|
|
|
if ( TextImport.exists() ) then
|
|
|
|
printlog( "Text Import dialog present" )
|
|
|
|
call DialogTest( TextImport )
|
|
|
|
TextImport.cancel()
|
|
|
|
bImportDialogHasBeenDisplayed = true
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
endif
|
2009-03-18 05:45:43 -05:00
|
|
|
else
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
printlog( "Show data is disabled" )
|
2009-03-18 05:45:43 -05:00
|
|
|
endif
|
CWS-TOOLING: integrate CWS jskhgpilot5
2009-10-09 skotti #i105516# - Provided warnlog for not working extensible help (#i105760)
2009-10-09 skotti #i105516# - EditCopy called with no delay, hUseAsyncSlot() should fix this
2009-10-09 skotti #i105516# - fixed stupid error in iniinfo.inc (called IsMissing to check on a file instead of FileExists)
2009-10-09 skotti #i105516# - template tools - added checking for dialog
2009-10-09 skotti #i105516# - 2 cjk tests excluded, providing #i105756 as justification (qaerrorlog)
2009-10-09 skotti #i105516# - tModifyObjects: Add a WaitSlot
2009-10-09 skotti #i105516# - CJK test - number of entries has changed, fixed
2009-10-08 skotti Rebase to m61, resolving conflicts in g_option.inc, add g_option.inc to f_first.bas (the test for the OOo Improvement Program was removed from all files but is functional)
2009-10-08 skotti #i105516# - Just another attempt to fix w_numbering.bas
2009-10-08 skotti #i105516# - Added issue-IDs to f_basic_package_export_import.bas and subsequent include files.
2009-10-08 skotti #i105516# - StarOffice help topics updated. Need to do the same for OOo (better do it soon)
2009-10-08 skotti #i105516# - package export might result in zero size package, the test now handles this
2009-10-08 skotti #i105516# - Enhanced VBA import test to handle write protected files
2009-10-08 skotti #i105516# - Potentially fixed f_basic_library_export_import.bas
2009-10-08 skotti #i105516# - Fixing f_basic_vba-compat.bas (cont.)
2009-10-08 skotti #i105516# - Started fixing f_basic_vba-compat.bas
2009-10-08 skotti #i105516# - Help content changed again without notice
2009-10-07 skotti #i105516# - Really exclude the test
2009-10-07 skotti #i105516# - tModifyObjects is simplified and better documented, some more functions have been silenced, writer test (which is somewhat fuzzy) now closes all files at the end of the test
2009-10-07 skotti #i105516# - Testcase tToolsNumbering12 did not use any of the modern timing features which made the test inherently unstable. replaced sleep() statements
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Trying a fix for extras-test (document corrupted warning)
2009-10-07 skotti #i105516# - Fixed incorrect filtername in tToolsNumbering12, removed QAErrorlog
2009-10-07 skotti #i105516# - Fixed extension name for os2_x86.oxt.
2009-10-07 skotti #i105516# - Added warnlog for #i105670#
2009-10-07 skotti #i105516# - possible fix for warning in e_platforms.bas on MacOS X
2009-10-06 skotti #i105516# - someone allowed a ui relevant feature to slip in unnoticed. That is so stupid, that it could have been me. Adjusted test case to reflect the new - correct - behavior
2009-10-06 skotti #i105516# - fixing a few more test cases (module framework), switched off verbosity in global functions (not wanted for release), deprecate IsItLoaded (old function only used in one single spreadsheet test), fixed minor typo in hFileWait()
2009-10-05 skotti #i105516# - Removing all old style HTML documentation
2009-10-04 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Documentation fixes, cleanup
2009-10-02 skotti #i105516# - Fixed header
2009-10-01 skotti #i105516# - Fixed usage tracking stuff, there has been a lot of trouble with changed behavior which was not communicated to QA. Attempts for a fix have been done in CWS jskhgpilot4 (which has been merged into this CWS already)
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-15 10:41:19 -05:00
|
|
|
|
|
|
|
' Weird messages may appear in any order. We warn about anything
|
|
|
|
Kontext "Active"
|
|
|
|
if ( Active.exists( 1 ) ) then
|
|
|
|
printlog( "Messagebox: " & Active.getText() )
|
|
|
|
Active.ok()
|
|
|
|
else
|
|
|
|
if ( NOT bImportDialogHasBeenDisplayed ) then
|
|
|
|
qaerrorlog( "#i97340# Show Data button enabled but no logged data found" )
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
Kontext "Active"
|
|
|
|
if ( Active.exists( 1 ) ) then
|
|
|
|
warnlog( "#97342# Second message for missing " & cLogFile )
|
|
|
|
Active.ok()
|
|
|
|
endif
|
2009-03-18 05:45:43 -05:00
|
|
|
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
Kontext "OptionenDlg"
|
|
|
|
OptionenDlg.cancel()
|
|
|
|
|
2009-03-18 05:45:43 -05:00
|
|
|
else
|
CWS-TOOLING: integrate CWS jskhgpilot4
2009-10-02 so-uprel merge CWS jskhgpilot4
2009-10-01 skotti #i104246# - Toolbar stability and fix for e_update.bas on solaris - using .notExists()
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - better close the dialog if we run into the backup
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - works locally, distributing to all other machines
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-10-01 skotti #i104246# - Tried to enhance hWaitFOrObject() - the function even had a logic-error which prevented it from working correctly (i think, going to test that)
2009-09-30 skotti #i104246# - basic_dialog_i18n_import.inc now sports better warning message if the number of languages is incorrect
2009-09-30 skotti #i104246# - Added issue-id for crash on Solaris x86 (#i105476)
2009-09-30 skotti #i105407# Added new label to the list
2009-09-30 skotti #i104246# - Added a fallback method to the original one for finding the basis-directory on UNIX/Linux
2009-09-30 skotti #i104246# - reverted removal of iSection. I still have no idea what it does but without it the results are different but not better
2009-09-29 skotti #i104246# - The OOo Improvement Program tabpage is only visible if the BUILD_SPECIAL flag is given when building the Application. In the BUILD_SPECIAL section two files are created which will not be there otherwise. In master.inc we now test for the presence of one of the files. If found, we have the OOoImp-stuff installed and the global variable is set to TRUE. In order to find the file i had to fix the retrieval routine for the gOfficeBasisPath (which had a double gNetzOfficePath hidden in the variable sFile for all Unixes). The functin probably never worked, we were just lucky that it was only used in one place. Now - for some reason - we have warnings in the g_options_applications.inc test cases which need to be resolved. I reformatted the file (some indentions were broken) and removed duplicate variable initializations (this left unfinished, iSection should be removed from the control program and be inserted into the test cases themselves so currently the test results only deliver bogus).
2009-09-28 skotti #i104601 - Another problem found: After the fully automatic creation of the hid.lst we have lost the association to the TextImport dialog, reverting back to old name FilterAuswahl
2009-09-28 skotti Experiment: Completely remove hCloseAndLooseDocument
2009-09-28 skotti Experiment: Deprecate hCloseAndLooseDocument - it does nothing else than hCloseDocument
2009-09-28 skotti #i105407# - eliminated function hOpenFileAndIgnoreMacroWarning() as it already exists as a two step variant (hFileOpen+hAllowMacroExecution). Removed readme-file from framework/tools as the content was not up to date anymore
2009-09-28 skotti #i105407# - remove unused functions
2009-09-28 skotti #i104601#, #i105407# - small fixes
2009-10-02 vg CWS-TOOLING: integrate CWS bserver48
2009-09-24 19:44:37 +0200 kz r276428 : #160697# use source_config
2009-10-01 vg CWS-TOOLING: integrate CWS automationdev300m58cat0
2009-09-29 14:46:30 +0200 oc r276530 : #i105448# sleep added to resolv timingproblem
2009-09-28 10:29:46 +0200 oc r276482 : #i105404# t_ToolsMacro needs saved file
2009-09-27 10:51:09 +0200 tbo r276478 : #105393# on MacOS X only 3 items in tools menu
2009-09-25 18:02:25 +0200 oc r276473 : CWS-TOOLING: rebase CWS automationdev300m58cat0 to trunk@276429 (milestone: DEV300:m60)
2009-09-24 11:06:00 +0200 hde r276411 : save test-files locally
2009-09-23 15:40:07 +0200 hde r276400 : deleting of autotext optimized
2009-09-23 15:39:20 +0200 hde r276399 : Dialog 'Bereiche' opened after deleting autotext
2009-09-23 10:42:26 +0200 jsk r276370 : Added warnlog for exceeded timeout, i want the test to warn instead of aborting. Connected issue is #i105289#
2009-09-22 10:41:22 +0200 oc r276347 : #i105254# c_arrayconstants.inc enhanced
2009-09-21 20:37:26 +0200 tbo r276344 : #i105249# workaround firststartwizard regression by calling hDisableQuickstarterAPI()
2009-09-17 10:55:59 +0200 wg r276231 : i105141
2009-09-16 09:20:58 +0200 oc r276191 : #i105109# sleeps increased
2009-10-01 vg CWS-TOOLING: integrate CWS sw32bf04
2009-09-22 Michael Stahl galobj.hxx: do not export SgaObject methods (fixes wntmsci12 build)
2009-09-21 Michael Stahl #i105149# #i93308# svx: unofield.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# #i102468# sc: servuno.cxx: support field services with proper case
2009-09-21 Michael Stahl #i105149# txtflde.cxx: support docinfo field services with proper case
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::Clone(): avoid assert on clone pool default
2009-09-18 Michael Stahl #i105148# fmtatr2.cxx: SwFmtMeta::~SwFmtMeta(): check if m_pMeta != 0
2009-09-18 Michael Stahl #i105179# unocoll.cxx: SwXFrames::getByName(): add missing breaks
2009-09-18 Michael Stahl dbgoutsw.cxx: explicitly convert from SwNodeIndex to SwPosition
2009-09-18 Michael Stahl galobj.hxx: export class SgaObject from svxcore, needed by unogalitem.cxx
2009-09-17 Michael Stahl #i105149# txtflde.cxx: compare text field prefix case-insensitively
2009-09-16 Michael Stahl #i105117# docdde.cxx: fix possible NULL dereference (patch by cmc)
2009-09-16 Michael Stahl #i105124# docdde.cxx: fix use-after-free bug: make _FindItem member String
2009-10-01 vg CWS-TOOLING: integrate CWS impressnotes03
2009-09-28 16:30:17 +0200 cl r276496 : #i105382# use correct method to get master page
2009-09-28 12:23:04 +0200 cl r276486 : #i105266# also save text on close to avoid focus trouble under linux
2009-09-25 13:59:50 +0200 cl r276456 : #i105266# resolved a merge conflict
2009-09-25 13:57:24 +0200 cl r276454 : #i105266# resolved a merge conflict
2009-09-25 13:51:12 +0200 cl r276450 : #i105266# resolved a merge conflict
2009-09-25 13:40:08 +0200 cl r276447 : #i105266# resolved a merge conflict
2009-10-01 vg CWS-TOOLING: integrate CWS cmcfixes62
2009-09-22 21:19:24 +0200 cmc r276365 : #i100000# that's the most plausible explanation, -D$(CVER) is needed by scp2 under windows
2009-09-19 16:10:36 +0200 cmc r276303 : #i100000# revert this for no partically good reason
2009-09-18 14:16:47 +0200 cmc r276279 : remove extra build depend
2009-09-18 08:56:15 +0200 cmc r276265 : #i100000# rerun autoconf
2009-09-17 14:59:38 +0200 cmc r276245 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@276192 (milestone: DEV300:m59)
2009-09-10 16:40:49 +0200 pl r276041 : fix warning
2009-09-10 11:34:55 +0200 pl r276026 : disable warning from system header
2009-09-09 19:30:45 +0200 pl r276013 : use osl_getAsciiFunctionSymbol instead of strange cast
2009-09-09 19:25:32 +0200 pl r276012 : add some casting hacks to make compile on solaris cc
2009-09-09 19:10:48 +0200 pl r276009 : add missing Configure option for solaris sparce 32bit
2009-09-09 18:37:05 +0200 pl r276008 : merge fix for #i104525# into moved code
2009-09-07 13:28:08 +0200 cmc r275894 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275801 (milestone: DEV300:m57)
2009-08-28 12:36:27 +0200 cmc r275523 : CWS-TOOLING: rebase CWS cmcfixes62 to trunk@275331 (milestone: DEV300:m56)
2009-08-26 12:56:18 +0200 cmc r275413 : #i104088# use the right headers in the right place
2009-08-25 17:07:50 +0200 cmc r275372 : #i104500# make openssl build on linux that isn't x86 or x86_64
2009-08-25 13:08:48 +0200 cmc r275347 : #i89237# pretty picswitch up
2009-08-25 10:58:09 +0200 cmc r275342 : #i104489# remove last unused code in starmath
2009-08-25 10:23:33 +0200 cmc r275338 : #i104088# clean up the define post-move
2009-08-24 13:46:57 +0200 cmc r275310 : #i104088# 64bit odbc api changes
2009-08-24 13:42:52 +0200 cmc r275309 : #i89237# unify linux platform mks under a generic parent
2009-08-24 13:19:52 +0200 cmc r275307 : #i104455# remove unused code
2009-08-24 13:10:56 +0200 cmc r275306 : #i104088# 64bit odbc api changes
2009-08-24 10:07:50 +0200 cmc r275293 : #i104306# move recent-used to vcl
2009-08-24 09:32:08 +0200 cmc r275291 : #i104306# move recent-used to vcl
2009-08-23 22:01:07 +0200 cmc r275286 : #i104306# move recently-used to vcl
2009-08-22 15:25:25 +0200 cmc r275285 : #i104088# 64bit odbc api changes
2009-08-21 17:52:40 +0200 cmc r275268 : #i104306# move recently-used to vcl
2009-08-21 14:38:26 +0200 cmc r275257 : #i104408 make these headers ready for c++0x
2009-08-21 14:20:19 +0200 cmc r275251 : #i104406# avoid overlapping strcpy to avoid bustage on recent toolchains
2009-08-21 14:14:25 +0200 cmc r275250 : #i104385# silence 64bit warnings
2009-10-02 07:47:39 -05:00
|
|
|
' hDeleteFile() returns FALSE if the file is still present for some weird reason
|
|
|
|
' We should warn about this because the test breaks at a later point then.
|
|
|
|
warnlog( "Logfile present, it could not be deleted. Please check path and accessrights" )
|
|
|
|
printlog( "Path: " & cLogFile )
|
2009-03-18 05:45:43 -05:00
|
|
|
endif
|
|
|
|
|
|
|
|
endcase
|
|
|
|
|
2009-08-27 03:35:08 -05:00
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
testcase tToolsOptionsChart
|
|
|
|
Dim EchteAnzahl as Integer, i as Integer
|
|
|
|
|
|
|
|
PrintLog "- Tools/Options/Chart ( Extras/Optionen/Diagramme )"
|
|
|
|
if (0 = iSectionNumber) then
|
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
|
|
|
'/// Create a new document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hNewDocument
|
|
|
|
end if
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>Chart</i>
|
|
|
|
ToolsOptions
|
|
|
|
ToPosInOptionlist ( iSectionNumber -1 )
|
|
|
|
EchteAnzahl = OptionTabPageZaehler ( 1, FALSE )
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
'/// Default colors
|
|
|
|
printlog " - Default Colors / Grundfarben"
|
|
|
|
Kontext "TabGrundfarben"
|
|
|
|
Call DialogTest ( TabGrundfarben )
|
|
|
|
'/// Close the options dialog
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
'/// Close bthe document
|
|
|
|
Call hCloseDocument
|
|
|
|
end if
|
|
|
|
endcase
|
|
|
|
|
|
|
|
'-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
testcase tToolsOptionsDataSources
|
2009-09-16 11:04:37 -05:00
|
|
|
qaerrorlog "#i104508# crashes on quit or reload if this is run."
|
|
|
|
goto endsub
|
|
|
|
|
2009-08-27 03:35:08 -05:00
|
|
|
Dim EchteAnzahl as Integer, i as Integer
|
|
|
|
|
|
|
|
PrintLog "- Tools/Options/Data Sources ( Extras/Optionen/Datenbank )"
|
|
|
|
if (0 = iSectionNumber) then
|
|
|
|
warnlog "You can't run this testcase seperated! Ending now! Please run it via: tToolsOptionsTest"
|
|
|
|
goto endsub
|
|
|
|
endif
|
|
|
|
'/// Create a new document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hNewDocument
|
|
|
|
end if
|
|
|
|
'/// <i>Tools</i> / <i>Options</i> / <i>Data source</i>
|
|
|
|
ToolsOptions
|
|
|
|
ToPosInOptionlist ( iSectionNumber -2)
|
|
|
|
EchteAnzahl = OptionTabPageZaehler ( 2 , FALSE )
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
printlog " - Connections / Verbindungen"
|
|
|
|
Kontext "TabConnections"
|
|
|
|
'/// Connections
|
|
|
|
Call DialogTest ( TabConnections )
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
Optionsliste.TypeKeys "<Down>"
|
|
|
|
printlog " - Databases / Datenbanken"
|
|
|
|
Kontext "TabRegisteredDatabase"
|
|
|
|
'/// Databases
|
|
|
|
Call DialogTest ( TabRegisteredDatabase )
|
|
|
|
NewBtn.click
|
|
|
|
Kontext "CreateDatabaseLink"
|
|
|
|
call DialogTest( CreateDatabaseLink )
|
|
|
|
Browse.click
|
|
|
|
Kontext "OeffnenDlg"
|
|
|
|
OeffnenDlg.cancel
|
|
|
|
Kontext "CreateDatabaseLink"
|
|
|
|
CreateDatabaseLink.cancel
|
|
|
|
Kontext "OptionenDlg"
|
|
|
|
'/// Close the options dialog
|
|
|
|
OptionenDlg.Cancel
|
|
|
|
'/// Close the document
|
|
|
|
if gApplication <> "BACKGROUND" then
|
|
|
|
Call hCloseDocument
|
|
|
|
end if
|
|
|
|
endcase
|
2009-03-18 05:45:43 -05:00
|
|
|
|