Update contrib.
2 rem Copyright (c) 2006-2010 Nokia Corporation and/or its subsidiary(-ies).
3 rem All rights reserved.
4 rem This component and the accompanying materials are made available
5 rem under the terms of "Eclipse Public License v1.0"
6 rem which accompanies this distribution, and is available
7 rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 rem Initial Contributors:
10 rem Nokia Corporation - initial contribution.
15 rem @internalComponent - Internal Symbian
19 if not defined EPOC_INI set EPOC_INI=%EPOCROOT%epoc32\data\epoc.ini
20 if /i "%2"=="nonnga" set nonnga=true
21 if /i "%3"=="nonnga" set nonnga=true
22 if "%nonnga%"=="true" echo Configuring for Non-NGA
23 if /i "%1"=="uninstall" goto :uninstall
24 if /i "%2"=="changetracking" goto :install_changetracking
25 rem ================ install ================
28 echo Replacing WSINI.INI files with test versions.
29 if "%EMULATOR_DATA_DIR%"=="" (
30 call :doinstall %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
31 call :doinstall %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
33 call :doinstall %EMULATOR_DATA_DIR% multiscreen %2 %3
36 rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
37 if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak
39 echo Editing EPOC.INI to use multiscreen.
41 echo StartupMode ^7>> %EPOC_INI%
42 echo _NewScreen_ >> %EPOC_INI%
43 echo ScreenWidth 640 >> %EPOC_INI%
44 echo ScreenHeight 240 >> %EPOC_INI%
49 rem If WSINI.INI(s) aren't already backed up then backup WSINI.INI(s)
50 if not exist %1\z\system\data\wsini.bak if exist %1\z\system\data\wsini.ini copy /y %1\z\system\data\wsini.ini %1\z\system\data\wsini.bak >nul
51 if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul
54 if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
56 rem Rename WSECONS.DLL to ECONS.DLL
57 if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
59 rem Replace WSINI.INI with test version
60 if "%nonnga%"=="true" goto :doinstall_nonnga
61 if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\system\data\wsini.ini
62 if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen.ini %1\z\resource\data\wsini.ini
63 goto :doinstall_editwsini
66 if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\system\data\wsini.ini
67 if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen-nonnga.ini %1\z\resource\data\wsini.ini
70 rem Edit WSINI.INI to run tests automatically/multiscreen
71 if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
72 if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
76 rem ================ install changetracking ================
78 :install_changetracking
79 echo Replacing WSINI.INI files with test changetracking versions.
80 if "%EMULATOR_DATA_DIR%"=="" (
81 call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\udeb multiscreen %2 %3
82 call :doinstall_changetracking %EPOCROOT%epoc32\release\winscw\urel multiscreen %2 %3
84 call :doinstall_changetracking %EMULATOR_DATA_DIR% multiscreen %2 %3
87 rem If EPOC.INI isn't already backed up then backup EPOC.INI to EPOC.INI.bak
88 if not exist %EPOC_INI%.bak copy /y %EPOC_INI% %EPOC_INI%.bak >nul
90 echo Editing EPOC.INI to use multiscreen.
92 echo StartupMode ^7>> %EPOC_INI%
93 echo _NewScreen_ >> %EPOC_INI%
94 echo ScreenWidth 640 >> %EPOC_INI%
95 echo ScreenHeight 240 >> %EPOC_INI%
98 :doinstall_changetracking
100 rem Back up ECONS.DLL
101 if exist %1\econs.dll copy /y %1\econs.dll %1\econs-temp.dll
103 rem Rename WSECONS.DLL to ECONS.DLL
104 if exist %1\wsecons.dll copy /y %1\wsecons.dll %1\econs.dll
106 rem Back up WSINI.INI
107 if not exist %1\z\system\data\wsini.bak if exist %1\z\system\data\wsini.ini copy /y %1\z\system\data\wsini.ini %1\z\system\data\wsini.bak >nul
108 if not exist %1\z\resource\data\wsini.bak if exist %1\z\resource\data\wsini.ini copy /y %1\z\resource\data\wsini.ini %1\z\resource\data\wsini.bak >nul
110 rem Replace WSINI.INI with test changetracking version
111 if exist %1\z\system\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\system\data\wsini.ini >nul
112 if exist %1\z\resource\data\wsini.ini copy /y %1\z\wstest\wservu_multiscreen_changetracking.ini %1\z\resource\data\wsini.ini >nul
114 rem Edit WSINI.INI to run tests automatically/multiscreen
115 if exist %1\z\system\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\system\data\wsini.ini %2 %3 %4
116 if exist %1\z\resource\data\wsini.ini perl %1\z\wstest\wsini-writer.pl %1\z\resource\data\wsini.ini %2 %3 %4
120 rem ================ Uninstall ==============
123 echo Restoring WSINI.INI files.
124 if "%EMULATOR_DATA_DIR%"=="" (
125 call :douninstall %EPOCROOT%epoc32\release\winscw\udeb
126 call :douninstall %EPOCROOT%epoc32\release\winscw\urel
128 call :douninstall %EMULATOR_DATA_DIR%
131 rem If EPOC.INI was already backed up then restore EPOC.INI from EPOC.INI.bak
132 if exist %EPOC_INI%.bak (
133 echo Restoring EPOC.INI from backup
134 copy /y %EPOC_INI%.bak %EPOC_INI% >nul
135 del /f /q %EPOC_INI%.bak >nul
142 rem If WSINI.INI(s) were already backed up then restore WSINI.INI
143 if exist %1\z\system\data\wsini.bak (
144 copy /y %1\z\system\data\wsini.bak %1\z\system\data\wsini.ini >nul
145 del /f /q %1\z\system\data\wsini.bak >nul
147 if exist %1\z\resource\data\wsini.bak (
148 copy /y %1\z\resource\data\wsini.bak %1\z\resource\data\wsini.ini >nul
149 del /f /q %1\z\resource\data\wsini.bak >nul
152 echo Restoring backedup ECONS.DLL
153 if exist %1\econs-temp.dll copy /y %1\econs-temp.dll %1\econs.dll