Home
last modified time | relevance | path

Searched refs:tag (Results 126 – 150 of 1150) sorted by last modified time

12345678910>>...46

/plugin/adhocmathml/
H A Dmtd.php14 protected $tag = 'mtd'; variable in syntax_plugin_adhocmathml_mtd
H A Dmtext.php14 protected $tag = 'mtext'; variable in syntax_plugin_adhocmathml_mtext
H A Dmtr.php14 protected $tag = 'mtr'; variable in syntax_plugin_adhocmathml_mtr
H A Dmunder.php14 protected $tag = 'munder'; variable in syntax_plugin_adhocmathml_munder
H A Dmunderover.php14 protected $tag = 'munderover'; variable in syntax_plugin_adhocmathml_munderover
H A Dsemantics.php14 protected $tag = 'semantics'; variable in syntax_plugin_adhocmathml_semantics
/plugin/gitbacked/
H A DCHANGELOG.md36 … to this repo previous release version tag-+ +-current release version tag
173 [2012-10-31]: https://github.com/woolfg/dokuwiki-plugin-gitbacked/releases/tag/v2012-10-31
/plugin/gitbacked/lib/
H A DGit.php679 * @param string $tag
683 public function add_tag($tag, $message = null) { argument
685 $message = $tag;
689 return $this->run("tag -a $tag --file=".$msgfile);
706 foreach ($tagArray as $i => &$tag) {
707 $tag = trim($tag);
708 if ($tag == '') {
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DCssManager.php90 // But first, we replace upper and mixed case closing style tag with lower
334 $tag = '';
336 $tag = $t;
338 $tag = $t . '>>PSEUDO>>' . $m[1];
343 $tag = $t . '>>NAMED>>' . $t2;
345 $tag = $t . '>>NAMED>>' . $t2 . '>>PSEUDO>>' . $m[1];
351 if (isset($this->CSS[$tag]) && $tag) {
352 $this->CSS[$tag] = $this->array_merge_recursive_unique($this->CSS[$tag],
1377 _mergeFullCSS($p, & $t, $tag, $classes, $id, $lang) global() argument
1509 MergeCSS($inherit, $tag, $attr) global() argument
2127 PreviewBlockCSS($tag, $attr) global() argument
[all...]
H A DMpdf.php896 private $tag;
2827 $this->tag->CloseTag($this->blk[$b]['tag'], $arr, $ai);
2839 $this->tag->CloseTag($this->blk[$b]['tag'], $arr, $ai);
2865 $this->tag->OpenTag($save_blk[$b]['tag'], $save_blk[$b]['attr'], $arr, $i);
2893 $this->tag->OpenTag($save_blk[$b]['tag'], $save_blk[$b]['attr'], $arr, $i);
5400 $ln = 1; // cell recognizes \n from <BR> tag
893 private $tag; global() variable in Mpdf\\Mpdf
18053 setCSS($arrayaux, $type = '', $tag = '') global() argument
18915 SetStyle($tag, $enable) global() argument
[all...]
H A DOtl.php959 // " RQD" is a non-standard tag in Garuda font - presumably intended to be used by default ? "ReQuireD"
960 // Being a 3 letter tag is non-standard, and does not allow it to be set by font-feature-settings
1064 foreach ($GPOSFeatures as $tag => $arr) {
1065 if (strpos($usetags, $tag) !== false) {
1067 $LookupList[$lu] = $tag;
1234 // Is it a valid tag?
1247 // Is it a valid tag?
1260 // Is it a valid tag?
1273 // Is it a valid tag?
1290 foreach ($GSUBFeatures as $tag
3282 _applyGPOSsubtable($lookupID, $subtable, $ptr, $currGlyph, $currGID, $subtable_offset, $Type, $Flag, $MarkFilteringSet, $LuCoverage, $tag, $level, $is_old_spec) global() argument
[all...]
H A DOtlDump.php236 $record['tag'] = $this->read_tag();
240 $this->tables[$record['tag']] = $record;
254 if ($t['tag'] == 'head') {
262 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
306 function get_table_pos($tag) argument
308 $offset = isset($this->tables[$tag]['offset']) ? $this->tables[$tag]['offset'] : null;
309 $length = isset($this->tables[$tag]['length']) ? $this->tables[$tag]['length'] : null;
326 function seek_table($tag, argument
443 get_table($tag) global() argument
454 add($tag, $data) global() argument
[all...]
H A DServiceFactory.php93 $tag = new Tag(
142 'tag' => $tag,
H A DTTFontFile.php308 $record['tag'] = $this->read_tag();
312 $this->tables[$record['tag']] = $record;
327 if ($t['tag'] === 'head') {
335 throw new \Mpdf\Exception\FontException(sprintf('TTF file "%s": invalid checksum %s table: %s (expected %s)', $this->filename, dechex($checksum[0]) . dechex($checksum[1]), $t['tag'], dechex($xchecksum[0]) . dechex($xchecksum[1])));
384 function get_table_pos($tag) argument
386 if (!isset($this->tables[$tag])) {
389 $offset = $this->tables[$tag]['offset'];
390 $length = $this->tables[$tag]['length'];
407 function seek_table($tag, $offset_in_table = 0) argument
409 $tpos = $this->get_table_pos($tag);
524 get_table($tag) global() argument
535 add($tag, $data) global() argument
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DBlockTag.php15 $tag = $this->getTagName();
36 $p = $this->cssManager->PreviewBlockCSS($tag, $attr);
40 $this->mpdf->blk[$this->mpdf->blklvl]['tag'] = $tag; // mPDF 6
43 if ($tag === 'CAPTION') {
62 $this->mpdf->blk[$this->mpdf->blklvl]['tag'] = $tag; // mPDF 6
68 if ($tag === 'FORM') {
127 if ($tag === 'CENTER' && $this->mpdf->tdbegin) {
132 $properties = $this->cssManager->MergeCSS('', $tag,
[all...]
H A DColumns.php8 * @param string $tag
11 private function getTagInstance($tag) argument
13 $className = \Mpdf\Tag::getTagClassName($tag);
37 if ($t = $this->getTagInstance($this->mpdf->blk[$b]['tag'])) {
H A DFormFeed.php11 $tag = $this->getTagName();
100 if ($tag === 'FORMFEED') {
111 if ($tag === 'TOCPAGEBREAK') {
143 if ($tag === 'TOCPAGEBREAK') {
272 if ($tag === 'TOCPAGEBREAK') {
H A DInlineTag.php12 $tag = $this->getTagName();
42 if (!isset($this->mpdf->InlineProperties[$tag])) {
43 $this->mpdf->InlineProperties[$tag] = [$this->mpdf->saveInlineProperties()];
45 $this->mpdf->InlineProperties[$tag][] = $this->mpdf->saveInlineProperties();
48 if (!isset($this->mpdf->InlineAnnots[$tag])) {
49 $this->mpdf->InlineAnnots[$tag] = [];
51 $this->mpdf->InlineAnnots[$tag][] = $annot;
54 $properties = $this->cssManager->MergeCSS('INLINE', $tag, $attr);
83 if ($tag === 'BDO') {
92 } elseif ($tag
[all...]
H A DInput.php13 $tag = $this->getTagName();
117 if ($this->mpdf->InlineProperties[$tag]) {
118 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
120 unset($this->mpdf->InlineProperties[$tag]);
416 if ($this->mpdf->InlineProperties[$tag]) {
417 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
419 unset($this->mpdf->InlineProperties[$tag]);
H A DMeter.php12 $tag = $this->getTagName();
21 if (!empty($attr['MIN']) && $tag === 'METER') {
87 $properties = $this->cssManager->MergeCSS('INLINE', $tag, $attr);
228 $srcpath = $this->cache->write('/_tempSVG' . uniqid(random_int(1, 100000), true) . '_' . strtolower($tag) . '.svg', $svg);
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') {
H A DSetHtmlPageFooter.php10 $tag = $this->getTagName();
16 } elseif ($tag === 'SETPAGEHEADER' || $tag === 'SETPAGEFOOTER') {
43 if (!empty($attr['SHOW-THIS-PAGE']) && ($tag === 'SETHTMLPAGEHEADER' || $tag === 'SETPAGEHEADER')) {
47 if ($set && ($tag === 'SETHTMLPAGEHEADER' || $tag === 'SETPAGEHEADER')) {
49 } elseif ($set && ($tag === 'SETHTMLPAGEFOOTER' || $tag === 'SETPAGEFOOTER')) {
51 } elseif ($tag
[all...]
H A DSubstituteTag.php10 $tag = $this->getTagName();
11 if ($this->mpdf->InlineProperties[$tag]) {
12 $this->mpdf->restoreInlineProperties($this->mpdf->InlineProperties[$tag]);
14 unset($this->mpdf->InlineProperties[$tag]);
15 $ltag = strtolower($tag);
H A DTag.php113 $tag = get_class($this);
114 return strtoupper(str_replace('Mpdf\Tag\\', '', $tag));
H A DTd.php14 $tag = $this->getTagName();
17 $this->mpdf->lastoptionaltag = $tag; // Save current HTML specified optional endtag
175 $properties = $this->cssManager->MergeCSS('TABLE', $tag, $attr);
181 $this->mpdf->setCSS($properties, 'TABLECELL', $tag);

12345678910>>...46