forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython20.wse
2938 lines (2938 loc) · 73.3 KB
/
python20.wse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Document Type: WSE
item: Global
Version=8.14
Title=Python 2.2 alpha 4
Flags=00010100
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 255 0
End Gradient=0 128 0
Windows Flags=00000100000011010010010100001010
Log Pathname=%MAINDIR%\INSTALL.LOG
Message Font=MS Sans Serif
Font Size=8
Pages Modified=00010000011101000000000100000111
Extra Pages=00000000000000000000000010110010
Disk Filename=SETUP
Patch Flags=0000000000001001
Patch Threshold=85
Patch Memory=4000
EXE Filename=Python-2.2a4.exe
Dialogs Version=8
Version File=2.2a4
Version Description=Python Programming Language
Version Copyright=©2001 Python Software Foundation
Version Company=PythonLabs at Zope Corporation
Crystal Format=10111100101100000010001001001001
Step View=&All
Variable Name1=_WISE_
Variable Description1=WISE root directory
Variable Default1=C:\PROGRAM FILES\WISE INSTALLMASTER 8.1
Variable Flags1=00001000
Variable Name2=_TCLMINOR_
Variable Description2=Tcl/Tk Minor Version (e.g. the "3" in "8.3.1")
Variable Default2=3
Variable Flags2=00001000
Variable Name3=_DOC_
Variable Description3=The unpacked HTML doc directory.
Variable Default3=..\html
Variable Flags3=00001001
Variable Name4=_SYS_
Variable Description4=System directory (where to find MSVCRT.DLL)
Variable Default4=C:\Windows\System
Variable Values4=C:\Windows\System
Variable Values4=C:\WINNT\System32
Variable Flags4=00000010
Variable Name5=_PYMAJOR_
Variable Description5=Python major version number; the 2 in 2.3.
Variable Default5=2
Variable Flags5=00001000
Variable Name6=_PYMINOR_
Variable Description6=Python minor version number; the 3 in 2.3
Variable Default6=2
Variable Flags6=00001000
Variable Name7=_DOADMIN_
Variable Description7=The initial value for %DOADMIN%.
Variable Description7=When 0, we never try to write under HKLM,
Variable Description7=and install the Python + MS runtime DLLs in
Variable Description7=the Python directory instead of the system dir.
Variable Default7=1
Variable Values7=1
Variable Values7=0
Variable Flags7=00001010
end
item: Set Variable
Variable=PYVER_STRING
Value=2.2a4
end
item: Remark
end
item: Remark
Text=When the version number changes, set the compiler
end
item: Remark
Text=vrbls _PYMAJOR_ and _PYMINOR_.
end
item: Remark
Text=Nothing in the script below should need fiddling then.
end
item: Remark
Text=Other things that need fiddling:
end
item: Remark
Text= PYVER_STRING above.
end
item: Remark
Text= The "Title:" in the upper left corner of the GUI.
end
item: Remark
Text= Build Settings and Version Resource on step 6 (Finish) of the Installation Expert
end
item: Remark
Text= Be sure to select Steps->All or you may not see these!
end
item: Remark
end
item: Set Variable
Variable=APPTITLE
Value=Python %PYVER_STRING%
end
item: Remark
Text=PY_VERSION should be major.minor only; used to create the registry key; must match MS_DLL_ID in python_nt.rc
end
item: Set Variable
Variable=PY_VERSION
Value=%_PYMAJOR_%.%_PYMINOR_%
end
item: Remark
Text=GROUP is the Start menu group name; user can override.
end
item: Set Variable
Variable=GROUP
Value=Python %PY_VERSION%
Flags=10000000
end
item: Remark
Text=MAINDIR is the app directory; user can override.
end
item: Set Variable
Variable=MAINDIR
Value=Python%_PYMAJOR_%%_PYMINOR_%
end
item: Remark
end
item: Set Variable
Variable=DOADMIN
Value=%_DOADMIN_%
end
item: Remark
Text=Give non-admin users a chance to abort.
end
item: Check Configuration
Flags=10011111
end
item: Set Variable
Variable=DOADMIN
Value=0
end
item: Display Message
Title=Doing non-admin install
Text=The current login does not have Administrator Privileges on this machine. Python will install its registry information into the per-user area only for the current login, instead of into the per-machine area for every account on this machine. Some advanced uses of Python may not work as a result (for example, running a Python script as a service).
Text=
Text=If this is not what you want, please click Cancel to abort this installation, log on as an Administrator, and start the installation again.
Flags=00001000
end
item: End Block
end
item: Remark
end
item: Remark
Text=BEGIN WIZARD STUFF -----------------------------------------------------------------------------------------------------------------------------
end
item: Remark
Text=Note from Tim: the "stop" on the next line is actually "pause".
end
item: Open/Close INSTALL.LOG
Flags=00000001
end
item: Remark
Text=If the destination system does not have a writable Windows\System directory, system files will be written to the Windows\ directory
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: 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=EXPLORER
Value=1
end
item: End Block
end
item: Remark
Text=Note from Tim: doesn't seem to be a way to get the true boot drive, the Wizard hardcodes "C".
end
item: Set Variable
Variable=MAINDIR
Value=C:\%MAINDIR%
Flags=00001100
end
item: Remark
Text=BACKUP is the variable that holds the path that all backup files will be copied to when overwritten
end
item: Set Variable
Variable=BACKUP
Value=%MAINDIR%\BACKUP
Flags=10000000
end
item: Remark
Text=DOBACKUP determines if a backup will be performed. The possible values are A (do backup) or B (do not do backup)
end
item: Set Variable
Variable=DOBACKUP
Value=A
end
item: Remark
Text=BRANDING determines if the installation will be branded with a name and company. By default, this is written to the INST directory (installation media).
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: Get System Information
Variable=NAME
Flags=00000110
end
item: Get System Information
Variable=COMPANY
Flags=00000111
end
item: End Block
end
item: End Block
end
item: Remark
Text=END WIZARD STUFF -----------------------------------------------------------------------------------------------------------------------------
end
item: Remark
end
item: Remark
Text=Set vrbls for the "Advanced Options" subdialog of Components.
end
item: Set Variable
Variable=SELECT_ADMIN
Value=A
end
item: If/While Statement
Variable=DOADMIN
Value=0
end
item: Set Variable
Variable=SELECT_ADMIN
Value=B
end
item: End Block
end
item: Remark
end
item: Remark
Text=TASKS values:
end
item: Remark
Text=A: Register file extensions
end
item: Remark
Text=B: Create Start Menu shortcuts
end
item: Set Variable
Variable=TASKS
Value=AB
end
item: Remark
end
item: Remark
Text=COMPONENTS values:
end
item: Remark
Text=A: interpreter and libraries
end
item: Remark
Text=B: Tcl/Tk
end
item: Remark
Text=C: docs
end
item: Remark
Text=D: tools
end
item: Remark
Text=E: test suite
end
item: Set Variable
Variable=COMPONENTS
Value=ABCDE
end
item: Remark
end
item: Remark
Text=March thru the user GUI.
end
item: Wizard Block
Direction Variable=DIRECTION
Display Variable=DISPLAY
Bitmap Pathname=.\installer.bmp
X Position=9
Y Position=10
Filler Color=11173759
Dialog=Select Destination Directory
Dialog=Backup Replaced Files
Dialog=Select Components
Dialog=Select Program Manager Group
Variable=
Variable=
Variable=
Variable=TASKS
Value=
Value=
Value=
Value=B
Compare=0
Compare=0
Compare=0
Compare=3
Flags=00000011
end
item: If/While Statement
Variable=DISPLAY
Value=Start Installation
end
item: Set Variable
Variable=SUMMARY
Value=Install directory: %MAINDIR%%CRLF%
end
item: Remark
end
item: If/While Statement
Variable=SELECT_ADMIN
Value=A
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Doing admin install.%CRLF%
Flags=00000001
end
item: Else Statement
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Doing non-admin install.%CRLF%
Flags=00000001
end
item: End Block
end
item: Remark
end
item: If/While Statement
Variable=DOBACKUP
Value=A
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Make backups, into %BACKUP%%CRLF%
Flags=00000001
end
item: Else Statement
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Don't make backups.%CRLF%
Flags=00000001
end
item: End Block
end
item: Remark
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Components:%CRLF%
Flags=00000001
end
item: If/While Statement
Variable=COMPONENTS
Value=A
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value= Python interpreter and libraries%CRLF%
Flags=00000001
end
item: End Block
end
item: If/While Statement
Variable=COMPONENTS
Value=B
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value= Tcl/Tk (Tkinter, IDLE, pydoc)%CRLF%
Flags=00000001
end
item: End Block
end
item: If/While Statement
Variable=COMPONENTS
Value=C
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value= Python documentation%CRLF%
Flags=00000001
end
item: End Block
end
item: If/While Statement
Variable=COMPONENTS
Value=D
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value= Tool and utility scripts%CRLF%
Flags=00000001
end
item: End Block
end
item: If/While Statement
Variable=COMPONENTS
Value=E
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value= Python test suite%CRLF%
Flags=00000001
end
item: End Block
end
item: Remark
end
item: If/While Statement
Variable=TASKS
Value=A
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Register file extensions.%CRLF%
Flags=00000001
end
item: Else Statement
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Don't register file extensions.%CRLF%
Flags=00000001
end
item: End Block
end
item: Remark
end
item: If/While Statement
Variable=TASKS
Value=B
Flags=00000010
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%Start Menu group: %GROUP%%CRLF%
Flags=00000001
end
item: Else Statement
end
item: Set Variable
Variable=SUMMARY
Value=%CRLF%No Start Menu shortcuts.%CRLF%
Flags=00000001
end
item: End Block
end
item: End Block
end
item: Remark
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ón de %APPTITLE%
Title Italian=Installazione di %APPTITLE%
Width=339
Height=280
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=188 234 244 253
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=264 234 320 253
Action=3
Create Flags=01010000000000010000000000000000
Text=&Cancel
Text French=&Annuler
Text German=&Abbrechen
Text Spanish=&Cancelar
Text Italian=&Annulla
end
item: Static
Rectangle=10 225 320 226
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=108 11 323 33
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: Listbox
Rectangle=108 58 321 219
Variable=MAINDIR
Enabled Color=00000000000000001111111111111111
Create Flags=01010000100000010000000101000001
Flags=0000110000001010
Text=%MAINDIR%
Text=
end
item: Static
Rectangle=108 40 313 58
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=Please select a directory for the %APPTITLE% files.
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=276
Height=216
Font Name=Helv
Font Size=8
item: Listbox
Rectangle=6 6 204 186
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=209 8 265 26
Create Flags=01010000000000010000000000000001
Text=OK
Text French=OK
Text German=OK
Text Spanish=Aceptar
Text Italian=OK
end
item: Push Button
Rectangle=209 31 265 50
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=Backup Replaced Files
Display Variable=DISPLAY
item: Dialog
Title=%APPTITLE% Installation
Title French=Fichiers de Sauvegarde Remplacés
Title German=Sicherungskopie von ersetzten Dateien erstellen
Title Portuguese=Ficheiros substituídos de segurança
Title Spanish=Copias de seguridad de los archivos reemplazados
Title Italian=Backup file sostituiti
Title Danish=Sikkerhedskopiering af erstattede filer
Title Dutch=Vervangen bestanden kopiëren
Title Norwegian=Sikkerhetskopiere erstattede filer
Title Swedish=Säkerhetskopiera utbytta filer
Width=350
Height=280
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=188 234 244 251
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Próximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Næste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nästa >
end
item: Push Button
Rectangle=131 234 188 251
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurück
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Tilbage
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Push Button
Rectangle=278 234 330 251
Action=3
Create Flags=01010000000000010000000000000000
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Annuller
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
item: Static
Rectangle=11 221 329 223
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=108 46 320 98
Create Flags=01010000000000000000000000000000
Text=This installation program can create backup copies of all files replaced during the installation. These files will be used when the software is uninstalled and a rollback is requested. If backup copies are not created, you will only be able to uninstall the software and not roll the system back to a previous state.
Text=
Text=Do you want to create backups of replaced files?
Text French=Le programme d'installation peut créer des copies de sauvegarde de tous les fichiers remplacés pendant l'installation. Ces fichiers sont utilisés au cas où le logiciel est désinstallé et que l'on procède à la reprise du système. Si les copies de sauvegarde ne sont pas créées, on ne pourra que désinstaller le logiciel sans reprendre le système à un état précédent. Voulez-vous créer une sauvegarde des fichiers remplacés ?
Text German=Dieses Installationsprogramm kann Sicherungskopien von allen während der Installation ersetzten Dateien erstellen. Diese Dateien werden zur Rückgängigmachung der Installation und bei Anforderung eines Rollbacks verwendet. Ohne Sicherungskopien ist nur eine Rückgängigmachung der Installation möglich, nicht aber ein Rollback des Systems. Sicherungskopien der ersetzten Dateien erstellen?
Text Portuguese=Este programa de instalação pode criar cópias de segurança de todos os ficheiros substituídos durante a instalação. Estes ficheiros serão utilizados quando o programa for desinstalado e for requisitada uma retomada. Se as cópias de segurança não forem criadas, só poderá desinstalar o programa e não pode retomar um estado anterior do sistema. Deseja criar cópias de segurança dos ficheiros substituídos?
Text Spanish=Este programa de instalación puede crear copias de seguridad de todos los archivos reemplazados durante la instalación. Estos archivos se utilizarán cuando se desinstale el software y se solicite volver al estado anterior. Si no se crean copias de seguridad, únicamente podrá desinstalar el software y no podrá devolver el sistema al estado anterior. ¿Desea crear archivos de seguridad de los archivos reemplazados?
Text Italian=Questo programma di installazione può creare copie di backup di tutti i file sostituiti durante linstallazione. Questi file saranno usati quando il software sarà disinstallato e sarà richiesto un ritorno allo stato precedente. Se non crei le copie di backup, potrai solo disinstallare il software, ma non potrai riportare il sistema allo stato precedente. Vuoi creare i file di backup dei file sostituiti?
Text Danish=Dette installationsprogram kan oprette sikkerhedskopier af alle filer, som erstattes under installationen. Disse filer benyttes, når softwaren fjernes, og den tidligere systemkonfiguration genetableres. Hvis der ikke oprettes sikkerhedskopier, kan du kun fjerne den installerede software og ikke genetablere den tidligere systemkonfiguration. Vil du oprette sikkerhedskopier af filer, som erstattes?
Text Dutch=Dit installatieprogramma kan kopieën maken van alle bestanden die tijdens de installatie worden vervangen. Deze worden dan gebruikt als de software-installatie ongedaan wordt gemaakt en u het systeem wilt laten terugkeren naar de oorspronkelijke staat. Als er geen back-up kopieën worden gemaakt, kunt u de software enkel verwijderen maar het systeem niet in de oorspronkelijke staat terugbrengen. Wilt u een back-up maken van de vervangen bestanden?
Text Norwegian=Dette installasjonsprogrammet kan lage sikkerhetskopier av alle filer som blir erstattet under installasjonen. Disse filene vil tas i bruk når programvaren er avinstallert og det er behov for tilbakestilling. Hvis det ikke er laget sikkerhetskopier, kan du kun avinstallere programvaren og ikke stille systemet tilbake til tidligere status. Ønsker du å lage sikkerhetskopier av de filene som blir erstattet nå?
Text Swedish=Installationsprogrammet kan skapa säkerhetskopior av alla filer som byts ut under installationen. Dessa filer kan sedan användas när programvaran avinstalleras och du begär rollback. Om du då inte har några säkerhetskopior kan du bara avinstallera programvaran, inte återskapa systemet i dess tidigare skick. Vill du göra säkerhetskopior av de ersatta filerna?
end
item: Radio Button
Rectangle=141 106 265 136
Variable=DOBACKUP
Create Flags=01010000000000010000000000001001
Text=&Yes, make backups
Text=N&o, do not make backups
Text=
Text French=&Oui
Text French=N&on
Text French=
Text German=&Ja
Text German=N&ein
Text German=
Text Portuguese=&Sim
Text Portuguese=Nã&o
Text Portuguese=
Text Spanish=&Sí
Text Spanish=N&o
Text Spanish=
Text Italian=&Sì
Text Italian=N&o
Text Italian=
Text Danish=&Ja
Text Danish=&Nej
Text Danish=
Text Dutch=&Ja
Text Dutch=N&ee
Text Dutch=
Text Norwegian=&Ja
Text Norwegian=&Nei
Text Norwegian=
Text Swedish=&Ja
Text Swedish=N&ej
Text Swedish=
end
item: Static
Control Name=BACK2
Rectangle=108 173 320 208
Action=1
Create Flags=01010000000000000000000000000111
Text=Backup File Destination Directory
Text French=Répertoire de destination des fichiers de sauvegarde
Text German=Zielverzeichnis für die Sicherungsdatei
Text Portuguese=Directório de destino de ficheiro de segurança
Text Spanish=Directorio de Destino de los Archivos de Seguridad
Text Italian=Directory di destinazione dei file di backup
Text Danish=Destinationsbibliotek til sikkerhedskopier
Text Dutch=Doeldirectory backup-bestand
Text Norwegian=Målkatalog for sikkerhetskopier
Text Swedish=Katalog för säkerhetskopierade filer
end
item: Push Button
Control Name=BACK3
Rectangle=265 185 318 203
Variable=BACKUP_SAVE
Value=%BACKUP%
Destination Dialog=1
Action=2
Create Flags=01010000000000010000000000000000
Text=B&rowse...
Text French=P&arcourir
Text German=B&lättern...
Text Portuguese=P&rocurar
Text Spanish=V&isualizar...
Text Italian=Sfoglia...
Text Danish=&Gennemse...
Text Dutch=B&laderen...
Text Norwegian=Bla igjennom
Text Swedish=&Bläddra
end
item: Static
Control Name=BACK4
Rectangle=129 188 254 200
Destination Dialog=2
Create Flags=01010000000000000000000000000000
Text=%BACKUP%
Text French=%BACKUP%
Text German=%BACKUP%
Text Portuguese=%BACKUP%
Text Spanish=%BACKUP%
Text Italian=%BACKUP%
Text Danish=%BACKUP%
Text Dutch=%BACKUP%
Text Norwegian=%BACKUP%
Text Swedish=%BACKUP%
end
item: Static
Rectangle=108 11 323 36
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=Backup Replaced Files
Text French=Sélectionner les composants
Text German=Komponenten auswählen
Text Spanish=Seleccione componentes
Text Italian=Selezionare i componenti
end
item: If/While Statement
Variable=DOBACKUP
Value=B
end
item: Set Control Attribute
Control Name=BACK3
Operation=1
end
item: Set Control Attribute
Control Name=BACK4
Operation=1
end
item: Else Statement
end
item: Set Control Attribute
Control Name=BACK3
end
item: Set Control Attribute
Control Name=BACK4
end
item: End Block
end
end
item: Dialog
Title=Select Destination Directory
Title French=Choisissez le répertoire de destination
Title German=Zielverzeichnis wählen
Title Portuguese=Seleccionar Directório de Destino
Title Spanish=Seleccione el Directorio de Destino
Title Italian=Seleziona Directory di destinazione
Title Danish=Vælg Destinationsbibliotek
Title Dutch=Kies Doeldirectory
Title Norwegian=Velg målkatalog
Title Swedish=Välj destinationskalatog
Width=276
Height=216
Font Name=Helv
Font Size=8
item: Listbox
Rectangle=6 3 200 186
Variable=BACKUP
Create Flags=01010000100000010000000101000000
Flags=0000110000100010
Text=%BACKUP%
Text=
Text French=%BACKUP%
Text French=
Text German=%BACKUP%
Text German=
Text Portuguese=%BACKUP%
Text Portuguese=
Text Spanish=%BACKUP%
Text Spanish=
Text Italian=%BACKUP%
Text Italian=
Text Danish=%BACKUP%
Text Danish=
Text Dutch=%BACKUP%
Text Dutch=
Text Norwegian=%BACKUP%
Text Norwegian=
Text Swedish=%BACKUP%
Text Swedish=
end
item: Push Button
Rectangle=209 8 265 26
Create Flags=01010000000000010000000000000001
Text=OK
Text French=OK
Text German=OK
Text Portuguese=OK
Text Spanish=ACEPTAR
Text Italian=OK
Text Danish=OK
Text Dutch=OK
Text Norwegian=OK
Text Swedish=OK
end
item: Push Button
Rectangle=209 31 265 50
Variable=BACKUP
Value=%BACKUP_SAVE%
Create Flags=01010000000000010000000000000000
Flags=0000000000000001
Text=Cancel
Text French=Annuler
Text German=Abbrechen
Text Portuguese=Cancelar
Text Spanish=Cancelar
Text Italian=Annulla
Text Danish=Slet
Text Dutch=Annuleren
Text Norwegian=Avbryt
Text Swedish=Avbryt
end
end
end
item: Custom Dialog Set
Name=Select Components
Display Variable=DISPLAY
item: Dialog
Title=%APPTITLE% Installation
Title French=Installation de %APPTITLE%
Title German=Installation von %APPTITLE%
Title Spanish=Instalación de %APPTITLE%
Title Italian=Installazione di %APPTITLE%
Width=339
Height=280
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=188 234 244 253
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=131 234 188 253
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=< &Retour
Text German=< &Zurück
Text Spanish=< &Atrás
Text Italian=< &Indietro
end
item: Push Button
Rectangle=264 234 320 253
Action=3
Create Flags=01010000000000010000000000000000
Text=&Cancel
Text French=&Annuler
Text German=&Abbrechen
Text Spanish=&Cancelar
Text Italian=&Annulla
end
item: Checkbox
Rectangle=108 66 313 156
Variable=COMPONENTS
Create Flags=01010000000000010000000000000011
Flags=0000000000000110
Text=Python interpreter and libraries
Text=Tcl/Tk (Tkinter, IDLE, pydoc)
Text=Python HTML docs
Text=Python utility scripts (Tools/)
Text=Python test suite (Lib/test/)
Text=
Text French=Python interpreter, library and IDLE
Text French=Python HTML docs
Text French=Python utility scripts (Tools/)
Text French=Python test suite (Lib/test/)
Text French=
Text German=Python interpreter, library and IDLE
Text German=Python HTML docs
Text German=Python utility scripts (Tools/)
Text German=Python test suite (Lib/test/)
Text German=
Text Spanish=Python interpreter, library and IDLE
Text Spanish=Python HTML docs
Text Spanish=Python utility scripts (Tools/)
Text Spanish=Python test suite (Lib/test/)
Text Spanish=
Text Italian=Python interpreter, library and IDLE
Text Italian=Python HTML docs
Text Italian=Python utility scripts (Tools/)
Text Italian=Python test suite (Lib/test/)
Text Italian=
end
item: Static
Rectangle=108 45 320 63
Create Flags=01010000000000000000000000000000
Text=Choose which components to install by checking the boxes below.
Text French=Choisissez les composants que vous voulez installer en cochant les cases ci-dessous.
Text German=Wählen Sie die zu installierenden Komponenten, indem Sie in die entsprechenden Kästchen klicken.
Text Spanish=Elija los componentes que desee instalar marcando los cuadros de abajo.
Text Italian=Scegliere quali componenti installare selezionando le caselle sottostanti.
end
item: Push Button
Rectangle=188 203 269 220
Destination Dialog=1
Action=2
Enabled Color=00000000000000000000000011111111
Create Flags=01010000000000010000000000000000
Text=Advanced Options ...
end
item: Static
Rectangle=10 225 320 226
Action=3