Home
last modified time | relevance | path

Searched refs:entry (Results 1 – 15 of 15) sorted by relevance

/dokuwiki/_test/data/meta/
Dmailinglist.changes5 1362525359 127.0.0.1 E mailinglist pubcie [Data entry]
6 1362525899 127.0.0.1 E mailinglist pubcie [Data entry]
8 1362526039 127.0.0.1 E mailinglist pubcie [Data entry]
10 1362526167 127.0.0.1 E mailinglist pubcie [Data entry]
11 1362526767 127.0.0.1 E mailinglist pubcie [Data entry]
12 1362526861 127.0.0.1 E mailinglist pubcie [Data entry]
13 1362527046 127.0.0.1 E mailinglist pubcie [Data entry]
14 1362527164 127.0.0.1 E mailinglist pubcie [Data entry]
18 1368612506 127.0.0.1 E mailinglist pubcie [Data entry]
19 1368612599 127.0.0.1 E mailinglist pubcie [Data entry]
[all …]
/dokuwiki/lib/plugins/config/core/Setting/
DSettingDirchoice.php20 while (false !== ($entry = readdir($dh))) {
21 if ($entry == '.' || $entry == '..') continue;
22 if ($this->pattern && !preg_match($this->pattern, $entry)) continue;
24 … $file = (is_link($this->dir . $entry)) ? readlink($this->dir . $entry) : $this->dir . $entry;
25 if (is_dir($file)) $list[] = $entry;
/dokuwiki/_test/core/
DTestUtils.php34 while (false !== ($entry = $dh->read())) {
35 if ($entry == '.' || $entry == '..') {
38 TestUtils::rcopy($newdestdir, $source.'/'.$entry);
55 while (false !== ($entry = $dh->read())) {
56 if ($entry == '.' || $entry == '..') {
59 TestUtils::rdelete("$target/$entry");
/dokuwiki/_test/
Dbootstrap.php98 while (false !== ($entry = $dh->read())) { variable
99 if ($entry == '.' || $entry == '..') {
103 if (!is_dir(DOKU_INC.'lib/plugins/'.$entry)) {
107 if (!in_array($entry, $default_plugins)) {
109 TestUtils::fappend(DOKU_CONF.'plugins.local.php', "\$plugins['$entry'] = 0;\n");
/dokuwiki/bin/
Dwantedpages.php101 * @param string $entry
105 protected function dirFilter($entry, $basepath) argument
107 if ($entry == '.' || $entry == '..') {
110 if (is_dir($basepath . '/' . $entry)) {
111 if (strpos($entry, '_') === 0) {
116 if (preg_match('/\.txt$/', $entry)) {
143 while (false !== ($entry = readdir($dh))) {
144 $status = $this->dirFilter($entry, $dir);
148 $pages = array_merge($pages, $this->getPages($dir . '/' . $entry));
150 … $page = ['id' => pathID(substr($dir . '/' . $entry, $trunclen)), 'file' => $dir . '/' . $entry];
Dstriplangs.php80 foreach ($entries as $entry) {
81 if ($entry != "." && $entry != "..") {
82 if (is_dir($path . '/' . $entry)) {
83 $plugin_langs = $path . '/' . $entry . '/lang';
/dokuwiki/vendor/simplepie/simplepie/src/
DParser.php451 $entry = $entries[$i];
452 if (in_array('h-entry', $entry['type'])) {
456 if (isset($entry['properties']['url'][0])) {
457 $link = $entry['properties']['url'][0];
463 if (isset($entry['properties']['uid'][0])) {
464 $guid = $entry['properties']['uid'][0];
470 if (isset($entry['properties']['name'][0])) {
471 $title = $entry['properties']['name'][0];
477 if (isset($entry['properties']['author'][0]) || isset($feed_author)) {
481 $author = $entry['properties']['author'][0] ?? $feed_author;
[all …]
/dokuwiki/lib/styles/
Dfeed.css17 item link, entry id {
36 item, entry { selector
43 item title, entry title {
53 item pubDate, entry modified, item date {
59 item description, entry summary {
/dokuwiki/_test/tests/inc/search/
Dsearch.test.php5 function strip_index_data($entry) { argument
8 $n_entry[$k] = $entry[$k];
/dokuwiki/inc/ChangeLog/
DChangeLogTrait.php56 $entry = [
66 $info = $entry;
67 return implode("\t", $entry) . "\n";
/dokuwiki/vendor/geshi/geshi/src/
Dgeshi.php738 while (false !== ($entry = $dir->read()))
740 $full_path = $this->language_path.$entry;
748 if (!preg_match('/^([^.]+)\.php$/', $entry, $matches)) {
4591 $entry = preg_quote((string) $list[$i], $regexp_delimiter);
4598 if ($prev_keys[$level] == $entry) {
4603 while (isset($entry[$char]) && isset($prev_keys[$level][$char])
4604 && $entry[$char] == $prev_keys[$level][$char]) {
4620 $pointer[$entry] = array('' => true);
4621 array_splice($prev_keys, $level, count($prev_keys), $entry);
4622 $cur_len += strlen($entry);
[all …]
/dokuwiki/lib/plugins/authad/adLDAP/classes/
DadLDAPUsers.php593 $entry = @ldap_first_entry($this->adldap->getLdapConnection(), $sr);
594 $guid = @ldap_get_values_len($this->adldap->getLdapConnection(), $entry, 'objectGUID');
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
DSSH2.php4573 $entry = $this->format_log([$message], [$message_number]);
4576 $entry .= $temp;
4579 $realtime_log_size += strlen($entry);
4582 $realtime_log_size = strlen($entry);
4585 fputs($realtime_log_file, $entry);
/dokuwiki/conf/
Dmysql.conf.php.example210 /* This statements should modify a user entry in the database. The
/dokuwiki/vendor/geshi/geshi/
DCHANGELOG613 - Fixed missing CASSE_SENSITIVE entry for DOS language file (SF#1956314, BenBE)