| /dokuwiki/_test/tests/TreeBuilder/ |
| H A D | PageTreeBuilderTest.php | 3 namespace dokuwiki\test\Treebuilder; 17 saveWikiText('namespace:start', 'This is the start page', 'test'); 18 saveWikiText('namespace:page1', 'This is page 1', 'test'); 19 saveWikiText('namespace:page2', 'This is page 2', 'test'); 20 saveWikiText('namespace:subns:start', 'This is the subns start page', 'test'); 21 saveWikiText('namespace:subns:page3', 'This is page 3 in subns', 'test'); 22 saveWikiText('namespace:subns:deeper:start', 'This is the deeper start page', 'test'); 23 saveWikiText('namespace:subns:deeper:page4', 'This is page 4 in deeper', 'test'); 44 'namespace' => 'namespace', 48 '+namespace:start', [all …]
|
| /dokuwiki/_test/tests/inc/ |
| H A D | auth_aclcheck_caseinsensitive.test.php | 40 'namespace:page @Group1 1', 41 'namespace:page @group2 1', 46 $this->assertEquals(auth_aclcheck('namespace:page', '', array()), AUTH_NONE); 47 $this->assertEquals(auth_aclcheck('namespace:*', '', array()), AUTH_NONE); 51 $this->assertEquals(auth_aclcheck('namespace:page', 'jill', array('foo')), AUTH_NONE); 52 $this->assertEquals(auth_aclcheck('namespace:*', 'jill', array('foo')), AUTH_NONE); 56 … $this->assertEquals(auth_aclcheck('namespace:page', 'jill', array('foo', 'group1')), AUTH_READ); 57 … $this->assertEquals(auth_aclcheck('namespace:*', 'jill', array('foo', 'group1')), AUTH_UPLOAD); 61 … $this->assertEquals(auth_aclcheck('namespace:page', 'jill', array('foo', 'Group2')), AUTH_READ); 62 … $this->assertEquals(auth_aclcheck('namespace:*', 'jill', array('foo', 'Group2')), AUTH_UPLOAD); [all …]
|
| H A D | auth_aclcheck.test.php | 36 $this->assertEquals(auth_aclcheck('namespace:page','',array()), AUTH_NONE); 37 $this->assertEquals(auth_aclcheck('namespace:*', '',array()), AUTH_NONE); 41 $this->assertEquals(auth_aclcheck('namespace:page','jill',array('foo')), AUTH_NONE); 42 $this->assertEquals(auth_aclcheck('namespace:*', 'jill',array('foo')), AUTH_NONE); 46 … $this->assertEquals(auth_aclcheck('namespace:page','jill',array('foo','user')), AUTH_UPLOAD); 47 … $this->assertEquals(auth_aclcheck('namespace:*', 'jill',array('foo','user')), AUTH_UPLOAD); 51 $this->assertEquals(auth_aclcheck('namespace:page','john',array('foo')), AUTH_ADMIN); 52 $this->assertEquals(auth_aclcheck('namespace:*', 'john',array('foo')), AUTH_ADMIN); 64 'namespace:page @user 1', 69 $this->assertEquals(auth_aclcheck('namespace:page','',array()), AUTH_NONE); [all …]
|
| H A D | FulltextPageLookupTest.php | 5 * Test cases search only in a namespace or exclude a namespace
|
| /dokuwiki/inc/TreeBuilder/Node/ |
| H A D | WikiStartpage.php | 3 namespace dokuwiki\TreeBuilder\Node; 6 * A node representing a namespace startpage 17 * @param string $originalNamespace The original namespace 26 * This will return the namespace this startpage is for 28 * This might differ from the namespace of the pageID, because a startpage may be outside 29 * the namespace.
|
| H A D | WikiNamespace.php | 3 namespace dokuwiki\TreeBuilder\Node; 6 * A node representing a wiki namespace
|
| /dokuwiki/inc/TreeBuilder/ |
| H A D | PageTreeBuilder.php | 3 namespace dokuwiki\TreeBuilder; 20 * associated with the namespace's start page. 39 /** @var int The given namespace should be added as top element */ 45 /** @var string The top level namespace to iterate over */ 46 protected string $namespace; variable in dokuwiki\\TreeBuilder\\PageTreeBuilder 55 * @param string $namespace The namespace to start from 58 public function __construct(string $namespace, int $maxdepth = -1) argument 60 $this->namespace = $namespace; 71 // add directly to top or add the namespace under the top element? 73 $parent = $this->createNamespaceNode($this->namespace, noNS($this->namespace)); [all …]
|
| H A D | TreeSort.php | 3 namespace dokuwiki\TreeBuilder; 43 * Comparator to sort namespace first, then by ID 69 * Comparator to sort namespace first, then by title 83 * Comparator to sort by namespace first
|
| /dokuwiki/vendor/simplepie/simplepie/library/ |
| H A D | SimplePie.php | 290 * XML Namespace 296 * Atom 1.0 Namespace 302 * Atom 0.3 Namespace 308 * RDF Namespace 314 * RSS 0.90 Namespace 320 * RSS 1.0 Namespace 326 * RSS 1.0 Content Module Namespace 332 * RSS 2.0 Namespace 339 * DC 1.0 Namespace 345 * DC 1.1 Namespace [all …]
|
| /dokuwiki/vendor/simplepie/simplepie/ |
| H A D | autoloader.php | 20 // project-specific namespace prefix 23 // base directory for the namespace prefix 26 // does the class use the namespace prefix? 36 // replace the namespace prefix with the base directory, replace namespace
|
| /dokuwiki/inc/File/ |
| H A D | Resolver.php | 3 namespace dokuwiki\File; 12 /** @var string namespace of context page ID */ 60 // relative to current namespace 67 // auto-relative, because there is a context namespace but no namespace in the ID
|
| /dokuwiki/inc/ |
| H A D | load.php | 9 namespace dokuwiki; 95 // namespace to directory conversion 125 * @param string $classPath The class name using forward slashes as namespace separators 143 * @param string $classPath The class name using forward slashes as namespace separators 161 * @param string $classPath The class name using forward slashes as namespace separators 169 … $classPath = str_replace('/test/', '/_test/', $classPath); // no underscore in test namespace 190 * @param string $classPath The class name using forward slashes as namespace separators 195 // template namespace 197 … $classPath = str_replace('/test/', '/_test/', $classPath); // no underscore in test namespace 216 * @param string $classPath The class name using forward slashes as namespace separators
|
| H A D | pageutils.php | 83 // Namespace autolinking from URL 86 // start page inside namespace 92 // page like namespace exists 144 //alternative namespace seperator 176 * @return string|false the namespace part or false if the given ID has no namespace (root) 188 * Returns the ID without the namespace 206 * Returns the current namespace 219 * Returns the ID without the namespace or current namespace for 'start' pages 506 * @param string $ns namespace which is context of id 524 // prepend the current namespace [all …]
|
| /dokuwiki/_test/tests/Remote/OpenApiDoc/ |
| H A D | ClassResolverTest.php | 3 namespace dokuwiki\test\Remote\OpenApiDoc; 18 // resolve in same namespace
|
| /dokuwiki/inc/Subscriptions/ |
| H A D | SubscriberManager.php | 3 namespace dokuwiki\Subscriptions; 22 * Adds a new subscription for the given page or namespace 25 …* *exact* page or namespace. It will *not* modify any subscription that may exist in higher namesp… 29 * @param string $id The target page or namespace, specified by id; Namespaces 67 * Removes a subscription for the given page or namespace 70 * namespace. It will *not* modify any subscriptions that may exist in higher 73 * @param string $id The target object’s (namespace or page) id 154 * namespace. 156 * @param string $page The target object’s (namespace or page) id 283 * @param string $id The target page or namespace, specified by id; Namespaces
|
| /dokuwiki/_test/tests/Subscriptions/ |
| H A D | SubscriberManagerTest.php | 3 namespace dokuwiki\test\Subscriptions; 55 // add namespace subscription 73 // change namespace subscription 122 …'More than one subscription saved for the root namespace even though the old one should have been … 127 …'More than one subscription saved for the wiki namespace even though the old one should have been …
|
| /dokuwiki/inc/Feed/ |
| H A D | FeedCreatorOptions.php | 3 namespace dokuwiki\Feed; 42 'namespace' => '', 83 $this->options['namespace'] = $INPUT->filter('cleanID')->str('ns'); 102 if ($this->options['namespace']) { 103 $this->options['title'] .= ' - ' . $this->options['namespace'];
|
| /dokuwiki/vendor/composer/ |
| H A D | ClassLoader.php | 13 namespace Composer\Autoload; 31 * namespace or one of its children (Symfony\Component\Console for instance), 219 * Registers a set of PSR-4 directories for a given namespace, either 220 * appending or prepending to the ones previously set for this namespace. 222 * @param string $prefix The prefix/namespace, with trailing '\\' 234 // Register directories for the root namespace. 247 // Register directories for a new namespace. 250 …row new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator."); 255 // Prepend directories for an already registered namespace. 261 // Append directories for an already registered namespace. [all …]
|
| /dokuwiki/inc/Ui/ |
| H A D | Index.php | 3 namespace dokuwiki\Ui; 17 * @param string $ns namespace 41 * Build html of sitemap, unordered list of pages under the namespace 85 // FS#2766, no need for search bots to follow namespace links in the index
|
| H A D | Search.php | 3 namespace dokuwiki\Ui; 148 …* Check if the query is simple enough to modify its namespace limitations without breaking the res… 285 * Add the elements for the namespace selector 343 * Parse the full text results for their top namespaces below the given base namespace 345 … * @param string $baseNS the namespace within which was searched, empty string for root namespace 347 … * @return array an associative array with namespace => #number of found pages, sorted descending 354 $namespace = getNS($page); 355 if (!$namespace) { 358 if ($namespace === $baseNS) { 361 $firstColon = strpos((string)$namespace, ':', $baseNSLength + 1) ?: strlen($namespace); [all …]
|
| /dokuwiki/lib/scripts/ |
| H A D | linkwiz.js | 69 if (JSINFO.namespace) { 70 this.$entry.val(JSINFO.namespace + ':'); 247 // reset the entry to the parent namespace 251 if (JSINFO.namespace) { 252 entry_value = JSINFO.namespace + ':'; 298 * Start the page/namespace lookup timer 312 * Executes the AJAX call for the page/namespace lookup 396 // both pages are in the same namespace 400 // add .. for each missing namespace from common to the target 407 // target is in the root namespace, but source is not, make it absolute [all …]
|
| /dokuwiki/vendor/kissifrot/php-ixr/src/Exception/ |
| H A D | ClientException.php | 3 namespace IXR\Exception;
|
| H A D | ServerException.php | 3 namespace IXR\Exception;
|
| /dokuwiki/vendor/splitbrain/php-jsstrip/src/ |
| H A D | Exception.php | 3 namespace splitbrain\JSStrip;
|
| /dokuwiki/inc/HTTP/ |
| H A D | HTTPClientException.php | 3 namespace dokuwiki\HTTP;
|