Skip to content

Instantly share code, notes, and snippets.

@opn
opn / hosting.permanent.wiki-1502974031671
Created August 17, 2017 12:49
Errors loading wiki favicons
jquery-migrate-1.4.1.min.js:2 JQMIGRATE: Migrate is installed, version 1.4.1
client.max.js:2 Window Name: hosting.permanent.wiki
client.max.js:3302 wiki.local.get welcome-visitors.json
client.max.js:2086 Array(2)
client.max.js:3330 wiki.origin.get welcome-visitors.json
client.max.js:3302 wiki.local.get ipfs.json
client.max.js:2086 Array(2)
client.max.js:3330 wiki.origin.get ipfs.json
client.max.js:2122 got view Object
client.max.js:2824 .page keys Array(2)
@opn
opn / rest.livecode.world stack: lib_Slack.livecodescript
Created August 5, 2017 18:07
This library interfaces with the Slack REST API.
script "lib_Slack"
--> MetaData
-
license: GPLv3
name: lib_Slack
type: library
version: 0.2
--> Slack
@opn
opn / rest.livecode.world stack: lib_DropBox.livecodescript
Last active August 5, 2017 18:06
This library provides handlers for the Dropbox REST API.
script "lib_DropBox"
--> MetaData
-
license: GPLv3
name: lib_DropBox
type: library
version: 0.2
--> Events
@opn
opn / rest.livecode.world handler: command OAuth2
Last active August 5, 2017 09:01
This is the Livecode IDE's oAuth2 handler that is found in stack "com.livecode.script-library.oauth2" in the file "oauth2.livecodescript".
command OAuth2 pAuthURL, pTokenURL, pClientID, pClientSecret, pScopes, pPort, pParams
local tURL
put pAuthURL & "?response_type=code" into tURL
put "&client_id=" & urlEncode(pClientID) after tURL
if pScopes is not empty then
put "&scope=" & urlEncode(pScopes) after tURL
end if
@opn
opn / rest.livecode.world stack: lib_GistIgniter.livecode
Created August 2, 2017 13:49
These handlers interface with a remote revIgniter server.
--> MetaData
-
license: GPLv3
name: lib_GistIgniter
type: library
version: 0.4
/*
These handlers interface with a remote revIgniter server.
They are used by the revIgniter Code Helper application to speed up coding controllers and libraries in revIgniter.
@opn
opn / rest.livecode.world stack: lib_RevIgniter.livecode
Last active August 2, 2017 13:47
This library contains all the revIgniter code for Livecode.
--> MetaData
-
copyright: David Bovill
license: GPLv3
name: lib_RevIgniter
type: script library
version: 0.5
/*
@opn
opn / rest.livecode.world controller: fedwiki.lc
Last active November 12, 2017 13:30
This the is Revigniter controller 'fedwiki.lc' from the domain 'rest.livecode.world'.
<?lc
/* = DESCRIPTION =
--
The fedwiki.lc controller can be found at: fedwiki.lc
Here is some test help
Below we declare the global variables gControllerHandlers AND gData
And put the public method names that we wish to expose into gControllerHandlers
--
*/
@opn
opn / rest.livecode.world controller: imagine.lc
Last active November 21, 2017 17:51
This is Revigniter controller 'imagine.lc' from the domain 'rest.livecode.world'.
<?lc
/* = DESCRIPTION =
--
The imagine.lc controller can be found at: imagine.lc
Here is some test help
Below we declare the global variables gControllerHandlers AND gData
And put the public method names that we wish to expose into gControllerHandlers
--
*/
@opn
opn / rest.livecode.world controller: mw_image.lc
Created June 26, 2017 15:03
This the is Revigniter controller 'mw_image.lc' from the domain 'rest.livecode.world'.
<?rev
# PUT YOUR HANDLER NAMES INTO THE GLOBAL gControllerHandlers AS A COMMA SEPARATED LIST
put "index" into gControllerHandlers
# THIS COMMAND WILL BE CALLED IF NONE IS SPECIFYED IN THE URI
command index
-- put "https://audioboom.com/boos/3844212-fedwiki-authoring-tool" into droppedURL
-- put "https://audioboom.com/boos/3836093-raspberrypad" into droppedURL
@opn
opn / rest.livecode.world controller: onetab.lc
Last active November 19, 2017 12:49
This is Revigniter controller 'onetab.lc' from the domain 'rest.livecode.world'.
<?lc
/* = DESCRIPTION =
--
The onetab.lc controller can be found at: onetab.lc
Here is some test help
Below we declare the global variables gControllerHandlers AND gData
And put the public method names that we wish to expose into gControllerHandlers
--
*/