Home
last modified time | relevance | path

Searched refs:link (Results 1 – 25 of 95) sorted by path

1234

/dokuwiki/data/pages/wiki/
H A Dsyntax.txt38 External links are recognized automagically: http://www.google.com or simply www.google.com - You can set the link text as well: [[http://www.google.com|This Link points to google]]. Email addresses like this one: <andi@splitbrain.org> are recognized, too.
42 link text as well: [[http://www.google.com|This Link points to google]]. Email
47 Internal links are created by using square brackets. You can either just give a [[pagename]] or use an additional [[pagename|link text]].
50 a [[pagename]] or use an additional [[pagename|link text]].
67 * DokuWiki does not use [[wp>CamelCase]] to automatically create links by default, but this behavior can be enabled in the [[doku>config]] file. Hint: If DokuWiki is a link, then it's enabled.
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:
103 Please note: The image formatting is the only formatting syntax accepted in link names.
105 The whole [[#images_and_other_files|image]] and [[#links|link]] synta
[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]].
/dokuwiki/
H A Dfeed.php
/dokuwiki/inc/
H A DAjax.php90 * @link http://www.opensearch.org/Specifications/OpenSearch/Extensions/Suggestions/1.0
300 'link' => media_managerURL(['ns' => $ns, 'image' => $NS . ':' . $id], '&'),
344 * List matching namespaces and pages for the link wizard
429 $link = wl($item['id']);
439 echo '<a href="' . $link . '" title="' . hsc($item['id']) . '" class="wikilink1">' . $name . '</a>';
H A Dcommon.php101 * @link http://en.wikipedia.org/wiki/Cross-site_request_forgery
102 * @link http://christ1an.blogspot.com/2007/04/preventing-csrf-efficiently.html
494 * This builds a link to a wikipage
546 * This builds a link to an alternate page format
590 * Build a link to a media file
592 * Will return a link to the detail page if $direct is false
599 * @param bool $direct link to detail page if false
838 * @link http://www.brainhandles.com/2007/10/15/detecting-mobile-browsers/#code
873 * check if a given link is interwiki link
883 link_isinterwiki($link) global() argument
[all...]
H A Dhtml.php42 * @param string $name the name of the link, i.e. the text that is displayed
44 * @return string the HTML code of the link
587 * Create html link to a diff defined by two revisions
593 * @return string html of link to a diff
856 $link = '#' . $item['hid'];
858 $link = $item['link'];
861 return '<a href="' . $link . '">' . hsc($item['title']) . '</a>';
869 * @param string $link - where to link (i
833 html_mktocitem($link, $text, $level, $hash = '#') global() argument
[all...]
/dokuwiki/inc/Extension/
H A DPluginInterface.php120 * standardised function to generate an email link according to obfuscation settings
132 * standardised function to generate an external link according to conf settings
134 * @param string $link
141 public function external_link($link, $title = '', $class = '', $target = '', $more = ''); argument
H A DPluginTrait.php255 public function external_link($link, $title = '', $class = '', $target = '', $more = '')
259 $link = htmlentities($link);
260 if (!$title) $title = $link;
268 return "<a href='$link'$class$target$more>$title</a>";
231 external_link($link, $title = '', $class = '', $target = '', $more = '') global() argument
/dokuwiki/inc/Remote/
H A DApiCore.php94 * @link https://www.dokuwiki.org/config:title
199 * Read the link below to learn more about the permission levels.
201 * @link https://www.dokuwiki.org/acl#background_info
320 * @link https://www.dokuwiki.org/search#syntax
359 * @link https://www.dokuwiki.org/config:recent
423 * @link https://www.dokuwiki.org/config:canonical
469 * @link https://www.dokuwiki.org/config:recent
512 * If a link occurs multiple times on the page, it will be returned multiple times.
520 * @todo returning link titles would be a nice addition
522 * @todo maybe return the same link onl
[all...]
/dokuwiki/inc/Subscriptions/
H A DBulkSubscriptionSender.php234 $link = wl($id, [], true);
235 $tlist .= '* ' . $link . NL;
236 $hlist .= '<li><a href="' . $link . '">' . hsc($id) . '</a></li>' . NL;
/dokuwiki/inc/Ui/
H A DIndex.php86 $link = wl($ID, 'idx=' . rawurlencode($item['id']));
87 $html .= '<a href="' . $link . '" title="' . $item['id'] . '" class="idx_dir"' . $nofollow . '><strong>';
H A DSearch.php137 $link = $this->searchState->withSorting($option['sort'])->getSearchLink($option['label']);
138 $searchForm->addHTML($link);
270 $link = $this->searchState
273 $searchForm->addHTML($link);
317 $link = $this->searchState->withNamespace('')->getSearchLink($lang['search_any_ns']);
318 $searchForm->addHTML($link);
332 $link = $this->searchState->withNamespace($ns)->getSearchLink($label);
333 $searchForm->addHTML($link);
431 $link = $this->searchState
434 $searchForm->addHTML($link);
[all...]
/dokuwiki/inc/Ui/Media/
H A DDisplay.php59 $link = 'lib/images/fileicons/svg/' . $this->mediaFile->getIcoClass() . '.svg';
60 if (!file_exists(DOKU_INC . $link)) $link = 'lib/images/fileicons/svg/file.svg';
61 return DOKU_BASE . $link;
H A DDisplayRow.php30 $link = ml($id, '', true);
31 echo ' <a href="' . $link . '" target="_blank"><img src="' . DOKU_BASE . 'lib/images/magnifier.png" ' .
35 $link = wl('', ['do' => 'media', 'image' => $id, 'ns' => getNS($id)]);
36 echo ' <a href="' . $link . '" target="_blank"><img src="' . DOKU_BASE . 'lib/images/mediamanager.png" ' .
41 $link = DOKU_BASE . 'lib/exe/mediamanager.php?delete=' . rawurlencode($id) .
43 echo ' <a href="' . $link . '" class="btn_media_delete" title="' . $id . '">' .
/dokuwiki/inc/lang/az/
H A Dbacklinks.txt3 Bu, bu səhifəyə link saxlayan səhifələrin siyahısıdır.
H A Dnewpage.txt3 Siz yaradılmamış səhifənin link-ini acmısınız. Əgər sizin giriş haqlarınız çatırsa, siz **Səhifəni yarat** düyməsini sixib, o səhifəni yarada bilərsiniz.
H A Dpwconfirm.txt7 Tələbi təsdiq etmək üçün, aşağıdakı link-ə keçin.
/dokuwiki/inc/lang/da/
H A Donceexisted.txt3 Du har fulgt et link til en side der ikke længere eksisterer. Du kan kigge i listen over **gamle revisioner** for at se hvorfor/hvornår siden blev slettet, samt tilgå gamle revisioner eller gendanne siden.
/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 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.txt3 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 Dpwconfirm.txt7 To confirm that the request was really sent by you please use the following link.
H A Dresendpwd.txt3 Please enter your user name in the form below to request a new password for your account in this wiki. A confirmation link will be sent to your registered email address.
/dokuwiki/inc/lang/hr/
H A Dpwconfirm.txt7 Da bi ste potvrdili da ste to ipak bili Vi, molimo slijedite link u nastavku:
/dokuwiki/inc/lang/id/
H A Dpwconfirm.txt7 Untuk mengkonfirmasi bahwa permintaan tersebut adalah benar dari Anda, silahkan gunakan link dibawah.

1234