Removed some more obsolete files
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22875 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1,51 +0,0 @@
|
|||||||
@echo off
|
|
||||||
Rem Make a WISE Installer distribution list, where each file is represented by
|
|
||||||
Rem a section like this:
|
|
||||||
Rem
|
|
||||||
Rem item: Install File
|
|
||||||
Rem Source=d:\wx2\thefile.txt
|
|
||||||
Rem Destination=%MAINDIR%\thefile.txt
|
|
||||||
Rem Flags=0000000000000010
|
|
||||||
Rem end
|
|
||||||
|
|
||||||
Rem Generate a list of all files in the distribution.
|
|
||||||
dir /BS >& %TEMP\files1.tmp
|
|
||||||
|
|
||||||
Rem Now we iterate through the list of files, writing out the middle section of
|
|
||||||
Rem the file.
|
|
||||||
Rem We have to remove the first part of the path,
|
|
||||||
Rem by truncating the start by the size of the current directory.
|
|
||||||
|
|
||||||
set sz=%@EVAL[%@LEN[%_CWD]+1]
|
|
||||||
set len=%@LINES[%TEMP\files1.tmp]
|
|
||||||
|
|
||||||
erase /Y %TEMP\files2.tmp
|
|
||||||
|
|
||||||
Rem, first add system files
|
|
||||||
cat %WXWIN\distrib\msw\wisesys.txt > %temp\files2.tmp
|
|
||||||
|
|
||||||
do i = 0 to %len by 1
|
|
||||||
set line=%@LINE[%TEMP\files1.tmp,%i]
|
|
||||||
Rem Skip directories.
|
|
||||||
if isdir %line enddo
|
|
||||||
set sz2=%@LEN[%line]
|
|
||||||
set n=%@EVAL[%sz2-%sz]
|
|
||||||
set line2=%@SUBSTR[%line,%sz,%n]
|
|
||||||
|
|
||||||
Rem Echo the file section
|
|
||||||
echo item: Install File >> %TEMP\files2.tmp
|
|
||||||
echo Source=%line >> %TEMP\files2.tmp
|
|
||||||
echo Destination=%%MAINDIR%%\%line2 >> %TEMP\files2.tmp
|
|
||||||
echo Flags=0000000000000010 >> %TEMP\files2.tmp
|
|
||||||
echo end >> %TEMP\files2.tmp
|
|
||||||
enddo
|
|
||||||
|
|
||||||
Rem Concatenate the 3 sections
|
|
||||||
cat %WXWIN\distrib\msw\wisetop.txt %TEMP\files2.tmp %WXWIN\distrib\msw\wisebott.txt > %WXWIN\distrib\msw\wxwin2.wse
|
|
||||||
|
|
||||||
erase /Y %TEMP\files1.tmp
|
|
||||||
rem erase /Y %TEMP\files2.tmp
|
|
||||||
|
|
||||||
goto end
|
|
||||||
|
|
||||||
:end
|
|
@@ -1,51 +0,0 @@
|
|||||||
#! /bin/sh
|
|
||||||
# Make a WISE Installer distribution list, where each file is represented by
|
|
||||||
# a section like this:
|
|
||||||
#
|
|
||||||
# item: Install File
|
|
||||||
# Source=d:\wx2\thefile.txt
|
|
||||||
# Destination=%MAINDIR%\thefile.txt
|
|
||||||
# Flags=0000000000000010
|
|
||||||
# end
|
|
||||||
|
|
||||||
wxdir=`cygpath -u $WXWIN`
|
|
||||||
tempdir=`cygpath -u $TEMP`
|
|
||||||
|
|
||||||
# Generate a list of all files in the distribution.
|
|
||||||
# We pass the output through sed in order to remove the preceding "./"
|
|
||||||
cd $wxdir/deliver/wx
|
|
||||||
find . -print | sed -e "s/\.\\///g" > $tempdir/files1.tmp
|
|
||||||
|
|
||||||
# Now we iterate through the list of files, writing out the middle section of
|
|
||||||
# the file.
|
|
||||||
# We have to remove the first part of the path,
|
|
||||||
# by truncating the start by the size of the current directory.
|
|
||||||
|
|
||||||
rm -f $tempdir/files2.tmp
|
|
||||||
|
|
||||||
# First add system files
|
|
||||||
cat $wxdir/distrib/msw/wisesys.txt > $tempdir/files2.tmp
|
|
||||||
|
|
||||||
for line in `cat $tempdir/files1.tmp` ; do
|
|
||||||
|
|
||||||
# If not a directory, add to file
|
|
||||||
if [ ! -d $line ] ; then
|
|
||||||
# The relative path
|
|
||||||
line2=`cygpath -w $line`
|
|
||||||
# The absolute path
|
|
||||||
line1=$WXWIN"\\deliver\\wx\\"$line2
|
|
||||||
|
|
||||||
echo "item: Install File " >> $tempdir/files2.tmp
|
|
||||||
echo " Source=$line1 " >> $tempdir/files2.tmp
|
|
||||||
echo " Destination=%MAINDIR%\\"$line2 >> $tempdir/files2.tmp
|
|
||||||
echo " Flags=0000000000000010" >> $tempdir/files2.tmp
|
|
||||||
echo "end" >> $tempdir/files2.tmp
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
# Concatenate the 3 sections
|
|
||||||
cat $wxdir/distrib/msw/wisetop.txt $tempdir/files2.tmp $wxdir/distrib/msw/wisebott.txt > $wxdir/distrib/msw/wxwin2.wse
|
|
||||||
|
|
||||||
rm -f $tempdir/files1.tmp
|
|
||||||
|
|
||||||
|
|
@@ -1,33 +0,0 @@
|
|||||||
@echo off
|
|
||||||
rem Convert a zip archive to one rooted at a particular directory.
|
|
||||||
rem This script is used by zipdistinno.bat.
|
|
||||||
|
|
||||||
set archive=%1
|
|
||||||
set dirname=%2
|
|
||||||
set changeto=%3
|
|
||||||
|
|
||||||
if "%archive%" == "" goto usage
|
|
||||||
if "%dirname%" == "" goto usage
|
|
||||||
if "%1" == "-help" goto usage
|
|
||||||
if "%1" == "--help" goto usage
|
|
||||||
if "%1" == "/?" goto usage
|
|
||||||
|
|
||||||
pushd %changeto%
|
|
||||||
|
|
||||||
if direxist %dirname% erase /sxyz %dirname%
|
|
||||||
mkdir %dirname%
|
|
||||||
cd %dirname%
|
|
||||||
unzip32 ..\%archive%
|
|
||||||
cd ..
|
|
||||||
erase %archive%
|
|
||||||
zip32 -r %archive% %dirname%/*
|
|
||||||
|
|
||||||
popd
|
|
||||||
|
|
||||||
goto end
|
|
||||||
|
|
||||||
:usage
|
|
||||||
echo rearchive archive.zip dir changetodir
|
|
||||||
echo E.g. rearchive wxWindows-2.3.3-html.zip wxWindows-2.3.3 c:\wx2dev\wxWindows\deliver
|
|
||||||
|
|
||||||
:end
|
|
@@ -1,269 +0,0 @@
|
|||||||
item: Set Variable
|
|
||||||
Variable=MAINDIR
|
|
||||||
Value=%MAINDIR%
|
|
||||||
Flags=00010100
|
|
||||||
end
|
|
||||||
item: Include Script
|
|
||||||
Pathname=c:\Program Files\WISE\INCLUDE\uninstal.wse
|
|
||||||
end
|
|
||||||
item: Check Configuration
|
|
||||||
Flags=10111011
|
|
||||||
end
|
|
||||||
item: Get Registry Key Value
|
|
||||||
Variable=GROUPDIR
|
|
||||||
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
|
|
||||||
Default=%WIN%\Start Menu\Programs
|
|
||||||
Value Name=Programs
|
|
||||||
Flags=00000010
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=GROUP
|
|
||||||
Value=%GROUPDIR%\%GROUP%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\Docs\htmlhelp\Wx.chm
|
|
||||||
Destination=%GROUP%\wxWindows Manual.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\Docs\Readme.txt
|
|
||||||
Destination=%GROUP%\ReadMe.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\docs\htmlhelp\dialoged.chm
|
|
||||||
Destination=%GROUP%\Dialog Editor Help.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\contrib\docs\htmlhelp\ogl.chm
|
|
||||||
Destination=%GROUP%\Object Graphics Library Help.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\docs\htmlhelp\tex2rtf.chm
|
|
||||||
Destination=%GROUP%\Tex2RTF Help.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\docs\html\index.htm
|
|
||||||
Destination=%GROUP%\HTML Docs Index.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\docs\msw\install.txt
|
|
||||||
Destination=%GROUP%\Compiling wxWindows.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\docs\changes.txt
|
|
||||||
Destination=%GROUP%\Change Log.lnk
|
|
||||||
Working Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\bin\dialoged.exe
|
|
||||||
Destination=%GROUP%\Dialog Editor.lnk
|
|
||||||
Working Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\bin\tex2rtf.exe
|
|
||||||
Destination=%GROUP%\Tex2RTF.lnk
|
|
||||||
Working Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\bin\dbgview.exe
|
|
||||||
Destination=%GROUP%\DebugView.lnk
|
|
||||||
Working Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Create Shortcut
|
|
||||||
Source=%MAINDIR%\bin\life.exe
|
|
||||||
Destination=%GROUP%\Life! Demo.lnk
|
|
||||||
Working Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Else Statement
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Change Log
|
|
||||||
Command Line=%MAINDIR%\docs\changes.txt
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=wxWindows Manual
|
|
||||||
Command Line=%MAINDIR%\Docs\htmlhelp\wx.chm
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Compiling wxWindows
|
|
||||||
Command Line=%MAINDIR%\docs\msw\install.txt
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=ReadMe
|
|
||||||
Command Line=%MAINDIR%\Docs\Readme.txt
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=HTML Docs Index
|
|
||||||
Command Line=%MAINDIR%\docs\html\index.htm
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Dialog Editor Help
|
|
||||||
Command Line=%MAINDIR%\docs\htmlhelp\dialoged.chm
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Object Graphics Library Help
|
|
||||||
Command Line=%MAINDIR%\contrib\docs\htmlhelp\ogl.chm
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Tex2RTF Help
|
|
||||||
Command Line=%MAINDIR%\docs\htmlhelp\tex2rtf.chm
|
|
||||||
Default Directory=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Dialog Editor
|
|
||||||
Command Line=%MAINDIR%\bin\dialoged.exe
|
|
||||||
Default Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Tex2RTF
|
|
||||||
Command Line=%MAINDIR%\bin\tex2rtf.exe
|
|
||||||
Default Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=DebugView
|
|
||||||
Command Line=%MAINDIR%\bin\dbgview.exe
|
|
||||||
Default Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: Add ProgMan Icon
|
|
||||||
Group=%GROUP%
|
|
||||||
Icon Name=Life! Demo
|
|
||||||
Command Line=%MAINDIR%\bin\life.exe
|
|
||||||
Default Directory=%MAINDIR%\bin
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: Self-Register OCXs/DLLs
|
|
||||||
Description=Updating System Configuration, Please Wait...
|
|
||||||
end
|
|
||||||
item: Execute Program
|
|
||||||
Pathname=explorer.exe
|
|
||||||
Command Line=%GROUP%
|
|
||||||
end
|
|
||||||
item: Add to AUTOEXEC.BAT
|
|
||||||
New Text=SET WXWIN=%MAINDIR%
|
|
||||||
Search Text=SET WXWIN
|
|
||||||
Line Number=0
|
|
||||||
Flags=00010110
|
|
||||||
end
|
|
||||||
item: Wizard Block
|
|
||||||
Direction Variable=DIRECTION
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
Bitmap Pathname=c:\Program Files\WISE\DIALOGS\TEMPLATE\WIZARD.BMP
|
|
||||||
X Position=9
|
|
||||||
Y Position=10
|
|
||||||
Filler Color=8421440
|
|
||||||
Flags=00000011
|
|
||||||
end
|
|
||||||
item: Custom Dialog Set
|
|
||||||
Name=Finished
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
item: Dialog
|
|
||||||
Title=%APPTITLE% Installation
|
|
||||||
Title French=Installation de %APPTITLE%
|
|
||||||
Title German=Installation von %APPTITLE%
|
|
||||||
Title Spanish=Instalaci<63>n de %APPTITLE%
|
|
||||||
Title Italian=Installazione di %APPTITLE%
|
|
||||||
Width=271
|
|
||||||
Height=224
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=150 187 195 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=N
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=&Finish
|
|
||||||
Text French=&Fin
|
|
||||||
Text German=&Weiter
|
|
||||||
Text Spanish=&Terminar
|
|
||||||
Text Italian=&Fine
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=105 187 150 202
|
|
||||||
Variable=DISABLED
|
|
||||||
Value=!
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=< &Back
|
|
||||||
Text French=< &Retour
|
|
||||||
Text German=< &Zur<75>ck
|
|
||||||
Text Spanish=< &Atr<74>s
|
|
||||||
Text Italian=< &Indietro
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=211 187 256 202
|
|
||||||
Variable=DISABLED
|
|
||||||
Value=!
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=&Cancel
|
|
||||||
Text French=&Annuler
|
|
||||||
Text German=&Abbrechen
|
|
||||||
Text Spanish=&Cancelar
|
|
||||||
Text Italian=&Annulla
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=8 180 256 181
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 8 258 42
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Name=Times New Roman
|
|
||||||
Font Style=-24 0 0 0 700 255 0 0 0 3 2 1 18
|
|
||||||
Text=Installation Completed!
|
|
||||||
Text French=Installation termin<69>e !
|
|
||||||
Text German=Die Installation ist abgeschlossen!
|
|
||||||
Text Spanish=<3D>Instalaci<63>n terminada!
|
|
||||||
Text Italian=Installazione completata!
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 42 256 124
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=The %APPTITLE% source files have been successfully installed, with some convenient shortcuts in the "wxWindows 2" program group.
|
|
||||||
Text=
|
|
||||||
Text=You will need to compile the library and any demo files you wish to run: please see docs\msw\install.txt for details.
|
|
||||||
Text=
|
|
||||||
Text=Press the Finish button to exit this installation.
|
|
||||||
Text French=%APPTITLE% est maintenant install<6C>.
|
|
||||||
Text French=
|
|
||||||
Text French=Cliquez sur le bouton Fin pour quitter l'installation.
|
|
||||||
Text German=%APPTITLE% wurde erfolgreich installiert.
|
|
||||||
Text German=
|
|
||||||
Text German=Klicken Sie auf "Weiter", um die Installation zu beenden.
|
|
||||||
Text Spanish=%APPTITLE% se ha instalado con <20>xito.
|
|
||||||
Text Spanish=
|
|
||||||
Text Spanish=Presione el bot<6F>n Terminar para salir de esta instalaci<63>n.
|
|
||||||
Text Italian=L'installazione %APPTITLE% <20> stata portata a termine con successo.
|
|
||||||
Text Italian=
|
|
||||||
Text Italian=Premere il pulsante Fine per uscire dall'installazione.
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
@@ -1,21 +0,0 @@
|
|||||||
item: Install File
|
|
||||||
Source=c:\Windows\System\Msvcirt.dll
|
|
||||||
Destination=%SYS32%\Msvcirt.dll
|
|
||||||
Flags=0000010000010011
|
|
||||||
end
|
|
||||||
item: Install File
|
|
||||||
Source=c:\Windows\System\Msvcrt.dll
|
|
||||||
Destination=%SYS32%\Msvcrt.dll
|
|
||||||
Flags=0000010000010011
|
|
||||||
end
|
|
||||||
item: Install File
|
|
||||||
Source=c:\Windows\System\Msvcrt.dll
|
|
||||||
Destination=%SYS%\Msvcrt.dll
|
|
||||||
Flags=0000010000010011
|
|
||||||
end
|
|
||||||
item: Install File
|
|
||||||
Source=c:\Windows\System\Msvcirt.dll
|
|
||||||
Destination=%SYS%\Msvcirt.dll
|
|
||||||
Flags=0000010000010011
|
|
||||||
end
|
|
||||||
|
|
@@ -1,594 +0,0 @@
|
|||||||
Document Type: WSE
|
|
||||||
item: Global
|
|
||||||
Version=5.0
|
|
||||||
Title=wxWindows 2.3.0 Installation
|
|
||||||
Flags=00000100
|
|
||||||
Split=1420
|
|
||||||
Languages=65 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
||||||
Japanese Font Name=MS Gothic
|
|
||||||
Japanese Font Size=10
|
|
||||||
Start Gradient=0 0 255
|
|
||||||
End Gradient=0 0 0
|
|
||||||
Windows Flags=00000000000000010010110000001000
|
|
||||||
Log Pathname=%MAINDIR%\INSTALL.LOG
|
|
||||||
Message Font=MS Sans Serif
|
|
||||||
Font Size=8
|
|
||||||
Disk Filename=SETUP
|
|
||||||
Patch Flags=0000000000000001
|
|
||||||
Patch Threshold=85
|
|
||||||
Patch Memory=4000
|
|
||||||
EXE Filename=d:\wx2dev\wxWindows\deliver\setup.exe
|
|
||||||
FTP Cluster Size=20
|
|
||||||
Variable Name1=_SYS_
|
|
||||||
Variable Default1=C:\WINDOWS\SYSTEM
|
|
||||||
Variable Flags1=00001000
|
|
||||||
Variable Name2=_ODBC16_
|
|
||||||
Variable Default2=C:\WINDOWS\SYSTEM
|
|
||||||
Variable Flags2=00001000
|
|
||||||
Variable Name3=_ODBC32_
|
|
||||||
Variable Default3=C:\WINDOWS\SYSTEM
|
|
||||||
Variable Flags3=00001000
|
|
||||||
Variable Name4=_WISE_
|
|
||||||
Variable Default4=C:\PROGRAM FILES\WISE
|
|
||||||
Variable Flags4=00001000
|
|
||||||
end
|
|
||||||
item: Open/Close INSTALL.LOG
|
|
||||||
Flags=00000001
|
|
||||||
end
|
|
||||||
item: Check if File/Dir Exists
|
|
||||||
Pathname=%SYS%
|
|
||||||
Flags=10000100
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=SYS
|
|
||||||
Value=%WIN%
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=APPTITLE
|
|
||||||
Value=wxWindows 2.3.0
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=GROUP
|
|
||||||
Value=wxWindows 2
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=DISABLED
|
|
||||||
Value=!
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=MAINDIR
|
|
||||||
Value=wx2
|
|
||||||
end
|
|
||||||
item: Display Graphic
|
|
||||||
Pathname=d:\wx2dev\wxWindows\distrib\msw\wxwin01.bmp
|
|
||||||
X Position=16
|
|
||||||
Y Position=16
|
|
||||||
end
|
|
||||||
item: Check Configuration
|
|
||||||
Flags=10111011
|
|
||||||
end
|
|
||||||
item: Get Registry Key Value
|
|
||||||
Variable=COMMON
|
|
||||||
Key=SOFTWARE\Microsoft\Windows\CurrentVersion
|
|
||||||
Default=C:\Program Files\Common Files
|
|
||||||
Value Name=CommonFilesDir
|
|
||||||
Flags=00000100
|
|
||||||
end
|
|
||||||
item: Get Registry Key Value
|
|
||||||
Variable=PROGRAM_FILES
|
|
||||||
Key=SOFTWARE\Microsoft\Windows\CurrentVersion
|
|
||||||
Default=C:\Program Files
|
|
||||||
Value Name=ProgramFilesDir
|
|
||||||
Flags=00000100
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=MAINDIR
|
|
||||||
Value=%PROGRAM_FILES%\%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=EXPLORER
|
|
||||||
Value=1
|
|
||||||
end
|
|
||||||
item: Else Statement
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=MAINDIR
|
|
||||||
Value=C:\%MAINDIR%
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=BACKUP
|
|
||||||
Value=%MAINDIR%\BACKUP
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=DOBACKUP
|
|
||||||
Value=B
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=BRANDING
|
|
||||||
Value=0
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=BRANDING
|
|
||||||
Value=1
|
|
||||||
end
|
|
||||||
item: Read INI Value
|
|
||||||
Variable=NAME
|
|
||||||
Pathname=%INST%\CUSTDATA.INI
|
|
||||||
Section=Registration
|
|
||||||
Item=Name
|
|
||||||
end
|
|
||||||
item: Read INI Value
|
|
||||||
Variable=COMPANY
|
|
||||||
Pathname=%INST%\CUSTDATA.INI
|
|
||||||
Section=Registration
|
|
||||||
Item=Company
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=NAME
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=DOBRAND
|
|
||||||
Value=1
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: Wizard Block
|
|
||||||
Direction Variable=DIRECTION
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
Bitmap Pathname=c:\Program Files\WISE\DIALOGS\TEMPLATE\WIZARD.BMP
|
|
||||||
X Position=9
|
|
||||||
Y Position=10
|
|
||||||
Filler Color=8421440
|
|
||||||
Flags=00000011
|
|
||||||
end
|
|
||||||
item: Custom Dialog Set
|
|
||||||
Name=Welcome
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
item: Dialog
|
|
||||||
Title=%APPTITLE% Installation
|
|
||||||
Title French=Installation de %APPTITLE%
|
|
||||||
Title German=Installation von %APPTITLE%
|
|
||||||
Title Spanish=Instalaci<63>n de %APPTITLE%
|
|
||||||
Title Italian=Installazione di %APPTITLE%
|
|
||||||
Width=271
|
|
||||||
Height=224
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 8 258 42
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Name=Times New Roman
|
|
||||||
Font Style=-24 0 0 0 700 255 0 0 0 3 2 1 18
|
|
||||||
Text=Welcome!
|
|
||||||
Text French=Bienvenue !
|
|
||||||
Text German=Willkommen!
|
|
||||||
Text Spanish=<3D>Bienvenido!
|
|
||||||
Text Italian=Benvenuti!
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=150 187 195 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=N
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=&Next >
|
|
||||||
Text French=&Suite >
|
|
||||||
Text German=&Weiter >
|
|
||||||
Text Spanish=&Siguiente >
|
|
||||||
Text Italian=&Avanti >
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=105 187 150 202
|
|
||||||
Variable=DISABLED
|
|
||||||
Value=!
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=< &Back
|
|
||||||
Text French=< &Retour
|
|
||||||
Text German=< &Zur<75>ck
|
|
||||||
Text Spanish=< &Atr<74>s
|
|
||||||
Text Italian=< &Indietro
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=211 187 256 202
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=&Cancel
|
|
||||||
Text French=&Annuler
|
|
||||||
Text German=&Abbrechen
|
|
||||||
Text Spanish=&Cancelar
|
|
||||||
Text Italian=&Annulla
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 41 256 130
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=This installation program will install %APPTITLE%. It will need 30-130 MB of hard disk space,
|
|
||||||
Text=depending on the disk cluster size. Allow further disk space for compiling the library
|
|
||||||
Text=and samples.
|
|
||||||
Text=
|
|
||||||
Text=Press the Next button to start the installation. You can press the Cancel button now if you do not want to install %APPTITLE% at this time.
|
|
||||||
Text French=Ce programme d'installation va installer %APPTITLE%.
|
|
||||||
Text French=
|
|
||||||
Text French=Cliquez sur le bouton Suite pour d<>marrer l'installation. Vous pouvez cliquer sur le bouton Quitter l'installation si vous ne voulez pas installer %APPTITLE% tout de suite.
|
|
||||||
Text German=Mit diesem Installationsprogramm wird %APPTITLE% installiert.
|
|
||||||
Text German=
|
|
||||||
Text German=Klicken Sie auf "Weiter", um mit der Installation zu beginnen. Klicken Sie auf "Abbrechen", um die Installation von %APPTITLE% abzubrechen.
|
|
||||||
Text Spanish=Este programa de instalaci<63>n instalar<61> %APPTITLE%.
|
|
||||||
Text Spanish=
|
|
||||||
Text Spanish=Presione el bot<6F>n Siguiente para iniciar la instalaci<63>n. Puede presionar el bot<6F>n Salir de instalaci<63>n si no desea instalar %APPTITLE% en este momento.
|
|
||||||
Text Italian=Questo programma installer<65> %APPTITLE%.
|
|
||||||
Text Italian=
|
|
||||||
Text Italian=Per avvviare l'installazione premere il pulsante Avanti. Se non si desidera installare %APPTITLE% ora, premere il pulsante Esci dall'installazione.
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=8 180 256 181
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: Custom Dialog Set
|
|
||||||
Name=Select Destination Directory
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
item: Dialog
|
|
||||||
Title=%APPTITLE% Installation
|
|
||||||
Title French=Installation de %APPTITLE%
|
|
||||||
Title German=Installation von %APPTITLE%
|
|
||||||
Title Spanish=Instalaci<63>n de %APPTITLE%
|
|
||||||
Title Italian=Installazione di %APPTITLE%
|
|
||||||
Width=271
|
|
||||||
Height=224
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=150 187 195 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=N
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=&Next >
|
|
||||||
Text French=&Suite >
|
|
||||||
Text German=&Weiter >
|
|
||||||
Text Spanish=&Siguiente >
|
|
||||||
Text Italian=&Avanti >
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=105 187 150 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=B
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Text=< &Back
|
|
||||||
Text French=< &Retour
|
|
||||||
Text German=< &Zur<75>ck
|
|
||||||
Text Spanish=< &Atr<74>s
|
|
||||||
Text Italian=< &Indietro
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=211 187 256 202
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=&Cancel
|
|
||||||
Text French=&Annuler
|
|
||||||
Text German=&Abbrechen
|
|
||||||
Text Spanish=&Cancelar
|
|
||||||
Text Italian=&Annulla
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=8 180 256 181
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 8 258 42
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Name=Times New Roman
|
|
||||||
Font Style=-24 0 0 0 700 255 0 0 0 3 2 1 18
|
|
||||||
Text=Select Destination Directory
|
|
||||||
Text French=S<>lectionner le r<>pertoire de destination
|
|
||||||
Text German=Zielverzeichnis w<>hlen
|
|
||||||
Text Spanish=Seleccione el directorio de destino
|
|
||||||
Text Italian=Selezionare Directory di destinazione
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 42 256 82
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=Please select the directory where %APPTITLE% files are to be installed.
|
|
||||||
Text=
|
|
||||||
Text=Important: do not install into a directory with a space in the name, such as Program Files.
|
|
||||||
Text French=Veuillez s<>lectionner le r<>pertoire dans lequel les fichiers %APPTITLE% doivent <20>tre install<6C>s.
|
|
||||||
Text German=Geben Sie an, in welchem Verzeichnis die %APPTITLE%-Dateien installiert werden sollen.
|
|
||||||
Text Spanish=Por favor seleccione el directorio donde desee instalar los archivos de %APPTITLE%.
|
|
||||||
Text Italian=Selezionare la directory dove verranno installati i file %APPTITLE%.
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 98 256 125
|
|
||||||
Action=1
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=208 106 253 121
|
|
||||||
Variable=MAINDIR_SAVE
|
|
||||||
Value=%MAINDIR%
|
|
||||||
Destination Dialog=1
|
|
||||||
Action=2
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=B&rowse
|
|
||||||
Text French=Parcourir
|
|
||||||
Text German=Durchsuchen
|
|
||||||
Text Spanish=Buscar
|
|
||||||
Text Italian=Sfoglie
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=90 109 206 120
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=%MAINDIR%
|
|
||||||
Text French=%MAINDIR%
|
|
||||||
Text German=%MAINDIR%
|
|
||||||
Text Spanish=%MAINDIR%
|
|
||||||
Text Italian=%MAINDIR%
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: Dialog
|
|
||||||
Title=Select Destination Directory
|
|
||||||
Title French=S<>lectionner le r<>pertoire de destination
|
|
||||||
Title German=Zielverzeichnis w<>hlen
|
|
||||||
Title Spanish=Seleccione el directorio de destino
|
|
||||||
Title Italian=Selezionare Directory di destinazione
|
|
||||||
Width=221
|
|
||||||
Height=173
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Listbox
|
|
||||||
Rectangle=5 5 163 149
|
|
||||||
Variable=MAINDIR
|
|
||||||
Create Flags=01010000100000010000000101000000
|
|
||||||
Flags=0000110000100010
|
|
||||||
Text=%MAINDIR%
|
|
||||||
Text French=%MAINDIR%
|
|
||||||
Text German=%MAINDIR%
|
|
||||||
Text Spanish=%MAINDIR%
|
|
||||||
Text Italian=%MAINDIR%
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=167 6 212 21
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=OK
|
|
||||||
Text French=OK
|
|
||||||
Text German=OK
|
|
||||||
Text Spanish=Aceptar
|
|
||||||
Text Italian=OK
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=167 25 212 40
|
|
||||||
Variable=MAINDIR
|
|
||||||
Value=%MAINDIR_SAVE%
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Text=Cancel
|
|
||||||
Text French=Annuler
|
|
||||||
Text German=Abbrechen
|
|
||||||
Text Spanish=Cancelar
|
|
||||||
Text Italian=Annulla
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: Custom Dialog Set
|
|
||||||
Name=Select Program Manager Group
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
item: Dialog
|
|
||||||
Title=%APPTITLE% Installation
|
|
||||||
Title French=Installation de %APPTITLE%
|
|
||||||
Title German=Installation von %APPTITLE%
|
|
||||||
Title Spanish=Instalaci<63>n de %APPTITLE%
|
|
||||||
Title Italian=Installazione di %APPTITLE%
|
|
||||||
Width=271
|
|
||||||
Height=224
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=150 187 195 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=N
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=&Next >
|
|
||||||
Text French=&Suite >
|
|
||||||
Text German=&Weiter >
|
|
||||||
Text Spanish=&Siguiente >
|
|
||||||
Text Italian=&Avanti >
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=105 187 150 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=B
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Text=< &Back
|
|
||||||
Text French=< &Retour
|
|
||||||
Text German=< &Zur<75>ck
|
|
||||||
Text Spanish=< &Atr<74>s
|
|
||||||
Text Italian=< &Indietro
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=211 187 256 202
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=&Cancel
|
|
||||||
Text French=&Annuler
|
|
||||||
Text German=&Abbrechen
|
|
||||||
Text Spanish=&Cancelar
|
|
||||||
Text Italian=&Annulla
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=8 180 256 181
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 8 258 42
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Name=Times New Roman
|
|
||||||
Font Style=-24 0 0 0 700 255 0 0 0 3 2 1 18
|
|
||||||
Text=Select ProgMan Group
|
|
||||||
Text French=S<>lectionner le groupe du Gestionnaire de programme
|
|
||||||
Text German=Bestimmung der Programm-Managergruppe
|
|
||||||
Text Spanish=Seleccione grupo del Administrador de programas
|
|
||||||
Text Italian=Selezionare il gruppo ProgMan
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 44 256 68
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=Enter the name of the Program Manager group to add the %APPTITLE% icons to:
|
|
||||||
Text French=Entrez le nom du groupe du Gestionnaire de programme dans lequel vous souhaitez ajouter les ic<69>nes de %APPTITLE% :
|
|
||||||
Text German=Geben Sie den Namen der Programmgruppe ein, der das Symbol %APPTITLE% hinzugef<65>gt werden soll:
|
|
||||||
Text Spanish=Escriba el nombre del grupo del Administrador de programas en el que desea agregar los iconos de %APPTITLE%:
|
|
||||||
Text Italian=Inserire il nome del gruppo Program Manager per aggiungere le icone %APPTITLE% a:
|
|
||||||
end
|
|
||||||
item: Combobox
|
|
||||||
Rectangle=86 69 256 175
|
|
||||||
Variable=GROUP
|
|
||||||
Create Flags=01010000001000010000001100000001
|
|
||||||
Flags=0000000000000001
|
|
||||||
Text=%GROUP%
|
|
||||||
Text French=%GROUP%
|
|
||||||
Text German=%GROUP%
|
|
||||||
Text Spanish=%GROUP%
|
|
||||||
Text Italian=%GROUP%
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: Custom Dialog Set
|
|
||||||
Name=Start Installation
|
|
||||||
Display Variable=DISPLAY
|
|
||||||
item: Dialog
|
|
||||||
Title=%APPTITLE% Installation
|
|
||||||
Title French=Installation de %APPTITLE%
|
|
||||||
Title German=Installation von %APPTITLE%
|
|
||||||
Title Spanish=Instalaci<63>n de %APPTITLE%
|
|
||||||
Title Italian=Installazione di %APPTITLE%
|
|
||||||
Width=271
|
|
||||||
Height=224
|
|
||||||
Font Name=Helv
|
|
||||||
Font Size=8
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=150 187 195 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=N
|
|
||||||
Create Flags=01010000000000010000000000000001
|
|
||||||
Text=&Next >
|
|
||||||
Text French=&Suite >
|
|
||||||
Text German=&Weiter >
|
|
||||||
Text Spanish=&Siguiente >
|
|
||||||
Text Italian=&Avanti >
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=105 187 150 202
|
|
||||||
Variable=DIRECTION
|
|
||||||
Value=B
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=< &Back
|
|
||||||
Text French=< &Retour
|
|
||||||
Text German=< &Zur<75>ck
|
|
||||||
Text Spanish=< &Atr<74>s
|
|
||||||
Text Italian=< &Indietro
|
|
||||||
end
|
|
||||||
item: Push Button
|
|
||||||
Rectangle=211 187 256 202
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000010000000000000000
|
|
||||||
Text=&Cancel
|
|
||||||
Text French=&Annuler
|
|
||||||
Text German=&Abbrechen
|
|
||||||
Text Spanish=&Cancelar
|
|
||||||
Text Italian=&Annulla
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=8 180 256 181
|
|
||||||
Action=3
|
|
||||||
Create Flags=01010000000000000000000000000111
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 8 258 42
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Flags=0000000000000001
|
|
||||||
Name=Times New Roman
|
|
||||||
Font Style=-24 0 0 0 700 255 0 0 0 3 2 1 18
|
|
||||||
Text=Ready to Install!
|
|
||||||
Text French=Pr<50>t <20> installer !
|
|
||||||
Text German=Installationsbereit!
|
|
||||||
Text Spanish=<3D>Preparado para la instalaci<63>n!
|
|
||||||
Text Italian=Pronto per l'installazione!
|
|
||||||
end
|
|
||||||
item: Static
|
|
||||||
Rectangle=86 42 256 102
|
|
||||||
Create Flags=01010000000000000000000000000000
|
|
||||||
Text=You are now ready to install %APPTITLE%.
|
|
||||||
Text=
|
|
||||||
Text=Press the Next button to begin the installation or the Back button to reenter the installation information.
|
|
||||||
Text French=Vous <20>tes maintenant pr<70>t <20> installer les fichiers %APPTITLE%.
|
|
||||||
Text French=
|
|
||||||
Text French=Cliquez sur le bouton Suite pour commencer l'installation ou sur le bouton Retour pour entrer les informations d'installation <20> nouveau.
|
|
||||||
Text German=Sie k<>nnen %APPTITLE% nun installieren.
|
|
||||||
Text German=
|
|
||||||
Text German=Klicken Sie auf "Weiter", um mit der Installation zu beginnen. Klicken Sie auf "Zur<75>ck", um die Installationsinformationen neu einzugeben.
|
|
||||||
Text Spanish=Ya est<73> listo para instalar %APPTITLE%.
|
|
||||||
Text Spanish=
|
|
||||||
Text Spanish=Presione el bot<6F>n Siguiente para comenzar la instalaci<63>n o presione Atr<74>s para volver a ingresar la informaci<63>n para la instalaci<63>n.
|
|
||||||
Text Italian=Ora <20> possibile installare %APPTITLE%.
|
|
||||||
Text Italian=
|
|
||||||
Text Italian=Premere il pulsante Avanti per avviare l'installazione o il pulsante Indietro per reinserire le informazioni di installazione.
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=DISPLAY
|
|
||||||
Value=Select Destination Directory
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=BACKUP
|
|
||||||
Value=%MAINDIR%\BACKUP
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=DOBACKUP
|
|
||||||
Value=A
|
|
||||||
end
|
|
||||||
item: Set Variable
|
|
||||||
Variable=BACKUPDIR
|
|
||||||
Value=%BACKUP%
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=BRANDING
|
|
||||||
Value=1
|
|
||||||
end
|
|
||||||
item: If/While Statement
|
|
||||||
Variable=DOBRAND
|
|
||||||
Value=1
|
|
||||||
end
|
|
||||||
item: Edit INI File
|
|
||||||
Pathname=%INST%\CUSTDATA.INI
|
|
||||||
Settings=[Registration]
|
|
||||||
Settings=NAME=%NAME%
|
|
||||||
Settings=COMPANY=%COMPANY%
|
|
||||||
Settings=
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: End Block
|
|
||||||
end
|
|
||||||
item: Open/Close INSTALL.LOG
|
|
||||||
end
|
|
||||||
item: Check Disk Space
|
|
||||||
Component=COMPONENTS
|
|
||||||
end
|
|
@@ -1,30 +0,0 @@
|
|||||||
@echo off
|
|
||||||
rem Zip up an external distribution of STC (wxStyledTextCtrl)
|
|
||||||
set src=d:\wx2\wxWindows
|
|
||||||
set dest=d:\wx2\wxWindows\deliver
|
|
||||||
|
|
||||||
if "%src" == "" goto usage
|
|
||||||
if "%dest" == "" goto usage
|
|
||||||
echo About to archive an external STC distribution:
|
|
||||||
echo From %src
|
|
||||||
echo To %dest\stc.zip
|
|
||||||
echo CTRL-C if this is not correct.
|
|
||||||
inkey /W4 `Press any key to continue...` %%input
|
|
||||||
|
|
||||||
erase %dest\stc.zip
|
|
||||||
cd %src
|
|
||||||
zip32 -@ %dest\stc.zip < %src\distrib\msw\stc.rsp
|
|
||||||
|
|
||||||
cd %dest
|
|
||||||
|
|
||||||
echo STC archived.
|
|
||||||
goto end
|
|
||||||
|
|
||||||
:usage
|
|
||||||
echo DOS STC distribution.
|
|
||||||
echo Usage: zipstc source destination
|
|
||||||
echo e.g. zipstc d:\wx2\wxWindows d:\wx2\wxWindows\deliver
|
|
||||||
|
|
||||||
:end
|
|
||||||
|
|
||||||
|
|
Reference in New Issue
Block a user