Home
last modified time | relevance | path

Searched refs:tags (Results 1 – 14 of 14) sorted by last modified time

/dokuwiki/lib/plugins/extension/
H A Dstyle.less168 span.tags {
254 div.linkbar span.tags,
/dokuwiki/inc/
H A Dtemplate.php337 // setup robot tags appropriate for different modes
408 * $data is an array of different header tags. Each tag can have multiple
412 * For tags having a body attribute specify the body data in the special
430 $attr['nonce'] = $nonce; // add nonce to inline script tags
1065 * If $tags is an array all given tags are tried until a
1074 * @param array|string $tags tag or array of tags to try
1081 function tpl_img_getTag($tags, $alt = '', $src = null)
1093 $info = cleanText($imgMeta->getField($tags));
1010 tpl_img_getTag($tags, $alt = '', $src = null) global() argument
[all...]
H A DJpegMeta.php1590 $result = xml_parse_into_struct($parser, $data, $values, $tags);
2686 $tags = array();
2689 $tags[0x010E] = 'ImageDescription';
2690 $tags[0x010F] = 'Make';
2691 $tags[0x0110] = 'Model';
2692 $tags[0x0112] = 'Orientation';
2693 $tags[0x011A] = 'XResolution';
2694 $tags[0x011B] = 'YResolution';
2695 $tags[0x0128] = 'ResolutionUnit';
2696 $tags[
[all...]
H A Dmedia.php31 * their CSS tags except pagenames won't be links.
183 $tags = [$field[0]];
184 if (isset($field[3]) && is_array($field[3])) $tags = array_merge($tags, $field[3]);
185 $value = tpl_img_getTag($tags, '', $src);
1208 * @param array $tags array with tags, first existing is returned
1213 function media_getTag($tags, $meta = false, $alt = '')
1216 $info = $meta->getField($tags);
1222 * Returns mediafile tags
1155 media_getTag($tags, $meta = false, $alt = '') global() argument
[all...]
/dokuwiki/lib/plugins/extension/helper/
H A Dextension.php420 * Get the names of the tags of the extension
422 * @return array The names of the tags of the extension
426 if (!empty($this->remoteInfo['tags'])) return $this->remoteInfo['tags'];
/dokuwiki/vendor/simplepie/simplepie/src/
H A DSanitize.php62 * @todo Move to using an actual HTML parser (this will allow tags to be properly stripped, and to switch between HTML and XHTML), this will also make it easier to shorten a string while preserving HTML tags
184 public function strip_htmltags($tags = ['base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style']) argument
186 if ($tags) {
187 if (is_array($tags)) {
188 $this->strip_htmltags = $tags;
190 $this->strip_htmltags = explode(',', $tags);
383 // Strip out HTML tags and attributes that might cause various security problems.
416 // If image handling (caching, etc.) is enabled, cache and rewrite all the image tags.
H A DSimplePie.php651 * @var array Stores the default attributes to add to different tags by add_attributes().
658 * @var array Stores the default tags to be stripped by strip_htmltags().
1371 public function strip_htmltags($tags = '', $encode = null) argument
1373 if ($tags === '') {
1374 $tags = $this->strip_htmltags;
1376 $this->sanitize->strip_htmltags($tags);
1378 $this->sanitize->encode_instead_of_strip($tags);
2844 * RSS 0.9.0, 2.0, Atom 1.0, and feeds with iTunes RSS tags are allowed to
H A DItem.php295 if (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_10, 'summary')) &&
296 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_10_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
298 } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_ATOM_03, 'summary')) &&
299 ($return = $this->sanitize($tags[0]['data'], $this->registry->call(Misc::class, 'atom_03_construct_type', [$tags[0]['attribs']]), $this->get_base($tags[0])))) {
301 } elseif (($tags = $this->get_item_tags(\SimplePie\SimplePie::NAMESPACE_RSS_10, 'description')) &&
302 ($return = $this->sanitize($tags[
[all...]
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/inc/Ui/
H A DMediaDiff.php299 foreach ([$rev1Tags, $rev2Tags] as $tags) {
303 foreach ($tags as $tag) {
/dokuwiki/data/pages/wiki/
H A Dsyntax.txt366 If you need to display text exactly like it is typed (without any formatting), enclose the area either with ''%%<nowiki>%%'' tags or even simpler, with double percent signs ''<nowiki>%%</nowiki>''.
380 You can include code blocks into your documents by either indenting them by at least two spaces (like used for the previous examples) or by using the tags ''%%<code>%%'' or ''%%<file>%%''.
448 | description| show the item description. All HTML tags will be stripped |
/dokuwiki/lib/scripts/
H A Dtoolbar.js173 tags;
180 tags = (new Array(8 - lvl)).join('=');
181 insertTags(edid, tags+' ', ' '+tags+"\n", props.text);
/dokuwiki/vendor/simplepie/simplepie/
H A DCHANGELOG.md261 * Added sanitization of the `</html>` and `</body>` tags. [#348](https://github.com/simplepie/simplepie/pull/348)
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG94 - Fix short tag usage to allow for configurations where short tags are disabled (BenBE)
667 - Updated doxygen documentation to include since tags and some missing parameters
780 - Allow XML tags to have dashes.
926 - Added underscore to allowed characters in match for XML tags (anonymous)