Home
last modified time | relevance | path

Searched refs:tag (Results 76 – 100 of 1150) sorted by last modified time

12345678910>>...46

/plugin/tagging/action/
H A Dmain.php79 * Jump to a tag
94 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag'));
100 foreach ($tags as $tag) {
101 $filter = array('tag' => $tag);
144 $tags = $hlp->findItems(array('pid' => $id), 'tag');
145 $hlp->html_cloud($tags, 'tag', array($hlp, 'linkToSearch'), false);
158 $tags = $hlp->findItems(array('tag' => '*' . $hlp->getDB()->escape_string($search) . '*'), 'tag');
[all...]
H A Dsearch.php150 // and when displaying tag suggestions
174 * or, with an empty query, tag search results are returned.
195 // tag search only, without additional terms
210 * Add tag links to all search results
220 foreach ($tags as $tag) {
221 $event->data['resultHeader'][] = $this->getSettingsLink('#' . $tag, 'q', '#' . $tag);
268 // create output HTML: tag search links
273 foreach ($suggestedTags as $tag) {
275 $results .= $this->getSettingsLink('#' . $tag, '
[all...]
/plugin/tagging/lang/en/
H A Dclean.txt1 ===== Clean up tag database =====
/plugin/tagging/script/
H A Dsearch.js3 * Add tag search parameter to all links in the advanced search tools
58 // when tag search has no results, build the filter dropdown anyway but from tags in query
65 for (const tag in tags) {
66 let checked = filters.includes(tag) ? 'checked="checked"' : '';
69 <input name="tagging[]" type="checkbox" value="${tag}" id="__tagging-${i}" ${checked}>
70 <label for="__tagging-${i}" title="${tag}">
71 ${tag} (${tags[tag]})
96 const tag = text.replace('#', '');
97 tags.push(tag);
101 AnonymousFunctionbaaa77120500(allTags, tag) global() argument
132 AnonymousFunctionbaaa77120700(tag) global() argument
142 toggleTag(tag) global() argument
[all...]
/plugin/tagging/helper/
H A Dquerybuilder.php77 $this->groupby = 'CLEANTAG(tag)';
78 $this->orderby = 'CLEANTAG(tag)';
111 * Sets the logical operator used in tag search to AND
250 foreach ($this->tags as $tag) {
251 $where .= ' CLEANTAG(tag)';
252 $where .= $this->useLike($tag) ? ' GLOB' : ' =';
255 $this->values[] = $tag;
/plugin/tagging/db/
H A Dupdate0001.sql1 CREATE TABLE taggings (pid, tag, tagger, PRIMARY KEY(pid, tag, tagger)); field
/plugin/confmanager/lang/en/
H A Dacronyms.txt1 …ronyms (terminology) automatically. If your browser supports the <acronym> tag, you can hover your…
/plugin/confmanager/
H A Djquery.form.js976 var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
984 tag == 'select' && el.selectedIndex == -1)) {
988 if (tag == 'select') {
1034 var t = this.type, tag = this.tagName.toLowerCase();
1035 if (re.test(t) || tag == 'textarea') {
1041 else if (tag == 'select') {
/plugin/confmanager/lang/nl/
H A Dacronyms.txt1 …croniemen (terminologie) automatisch markeren. Als je browser de <acronym> tag ondersteunt, kun je…
/plugin/cloud/
H A Dsyntax.php76 if (plugin_isdisabled('tag') || (!$tag = plugin_load('helper', 'tag'))) {
80 $cloud = $this->_getTagCloud($num, $min, $max, $namespaces, $tag);
117 if ($type == 'tag' && isset($tag)) {
120 … $ns = method_exists($tag, 'getNamespace') ? $tag->getNamespace() : $tag->namespace;
127 resolve_pageid($tag->namespace, $page, $exists);
275 function _getTagCloud($num, &$min, &$max, $namespaces, helper_plugin_tag $tag) { argument
276 $cloud = $tag->tagOccurrences([], $namespaces, true, $this->getConf('list_tags_of_subns'));
/plugin/xlsx2dw/packages/exceljs/
H A Dexceljs.js11670 _this.tag = options.tag;
12068 _this.tag = options.tag;
28258 state.tag = tag;
29392 if (tag === 'seqof') tag = 'seq';else if (tag === 'setof') tag = 'set';
43226 tag: tag,
60028 return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
60352 return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
70082 tag: tag,
77844 var tag = this.tag;
77963 var tag = this.tag;
[all …]
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs5866 tag = evert_XLMLDPM[tag] || tag;
5867 Props[tag] = val;
15487 if(+tag.zoomScale) wb.Views[i].zoom = +tag.zoomScale;
15580 tagr = tag.r != null ? parseInt(tag.r, 10) : tagr+1; tagc = -1;
15593 tagr = tag.r != null ? parseInt(tag.r, 10) : tagr+1; tagc = -1;
15626 if(!tag.r) tag.r = encode_cell({r:tagr-1, c:tagc});
21639 CS = tag.colspan ? +tag.colspan : 1;
21641 var _t/*:string*/ = tag.t || tag["data-t"] || "";
22093 var tag/*:: = {}*/; variable
23445 if (tag == 0) {
[all …]
/plugin/copycode/
H A DREADME.md52 - Fix \<file\> tag with no filename did not work when trying to copy the code block (https://github.com/nicolasprigent/Dokuwiki-Copycode-plugin/issues/4)
/plugin/tag/
H A Daction.php8 * Action part of the tag plugin, handles tag display and index updates
42 if ($helper = $this->loadHelper('tag')) {
54 * catch tag action
64 * Display the tag page
79 $tag = trim(str_replace($tagns.':', '', $INPUT->str('tag')));
83 if ($helper = $this->loadHelper('tag')) {
84 $pages = $helper->getTopic($ns, '', $tag);
101 print '<h1>TAG: ' . hsc(str_replace('_', ' ', $INPUT->str('tag')))
[all...]
H A Dhelper.php11 * Helper part of the tag plugin, allows to query and print tags
17 * @var string namespace tag links point to
30 * @deprecated 2022-08-31 Not used/filled any more by tag plugin
70 'desc' => 'returns the tag links of a given page',
76 'desc' => 'generates tag links for given words',
86 'tag (required)' => 'string'
168 foreach ($tags as $tag) {
169 $links[] = $this->tagLink($tag);
175 * Returns the link for one given tag
177 * @param string $tag th
182 tagLink($tag, $title = '', $dynamic = false) global() argument
533 cleanTag($tag) global() argument
549 replacePlaceholders($tag) global() argument
[all...]
H A Dplugin.info.txt1 base tag
6 desc tag wiki pages
7 url https://www.dokuwiki.org/plugin:tag
H A Dstyle.css21 background: transparent url(images/tag.gif) 0 2px no-repeat;
H A DREADME5 * http://dokuwiki.org/plugin:tag
9 (c) 2012 - 2013 by Michael Hamann and the tag plugin team <michael@content-space.de>
/plugin/tag/syntax/
H A Dsearchtags.php3 * Syntax plugin part for displaying a tag search form with results.
11 * Tagsearch syntax, displays a tag search form with results similar to the topic syntax
90 // get the tag input data
95 if ($helper = $this->loadHelper('tag')) {
122 * Return the search form for the namespace and the tag selection
161 // load the tag list - only tags that actually have pages assigned that the current user can access are listed
163 if ($my = $this->loadHelper('tag')) {
166 // sort tags by name ($tags is in the form $tag => $count)
191 // print tag checkboxes
192 foreach ($tags as $tag
276 isSelected($tag) global() argument
[all...]
H A Dtag.php7 * Usage: {{tag>category tags space separated}}
35 $this->Lexer->addSpecialPattern('\{\{tag>.*?\}\}', $mode, 'plugin_tag_tag');
39 * Handle matches of the tag syntax
57 if (!$helper = $this->loadHelper('tag')) {
76 if (!$helper = $this->loadHelper('tag')) return false;
113 // add references if tag page exists
114 foreach ($data as $tag) {
119 $tag = $resolver->resolveId($tag);
122 resolve_pageid($helper->getNamespace(), $tag,
[all...]
H A Dtagpage.php3 * Tag Plugin: Display a link to the listing of all pages with a certain tag.
11 /** Tagpage syntax, allows to link to a given tag */
53 $match = trim(substr($match, 10, -2)); // get given tag
56 [$tag, $flag] = array_pad(explode('&', $match[0], 2), 2, '');
58 $params['tag'] = trim($tag);
72 if($data['tag'] === '') return false;
82 if(!$helper = $this->loadHelper('tag')) {
86 $renderer->doc .= $helper->tagLink($data['tag'], $data['title'], $data['dynamic']);
H A Dtopic.php3 * Tag Plugin, topic component: displays links to all wiki pages with a certain tag
10 * Topic syntax, displays links to all wiki pages with a certain tag
52 list($ns, $tag) = array_pad(explode('?', $match), 2, '');
54 if (!$tag) {
55 $tag = $ns;
67 return [$ns, trim($tag), $flags];
79 list($ns, $tag, $flags) = $data;
98 if ($helper = $this->loadHelper('tag')) {
100 $pages = $helper->getTopic($ns, '', $tag);
/plugin/imapmarkers/syntax/
H A Dimapmarkers_simple_html_dom.php128 public $tag = 'text'; variable in imapmarkers\\simple_html_dom_node
317 if ($ancestor->tag === $tag) {
617 if ($pass && $tag === 'text' && $node->tag === 'text') {
629 if ($pass && $tag !== '' && $tag !== $node->tag && $tag !== '*') {
698 if ($c->tag === $node->tag)
741 . $node->tag
1837 $tag = substr($tag, 0, $pos);
1927 if (isset($tag[0]) && $tag[0] === '!') {
1930 if (isset($tag[2]) && $tag[1] === '-' && $tag[2] === '-') { // Comment ("<!--")
1950 $tag = '<' . substr($tag, 0, -1);
[all …]
/plugin/htmlok/
H A DBaseSyntaxPlugin.php24 protected $tag; variable in dokuwiki\\plugin\\htmlok\\BaseSyntaxPlugin
47 $this->Lexer->addEntryPattern("<{$this->tag}>(?=.*?</{$this->tag}>)", $mode, $this->mode);
52 $this->Lexer->addExitPattern("</{$this->tag}>", $this->mode);
/plugin/htmlok/syntax/
H A Dhtmlblock.php16 protected $tag = 'HTML'; variable in syntax_plugin_htmlok_htmlblock

12345678910>>...46