11 lines
349 B
Plaintext
11 lines
349 B
Plaintext
on myUrlDownloadFinished
|
|
get URL "https://sourceforge.net/" -- this will now fetch a locally cached copy
|
|
put it
|
|
end myUrlDownloadFinished
|
|
|
|
command getWebResource
|
|
libURLFollowHttpRedirects true
|
|
libURLSetSSLVerification true --check cert
|
|
load URL "https://sourceforge.net/" with message "myUrlDownloadFinished"
|
|
end getWebResource
|