public interface AMD_IScript_getScripts
extends Ice.AMDCallback
OriginalFile
objects.
These scripts will be executed by the server if submitted
via runScript
. The input parameters
necessary for proper functioning can be retrieved via
getParams
.
The OriginalFile.path
value can be used
in other official scripts via the
language specific import command, since the script
directory will be placed on the appropriate
environment path variable.
scripts = scriptService.getScripts()
for script in scripts:
text = scriptService.getScriptText(script.id.val)
# First character is a "/" symbol
path = script.path.val\[1:\]
path = path.replace("/",".")
print "Possible import: %s" % path
Modifier and Type | Method and Description |
---|---|
void |
ice_response(java.util.List<OriginalFile> __ret)
ice_response indicates that
the operation completed successfully.
|
void ice_response(java.util.List<OriginalFile> __ret)
__ret
- (return value) see above.