| /plugin/json/demo/ |
| 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 ===== 13 <json path=inline display=all> 24 </json> 27 <json path=inline display=all> 38 </json> 41 ==== External JSON file ==== [all …]
|
| D | json_plugin.txt | 1 ====== JSON Data Plugin ====== 4 description: Build JSON database inside DokuWiki page and use the data in the page 13 tags : data, json, database, template, xmlrpc, listing, tables 15 downloadurl: https://gitlab.com/dokuwiki-json/json/-/archive/master/json-master.zip 16 bugtracker : https://gitlab.com/dokuwiki-json/json/-/issues 17 sourcerepo : https://gitlab.com/dokuwiki-json/json 20 screenshot_img: https://gitlab.com/dokuwiki-json/json/-/raw/master/demo/screenshot.png 28 * [[plugin:jsoneditor|JSON editor plugin]] 29 * [[plugin:jsontable|JSON table plugin]] 30 * [[plugin:jsongendoc|JSON generate document plugin]] [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. 14 <json id=cookie path=cookie src=benchmark#cookie display=combined,log*> 25 </json> 29 <json id=cookie path=cookie src=benchmark#cookie display=combined,log*> 40 </json> 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… 50 <json path=stack1[] src=.1000files:file1 display=combined,log*></json> [all …]
|
| /plugin/jsoneditor/demo/ |
| D | jsoneditor_plugin.txt | 1 ====== JSON Editor Plugin ====== 4 description: Integrate schema based JSON editor into json plugin. 10 depends : json 12 similar : json, jsontable, jsongendoc, struct, data, strata 13 tags : data, json, database, listing, tables 15 downloadurl: https://gitlab.com/dokuwiki-json/jsoneditor/-/archive/master/json-master.zip 16 bugtracker : https://gitlab.com/dokuwiki-json/jsoneditor/-/issues 17 sourcerepo : https://gitlab.com/dokuwiki-json/jsoneditor 20 screenshot_img: https://gitlab.com/dokuwiki-json/jsoneditor/-/raw/master/demo/screenshot.png 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. [all …]
|
| /plugin/jsoneditor/ |
| D | all.css | 1 .json-tabs .json-editor-error { 5 .json-tabs .json-editor h1, 6 .json-tabs .json-editor h2, 7 .json-tabs .json-editor h3, 8 .json-tabs .json-editor h4, 9 .json-tabs .json-editor h5, 10 .json-tabs .json-editor h6 { 14 .json-tabs .json-editor { 18 .json-tabs .json-editor td input { 22 .json-tabs .json-editor .form-control label { [all …]
|
| /plugin/jsontable/demo/ |
| D | jsontable_plugin.txt | 1 ====== JSON Table plugin ====== 4 description: Integrate Excel like spreadsheet into json plugin. 10 depends : json 12 similar : json, jsoneditor, jsongendoc, struct, edittable 13 tags : data, json, database, editing, tables 15 downloadurl: https://gitlab.com/dokuwiki-json/jsontable/-/archive/master/json-master.zip 16 bugtracker : https://gitlab.com/dokuwiki-json/jsontable/-/issues 17 sourcerepo : https://gitlab.com/dokuwiki-json/jsontable 20 screenshot_img: https://gitlab.com/dokuwiki-json/jsontable/-/raw/master/demo/screenshot.png 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. [all …]
|
| D | jsontable_demo.txt | 1 ====== JSON Table Demo ====== 3 This is example for the [[https://www.dokuwiki.org/plugin:jsontable|JSON Table Plugin]]. 26 <json path=cars2>[ 30 ]</json> 32 <json path=cars2>[ 36 ]</json> 40 Table options are basically JSON data and can be defined separately: 42 <json id=table_options_id path=table_options>{ 58 }</json> 60 <json id=table_options__id path=table_options>{ [all …]
|
| /plugin/json/script/ |
| D | json.js | 2 //another json plugin may have allready initialized this 8 //global variable accessible by other json-type plugins 20 jQuery('.json-tabs').each(function() { 23 id = $tabs.data('json-id'), 24 hash = $tabs.data('json-hash'), 26 $button = $tabs.find('.json-save-button'), 27 $data_original = $tabs.find('.json-data-original'), 28 $textarea = $tabs.find('.json-data-inline'), 29 $data_combined = $tabs.find('.json-data-combined'), 30 $highlight = $tabs.find('.lang-json'); [all …]
|
| /plugin/jsongendoc/demo/ |
| D | jsongendoc_plugin.txt | 1 ====== JSON Generate Document Plugin ====== 4 description: Integrate "Generate new document" JSON based functionality into json plugin. 10 depends : json 12 similar : json, jsoneditor, jsontable, struct, addnewpage, copypage 13 tags : data, json, database, button, create, form 15 downloadurl: https://gitlab.com/dokuwiki-json/jsongendoc/-/archive/master/json-master.zip 16 bugtracker : https://gitlab.com/dokuwiki-json/jsongendoc/-/issues 17 sourcerepo : https://gitlab.com/dokuwiki-json/jsongendoc 20 screenshot_img: https://gitlab.com/dokuwiki-json/jsongendoc/-/raw/master/demo/screenshot.png 26 Install also [[https://www.dokuwiki.org/plugin:json|JSON plugin]]. [all …]
|
| /plugin/asciidocjs/node_modules/async/ |
| D | forEachOf.js | 91 * // dev.json is a file containing a valid json object config for dev environment 92 * // dev.json is a file containing a valid json object config for test environment 93 * // prod.json is a file containing a valid json object config for prod environment 94 * // invalid.json is a file with a malformed json object 97 * let validConfigFileMap = {dev: 'dev.json', test: 'test.json', prod: 'prod.json'}; 98 * let invalidConfigFileMap = {dev: 'dev.json', test: 'test.json', invalid: 'invalid.json'}; 100 * // asynchronous function that reads a json file and parses the contents as json object 105 * configs[key] = JSON.parse(data); 119 * // configs is now a map of JSON data, e.g. 120 * // { dev: //parsed dev.json, test: //parsed test.json, prod: //parsed prod.json} [all …]
|
| D | eachOf.js | 91 * // dev.json is a file containing a valid json object config for dev environment 92 * // dev.json is a file containing a valid json object config for test environment 93 * // prod.json is a file containing a valid json object config for prod environment 94 * // invalid.json is a file with a malformed json object 97 * let validConfigFileMap = {dev: 'dev.json', test: 'test.json', prod: 'prod.json'}; 98 * let invalidConfigFileMap = {dev: 'dev.json', test: 'test.json', invalid: 'invalid.json'}; 100 * // asynchronous function that reads a json file and parses the contents as json object 105 * configs[key] = JSON.parse(data); 119 * // configs is now a map of JSON data, e.g. 120 * // { dev: //parsed dev.json, test: //parsed test.json, prod: //parsed prod.json} [all …]
|
| /plugin/json/ |
| D | remote.php | 3 * DokuWiki Plugin json (Remote Component) 16 'doc' => 'Get JSON data from page from data path.' 22 'doc' => 'Set JSON data inside the <json> element inside the wiki page.' 28 'doc' => 'Append JSON data into array inside page inside <json id=xxx> element.' 34 * Generate JSON database on page and return data from the JSON_path. 37 * @param string $path Path on the JSON database. 41 * data => string JSON data from database 42 * log => array Only if $addLog is true. JSON string with 46 $json_o = $this->loadHelper('json'); 61 $json = []; [all …]
|
| D | all.css | 1 .json-archive-button { 6 .json-tabs { 11 div.json-tabs.json-hidden 16 div.json-tabs.json-hide-tabs ul.ui-tabs-nav 20 div.json-tabs.json-hide-tabs .ui-tabs-panel 25 .json-tabs .json-textarea { 33 .json-tabs .json-save-button { 40 .json-tabs .json-error { 44 .json-tabs .json-log { 49 .json-tabs pre { [all …]
|
| /plugin/json/lang/en/ |
| D | lang.php | 3 * English language file for json plugin 8 // json tabs 11 $lang['json_original'] = 'JSON original'; 12 $lang['json_inline'] = 'JSON inline'; 13 $lang['json_combined'] = 'JSON combined'; 21 $lang['missing_id'] = 'Json missing id or other error in file %s.'; 22 $lang['json_error'] = 'Argument \'data\' is not valid Json nor empty string.'; 26 $lang['element_not_found'] = 'Json element id=\'%s\' not found.'; 27 $lang['duplicated_id'] = 'Non unique id=\'%s\' attribute on json elements.'; 28 $lang['not_empty'] = 'Writing inside json id=\'%s\' element is not allowed as it already contains d… [all …]
|
| /plugin/json/lang/sl/ |
| D | lang.php | 3 * Slovenian language file for json plugin 8 // json tabs 11 $lang['json_original'] = 'JSON originalni'; 12 $lang['json_inline'] = 'JSON znotraj'; 13 $lang['json_combined'] = 'JSON kombiniran'; 21 $lang['missing_id'] = 'Manjkajoč id v json elementu ali druga napaka v jsonu v datoteki %s.'; 22 $lang['json_error'] = 'Argument \'data\' ni niti pravilen Json niti prazen niz.'; 26 $lang['element_not_found'] = 'Json element id=\'%s\' ni najden.'; 27 $lang['duplicated_id'] = 'Atribut id=\'%s\' na json elementih ni unikaten.'; 28 $lang['not_empty'] = 'Pisanje znotraj json id=\'%s\' elementa ni dovoljeno ker že vsebuje podatke.'; [all …]
|
| /plugin/json/syntax/ |
| D | define.php | 3 * DokuWiki Plugin json (Syntax Component) 47 …$this->Lexer->addSpecialPattern('<json[a-z0-9]*\b.*?>.*?</json[a-z0-9]*>', $mode, 'plugin_json_def… 52 * Handle matches of the json syntax 62 $json_o = $this->loadHelper('json'); 70 if(!isset($data['error']) && $data['tag'] !== 'json') { 133 $json_o = $this->loadHelper('json'); 146 //buld the json database 149 //check, if src to json file is specified in query string 174 //check, if src_path to json file is specified in query string 201 //load all json data and put it into the json database [all …]
|
| /plugin/vbsso/includes/ |
| D | api.php | 33 * @param array $json array 37 function vbsso_listener_verify($json) { argument 48 $settings[$key] = $json[$item['field']]; 60 * @param array $json array 65 function vbsso_listener_user_load($json, $create_user = FALSE) { argument 72 foreach (explode(',', $json[SHAREDAPI_EVENT_FIELD_USERGROUPS]) as $ug) { 76 if (!$user = $auth->getUserData($json[SHAREDAPI_EVENT_FIELD_USERNAME]) and $create_user) { 77 …if ($auth->createUser($json[SHAREDAPI_EVENT_FIELD_USERNAME], '', $json[SHAREDAPI_EVENT_FIELD_USERN… 78 $json[SHAREDAPI_EVENT_FIELD_EMAIL], array_unique($usergroups))) { 79 $user = $auth->getUserData($json[SHAREDAPI_EVENT_FIELD_USERNAME]); [all …]
|
| /plugin/elasticsearch/vendor/ruflin/elastica/src/ |
| D | JSON.php | 8 * Elastica JSON tools. 10 class JSON class 13 * Parse JSON string to an array. 15 * @see http://php.net/manual/en/function.json-decode.php 16 * @see http://php.net/manual/en/function.json-last-error.php 18 * @param mixed $args,... JSON string to parse 22 * @return array PHP array representation of JSON string 44 * Convert input to JSON string with standard options. 46 * @see http://php.net/manual/en/function.json-encode.php 47 * @see http://php.net/manual/en/function.json-last-error.php [all …]
|
| /plugin/freechat/phpfreechat/data/public/themes/default/ |
| D | chat.js.tpl.php | 30 $json = new pfcJSON(); variable 32 <?php $nick = $u->getNickname() != '' ? $json->encode($u->getNickname()) : $json->encode($c->nick);… 36 var pfc_nickid = <?php echo $json->encode($u->nickid); ?>; 37 var pfc_version = <?php echo $json->encode($version); ?>; 38 var pfc_clientid = <?php echo $json->encode(md5(uniqid(rand(), true))); ?>; 39 var pfc_title = <?php echo $json->encode($title); ?>; 40 var pfc_refresh_delay = <?php echo $json->encode($refresh_delay); ?>; 41 var pfc_refresh_delay_steps = <?php echo $json->encode($refresh_delay_steps); ?>; 42 var pfc_start_minimized = <?php echo $json->encode($start_minimized); ?>; 43 var pfc_nickmarker = <?php echo $json->encode($nickmarker); ?>; [all …]
|
| /plugin/freechat/phpfreechat/themes/default/ |
| D | chat.js.tpl.php | 30 $json = new pfcJSON(); variable 32 <?php $nick = $u->getNickname() != '' ? $json->encode($u->getNickname()) : $json->encode($c->nick);… 36 var pfc_nickid = <?php echo $json->encode($u->nickid); ?>; 37 var pfc_version = <?php echo $json->encode($version); ?>; 38 var pfc_clientid = <?php echo $json->encode(md5(uniqid(rand(), true))); ?>; 39 var pfc_title = <?php echo $json->encode($title); ?>; 40 var pfc_refresh_delay = <?php echo $json->encode($refresh_delay); ?>; 41 var pfc_refresh_delay_steps = <?php echo $json->encode($refresh_delay_steps); ?>; 42 var pfc_start_minimized = <?php echo $json->encode($start_minimized); ?>; 43 var pfc_nickmarker = <?php echo $json->encode($nickmarker); ?>; [all …]
|
| /plugin/botmon/ |
| H A D | pview.php | 3 /* parse the JSON payload */ 4 $json = json_decode($_POST['pageview'], true); variable 5 if (!$json) { 7 die("Invalid JSON Data."); 11 $sessionId = preg_replace('/[\x00-\x1F{};\"\']/', "\u{FFFD}", $json['id']) /* clean json parameter… 16 $pageId = preg_replace('/[\x00-\x1F{};\"\']/', "\u{FFFD}", $json['pg'] ?? ''); 19 $userName = preg_replace('/[\x00-\x1F\"]/', "\u{FFFD}", $json['u'] ?? ''); 22 $loadTime = $json['lt'] ?? ''; 29 $referer = preg_replace('/[\x00-\x1F]/', "\u{FFFD}", $json['r'] ?? ''); 41 // $json['lg'] ?? '', /* browser language */ [all …]
|
| /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 74 If the data is an array, it is converted to json. If the data provided was an 75 empty array, the serializer manually converts the JSON from an empty array [all …]
|
| /plugin/combo/ComboStrap/ |
| H A D | Json.php | 7 class Json class 13 const EXTENSION = "json"; 21 * Json constructor. 30 public static function createEmpty(): Json 32 return new Json([]); 35 public static function createFromArray(array $actual): Json 37 return new Json($actual); 40 public static function getValidationLink(string $json): string argument 42 …n <a href=\"https://jsonformatter.curiousconcept.com/?data=" . urlencode($json) . "\">this link</a… 49 public static function createFromPath(Path $path): Json [all …]
|
| /plugin/structtasks/_test/ |
| D | StructtasksTest.php | 18 * @param string $json base name of the JSON file optional, defaults to $schema 22 protected function loadSchemaJSON($schema, $json = '', $rev = 0) argument 24 if (!$json) $json = $schema; 25 $file = __DIR__ . "/json/$json.struct.json"; 30 $json = file_get_contents($file); 31 $importer = new SchemaImporter($schema, $json);
|
| /plugin/stopforumspam/_test/ |
| D | ResponseCheckerTest.php | 22 $json = json_encode($resp); 26 $this->assertEquals(true, $checker->userIsValid($json)); 39 $json = json_encode($resp); 42 $this->assertEquals(false, $checker->userIsValid($json)); 50 $json = json_encode($resp); 53 $this->assertEquals(true, $checker->userIsValid($json)); 61 $json = json_encode($resp); 64 $this->assertEquals(false, $checker->userIsValid($json)); 72 $json = json_encode($resp); 75 $this->assertEquals(true, $checker->userIsValid($json)); [all …]
|