| /plugin/jsoneditor/demo/ |
| D | jsoneditor_plugin.txt | 1 ====== JSON Editor Plugin ====== 4 description: Integrate schema based JSON editor into json plugin. 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. 30 JSON Editor Plugin (Dokuwiki plugin) is based on [[https://www.dokuwiki.org/plugin:json|JSON plugin… 32 …edit JSON data according to the rules defined in JSON Schema. When user presses 'Validate and Save… 38 Here is a [[https://dokuwiki-json-demo.1001beauty.si/|Dokuwiki JSON Demo Server]] with JSON databas… 42 Syntax is similar as in [[https://www.dokuwiki.org/plugin:json|JSON Data Plugin]]:\\ 45 …JSON data the same way, from //src// attribute and from //inline_json//. It only has some extra at… 48 …JSON]] string inside single quotes. Special characters inside string, like ''%%'%%'', ''%%<%%'' or… 53 It must be a valid [[https://json-schema.org/|JSON Schema]]. Attribute has the same rules as 'optio… [all …]
|
| D | jsoneditor_demo.txt | 1 ====== JSON Editor Demo ====== 3 This is example for the [[https://www.dokuwiki.org/plugin:jsoneditor|JSON Editor Plugin]]. 111 ===== Options for JSON editor ===== 116 ===== JSON Data for the form ===== 133 ===== JSON Editor =====
|
| /plugin/idoit/ |
| D | syntax.php | 108 return 'JSON decode error: Maximum stack depth exceeded'; 110 return 'JSON decode error: Underflow or the modes mismatch'; 112 return 'JSON decode error: Unexpected control character found'; 114 return 'JSON decode error: Syntax error, malformed JSON'; 116 return 'JSON decode error: Malformed UTF-8 characters, possibly incorrectly encoded'; 118 return 'JSON decode error: unknown';
|
| /plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/ |
| D | serializers.asciidoc | 10 JSON. 23 users to provide raw JSON, or raw strings for certain endpoints that don't have 26 If the data is an array, it is converted to JSON. If the data provided was an 27 empty array, the serializer manually converts the JSON from an empty array 28 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request 37 encoded as JSON, it is decoded into an array using `json_decode`. Otherwise, it 41 endpoints, which return tabular text instead of JSON. 71 users to provide raw JSON, or raw strings for certain endpoints that don't have 75 empty array, the serializer manually converts the JSON from an empty array 76 (`[]`) to an empty object (`{}`) so that it is valid JSON for {es} request [all …]
|
| D | php_json_objects.asciidoc | 2 === Dealing with JSON arrays and objects in PHP 4 A common source of confusion with the client revolves around JSON arrays and 7 used in {es} JSON API and how to convert that to a PHP representation. 12 The {es} API uses empty JSON objects in several locations which can cause 34 <1> This empty JSON object is what causes problems. 58 JSON now encodes correctly. 83 <1> "sort" contains an array of JSON objects. 133 objects, and some of those objects might be empty JSON objects. 173 <3> This encodes the empty JSON object: `"random_score": {}`
|
| /plugin/api/_test/ |
| D | pages.test.php | 20 * @var JSON 22 private static $JSON; variable in dokuwiki_plugin_api_pages_test 26 self::$JSON = new JSON(JSON_LOOSE_TYPE); 69 $data = self::$JSON->decode($response->getContent()); 132 $data = self::$JSON->decode($response->getContent());
|
| D | utils.php | 11 * @var JSON 13 public static $JSON; variable in dokuwiki_plugin_api_util 17 self::$JSON = new JSON(JSON_LOOSE_TYPE);
|
| D | page.test.php | 20 * @var JSON 22 private static $JSON; variable in dokuwiki_plugin_api_page_test 26 self::$JSON = new JSON(JSON_LOOSE_TYPE);
|
| /plugin/jsontable/demo/ |
| D | jsontable_plugin.txt | 1 ====== JSON Table plugin ====== 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. 29 JSON Table Plugin is based on [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. It adds a table… 39 Here is a [[https://dokuwiki-json-demo.1001beauty.si/|Dokuwiki JSON Demo Server]] with JSON databas… 42 Syntax is similar as in [[https://www.dokuwiki.org/plugin:json|JSON Data Plugin]]:\\ 45 …JSON data the same way, from //src// attribute and from //inline_json//. It only has some extra at… 48 …JSON]] string inside single quotes. Special characters inside string, like ''%%'%%'', ''%%<%%'' or…
|
| /plugin/drawio/ |
| D | script.js | 98 draft = JSON.parse(draft); 110 var msg = JSON.parse(evt.data); 116 iframe.contentWindow.postMessage(JSON.stringify({action: 'load', 118 iframe.contentWindow.postMessage(JSON.stringify({action: 'status', 133 iframe.contentWindow.postMessage(JSON.stringify({action: 'load', 149 iframe.contentWindow.postMessage(JSON.stringify({action: 'load', 185 … localStorage.setItem(name, JSON.stringify({lastModified: new Date(), data: imgData})); 219 dr = JSON.stringify({lastModified: new Date(), xml: msg.xml}); 238 iframe.contentWindow.postMessage(JSON.stringify({action: 'export', 240 dr = JSON.stringify({lastModified: new Date(), xml: msg.xml}); [all …]
|
| D | action.php | 81 $json = new JSON(); 126 $json = new JSON(); 135 $json = new JSON(); 148 $json = new JSON(); 161 $json = new JSON();
|
| /plugin/jsongendoc/demo/ |
| D | jsongendoc_plugin.txt | 1 ====== JSON Generate Document Plugin ====== 4 description: Integrate "Generate new document" JSON based functionality into json plugin. 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. 29 JSON Generate Document Plugin is based on [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. It … 33 Here is a [[https://dokuwiki-json-demo.1001beauty.si/|Dokuwiki JSON Demo Server]] with JSON databas… 37 …page, which may have some ''@ ... @'' patterns, which will be replaced by JSON data. There are thr… 40 …%%%$%%end%@'' | If //filter// (see [[https://www.dokuwiki.org/plugin:json|JSON Data Plugin]]) is e… 47 Syntax is similar as in [[https://www.dokuwiki.org/plugin:json|JSON Data Plugin]]:\\ 50 …s, so rules for //attributes// and //inline_json// are the same. It loads JSON data the same way, … 53 …* **Select box** - Select box is generated from JSON data, if it contains array of similar data ob… [all …]
|
| /plugin/json/demo/ |
| D | json_plugin.txt | 1 ====== JSON Data Plugin ====== 4 description: Build JSON database inside DokuWiki page and use the data in the page 28 * [[plugin:jsoneditor|JSON editor plugin]] 29 * [[plugin:jsontable|JSON table plugin]] 30 * [[plugin:jsongendoc|JSON generate document plugin]] 35 With JSON Data Plugin you can build [[https://www.json.org/|JSON]] database inside DokuWiki page. J… 37 To add JSON database into the wiki page write: 54 JSON data can be used in the following ways: 55 * Extract specific JSON **basic** element. 56 * Extract specific JSON object element as a **list**. [all …]
|
| D | json_definition_demo.txt | 1 ====== JSON Data Definition Demo ====== 4 Here are some external files with recipes as JSON data: 5 * [[recipe_butter_cookie]] - pure JSON file. 6 * [[recipe_sweet_sauces]] - DokuWiki page with two JSON data objects inside %%<json>%% tags. 9 ===== JSON from single source ===== 41 ==== External JSON file ==== 42 In this case we have pure JSON external file [[recipe_butter_cookie]]. 'src' may be internal or ext… 49 ==== External JSON file from internet ==== 50 Load JSON file from internet into our database (this may not work - depends on server settings): 58 Load JSON data from external DokuWiki page ([[recipe_sweet_sauces]]) with multiple %%<json>%% eleme… [all …]
|
| D | benchmark.txt | 1 ====== JSON Data Benchmark Testing ====== 10 ===== Recursive JSON load ===== 11 Here is JSON data with src attribute, which links to itself. So it is recursively loaded 30 times. 44 ===== Load multiple files into JSON array ===== 45 Here is one long JSON file with random data: [[.1000files:file1]]. For testing purposes it should b… 88 ==== Show JSON data of 112 files ====
|
| /plugin/asciidocjs/node_modules/core-js/library/fn/json/ |
| D | index.js | 2 module.exports = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
| D | stringify.js | 2 var $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
| /plugin/asciidocjs/node_modules/core-js/fn/json/ |
| D | index.js | 2 module.exports = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
| D | stringify.js | 2 var $JSON = core.JSON || (core.JSON = { stringify: JSON.stringify });
|
| /plugin/asciidocjs/node_modules/unxhr/lib/ |
| D | request.js | 62 options.requestOptions = JSON.parse(arg.slice('--request-options='.length)) 72 console.log(JSON.stringify(result)) 88 console.log(JSON.stringify(result)) 90 console.log(JSON.stringify({ error: e })) 95 console.log(JSON.stringify({ error: e }))
|
| /plugin/jsontable/script/ |
| D | jsontable.js | 26 options = JSON.parse(options); 36 options.data = JSON.parse(o.data_combined); 86 dataOriginal = JSON.parse(o.data_original); 90 o.data_inline = JSON.stringify(dataToSave);
|
| /plugin/structstatus/ |
| D | script.js | 31 const value = JSON.parse(response).value; 55 if (set.indexOf(JSON.stringify($self.data('rid'))) === -1) { 88 return [JSON.stringify(set.pop())]; 92 return JSON.stringify(entry);
|
| /plugin/move/script/ |
| D | json2.js | 162 if (typeof JSON !== 'object') { 163 JSON = {}; 358 if (typeof JSON.stringify !== 'function') { 359 JSON.stringify = function (value, replacer, space) { 405 if (typeof JSON.parse !== 'function') { 406 JSON.parse = function (text, reviver) {
|
| /plugin/sequencediagram/bower_components/lodash/vendor/json-js/ |
| D | json2.js | 169 if (typeof JSON !== 'object') { 170 JSON = {}; 378 if (typeof JSON.stringify !== 'function') { 388 JSON.stringify = function (value, replacer, space) { 434 if (typeof JSON.parse !== 'function') { 435 JSON.parse = function (text, reviver) {
|
| /plugin/diagramsnet/ |
| D | script.js | 18 var msg = JSON.parse(evt.data); 32 …iframe.contentWindow.postMessage(JSON.stringify({action: 'load', autosave: 1, xmlpng: result.cont… 48 …iframe.contentWindow.postMessage(JSON.stringify({action: 'export', format: 'xmlpng', xml: xmlData,… 73 …iframe.contentWindow.postMessage(JSON.stringify({action: 'status', message: save_msg, modified: fa…
|