Home
last modified time | relevance | path

Searched refs:page (Results 1 – 25 of 102) sorted by path

12345

/dokuwiki/bin/
H A Dwantedpages.php47 'Sort by wanted or origin page',
81 foreach ($this->getPages($startdir) as $page) {
82 $this->internalLinks($page);
150 $page = ['id' => pathID(substr($dir . '/' . $entry, $trunclen)), 'file' => $dir . '/' . $entry];
151 $pages[] = $page;
161 * @param array $page array with page id and file path
163 protected function internalLinks($page)
166 $instructions = p_get_instructions(file_get_contents($page['file']));
167 $resolver = new PageResolver($page['i
162 internalLinks($page) global() argument
[all...]
/dokuwiki/conf/
H A Dwordblock.conf29 (just|simply) (my|a) profile (site|webpage|page)
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt3 [[doku>DokuWiki]] supports some simple markup language, which tries to make the datafiles to be as readable as possible. This page contains all possible syntax you may use when editing the pages. Simply have a look at the source of this page by pressing "Edit this page". If you want to try something, just use the [[playground:playground|playground]] page. The simpler markup is easily accessible via [[doku>toolbar|quickbuttons]], too.
72 DokuWiki supports [[doku>Interwiki]] links. These are quick links to other Wikis. For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
75 For example this is a link to Wikipedia's page about Wikis: [[wp>Wiki]].
97 You can also use an image to link to another internal or external page by combining the syntax for links and [[#images_and_other_files|images]] (see below) like this:
165 For linking an image to another page see [[#Image Links]] above.
452 The refresh period defaults to 4 hours. Any value below 10 minutes will be treated as 10 minutes. [[wiki:DokuWiki]] will generally try to supply a cached version of a page, obviously this is inappropriate when the page contain
[all...]
H A Dwelcome.txt10 Your wiki needs to have a start page. As long as it doesn't exist, this link will be red: [[:start]].
12 Go on, follow that link and create the page. If you need help with using the syntax you can always refer to the [[wiki:syntax|syntax page]].
14 You might also want to use a sidebar. To create it, just edit the [[:sidebar]] page. Everything in that page will be shown in a margin column on the side. Read our [[doku>faq:sidebar|FAQ on sidebars]] to learn more.
20 Once you're comfortable with creating and editing pages you might want to have a look at the [[this>doku.php?do=admin&page=config|configuration settings]] (be sure to login as superuser first).
/dokuwiki/inc/Cache/
H A DCacheParser.php12 public $page = '';
16 * @param string $id page id
25 $this->page = $id;
13 public $page = ''; global() variable in dokuwiki\\Cache\\CacheParser
H A DCacheRenderer.php23 if (!isset($this->page)) {
28 if ($this->_time < @filemtime(metaFN($this->page, '.meta'))) {
40 $metadata = p_get_metadata($this->page);
76 // page implies metadata and possibly some other dependencies
77 if (isset($this->page)) {
79 $valid = p_get_metadata($this->page, 'date valid');
/dokuwiki/inc/Remote/
H A DApiCore.php196 * This call allows to check the permissions for a given page/media and user/group combination.
202 * @param string $page A page or media ID
208 public function aclCheck($page, $user = '', $groups = [])
213 $page = $this->checkPage($page, 0, false, AUTH_NONE);
216 return auth_quickaclcheck($page);
226 return auth_aclcheck($page, $user, $groups);
243 * @param bool $hash Whether to include a MD5 hash of the page content
285 * This is uses the page inde
[all...]
/dokuwiki/inc/Search/
H A DIndexer.php23 * Adds the contents of a page to the fulltext index
25 * The added text replaces previous words for the same page.
26 * An empty value erases the page.
28 * @param string $page a page name
29 * @param string $text the body of the page
35 public function addPageWords($page, $text)
41 $pid = $this->getPIDNoLock($page);
48 // get word usage in page
103 * Split the words in a page an
31 addPageWords($page, $text) global() argument
163 addMetaKeys($page, $key, $value = null) global() argument
371 deletePage($page) global() argument
392 deletePageNoLock($page) global() argument
533 getPID($page) global() argument
558 getPIDNoLock($page) global() argument
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php16 * the given page if the needed $conf['subscribe_time'] has passed already.
20 * @param string $page
24 public function sendBulk($page)
39 $subscriptions = $subscriberManager->subscribers($page, null, ['digest', 'list']);
74 // single page subscription, check ACL ourselves
135 * @param string $id The target page or namespace, specified by id; Namespaces
166 * @param string $id The target page or namespace, specified by id; Namespaces
182 * Sends a digest mail showing a bunch of changes of a single page. Basically the same as sendPageDiff()
26 sendBulk($page) global() argument
H A DSubscriberManager.php22 * 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 namespaces.
29 * @param string $id The target page or namespace, specified by id; Namespaces
67 * Removes a subscription for the given page or namespace
69 * This removes all subscriptions matching the given criteria on the given page or
73 * @param string $id The target object’s (namespace or page) id
100 * $INFO['subscribed'] is either false if no subscription for the current page
153 * This function searches all relevant subscription files for a page or
156 * @param string $page The target object’s (namespace or page) i
164 subscribers($page, $user = null, $style = null, $data = null) global() argument
[all...]
/dokuwiki/inc/Ui/
H A DSearch.php353 foreach ($this->fullTextResults as $page => $numberOfHits) {
354 $namespace = getNS($page);
445 * Build the intro text for the search page
518 'page' => $id,
585 'page' => $id,
/dokuwiki/inc/
H A Dcommon.php261 //load page meta data
290 // See also $INFO['meta']['last_change'] which is the most recent log line for page $ID.
422 // page names
425 // get page title
449 * Filter for page IDs
500 * @param string $id page id, defaults to start page
546 * This builds a link to an alternate page format
551 * @param string $id page id, defaults to start page
[all...]
H A Ddeprecated.php387 * This function searches all relevant subscription files for a page or
392 * @param string $page The target object’s (namespace or page) id
400 public function subscribers($page, $user = null, $style = null, $data = null) {
403 return $manager->subscribers($page, $user, $style, $data);
407 * Adds a new subscription for the given page or namespace
410 * *exact* page or namespace. It will *not* modify any subscription that may exist in higher namespaces.
412 * @param string $id The target page or namespace, specified by id; Namespaces
429 * Removes a subscription for the given page or namespace
431 * This removes all subscriptions matching the given criteria on the given page o
398 subscribers($page, $user = null, $style = null, $data = null) global() argument
480 send_bulk($page) global() argument
[all...]
H A Dindexer.php113 * Adds/updates the search index for the given page
117 * @param string $page name of the page to index
124 function idx_addPage($page, $verbose = false, $force = false)
126 $idxtag = metaFN($page, '.indexed');
127 // check if page was deleted but is still in the index
128 if (!page_exists($page)) {
130 if ($verbose) echo "Indexer: $page does not exist, ignoring" . DOKU_LF;
134 $result = $Indexer->deletePage($page);
147 if ($last > @filemtime(wikiFN($page))) {
118 idx_addPage($page, $verbose = false, $force = false) global() argument
[all...]
/dokuwiki/inc/lang/en/
H A Dbacklinks.txt3 This is a list of pages that seem to link back to the current page.
H A Ddiff.txt3 This shows you the differences between two versions of the page.
H A Ddraft.txt3 Your last edit session on this page was not completed correctly. DokuWiki automatically saved a draft during your work which you may now use to continue your editing. Below you can see the data that was saved from your last session.
H A Dedit.txt1 Edit the page and hit ''Save''. See [[wiki:syntax]] for Wiki syntax. Please edit the page only if you can **improve** it. If you want to test some things, learn to make your first steps on the [[playground:playground|playground]].
H A Dlocked.txt3 This page is currently locked for editing by another user. You have to wait until this user finishes editing or the lock expires.
H A Dmailtext.txt1 A page in your DokuWiki was added or changed. Here are the details:
13 happens, a message will be shown on the top of the rev page.
H A Dnewpage.txt3 You've followed a link to a topic that doesn't exist yet. If permissions allow, you may create it by clicking on **Create this page**.
H A Donceexisted.txt1 ======= This page does not exist anymore ======
3 You've followed a link to a page that no longer exists. You can check the list of **Old revisions** to see when and why it was deleted, access old revisions or restore it.
H A Dread.txt1 This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong.
H A Drevisions.txt3 These are the older revisons of the current document. To revert to an old revision, select it from below, click ''Edit this page'' and save it.
H A Dsubscr_digest.txt3 The page @PAGE@ in the @TITLE@ wiki changed.
13 To cancel the page notifications, log into the wiki at
16 and unsubscribe page and/or namespace changes.

12345