Relay Browser Functions: Difference between revisions
Jump to navigation
Jump to search
imported>Bale cat |
imported>Bale mNo edit summary |
||
Line 10: | Line 10: | ||
{{flink|string [string]|form_fields|desc=As above, but returned as a map of all values keyed by input names.}} | {{flink|string [string]|form_fields|desc=As above, but returned as a map of all values keyed by input names.}} | ||
[[Category: | [[Category:Scripting]] |
Revision as of 09:04, 17 July 2010
For general information on how to use these functions, please see Relay Override Scripting.
void write( string )
Writes text to the relay browser.
void writeln( string )
Same as above, ending with a line break (in the page source).
string entity_encode( string )
Used for converting text that might contain special characters such as ampersands and angle brackets so that it can safely be displayed in HTML.
string entity_decode( string )
Used for retrieving text from form fields that contains special characters such as ampersands and angle brackets.
string form_field( string )
Returns the "value" attribute of a previously-submitted input tag.
string [string] form_fields()
As above, but returned as a map of all values keyed by input names.