jl165 merging heads
[LibreOffice.git] / testautomation / framework / optional / input / resetregistration.txt
blob92916d151595e054fbedf6cce02f9294a82b434d
1 '*************************************************************************
3 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
5 ' Copyright 2000, 2010 Oracle and/or its affiliates.
7 ' OpenOffice.org - a multi-platform office productivity suite
9 ' This file is part of OpenOffice.org.
11 ' OpenOffice.org is free software: you can redistribute it and/or modify
12 ' it under the terms of the GNU Lesser General Public License version 3
13 ' only, as published by the Free Software Foundation.
15 ' OpenOffice.org is distributed in the hope that it will be useful,
16 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 ' GNU Lesser General Public License version 3 for more details
19 ' (a copy is included in the LICENSE file that accompanied this code).
21 ' You should have received a copy of the GNU Lesser General Public License
22 ' version 3 along with OpenOffice.org.  If not, see
23 ' <http://www.openoffice.org/license.html>
24 ' for a copy of the LGPLv3 License.
26 '*************************************************************************
28 REM  *****  BASIC  *****
30 Option Explicit
32 Sub ResetRegistration
33         ' access the global configuration provider
34         Dim aConfigProvider As Object
35         aConfigProvider = createUnoService( "com.sun.star.configuration.ConfigurationProvider" )
36         
37         ' params for creating config access objects
38         Dim aParams(0) As new com.sun.star.beans.PropertyValue
39         aParams(0).Name = "nodepath"
41         ' create an access object for the jobs key
42         Dim aRegReq As Object
43         aParams(0).Value = "/org.openoffice.Office.Jobs/Jobs/RegistrationRequest"
44         aRegReq = aConfigProvider.createInstanceWithArguments( _
45                 "com.sun.star.configuration.ConfigurationUpdateAccess", _
46                 aParams() )
48         ' reset the user time (which means the job will be executed next time)
49         aRegReq.setPropertyToDefault( "UserTime" ) ' = "01.01.2001/00:00:00"
50         aRegReq.commitChanges
52         ' create an access object for the Registration key
53         Dim aRegistrationSettings As Object
54         aParams(0).Value = "/org.openoffice.Office.Common/Help/Registration"
55         aRegistrationSettings = aConfigProvider.createInstanceWithArguments( _
56                 "com.sun.star.configuration.ConfigurationUpdateAccess", _
57                 aParams() )
59         aRegistrationSettings.RequestDialog = 1
60         aRegistrationSettings.setPropertyToDefault( "ReminderDate" )
61         aRegistrationSettings.commitChanges
62 End Sub