From 73115a27d2b4abce5febf6355179f3f832f2b553 Mon Sep 17 00:00:00 2001 From: niel-archer Date: Tue, 29 Nov 2011 13:22:51 +0000 Subject: [PATCH] Updated events in syntax highlighting. Sorted them because I did the functions and I'm pedantic ;-) Event added: transaction_result. git-svn-id: https://lsleditor.svn.sourceforge.net/svnroot/lsleditor@38 3f4676ac-adda-40fd-8265-58d1435b1672 --- trunk/Resource/ConfLSL.xml | 75 +++++++++++++++++++++----------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/trunk/Resource/ConfLSL.xml b/trunk/Resource/ConfLSL.xml index 0db433a..856a983 100644 --- a/trunk/Resource/ConfLSL.xml +++ b/trunk/Resource/ConfLSL.xml @@ -3190,20 +3190,6 @@ to llRotTarget. - - not_at_rot_target(void); - - When a target is set via the llRotTarget library call, - but the script is outside the specified angle this event is raised. - - - - not_at_target(void); - - When a target is set via the llTarget library call, - but the script is outside the specified range this event is raised. - - attach(key attached); @@ -3278,6 +3264,22 @@ The remaining tells how many more emails are known as still pending. + + http_request(key request_id, string method, string body); + + Triggered when task receives an HTTP request. + HTTP request id for response use, and function response identification. + GET, POST, PUT + Contents of the request. + + + + http_response(key request_id, integer status, list metadata, string body); + + This event handler is invoked when an HTTP response is received for + a pending llHTTPRequest request or if a pending request fails or times out. + + land_collision(vector position); @@ -3344,6 +3346,20 @@ (via the llSensor library call) but are not sensing anything. + + not_at_rot_target(void); + + When a target is set via the llRotTarget library call, + but the script is outside the specified angle this event is raised. + + + + not_at_target(void); + + When a target is set via the llTarget library call, + but the script is outside the specified range this event is raised. + + object_rez(key id); @@ -3360,6 +3376,12 @@ passed in from the call to llRezObject. + + remote_data(integer event_type, key channel, key message_id, string sender, integer idata, string sdata); + + Triggered by various XML-RPC calls with event_type specifying the type of data. + + run_time_permissions(integer permissions); @@ -3435,26 +3457,13 @@ via the llDetected() library functions. - - http_request(key request_id, string method, string body); + + transaction_result(key RequestID, integer Success, string Text) - Triggered when task receives an HTTP request. - HTTP request id for response use, and function response identification. - GET, POST, PUT - Contents of the request. - - - - http_response(key request_id, integer status, list metadata, string body); - - This event handler is invoked when an HTTP response is received for - a pending llHTTPRequest request or if a pending request fails or times out. - - - - remote_data(integer event_type, key channel, key message_id, string sender, integer idata, string sdata); - - Triggered by various XML-RPC calls with event_type specifying the type of data. + Triggered by llTransferMoney() function. + The key returned by an llTransferMoney call to identify the specific request. + Boolean value, indicating success of the transfer + Message which depends on the result of the transaction. If iSuccess is true, this will contain <destination_id>,<amount>