Changeset 2827 for trunk/is_gsdl_cdrom


Ignore:
Timestamp:
2001-11-08T14:49:18+13:00 (22 years ago)
Author:
sjboddie
Message:

* empty log message *

Location:
trunk/is_gsdl_cdrom
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/is_gsdl_cdrom/Greenstone Digital Library Software.ipr

    r2826 r2827  
    77[Data]
    88CurrentMedia=default
     9CurrentComponentDef=Default.cdf
     10ProductName=Greenstone Digital Library Software
    911set_mifserial=
    10 ProductName=Greenstone Digital Library Software
    11 CurrentComponentDef=Default.cdf
     12DevEnvironment=Microsoft Visual C++
     13AppExe=
    1214set_dlldebug=No
    13 AppExe=
    14 DevEnvironment=Microsoft Visual C++
     15EmailAddresss=
     16Instructions=Instructions.txt
     17set_testmode=No
    1518set_mif=No
    16 set_testmode=No
    17 Instructions=Instructions.txt
    18 EmailAddresss=
    1919SummaryText=
    2020Department=
     21HomeURL=
     22Author=
    2123Type=Internet Application
    22 Author=
    23 HomeURL=
    2424InstallRoot=C:\My Installations\is_gsdl_cdrom
     25Version=2.37.000
     26InstallationGUID=4c986880-d387-11d5-840f-a0c20cc10000
    2527set_level=Level 3
    26 InstallationGUID=4c986880-d387-11d5-840f-a0c20cc10000
    27 Version=2.37.000
     28CurrentFileGroupDef=Default.fdf
     29Notes=Notes.txt
     30set_maxerr=50
     31set_args=
    2832set_miffile=Status.mif
    29 set_args=
    30 set_maxerr=50
    31 Notes=Notes.txt
    32 CurrentFileGroupDef=Default.fdf
    3333set_dllcmdline=
     34Copyright=
    3435set_warnaserr=No
    35 Copyright=
     36CurrentPlatform=
     37Category=
    3638set_preproc=
    37 Category=
    38 CurrentPlatform=
     39CurrentLanguage=English
     40CompanyName=New Zealand Digital Library Project
     41Description=Description.txt
     42set_maxwarn=50
     43set_crc=Yes
    3944set_compileb4build=No
    40 set_crc=Yes
    41 set_maxwarn=50
    42 Description=Description.txt
    43 CompanyName=New Zealand Digital Library Project
    44 CurrentLanguage=English
    4545
    4646[MediaInfo]
  • trunk/is_gsdl_cdrom/Script Files/setup.rul

    r2826 r2827  
    6666    prototype SetAdminPassword();
    6767    prototype CheckWin32s();
     68    prototype CreateServerTxt();
     69    prototype EditGsdlsiteCfg();
     70    prototype EditSetupBat();
     71
    6872
    6973    // ----- global variables ------
     
    291295begin
    292296
     297    CreateServerTxt();
     298    EditGsdlsiteCfg();
     299    EditSetupBat();
    293300    SetAdminPassword();
    294301
     
    668675
    669676end;
     677
     678
     679// Create the SERVER.TXT file if installing the web library
     680function CreateServerTxt()
     681    STRING szTitle, szMsg;
     682    LIST listInfo;
     683
     684begin
     685
     686    if (ComponentIsItemSelected(MEDIA, "Web library") = FALSE) then
     687        return;
     688    endif;
     689   
     690    szTitle = "";
     691    szMsg = " ";
     692   
     693    listInfo = ListCreate(STRINGLIST);
     694
     695    ListAddString(listInfo, "hello", AFTER);
     696   
     697    SdShowInfoList(szTitle, szMsg, listInfo);
     698
     699end;
     700
     701
     702function EditGsdlsiteCfg()
     703
     704begin
     705
     706end;
     707
     708
     709function EditSetupBat()
     710
     711begin
     712
     713end;
     714
    670715
    671716function CheckWin32s()
     
    730775
    731776
     777
Note: See TracChangeset for help on using the changeset viewer.