home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Magazine
/
AWeb
/
DropZone
/
Install-DropZone
< prev
next >
Wrap
Text File
|
1999-10-17
|
4KB
|
156 lines
; $VER: Install DropZone 7.10.99)
; Installer script by WHMP 17 Oct 1999
; Description: Installer script for DropZone ARexx script
(set v39 (>= (/ (getversion "exec.library" (resident)) 65536) 39))
(set awv 3)
(set awr 1)
(set #needInst43 "You must use Installer version 43 or greater. Use the Installer program from your AWeb-II disk.")
(if (< (/ @installer-version 65536) 43)
(abort #needInst43)
)
(set #installing "Installing ")
; offer to back up a file or drawer
(procedure bumprev #bumpfile #bumptxt
(if (exists #bumpfile)
(
(set bump 1)
(while (exists (cat #bumpfile "_old" bump) ) (set bump (+ bump 1)) )
(if
(askbool
(default 1)
(prompt (cat "\n\n\nBackup " #bumpfile " as "
#bumpfile "_old" bump " ?\n\n\n "
#bumptxt ) )
(help
(cat "\n\n\n\"" #bumpfile "\" is about to be over written.\n"
"\nYou are being given the chance to back it up."
" If you are unsure select yes... just in case ;-D ."
)
)
)
; (rename #bumpfile (cat #bumpfile "_old" bump))
( (set bdest (cat #bumpfile "_old" bump))
(copyfiles
(source #bumpfile)
(dest bdest)
(all)
)
)
)
)
)
)
;add a line to a settings file
(procedure addpref #preffile #preftext
(foreach "ENVARC:AWeb3" "~(program|browser|gui|network|window|settings)"
(
(if (= @each-type 2)
(run (cat "echo >>ENVARC:AWeb3/" @each-name "/" #preffile " \"" #preftext "\"") )
)
)
)
(run (cat "echo >>ENVARC:AWeb3/" #preffile " \"" #preftext "\"") )
)
(set #no-aweb-ii
(cat "You must have completed the AWeb-II 3.x installation before "
"you can install the %s plug-in. No AWeb3: assign has been found."
)
)
(if (not (exists "AWeb3:" (noreq)))
(abort (#no-aweb-ii "Utilities"))
)
(set @default-dest "AWeb3:")
(bumprev "envarc:aweb3"
(cat "Your previously SAVED AWeb 3.x configuration"
" is in this directory.")
) ; backup any previous AWeb3 prefs
(set menbut
(askoptions
(prompt
"\n\nInstall DropZone as\n"
)
(help "\nThe GUI buttons appear on the main AWeb window"
"\nThe ARexx menu is attached to the main AWeb window\n"
;"The image popup menu is used to play with individual images from Web pages\n"
"GUI buttons are only available with \n"
"settings-GUI-options-show user buttons on\n")
(choices "A GUI Button"
"An ARexx Menu Entry"
""
"" )
(default 5)
)
)
(if(bitand 1 menbut)
(addpref "gui" "UBUT DZoneRUN AWebpath:plugins/DropZone.awebrx")
)
(if(bitand 2 menbut)
(addpref "gui" "AREX 0;AWebpath:plugins/DropZone.awebrx;DropZone")
)
;(if(bitand 4 menbut)
; (addpref "gui" "PUPI 3Image+RUN AWeb3:Plugins/Image.awebrx %u")
;)
;(if(bitand 8 menbut)
; (addpref "gui" "UKEY 0355 run AWebpath:plugins/DropZone.awebrx")
;)
(copyfiles
(source "DropZone.awebrx")
(dest (tackon @default-dest "plugins"))
(prompt #installing "DropZone")
)
(copyfiles
(source "DropZone_Doc.HTML")
(dest (tackon @default-dest "plugins"))
(prompt #installing "DropZone")
)
(copylib
(source "awnpipe-handler")
(dest "l:")
(prompt #installing "AWNPipe-handler")
)
(copyfiles
(dest "Devs:dosdrivers")
(source "awnpipe")
(prompt #installing "AWebNews Pipe:")
(infos)
)
(run "C:assign AWNPipe: dismount")
(run "C:mount AWNPipe:")
(if (= @user-level 2)
( bumprev "env:aweb3"
(cat "Your previous ACTIVE AWeb 3.x configuration"
" is in this directory.")
) ;backup any active prefs
)
(delete "env:aweb3/#?" (all))
(copyfiles
(source "ENVARC:AWeb3")
(dest "ENV:AWeb3")
(all)
)
(complete 100)
(set @default-dest "AWeb3:plugins")
(exit "\n\n" @app-name
" is now installed.\n\n"
"If this is an update instalation be sure to check your GUI "
" settings for duplicate entries."
"\n"
)