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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433
|
Document Type: WSE
item: Global
Version=7.01
Title= Installation
Title German=Installation
Flags=00010100
Languages=65 0 0 64 64 0 64 0 64 0 0 0 0 0 0 0
Default Language=4
Japanese Font Name=MS Gothic
Japanese Font Size=10
Progress Bar DLL=%_WISE_%\Progress\WIZ%_EXE_OS_TYPE_%.DLL
Start Gradient=0 0 255
End Gradient=0 0 0
Windows Flags=00000100000010010010110100001000
Log Pathname=%MAINDIR%\INSTALL.LOG
Message Font=MS Sans Serif
Font Size=8
Pages Modified=00100001010000000000000100000111
Extra Pages=00000000000000000000000000110000
Disk Filename=SETUP
Patch Flags=0000000000001001
Patch Threshold=85
Patch Memory=4000
FTP Cluster Size=20
Per-User Version ID=1
Dialogs Version=7
Step View=Properties
Variable Name1=_SYS_
Variable Default1=C:\WINDOWS\SYSTEM
Variable Flags1=00001000
Variable Name2=_WISE_
Variable Default2=E:\PROGRAMME\WISE
Variable Flags2=00001000
Variable Name3=_SRC_
Variable Default3=I:\cvsroot\xml
Variable Values3=d:\cvsroot\xml
Variable Flags3=00000001
end
item: Open/Close INSTALL.LOG
Flags=00000001
end
item: Remark
end
item: Remark
Text=Adjust the source directory with edit/source directory if you have the CVS tree elsewhere
end
item: Remark
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
Message=Sorry, but we can not install Python on your system unless you have Administrator Privileges.
Message=
Message=Please log on as an Administrator, and start the installation again.
Message German=Es tut uns leid, aber ohne System-Administrator-Rechte fr diese Maschine knnen Sie den Server leider nicht installieren.
Title=Must have administrator rights
Title German=keine NT-Systemadministrator-Rechte
Flags=01011111
end
item: Set Variable
Variable=APPTITLE
Value=Python - XML Library
end
item: Set Variable
Variable=GROUP
Flags=10000000
end
item: Set Variable
Variable=DISABLED
Value=!
end
item: Set Variable
Variable=MAINDIR
Flags=10000000
end
item: Remark
Text=dringelassen, aber berschrieben:
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%
Flags=00001100
end
item: Set Variable
Variable=EXPLORER
Value=1
end
item: Else Statement
end
item: Set Variable
Variable=MAINDIR
Value=C:\%MAINDIR%
Flags=00001100
end
item: End Block
end
item: Remark
end
item: Remark
Text=Hier explizit den Vorschlag gesetzt.
end
item: Set Variable
Variable=MAINDIR
Value=None
end
item: Get Registry Key Value
Variable=MAINDIR
Key=Software\Python\PythonCore\1.5\InstallPath
Flags=00000100
end
item: If/While Statement
Variable=MAINDIR
Value=None
end
item: Display Message
Title=Could not locate Python 1.5
Text=This installation depends upon having Python 1.5 being installed first. Please do so, make sure that it is working, and rerun this program.
Flags=00110000
end
item: Exit Installation
end
item: End Block
end
item: Remark
end
item: Set Variable
Variable=PYTHONDIR
Value=%MAINDIR%
end
item: Set Variable
Variable=MAINDIR
Value=%MAINDIR%\xml
end
item: Set Variable
Variable=BACKUP
Value=%MAINDIR%\BACKUP
Flags=10000000
end
item: Set Variable
Variable=DOBACKUP
Value=A
end
item: Set Variable
Variable=COMPONENTS
Flags=10000000
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=%_WISE_%\DIALOGS\TEMPLATE\WIZARD.BMP
X Position=9
Y Position=10
Filler Color=8421440
Dialog=Select Program Manager Group
Dialog=Select Backup Directory
Dialog=Display Registration Information
Dialog=Get Registration Information
Variable=GROUP
Variable=DOBACKUP
Variable=DOBRAND
Variable=DOBRAND
Value=
Value=A
Value=1
Value=1
Compare=0
Compare=1
Compare=0
Compare=1
Flags=00000011
end
item: Custom Dialog Set
Name=Welcome
Display Variable=DISPLAY
item: Dialog
Title=Welcome
Title French=Bienvenue
Title German=Willkommen
Title Portuguese=Bem-vindo
Title Spanish=Bienvenido
Title Italian=Benvenuto
Title Danish=Velkommen
Title Dutch=Welkom
Title Norwegian=Velkommen
Title Swedish=Vlkommen
Width=280
Height=224
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=172 185 214 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Prximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Nste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nsta >
end
item: Push Button
Rectangle=222 185 264 199
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=9 177 263 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=83 8 121 33
Action=2
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000001011
Pathname=%_WISE_%\dialogs\template\install.grf
Pathname French=%_WISE_%\dialogs\template\install.grf
Pathname German=%_WISE_%\dialogs\template\install.grf
Pathname Portuguese=%_WISE_%\dialogs\template\install.grf
Pathname Spanish=%_WISE_%\dialogs\template\install.grf
Pathname Italian=%_WISE_%\dialogs\template\install.grf
Pathname Danish=%_WISE_%\dialogs\template\install.grf
Pathname Dutch=%_WISE_%\dialogs\template\install.grf
Pathname Norwegian=%_WISE_%\dialogs\template\install.grf
Pathname Swedish=%_WISE_%\dialogs\template\install.grf
end
item: Static
Rectangle=121 10 258 44
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=Welcome to %APPTITLE% Setup program. This program will install %APPTITLE% on your computer.
Text French=Bienvenue sur le programme d'installation %APPTITLE%. Ce programme va installer %APPTITLE% sur votre ordinateur.
Text German=Willkommen im Installationsprogramm fr %APPTITLE%. Dieses Programm installiert %APPTITLE% auf Ihrem Computer.
Text Portuguese=Bem-vindo ao programa de configurao %APPTITLE%. Este programa instalar %APPTITLE% no seu computador
Text Spanish=Bienvenido al programa de Configuracin %APPTITLE%. Este programa instalar %APPTITLE en su ordenador
Text Italian=Benvenuto nel programma di installazione di %APPTITLE%. Con questo programma puoi installare %APPTITLE% sul tuo computer.
Text Danish=Velkommen til %APPTITLE% installationsprogrammet. Dette program installerer %APPTITLE% p computeren.
Text Dutch=Welkom bij het %APPTITLE% installatieprogramma. Dit programma installeert %APPTITLE% op uw computer.
Text Norwegian=Velkommen til %APPTITLE% Oppsett-program. Dette programmet vil installere %APPTITLE% p datamaskinen din.
Text Swedish=Vlkommen till installationsprogrammet fr %APPTITLE%. Detta program installerar %APPTITLE% p din dator.
end
item: Static
Rectangle=90 45 260 134
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=It is strongly recommended that you exit all programs which are currently using modules from a prior installation of the %APPTITLE%.
Text=
Text=Click Cancel to quit Setup and close any programs you have running. Click Next to continue with the Setup program .
Text=
Text French=Il vous est fortement recommand de fermer tous les programmes Windows avant d'excuter le Programme d'Installation
Text French=
Text French=Cliquez sur Annuler pour quitter l'Installation et fermez tous les programmes actuellement utiliss. Cliquez sur Suivant pour continuer l'installation
Text French=
Text French=ATTENTION : Ce programme est protg par la loi sur les droits d'exploitation et par les traits internationaux
Text French=
Text French=Toute reproduction ou distribution, mme partielle, de ce programme qui n'aura pas reu d'autorisation pralable fera l'objet de poursuites et sera svrement sanctionne par le droit civil et pnal
Text German=Wir empfehlen nachdrcklich, vor Ausfhren dieses Installationsprogramms alle Windows-Programme zu beenden.
Text German=
Text German=Auf Abbrechen klicken, um die Installation zu beenden und alle laufenden Programme zu schlieen. Auf Weiter klicken, um mit dem Installationsprogramm beginnen.
Text German=
Text German=WARNUNG: Dieses Programm ist urheberrechtlich sowie durch internationale Vertrge geschtzt.
Text German=
Text German=Die unzulssige Vervielfltigung oder Verbreitung dieses Programms, ob ganz oder auszugsweise, kann schwere zivil- und strafrechtliche Konsequenzen nach sich ziehen und wird unter voller Ausschpfung der Rechtsmittel geahndet.
Text Portuguese=Recomenda-se insistentemente que saia de todos os programas do Windows antes de executar este Programa de Configurao.
Text Portuguese=
Text Portuguese=Faa um clique sobre Cancelar para sair da Configurao e feche todos os programas que estiver a executar. Faa um clique sobre Prximo para continuar com o programa de configurao
Text Portuguese=
Text Portuguese=AVISO: Este programa est protegido pela lei de direitos do autor e tratados internacionais
Text Portuguese=
Text Portuguese=A reproduo e a distribuio sem autorizao deste programa, ou qualquer parte dele, pode dar lugar aplicao de severas sanes civis e criminais, e sero perseguidas extenso mxima permitida pela lei.
Text Spanish=Se recomienda encarecidamente que salga de todos los programas Windows antes de ejecutar este programa de Configuracin.
Text Spanish=
Text Spanish=Haga un clic en Cancelar para abandonar la Configuracin y cerrar cualquier programa que haya estado ejecutando. Haga un clic en Siguiente para continuar con el programa de Configuracin.
Text Spanish=
Text Spanish=AVISO: Este programa est protegido por las leyes de derechos de autor y tratados internacionales.
Text Spanish=
Text Spanish=La reproduccin o distribucin no autorizadas de este programa, o cualquier parte de l, podra dar como resultado rigurosas multas civiles y penales, y se entablar la mxima accin judicial que permita la ley.
Text Italian=Ti consigliamo di uscire da tutti i programmi Windows prima di eseguire questo programma di installazione.
Text Italian=
Text Italian=Fai clic su Annulla per uscire dal programma di installazione e chiudi tutti i programmi aperti. Fai clic su Avanti per continuare con il programma di Installazione.
Text Italian=
Text Italian=AVVERTENZA: Questo programma protetto ai sensi delle norme di legge e delle convenzioni internazionali in materia di diritti di copyright.
Text Italian=
Text Italian=La riproduzione o la distribuzione totale o parziale non autorizzata di questo programma potr essere soggetta a penalit civili e penali, e sar punita con la massima severit possibile a norma di legge.
Text Danish=Det anbefales kraftigt at afslutte alle Windows programmer, inden man krer dette installationsprogram.
Text Danish=
Text Danish=Klik p Annuller for at forlade installationsprogrammet og lukke alle igangvrende programmer. Klik p Nste for at fortstte med installationsprogrammet.
Text Danish=
Text Danish=ADVARSEL: Dette program er beskyttet af copyright og internationale traktater.
Text Danish=
Text Danish=Uautoriseret gengivelse eller videresalg af dette program eller dele heraf kan fre til streng civil- og/eller kriminel stra. Retsforflgning heraf vil finde sted i det videste omfang der hjemles muligt.
Text Dutch=Het wordt aangeraden om alle Windows programma's af te sluiten voordat u met de installatie van dit programma begint.
Text Dutch=
Text Dutch=Klik op Annuleren om de installatie te verlaten en eventueel nog lopende programma's af te sluiten. Klik op Volgende om verder te gaan met het Installatieprogramma.
Text Dutch=
Text Dutch=WAARSCHUWING: dit computerprogramma is auteursrechtelijk beschermd.
Text Dutch=
Text Dutch=Onrechtmatige verveelvoudiging of distributie van dit programma of een gedeelte ervan is verboden en strafbaar en zal met alle beschikbare juridische middelen worden bestreden.
Text Norwegian=Det anbefales p det sterkeste at du avslutter alle Windows-programmer fr du kjrer dette Oppsett-programmet.
Text Norwegian=
Text Norwegian=Velg Avbryt for avbryte Oppsett og lukk alle programmer som er i bruk. Velg Neste for fortsette med Oppsett-programmet.
Text Norwegian=
Text Norwegian=ADVARSEL: Dette programmet er beskyttet i henhold til lover om opphavsrett og internasjonale konvensjoner.
Text Norwegian=
Text Norwegian=Uautorisert kopiering eller distribuering av dette programmet eller deler av det, vil resultere i alvorlig sivil og kriminell straff og vil fre til saksml i hyest mulig utstrekning i henhold til loven.
Text Swedish=Du tillrds bestmt att g ur alla Windows-program innan du kr installationsprogrammet.
Text Swedish=
Text Swedish=Klicka p Avbryt fr att g ur installationsprogrammet och stng eventuella program som du har laddade. Klicka p Nsta fr att fortstta med installationen.
Text Swedish=
Text Swedish=VARNING: Detta program r skyddat av upphovsrtten och internationella avtal.
Text Swedish=
Text Swedish=Om du utan tillstnd kopierar eller distribuerar detta program eller delar av det kan det bli allvarliga civilrttsliga och brottsrttliga straffpfljder. Vi beivrar sdana vertrdelser i den allra hgsta utstrckning som lagen tillter.
end
item: Static
Rectangle=89 154 245 169
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000001
Text=This installer script was contributed by Christian Tismer - Professional Net Service
end
end
end
item: Custom Dialog Set
Name=Select Destination Directory
Display Variable=DISPLAY
item: Dialog
Title=Choose Destination Location
Title French=Choisissez la localisation de destination
Title German=Zielpfad whlen
Title Portuguese=Escolher Local de Destino
Title Spanish=Elegir una localizacin de destino
Title Italian=Scegli Posizione di Destinazione
Title Danish=Vlg destinationsmappe
Title Dutch=Kies doellocatie
Title Norwegian=Velg mlplassering
Title Swedish=Vlj stlle fr installationen
Width=280
Height=224
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=172 185 214 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Prximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Nste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nsta >
end
item: Push Button
Rectangle=130 185 172 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Flags=0000000000000001
Text=< &Back
Text French=<&Retour
Text German=<&Zurck
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=222 185 264 199
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=9 177 263 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=90 10 260 122
Create Flags=01010000000000000000000000000000
Text=Setup will install %APPTITLE% in the following folder.
Text=
Text=Please make sure to modify your Python Path accordingly. The default is choosen beneath the main Python directory, which makes no adjustments necessary. (recommended)
Text=
Text=To install into a different folder, click Browse, and select another folder.
Text=
Text=You can choose not to install %APPTITLE% by clicking Cancel to exit Setup.
Text French=%APPTITLE% va tre install dans le rpertoire ci-dessous
Text French=
Text French=Pour l'installer dans un rpertoire diffrent, cliquez sur Parcourir et slectionnez un autre rpertoire
Text French=
Text French=Vous pouvez choisir de ne pas installer %APPTITLE% en cliquant sur Annuler pour quitter l'Installation
Text German=Installation speichert %APPTITLE% im unten angegebenen Ordner:
Text German=
Text German=Zur Installation in einem anderen Ordner auf Blttern klicken und einen anderen Ordner whlen.
Text German=
Text German=Wenn Sie %APPTITLE% nicht installieren mchten, knnen Sie durch Klicken auf Abbrechen die Installation beenden.
Text Portuguese=Configurao instalar %APPTITLE% na seguinte pasta
Text Portuguese=
Text Portuguese=Para instalar numa pasta diferente, faa um clique sobre Procurar, e seleccione uma outra pasta.
Text Portuguese=
Text Portuguese=Pode escolher no instalar %APPTITLE% clicando no boto Cancelar para sair da Configurao
Text Spanish=El programa de Configuracin instalar %APPTITLE% en la siguiente carpeta.
Text Spanish=
Text Spanish=Para instalar en una carpeta diferente, haga un clic en Visualizar, y seleccione otra carpeta.
Text Spanish=
Text Spanish=Puede elegir no instalar %APPTITLE% haciendo un clic en Cancelar para salir de Configuracin.
Text Italian=Il programma di installazione installer %APPTITLE% nella seguente cartella.
Text Italian=
Text Italian=Per effettuare linstallazione in una cartella diversa, fai clic su Sfoglia, e scegli unaltra cartella.
Text Italian=
Text Italian=Puoi scegliere di non installare %APPTITLE% facendo clic su Annulla per uscire dal programma di installazione
Text Danish=Installationsprogrammet installerer %APPTITLE% i denne mappe.
Text Danish=
Text Danish=Man installerer i en anden mappe ved at klikke p Browse og vlge en anden mappe.
Text Danish=
Text Danish=Man kan vlge ikke at installere %APPTITLE% ved at klikke p Slet og forlade installationsprogrammet.
Text Dutch=Het installatieprogramma installeert %APPTITLE% in de volgende directory.
Text Dutch=
Text Dutch=Als u het in een andere directory wilt installeren, klik dan op Bladeren en kies een andere locatie.
Text Dutch=
Text Dutch=U kunt ervoor kiezen om %APPTITLE% niet te installeren: klik op Annuleren om het installatieprogramma te verlaten.
Text Norwegian=Oppsett vil installere %APPTITLE% i flgende mappe.
Text Norwegian=
Text Norwegian=For installere i en annen mappe, klikk Bla igjennom og velg en annen mappe.
Text Norwegian=
Text Norwegian=Du kan velge ikke installere %APPTITLE% ved velge Avbryt for g ut av Oppsett.
Text Swedish=Installationsprogrammet installerar %APPTITLE% i fljande mapp.
Text Swedish=
Text Swedish=Om du vill att installationen ska gras i en annan mapp, klickar du p Blddra och vljer en annan mapp.
Text Swedish=
Text Swedish=Du kan vlja att inte installera %APPTITLE% genom att klicka p Avbryt fr att lmna installationsprogrammet.
end
item: Static
Rectangle=90 134 260 162
Action=1
Create Flags=01010000000000000000000000000111
Text=Destination Folder
Text French=Rpertoire de destination
Text German=Zielordner
Text Portuguese=Pasta de Destino
Text Spanish=Carpeta de Destino
Text Italian=Cartella di destinazione
Text Danish=Destinationsmappe
Text Dutch=Doeldirectory
Text Norwegian=Mlmappe
Text Swedish=Destinationsmapp
end
item: Push Button
Rectangle=213 143 255 157
Variable=MAINDIR_SAVE
Value=%MAINDIR%
Destination Dialog=1
Action=2
Create Flags=01010000000000010000000000000000
Text=B&rowse...
Text French=P&arcourir
Text German=B<tern...
Text Portuguese=P&rocurar
Text Spanish=V&isualizar...
Text Italian=Sfoglia...
Text Danish=&Gennemse...
Text Dutch=B&laderen...
Text Norwegian=Bla igjennom
Text Swedish=&Blddra
end
item: Static
Rectangle=95 146 211 157
Destination Dialog=2
Create Flags=01010000000000000000000000000000
Text=%MAINDIR%
Text French=%MAINDIR%
Text German=%MAINDIR%
Text Portuguese=%MAINDIR%
Text Spanish=%MAINDIR%
Text Italian=%MAINDIR%
Text Danish=%MAINDIR%
Text Dutch=%MAINDIR%
Text Norwegian=%MAINDIR%
Text Swedish=%MAINDIR%
end
end
item: Dialog
Title=Select Destination Directory
Title French=Choisissez le rpertoire de destination
Title German=Zielverzeichnis whlen
Title Portuguese=Seleccionar Directrio de Destino
Title Spanish=Seleccione el Directorio de Destino
Title Italian=Seleziona Directory di destinazione
Title Danish=Vlg Destinationsbibliotek
Title Dutch=Kies doeldirectory
Title Norwegian=Velg mlkatalog
Title Swedish=Vlj destinationskalatog
Width=221
Height=173
Font Name=Helv
Font Size=8
item: Listbox
Rectangle=5 2 160 149
Variable=MAINDIR
Create Flags=01010000100000010000000101000000
Flags=0000110000100010
Text=%MAINDIR%
Text French=%MAINDIR%
Text German=%MAINDIR%
Text Portuguese=%MAINDIR%
Text Spanish=%MAINDIR%
Text Italian=%MAINDIR%
Text Danish=%MAINDIR%
Text Dutch=%MAINDIR%
Text Norwegian=%MAINDIR%
Text Swedish=%MAINDIR%
end
item: Push Button
Rectangle=167 6 212 21
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=167 25 212 40
Variable=MAINDIR
Value=%MAINDIR_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=Backup Replaced Files
Display Variable=DISPLAY
item: Dialog
Title=Backup Replaced Files
Title French=Fichiers de Sauvegarde Remplacs
Title German=Sicherungskopie von ersetzten Dateien erstellen
Title Portuguese=Ficheiros substitudos de segurana
Title Spanish=Copias de seguridad de los archivos reemplazados
Title Italian=Backup file sostituiti
Title Danish=Sikkerhedskopiering af erstattede filer
Title Dutch=Vervangen bestanden kopiren
Title Norwegian=Sikkerhetskopiere erstattede filer
Title Swedish=Skerhetskopiera utbytta filer
Width=280
Height=224
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=172 185 214 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Prximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Nste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nsta >
end
item: Push Button
Rectangle=130 185 172 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurck
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=222 185 264 199
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=9 177 263 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=90 10 260 74
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. Do you want to create backups of the replaced files?
Text French=Le programme d'installation peut crer des copies de sauvegarde de tous les fichiers remplacs pendant l'installation. Ces fichiers sont utiliss au cas o le logiciel est dsinstall et que l'on procde la reprise du systme. Si les copies de sauvegarde ne sont pas cres, on ne pourra que dsinstaller le logiciel sans reprendre le systme un tat prcdent. Voulez-vous crer une sauvegarde des fichiers remplacs ?
Text German=Dieses Installationsprogramm kann Sicherungskopien von allen whrend der Installation ersetzten Dateien erstellen. Diese Dateien werden zur Rckgngigmachung der Installation und bei Anforderung eines Rollbacks verwendet. Ohne Sicherungskopien ist nur eine Rckgngigmachung der Installation mglich, nicht aber ein Rollback des Systems. Sicherungskopien der ersetzten Dateien erstellen?
Text Portuguese=Este programa de instalao pode criar cpias de segurana de todos os ficheiros substitudos durante a instalao. Estes ficheiros sero utilizados quando o programa for desinstalado e for requisitada uma retomada. Se as cpias de segurana no forem criadas, s poder desinstalar o programa e no pode retomar um estado anterior do sistema. Deseja criar cpias de segurana dos ficheiros substitudos?
Text Spanish=Este programa de instalacin puede crear copias de seguridad de todos los archivos reemplazados durante la instalacin. Estos archivos se utilizarn 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, nr 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 kopien 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 kopien 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 nr 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 skerhetskopior av alla filer som byts ut under installationen. Dessa filer kan sedan anvndas nr programvaran avinstalleras och du begr rollback. Om du d inte har ngra skerhetskopior kan du bara avinstallera programvaran, inte terskapa systemet i dess tidigare skick. Vill du gra skerhetskopior av de ersatta filerna?
end
item: Radio Button
Rectangle=155 74 182 100
Variable=DOBACKUP
Create Flags=01010000000000010000000000001001
Text=&Yes
Text=N&o
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=BACK1
Rectangle=90 106 260 132
Create Flags=01010000000000000000000000000000
Text=Please select the directory where the replaced files will be copied.
Text French=Veuillez slectionner le rpertoire o les fichiers remplacs doivent tre copis
Text German=Bitte whlen Sie das Verzeichnis, in das die ersetzten Dateien kopiert werden sollen.
Text Portuguese= favor seleccionar o directrio para onde os ficheiros substitudos sero copiados.
Text Spanish=Seleccione el directorio donde se copiarn los archivos reemplazados.
Text Italian=Seleziona la directory in cui saranno copiati i file sostituiti.
Text Danish=Vlg biblioteket, som de erstattede filer skal kopieres til.
Text Dutch=Selecteer de directory waarnaar de vervangen bestanden moeten worden gekopieerd.
Text Norwegian=Velg katalogen de erstattede filene skal kopieres til.
Text Swedish=Vlj katalog dit du vill kopiera de ersatta filerna.
end
item: Static
Control Name=BACK2
Rectangle=90 134 260 162
Action=1
Create Flags=01010000000000000000000000000111
Text=Backup File Destination Directory
Text French=Rpertoire de destination des fichiers de sauvegarde
Text German=Zielverzeichnis fr die Sicherungsdatei
Text Portuguese=Directrio de destino de ficheiro de segurana
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=Mlkatalog for sikkerhetskopier
Text Swedish=Katalog fr skerhetskopierade filer
end
item: Push Button
Control Name=BACK3
Rectangle=213 143 255 157
Variable=BACKUP_SAVE
Value=%BACKUP%
Destination Dialog=1
Action=2
Create Flags=01010000000000010000000000000000
Text=B&rowse...
Text French=P&arcourir
Text German=B<tern...
Text Portuguese=P&rocurar
Text Spanish=V&isualizar...
Text Italian=Sfoglia...
Text Danish=&Gennemse...
Text Dutch=B&laderen...
Text Norwegian=Bla igjennom
Text Swedish=&Blddra
end
item: Static
Control Name=BACK4
Rectangle=95 146 211 157
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: 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 rpertoire de destination
Title German=Zielverzeichnis whlen
Title Portuguese=Seleccionar Directrio de Destino
Title Spanish=Seleccione el Directorio de Destino
Title Italian=Seleziona Directory di destinazione
Title Danish=Vlg Destinationsbibliotek
Title Dutch=Kies Doeldirectory
Title Norwegian=Velg mlkatalog
Title Swedish=Vlj destinationskalatog
Width=221
Height=173
Font Name=Helv
Font Size=8
item: Listbox
Rectangle=5 2 160 149
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=167 6 212 21
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=167 25 212 40
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=Start Installation
Display Variable=DISPLAY
item: Dialog
Title=Start Installation
Title French=Commencer l'installation
Title German=Installation beginnen
Title Portuguese=Iniciar Instalao
Title Spanish=Comenzar la Instalacin
Title Italian=Avvia Installazione
Title Danish=Start installationen
Title Dutch=Start de installatie
Title Norwegian=Start installeringen
Title Swedish=Starta installationen
Width=280
Height=224
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=172 185 214 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Next >
Text French=&Suivant>
Text German=&Weiter>
Text Portuguese=&Prximo>
Text Spanish=&Siguiente >
Text Italian=&Avanti >
Text Danish=&Nste>
Text Dutch=&Volgende>
Text Norwegian=&Neste>
Text Swedish=&Nsta >
end
item: Push Button
Rectangle=130 185 172 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurck
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=222 185 264 199
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=9 177 263 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=90 10 260 70
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 tes maintenant prt installer %APPTITLE%
Text French=
Text French=Cliquez sur Suivant pour commencer l'installation ou Retour pour entrer nouveau les informations d'installation
Text German=Sie sind jetzt zur Installation von %APPTITLE% bereit.
Text German=
Text German=Auf die Schaltflche Weiter klicken, um mit dem Start der Installation zu beginnen, oder auf die Schaltflche Zurck, um die Installationsinformationen nochmals aufzurufen.
Text Portuguese=Est agora pronto para instalar %APPTITLE%
Text Portuguese=
Text Portuguese=Pressione o boto Prximo para comear a instalao ou o boto Retornar para introduzir novamente a informao sobre a instalao
Text Spanish=Ahora estar listo para instalar %APPTITLE%.
Text Spanish=
Text Spanish=Pulse el botn de Siguiente para comenzar la instalacin o el botn Retroceder para volver a introducir la informacin sobre la instalacin.
Text Italian=Sei pronto ad installare %APPTITLE%.
Text Italian=
Text Italian=Premi il tasto Avanti per iniziare linstallazione o il tasto Indietro per rientrare nuovamente nei dati sullinstallazione
Text Danish=Du er nu klar til at installere %APPTITLE%.
Text Danish=
Text Danish=Klik p Nste for at starte installationen eller p Tilbage for at ndre installationsoplysningerne.
Text Dutch=U bent nu klaar om %APPTITLE% te installeren.
Text Dutch=
Text Dutch=Druk op Volgende om met de installatie te beginnen of op Terug om de installatie-informatie opnieuw in te voeren.
Text Norwegian=Du er n klar til installere %APPTITLE%
Text Norwegian=
Text Norwegian=Trykk p Neste-tasten for starte installeringen, eller Tilbake-tasten for taste inn installasjonsinformasjonen p nytt.
Text Swedish=Du r nu redo att installera %APPTITLE%.
Text Swedish=
Text Swedish=Tryck p Nsta fr att starta installationen eller p Tillbaka fr att skriva in installationsinformationen p nytt.
end
end
end
item: If/While Statement
Variable=DISPLAY
Value=Backup Replaced Files
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
item: Include Script
Pathname=%_WISE_%\INCLUDE\uninstal.wse
end
item: Remark
Text=Just in case there were already CVS files, backup them
end
item: Delete File
Pathname=%MAINDIR%\Entries
Flags=00001100
end
item: Delete File
Pathname=%MAINDIR%\Repository
Flags=00001100
end
item: Delete File
Pathname=%MAINDIR%\Root
Flags=00001100
end
item: Remark
Text=The real Installation
end
item: Install File
Source=%_SRC_%\Licence
Destination=%MAINDIR%\License
Flags=0000000010000010
end
item: Install File
Source=%_SRC_%\xml
Destination=%MAINDIR%
Flags=0000000110000010
end
item: Install File
Source=%_SRC_%\doc
Destination=%MAINDIR%\doc
Flags=0000000110000010
end
item: Install File
Source=%_SRC_%\demo
Destination=%MAINDIR%\demo
Flags=0000000110000010
end
item: Install File
Source=%_SRC_%\Wise\eraser.py
Destination=%MAINDIR%\unwise.py
Flags=0000000010000010
end
item: Install File
Source=%_SRC_%\windows\pyexpat.dll
Destination=%PYTHONDIR%\DLLs\pyexpat.dll
Flags=0000000010000010
end
item: Install File
Source=%_SRC_%\windows\sgmlop.dll
Destination=%PYTHONDIR%\DLLs\sgmlop.dll
Flags=0000000010000010
end
item: Edit Registry
Total Keys=1
Key=Software\Python\PythonCore\1.5\Help\XML Architectural Forms
New Value=%MAINDIR%\doc\xml.arch.xmlarch.html
Root=2
end
item: Edit Registry
Total Keys=1
Key=Software\Python\PythonCore\1.5\Help\XML HowTo
New Value=%MAINDIR%\doc\xml-howto.txt
New Value=
Root=2
end
item: Edit Registry
Total Keys=1
Key=Software\Python\PythonCore\1.5\Help\XML Reference
New Value=%MAINDIR%\doc\xml-ref.txt
Root=2
end
item: Edit Registry
Total Keys=1
Key=Software\Python\PythonCore\1.5\Help\XML xmlproc Parser
New Value=%MAINDIR%\doc\xmlproc\xmlproc.html
Root=2
end
item: Remark
end
item: Open/Close INSTALL.LOG
Flags=00000001
end
item: Remark
Text=hack to get rid of our CVS files
end
item: Set Variable
Variable=BACKUPDIR
end
item: Delete File
Pathname=%MAINDIR%\Entries
Flags=00001100
end
item: Delete File
Pathname=%MAINDIR%\Repository
Flags=00001100
end
item: Delete File
Pathname=%MAINDIR%\Root
Flags=00001100
end
item: Open/Close INSTALL.LOG
end
item: If/While Statement
Variable=DOBACKUP
Value=A
end
item: Set Variable
Variable=BACKUPDIR
Value=%BACKUP%
end
item: End Block
end
item: Remark
end
item: Set Variable
Variable=COMMON
Value=%COMMON%
Flags=00010100
end
item: Set Variable
Variable=MAINDIR
Value=%MAINDIR%
Flags=00010100
end
item: Set Variable
Variable=PYTHONDIR
Value=%PYTHONDIR%
Flags=00010100
end
item: Check Configuration
Flags=10111011
end
item: Get Registry Key Value
Variable=STARTUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Start Menu\Programs\StartUp
Value Name=StartUp
Flags=00000010
end
item: Get Registry Key Value
Variable=DESKTOPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Desktop
Value Name=Desktop
Flags=00000010
end
item: Get Registry Key Value
Variable=STARTMENUDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%WIN%\Start Menu
Value Name=Start Menu
Flags=00000010
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: Get Registry Key Value
Variable=CSTARTUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%STARTUPDIR%
Value Name=Common Startup
Flags=00000100
end
item: Get Registry Key Value
Variable=CDESKTOPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%DESKTOPDIR%
Value Name=Common Desktop
Flags=00000100
end
item: Get Registry Key Value
Variable=CSTARTMENUDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%STARTMENUDIR%
Value Name=Common Start Menu
Flags=00000100
end
item: Get Registry Key Value
Variable=CGROUPDIR
Key=Software\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
Default=%GROUPDIR%
Value Name=Common Programs
Flags=00000100
end
item: Set Variable
Variable=CGROUP_SAVE
Value=%GROUP%
end
item: Set Variable
Variable=GROUP
Value=%GROUPDIR%\%GROUP%
end
item: Else Statement
end
item: End Block
end
remarked item: Self-Register OCXs/DLLs
Description=Updating System Configuration, Please Wait...
end
item: Remark
Text=versuche, die .pyc's loszuwerden
end
item: Add Text to INSTALL.LOG
Text=Execute Program: %PYTHONDIR%\python.exe %MAINDIR%\unwise.py %MAINDIR%
end
item: Wizard Block
Direction Variable=DIRECTION
Display Variable=DISPLAY
Bitmap Pathname=%_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=Installation Complete
Title French=Installation en cours
Title German=Installation abgeschlossen
Title Portuguese=Instalao Completa
Title Spanish=Se ha completado la Instalacin
Title Italian=Installazione completata
Title Danish=Installation gennemfrt
Title Dutch=Installatie afgerond
Title Norwegian=Installasjonen er fullfrt
Title Swedish=Installationen klar
Width=280
Height=224
Font Name=Helv
Font Size=8
item: Push Button
Rectangle=170 185 212 199
Variable=DIRECTION
Value=N
Create Flags=01010000000000010000000000000001
Text=&Finish >
Text French=&Terminer>
Text German=&Fertigstellen>
Text Portuguese=&Terminar >
Text Spanish=&Finalizar>
Text Italian=&Fine >
Text Danish=&Afslut >
Text Dutch=&Klaar>
Text Norwegian=&Avslutt>
Text Swedish=&Sluta>
end
item: Push Button
Control Name=CANCEL
Rectangle=222 185 264 199
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=9 177 263 178
Action=3
Create Flags=01010000000000000000000000000111
end
item: Static
Rectangle=90 10 260 63
Enabled Color=00000000000000001111111111111111
Create Flags=01010000000000000000000000000000
Text=%APPTITLE% has been successfully installed.
Text=
Text=
Text=Press the Finish button to exit this installation.
Text=
Text French=L'installation de %APPTITLE% est russie
Text French=
Text French=
Text French=Cliquez sur Terminer pour quitter cette installation
Text French=
Text German=%APPTITLE% wurde erfolgreich installiert.
Text German=
Text German=
Text German=Zum Beenden dieser Installation Fertigstellen anklicken.
Text German=
Text Portuguese=%APPTITLE% foi instalado com xito
Text Portuguese=
Text Portuguese=
Text Portuguese=Pressionar o boto Terminar para sair desta instalao
Text Portuguese=
Text Spanish=%APPTITLE% se ha instalado con xito.
Text Spanish=
Text Spanish=
Text Spanish=Pulse el botn de Finalizar para salir de esta instalacin.
Text Spanish=
Text Italian=%APPTITLE% stato installato.
Text Italian=
Text Italian=
Text Italian=Premi il pulsante Fine per uscire dal programma di installazione
Text Italian=
Text Danish=%APPTITLE% er nu installeret korrekt.
Text Danish=
Text Danish=
Text Danish=Klik p Afslut for at afslutte installationen.
Text Danish=
Text Dutch=%APPTITLE% is met succes genstalleerd.
Text Dutch=
Text Dutch=
Text Dutch=Druk op Klaar om deze installatie af te ronden.
Text Dutch=
Text Norwegian=Installasjonen av %APPTITLE% er vellykket.
Text Norwegian=
Text Norwegian=
Text Norwegian=Trykk p Avslutt-tasten for avslutte denne installasjonen.
Text Norwegian=
Text Swedish=Installationen av %APPTITLE% har lyckats.
Text Swedish=
Text Swedish=
Text Swedish=Tryck p Sluta fr att g ur installationsprogrammet.
Text Swedish=
end
item: Push Button
Control Name=BACK
Rectangle=128 185 170 199
Variable=DIRECTION
Value=B
Create Flags=01010000000000010000000000000000
Text=< &Back
Text French=<&Retour
Text German=<&Zurck
Text Portuguese=<&Retornar
Text Spanish=<&Retroceder
Text Italian=< &Indietro
Text Danish=<&Tilbage
Text Dutch=<&Terug
Text Norwegian=<&Tilbake
Text Swedish=< &Tillbaka
end
item: Set Control Attribute
Control Name=BACK
Operation=1
end
item: Set Control Attribute
Control Name=CANCEL
Operation=1
end
end
end
item: End Block
end
item: New Event
Name=Cancel
end
item: Include Script
Pathname=%_WISE_%\INCLUDE\rollback.wse
end
|