Home
last modified time | relevance | path

Searched refs:tag (Results 126 – 150 of 1150) sorted by relevance

12345678910>>...46

/plugin/tag/syntax/
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/tagsections/
H A Dscript.js56 jQuery.each(entries, function(tag){ argument
60 typeof data.tagsForSection[namespace][tag] != 'undefined';
61 creeateCheckBox(namespace, tag, check).appendTo($accordeonContent);
87 var creeateCheckBox = function(namespace, tag, checked) { argument
88 var tagName = (namespace||'').length > 0 ? namespace+':'+tag : tag;
90 return jQuery('<label/>').attr('for', tagName).text(tag).append($element);
103 var tag = $element.val();
104 $newTagLine.before(creeateCheckBox(namespace, tag, true));
/plugin/syntaxhighlighter4/
H A Dsyntax.php59 foreach ($tags as $tag) {
60 …$this->Lexer->addEntryPattern('<' . $tag . '(?=[^\r\n]*?>.*?</' . $tag . '>)', $mode, 'plugin_synt…
67 foreach ($tags as $tag) {
68 $this->Lexer->addExitPattern('</' . $tag . '>', 'plugin_syntaxhighlighter4');
204 foreach ($tags as $tag) {
205 if ($this->syntax == $tag) {
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A D67.67.js.map1tag-addhandler',\n open: 'addhandler',\n close: 'end addhandler'\n },…
H A D68.68.js.map1tag\n [/(<)(@qualifiedName)/, [{ token: 'delimiter' }, { token: 'tag', next: '@tag' }]]…
/plugin/findologicxmlexport/vendor/twig/twig/lib/Twig/
H A DTokenParserBroker.php83 * @param string $tag A tag name
87 public function getTokenParser($tag) argument
89 if (isset($this->parsers[$tag])) {
90 return $this->parsers[$tag];
94 $parser = $broker->getTokenParser($tag);
/plugin/projects/action/
H A Daction.php50 $tag = "<project-file type=\"$type\"$crosslink/>\n";
51 return $tag . $content;
341 $tag = $_REQUEST['tag'];
350 if (substr(strtoupper($slices[1]), 0, strlen($tag)+1)
351 != '<' . strtoupper($tag)) {
352 msg("Missing the $tag tag?", -1);
368 $tag = $_REQUEST['tag'];
374 $text = rawWiki($ID) . "<$tag $name";
375 if (strtoupper($tag) == 'USE')
377 else $text = "></$tag>";
[all …]
/plugin/ckgedit/ckeditor/plugins/tags/dialogs/
H A Dtags.js.unc12 var tagregexp = (/\{\{tag>.*?\}\}/g);
77 …</code> is selected, the old tag syntax must be selected and it will be replaced. If there are no …
110 var codeB = "{{tag>";
122 selected = "{{tag&gt;" + selected + "}}";
127 editor.setData(selected+data.replace(/\{\{tag&gt;.*?\}\}/g,''));
130 editor.setData(data.replace(/\{\{tag&gt;.*?\}\}/g,'')+selected);
138 var on_page; //tags found in page tag markup
145 var tagregexp = (/\{\{tag>(.*?)\}\}/g);
155 var tag = labelText.match(/^[\w\-\d]+$/);
156 if(tag && !on_page.includes(labelText)) {
[all …]
/plugin/xml/
H A Dhelper.php41 foreach ($data as $tag) {
42 $renderer->doc .= '<tag target="'.$renderer->_xmlEntities($tag).'" />';
47 list($ns, $tag, $flags) = $data;
48 …$renderer->doc .= '<topic namespace="'.$ns.'" tags="'.$tag.'" flags="'.implode(' ',$flags).'" />'.…
/plugin/rack/
H A Dscript.js2 function rack_getElementsByClass(searchClass,node,tag) { argument
6 if ( tag == null )
7 tag = '*';
8 var els = node.getElementsByTagName(tag);
/plugin/phpipam/
H A Dscript.js4 function phpipam_getElementsByClass(searchClass,node,tag) { argument
8 if ( tag == null )
9 tag = '*';
10 var els = node.getElementsByTagName(tag);
/plugin/diagramsnet/lib/math/config/
H A DAM_HTMLorMML.js51tag:"mo",output:ac,tex:null,ttype:V});B()}function r(ab){z.push(ab);B()}var D=["\uD835\uDC9C","\u2… property in k
/plugin/tagging/
H A Dhelper.php80 * Canonicalizes the tag to its lower case nospace form
82 * @param $tag
86 public function cleanTag($tag) { argument
87 $tag = str_replace(array(' ', '-', '_', '#'), '', $tag);
88 $tag = utf8_strtolower($tag);
90 return $tag;
128 foreach ($tags as $tag) {
129 $queries[] = array('INSERT INTO taggings (pid, tagger, tag, lan
179 getTagSearchURL($tag, $ns = '') global() argument
312 linkToSearch($tag, $ns = '') global() argument
[all...]
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
H A Dverbatim.rst5 The ``verbatim`` tag was added in Twig 1.12 (it was named ``raw`` before).
7 The ``verbatim`` tag marks sections as being raw text that should not be
23 The ``verbatim`` tag works in the exact same way as the old ``raw`` tag,
H A Dsandbox.rst4 The ``sandbox`` tag can be used to enable the sandboxing mode for an included
15 The ``sandbox`` tag is only available when the sandbox extension is
20 The ``sandbox`` tag can only be used to sandbox an include tag and it
/plugin/gtime/gtlib/asn1/gt/
H A DGTCertTokenResponse.php79 $tag = $object->getObjectAt(1);
81 if ($tag->getTagValue() != 0) {
82 throw new GTException("Unexpected tag value: " . $tag->getTagValue());
86 $token->decode($tag->getObjectAs(ASN1_TAG_SEQUENCE));
/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DEntity.php82 public function setTag(Tag $tag) argument
84 $this->tag = $tag;
91 return $this->tag;
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PEAR/Sniffs/Commenting/
H A DClassCommentSniff.php101 foreach ($tags as $tag) {
102 if ($tokens[($tag + 2)]['code'] !== T_DOC_COMMENT_STRING) {
107 $content = $tokens[($tag + 2)]['content'];
111 $phpcsFile->addWarning($error, $tag, 'InvalidVersion', $data);
/plugin/combo/ComboStrap/Tag/
H A DBarTag.php40 $tag = "div";
46 $tag = self::HTML_SECTION_TAG;
48 return $tag;
50 return $tag;
107 $tag = BarTag::BAR_TAG;
108 $editButtonCall = EditButton::create("Edit $tag $id")
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DPageFooter.php12 $tag = $this->getTagName();
38 if ($tag === 'PAGEHEADER') {
70 if ($tag === 'PAGEHEADER') {
92 if ($tag === 'PAGEHEADER') {
114 if ($tag === 'PAGEHEADER') {
143 if ($tag === 'PAGEHEADER') {
/plugin/jquery-syntax/jquery-syntax/base/
H A Djquery.syntax.brush.apache.css1 .syntax-theme-base .syntax .apache .tag {
3 .syntax-theme-base .syntax .apache .tag-name {
5 .syntax-theme-base .syntax .apache .tag-name {
/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/findologicxmlexport/vendor/symfony/yaml/
H A DCHANGELOG.md12 * The behavior of the non-specific tag `!` is changed and now forces
17 * support for the `!!php/object` tag has been dropped, use the `!php/object`
18 tag instead
31 * removed support for the `!str` tag, use the `!!str` tag instead
46 * Deprecated the `!php/object:` tag which will be replaced by the
47 `!php/object` tag (without the colon) in 4.0.
49 * Deprecated the `!php/const:` tag which will be replaced by the
50 `!php/const` tag (without the colon) in 4.0.
52 * Support for the `!str` tag is deprecated, use the `!!str` tag instead.
54 * Deprecated using the non-specific tag `!` as its behavior will change in 4.0.
[all …]
/plugin/tag/
H A Dplugin.info.txt1 base tag
6 desc tag wiki pages
7 url https://www.dokuwiki.org/plugin:tag
/plugin/jsonrpc/
H A DIJR_Message.php62 function tag_open($parser, $tag, $attr) { argument
63 $this->currentTag = $tag;
65 switch($tag) {
69 $this->messageType = $tag;
84 function tag_close($parser, $tag) { argument
86 switch($tag) {

12345678910>>...46