This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x391 { | |
meta { | |
name "Demo-ErrorStack-Handling" | |
description << | |
Test Ruleset for error handling to ErrorStack | |
http://www.windley.com/archives/2011/05/error_handling_in_krl.shtml | |
http://docs.kynetx.com/docs/Error_handling | |
http://ktest.heroku.com/a169x391 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x390 { | |
meta { | |
name "Demo-Error-Handling" | |
description << | |
Test Ruleset for in ruleset error handling | |
http://www.windley.com/archives/2011/05/error_handling_in_krl.shtml | |
http://docs.kynetx.com/docs/Error_handling | |
http://ktest.heroku.com/a169x390 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169xXXX { | |
meta { | |
name "KySQLGitHook" | |
description << | |
Kynetx Github commit webhook | |
>> | |
author "Ed Orcutt, LOBOSLLC" | |
logging on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x323 { | |
meta { | |
name "Peeps-On-Empire-Module-Test" | |
description << | |
Test Peeps On Empire Module | |
http://exampley.com/?appid=a169x323 | |
>> | |
author "Ed Orcutt" | |
logging on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x320 { | |
meta { | |
name "PeerIndex-Module-Test" | |
description << | |
Test PeerIndex API Module | |
http://exampley.com/?appid=a169x320 | |
>> | |
author "Ed Orcutt, LOBOSLLC" | |
logging on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x317 { | |
meta { | |
name "Qwerly-Module-Test" | |
description << | |
Test Qwerly API Module | |
http://exampley.com/?appid=a169x317 | |
>> | |
author "Ed Orcutt" | |
logging on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x306 { | |
meta { | |
name "SendGoogle" | |
description << | |
Facebook Send Button on Google | |
>> | |
author "Ed Orcutt, LOBOSLLC" | |
logging on | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x306 { | |
meta { | |
name "LikeGoogle" | |
description << | |
Facebook Like Button on Google | |
Facebook > Social Plugins > Like Button | |
http://developers.facebook.com/docs/reference/plugins/like/ | |
>> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ruleset a169x298 { | |
meta { | |
name "Kynetx-Lib-Location" | |
description << | |
Kynetx KRL Library: Location | |
Documentation: http://docs.kynetx.com/docs/Locations | |
Demo: http://exampley.com/?appid=a169x298 | |
>> | |
author "Ed Orcutt, LOBOSLLC" | |
logging on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rule Catch_Event_Raised_Remote_Callback { | |
select when web event_remote_callback | |
pre { | |
callback_rid = event:param("callback_rid"); | |
callback_evt = event:param("callback_evt"); | |
} | |
{ | |
notify("Catch_Remote_Callback", "Received from remote Ruleset!") with sticky = true; | |
notify("Now Raise Callback", "rid: "+callback_rid+" name: "+callback_evt) with sticky = true; | |
raise_event(callback_evt) with app_id = callback_rid; |