The idea is to hold a remote repository of *.ascr scripts in a server (initially just a localhost server for test purposes).
I can inspect the options (args) through the command
Code: Select all
man actexec
Code: Select all
usage: actexec [parameters] filename
Parameters are:
--code, -c switch to code mode, may not be used with -s
--script, -s switch to script mode, may not be used with -c
--nocodeqt, -Q do not include the Qt library into the code
--portable, -p starts in portable mode, storing the settings in the executable folder
--proxy-mode sets the proxy mode, values are "none", "system" (default) or "custom"
--proxy-type sets the custom proxy type, values are "http" or "socks" (default)
--proxy-host sets the custom proxy host
--proxy-port sets the custom proxy port
--proxy-user sets the custom proxy user
--proxy-password sets the custom proxy password
--version, -v show the program version
--help, -h show this help text
also seen here ...
http://manpages.ubuntu.com/manpages/tr ... xec.1.html
...
But how do I compose the actexec command line using proxy args?
I have tried this example ...
Code: Select all
actexec --proxy-host=http://localhost/actions/xml/hello.ascr
I can work around this by first downloading the *.ascr script using wget command in the bootstrap.ascr and then having another action to run the downloaded file locally. But I would like to understand all the actexec arguments with examples.
How do I draft the above test url to access hello.ascr?
...
Later edit ... I tried this syntax .. but return is "Unable to read input file"
Code: Select all
actexec --proxy-host="http://localhost/actions/xml/" hello.ascr
Unable to read input file
Code: Select all
actexec -v
Actiona Executer version 3.9.1, script version 1.1.0