/dokuwiki/lib/plugins/config/settings/ |
H A D | config.metadata.php | 84 $meta['_basic'] = ['fieldset']; 85 $meta['title'] = ['string']; 86 $meta['start'] = ['string', '_caution' => 'warning', '_pattern' => '!^[^:;/]+$!']; // don't accept … 87 $meta['lang'] = ['dirchoice', '_dir' => DOKU_INC . 'inc/lang/']; 88 $meta['template'] = ['dirchoice', '_dir' => DOKU_INC . 'lib/tpl/', '_pattern' => '/^[\w-]+$/']; 89 $meta['tagline'] = ['string']; 90 $meta['sidebar'] = ['string']; 91 $meta['license'] = ['license']; 92 $meta['savedir'] = ['savedir', '_caution' => 'danger']; 93 $meta['basedir'] = ['string', '_caution' => 'danger']; [all …]
|
/dokuwiki/lib/plugins/config/_test/data/ |
H A D | metadata.php | 3 $meta['int1'] = array('numeric'); 4 $meta['int2'] = array('numeric'); 6 $meta['str1'] = array('string'); 7 $meta['str2'] = array('string'); 8 $meta['str3'] = array('string'); 9 $meta['str4'] = array('string'); 10 $meta['str5'] = array('string'); 12 $meta['arr1'] = array('array'); 14 $meta['onoff1'] = array('onoff'); 15 $meta['onoff2'] = array('onoff'); [all …]
|
/dokuwiki/lib/plugins/authldap/conf/ |
H A D | metadata.php | 3 $meta['server'] = array('string','_caution' => 'danger'); 4 $meta['port'] = array('numeric','_caution' => 'danger'); 5 $meta['usertree'] = array('string','_caution' => 'danger'); 6 $meta['grouptree'] = array('string','_caution' => 'danger'); 7 $meta['userfilter'] = array('string','_caution' => 'danger'); 8 $meta['groupfilter'] = array('string','_caution' => 'danger'); 9 $meta['version'] = array('numeric','_caution' => 'danger'); 10 $meta['starttls'] = array('onoff','_caution' => 'danger'); 11 $meta['referrals'] = array('multichoice','_choices' => array(-1,0,1),'_caution' => 'danger'); 12 $meta['deref'] = array('multichoice','_choices' => array(0,1,2,3),'_caution' => 'danger'); [all …]
|
/dokuwiki/lib/plugins/authpdo/conf/ |
H A D | metadata.php | 9 $meta['debug'] = array('onoff', '_caution' => 'security'); 10 $meta['dsn'] = array('string', '_caution' => 'danger'); 11 $meta['user'] = array('string', '_caution' => 'danger'); 12 $meta['pass'] = array('password', '_caution' => 'danger', '_code' => 'base64'); 13 $meta['select-user'] = array('', '_caution' => 'danger'); 14 $meta['check-pass'] = array('', '_caution' => 'danger'); 15 $meta['select-user-groups'] = array('', '_caution' => 'danger'); 16 $meta['select-groups'] = array('', '_caution' => 'danger'); 17 $meta['insert-user'] = array('', '_caution' => 'danger'); 18 $meta['delete-user'] = array('', '_caution' => 'danger'); [all …]
|
/dokuwiki/lib/plugins/authad/conf/ |
H A D | metadata.php | 3 $meta['account_suffix'] = array('string','_caution' => 'danger'); 4 $meta['base_dn'] = array('string','_caution' => 'danger'); 5 $meta['domain_controllers'] = array('string','_caution' => 'danger'); 6 $meta['sso'] = array('onoff','_caution' => 'danger'); 7 $meta['sso_charset'] = array('string','_caution' => 'danger'); 8 $meta['admin_username'] = array('string','_caution' => 'danger'); 9 $meta['admin_password'] = array('password','_caution' => 'danger','_code' => 'base64'); 10 $meta['real_primarygroup'] = array('onoff','_caution' => 'danger'); 11 $meta['use_ssl'] = array('onoff','_caution' => 'danger'); 12 $meta['use_tls'] = array('onoff','_caution' => 'danger'); [all …]
|
/dokuwiki/_test/tests/inc/ |
H A D | parserutils_set_metadata.test.php | 53 $meta = p_get_metadata($this->id); 55 $this->assertEquals('1', $meta['user'], 'Initial page has wrong user ID'); 61 $meta = p_get_metadata($this->id); 63 $last_edit_date = $meta['date']['modified']; 64 … $this->assertEquals(array('1'=>'Tester1'), $meta['contributor'], 'First edit contributors error'); 70 $meta = p_get_metadata($this->id); 72 … $this->assertNotEquals($last_edit_date, $meta['date']['modified'], 'First edit date merge error'); 73 …$this->assertEquals(array('tester2'=>'Tester2', '1'=>'Tester1'), $meta['contributor'], 'Second edi… 79 $meta = p_get_metadata($this->id); 81 …$this->assertEquals(array('tester2'=>'Tester2', '1'=>'Tester1'), $meta['contributor'], 'Third edit…
|
H A D | parserutils_set_metadata_during_rendering.test.php | 69 public function helper_set_metadata($event, $meta) argument 72 p_set_metadata($this->id, $meta, false, true); 73 $keys = array_keys($meta); 75 $this->assertTrue(is_string($meta[ $key ])); // ensure we really have a key 77 $this->assertNotEquals($meta[ $key ], p_get_metadata($this->id, $key));
|
/dokuwiki/lib/plugins/config/_test/ |
H A D | LoaderTest.php | 24 $meta = $loader->loadMeta(); 25 $this->assertTrue(is_array($meta)); 28 $this->assertArrayHasKey('savedir', $meta); 29 $this->assertEquals(['savedir', '_caution' => 'danger'], $meta['savedir']); 30 $this->assertArrayHasKey('proxy____port', $meta); 31 $this->assertEquals(['numericopt'], $meta['proxy____port']); 34 $this->assertArrayHasKey('plugin____testing____plugin_settings_name', $meta); 35 $this->assertEquals(['fieldset'], $meta['plugin____testing____plugin_settings_name']); 36 $this->assertArrayHasKey('plugin____testing____schnibble', $meta); 37 $this->assertEquals(['onoff'], $meta['plugin____testing____schnibble']);
|
/dokuwiki/inc/ |
H A D | parserutils.php | 264 $meta = p_read_metadata($id, $cache); 298 $old_meta = $meta; 299 $meta = p_render_metadata($id, $meta); 301 if ($meta == $old_meta || p_save_metadata($id, $meta)) { 313 $val = $meta['current'] ?? null; 349 $meta = $orig; 356 $meta = $render ? p_render_metadata($id, $orig) : $orig; 365 … if (isset($meta['current'][$key][$subkey]) && is_array($meta['current'][$key][$subkey])) { 366 …$meta['current'][$key][$subkey] = array_replace($meta['current'][$key][$subkey], (array)$subvalue); 368 $meta['current'][$key][$subkey] = $subvalue; [all …]
|
H A D | media.php | 76 $meta = new JpegMeta($src); 77 $meta->_parseAll(); 82 $meta->deleteField($key); 84 $meta->setField($key, $val); 94 if ($meta->save()) { 1015 $meta = new JpegMeta(mediaFN($image, $rev)); 1016 media_preview($image, $auth, $rev, $meta); 1018 media_details($image, $auth, $rev, $meta); 1078 * @param JpegMeta|bool $meta 1082 function media_preview($image, $auth, $rev = '', $meta = false) argument [all …]
|
/dokuwiki/lib/plugins/testing/conf/ |
H A D | metadata.php | 9 $meta['schnibble'] = array('onoff'); 10 $meta['second'] = array('string');
|
/dokuwiki/inc/Feed/ |
H A D | FeedPageProcessor.php | 17 protected $meta; variable in dokuwiki\\Feed\\FeedPageProcessor 82 $meta = $this->getMetaData(); 83 return (array)($meta['subject'] ?? (string)getNS($this->getId())); 98 $meta = $this->getMetaData(); 99 if (isset($meta['description']['abstract'])) { 100 $this->data['abstract'] = (string)$meta['description']['abstract']; 175 if (!isset($this->meta)) { 176 $this->meta = (array)p_get_metadata($this->id); 178 return $this->meta;
|
/dokuwiki/lib/plugins/config/core/ |
H A D | Loader.php | 48 $meta = []; 53 $meta = array_merge( 54 $meta, 64 $meta = array_merge( 65 $meta, 73 return $meta; 208 $meta = []; 210 if ($meta === []) return []; 215 foreach ($meta as $key => $value) {
|
/dokuwiki/inc/File/ |
H A D | PageFile.php | 301 $meta = []; 308 $meta['date']['created'] = $createdDate; 310 $meta['creator'] = $INFO['userinfo']['name'] ?? null; 311 $meta['user'] = $user; 315 $meta['date']['created'] = $oldmeta['date']['created']; 316 $meta['date']['modified'] = $createdDate; // use the files ctime here 317 $meta['creator'] = $oldmeta['creator'] ?? null; 319 $meta['contributor'][$user] = $INFO['userinfo']['name'] ?? null; 322 $meta['date']['modified'] = $date; 324 $meta['contributor'][$user] = $INFO['userinfo']['name'] ?? null; [all …]
|
H A D | MediaFile.php | 19 protected $meta; variable in dokuwiki\\File\\MediaFile 171 if ($this->meta === null) $this->meta = new JpegMeta($this->path); 172 return $this->meta;
|
/dokuwiki/inc/parser/ |
H A D | metadata.php | 27 public $meta = []; variable in Doku_Renderer_metadata 82 $this->meta = $this->persistent; 95 $this->meta['internal'] = $this->info; 97 if (!isset($this->meta['description']['abstract'])) { 103 $this->meta['description']['abstract'] = $this->doc; 106 $this->meta['relation']['firstimage'] = $this->firstimage; 108 if (!isset($this->meta['date']['modified'])) { 109 $this->meta['date']['modified'] = filemtime(wikiFN($ID)); 151 $this->meta['description']['tableofcontents'][] = [ 169 if (!isset($this->meta['title'])) { [all …]
|
/dokuwiki/_test/tests/inc/parser/ |
H A D | renderer_metadata.test.php | 44 $this->assertEquals($expected, $this->R->meta['description']['abstract']);
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/ |
H A D | PKCS8.php | 335 $meta = []; 358 $meta['meta']['algorithm'] = $algorithm; 375 $meta['meta']['algorithm'] = $algorithm; 385 $meta['meta']['cipher'] = $encryptionScheme['algorithm']; 419 $meta['meta']['keyDerivationFunc'] = $keyDerivationFunc['algorithm']; 429 $meta['meta']['prf'] = $prf['algorithm']; 486 return $private + $meta;
|
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/ |
H A D | AsymmetricKey.php | 381 $meta = new \ReflectionClass($fullname); 382 $shortname = $meta->getShortName(); 384 if ($meta->hasConstant('IS_INVISIBLE')) { 405 $meta = new \ReflectionClass($this->format); 406 return $meta->getShortName();
|
/dokuwiki/inc/Subscriptions/ |
H A D | BulkSubscriptionSender.php | 78 $meta = p_get_metadata($target); 79 $changes = [$meta['last_change']];
|
/dokuwiki/bin/ |
H A D | dwpage.php | 190 $meta = p_get_metadata($wiki_id, $key, METADATA_RENDER_UNLIMITED); 191 echo trim(json_encode($meta, JSON_PRETTY_PRINT));
|
/dokuwiki/conf/ |
H A D | interwiki.conf | 26 wpmeta https://meta.wikipedia.org/wiki/{NAME}
|
/dokuwiki/lib/tpl/dokuwiki/css/ |
H A D | _media_fullscreen.css | 413 /* file meta data edit form */ 415 #mediamanager__page form.meta div.row { 419 #mediamanager__page form.meta label span { 423 #mediamanager__page form.meta input { 427 #mediamanager__page form.meta button { 431 #mediamanager__page form.meta textarea.edit {
|
/dokuwiki/inc/Ui/ |
H A D | MediaDiff.php | 97 $meta = new JpegMeta(mediaFN($this->id, $rev)); 100 'previewSize' => media_image_preview_size($this->id, $rev, $meta)
|
/dokuwiki/ |
H A D | .gitignore | 40 /data/meta/*
|