Home
last modified time | relevance | path

Searched refs:ref (Results 26 – 50 of 225) sorted by relevance

123456789

/plugin/nsexport/packer/ziphtml/
H A Dpacker.php51 $ref = '';
52 for($i=0; $i<$deep; $i++) $ref .= '../';
77 …$output .= ' <link rel="stylesheet" media="all" type="text/css" href="'.$ref.'all.css" />'.DOKU_L…
78 …$output .= ' <link rel="stylesheet" media="screen" type="text/css" href="'.$ref.'screen.css" />'.…
79 …$output .= ' <link rel="stylesheet" media="print" type="text/css" href="'.$ref.'print.css" />'.DO…
80 …$output .= ' <link rel="stylesheet" media="all" type="text/css" href="'.$ref.'export.css" />'.DOK…
H A Dzip.php133 $ref = '';
134 for($i=0; $i<$deep; $i++) $ref .= '../';
146 …$output .= ' <link rel="stylesheet" media="all" type="text/css" href="'.$ref.'all.css" />'.DOKU_L…
147 …$output .= ' <link rel="stylesheet" media="screen" type="text/css" href="'.$ref.'screen.css" />'.…
148 …$output .= ' <link rel="stylesheet" media="print" type="text/css" href="'.$ref.'print.css" />'.DO…
149 …$output .= ' <link rel="stylesheet" media="all" type="text/css" href="'.$ref.'export.css" />'.DOK…
/plugin/refnotes/lang/en/
H A D__template.txt16 ^ :ref:sample1 | A sample reference. |
17 ^ :ref:sample2 | A sample reference with //some// **formatting**. |
18 ^ :ref:sample3 | A sample reference with a [[http://www.dokuwiki.org/|link.]] |
23 ^ Note name ^ :ref:knuth-aop-2 ^
38 namespace = "ref:prog"
43 author-ref = "Gamma, et al.",
53 @Article{:ref:Knuth-LCE-1985,
73 note-name : :ref:prog:Hunt&Thomas(1999)
/plugin/fedauth/classes/svc/
H A Dfa_openid.svc.class.php95 * @param string $ref referer URL used to identify the authorization request
98 function response($ref) { argument
100 $response = $consumer->complete($ref);
/plugin/combo/ComboStrap/
H A DInterWiki.php23 private string $ref; variable in ComboStrap\\InterWiki
38 $this->ref = $interWikiRef;
60 public static function createMediaInterWikiFromString(string $ref): InterWiki argument
62 return new InterWiki($ref, MarkupRef::MEDIA_TYPE);
231 return $this->ref;
/plugin/eventline/example/
H A DexampleDataForCutAndPaste.txt4 …s and notes created by that individual, or recorded by other researchers. (ref: http://en.wikipedi…
7 …ards", organized into "stacks", and linked together by clickable buttons; (ref: http://www.itworld…
10 …ed hierarchically, with some hypertext like cross-referencing capability. (ref: http://www.livingi…
16 …ing the debut of the Web as a publicly available service on the Internet. (ref: http://en.wikipedi…
19 The first Wiki written in PHP to be publicly released. (ref: http://en.wikipedia.org/wiki/PhpWiki, …
21 … earliest and most successful wikis and today contains over 20,000 pages. (ref: http://en.wikipedi…
23 …y Peter Thoeny, stores data in plain text files instead of in a database. (ref: http://en.wikipedi…
25 …ncludes 19.7 million freely usable articles in over two hundred languages.(ref: http://en.wikipedi…
/plugin/fedauth/classes/
H A Dfa_service.class.php44 * @param string $ref referer string used to identify the authorization request
46 function response($ref) { argument
/plugin/commonmark/vendor/league/commonmark/src/Extension/Footnote/Event/
H A DGatherFootnotesListener.php42 $ref = $document->getReferenceMap()->get($node->getReference()->getLabel());
43 if ($ref !== null) {
45 $footnotes[(int) $ref->getTitle()] = $node;
/plugin/farm/
H A Dconfig.class.php23 private $ref = array(); variable in dokuwiki_farm_config
126 $this->ref[$id] = $i;
130 foreach($this->ref as $id => $n) {
199 $this->conf[$this->ref['userewrite']] = '$farmconf[\'userewrite\'] = true;';
232 $this->conf[$this->ref['barnrewrite']] = '$farmconf[\'farmrewrite\'] = false;';
262 $this->conf[$this->ref['userewrite']] = '$farmconf[\'userewrite\'] = true;';
268 $this->conf[$this->ref['farmrewrite']] = '$farmconf[\'farmrewrite\'] = true;';
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DXmlDriverTest.php22 $ref = new \ReflectionMethod($driver, 'loadMetadataFromFile');
23 $ref->setAccessible(true);
24 $ref->invoke($driver, new \ReflectionClass('stdClass'), __DIR__ . '/xml/invalid.xml');
/plugin/structgantt/meta/
H A DGantt.php82 $ref = 0;
89 $this->colrefStart = $ref;
91 $this->colrefEnd = $ref;
94 $this->colrefColor = $ref;
97 $this->labelRef = $ref;
100 $this->titleRef = $ref;
104 $ref++;
/plugin/mdpage/vendor/cebe/markdown/
H A DMarkdownExtra.php223 if (($ref = $this->lookupReference($block['refkey'])) !== false) {
224 $block = array_merge($block, $ref);
241 if (($ref = $this->lookupReference($block['refkey'])) !== false) {
242 $block = array_merge($block, $ref);
/plugin/findologicxmlexport/vendor/hoa/protocol/Node/
H A DNode.php277 $ref = $accumulator;
284 foreach ($ref as $entry) {
288 foreach ($ref as $entry) {
294 unset($ref);
/plugin/offline/
H A Drenderer.php129 foreach ($alt as $ref) {
131 …$this->doc .= ', <sup><a href="#fnt__'.($ref+1).'" id="fn__'.($ref+1).'" name="fn__'.($ref+1).'" c…
132 $this->doc .= ($ref+1).')</a></sup> '.DOKU_LF;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DSearchResultReference.php78 return Asn1::application(self::TAG_NUMBER, Asn1::sequence(...array_map(function ($ref) {
79 /** @var LdapUrl $ref */
80 return Asn1::octetString($ref->toString());
H A DBindResponse.php83 [$resultCode, $dn, $diag, $ref] = self::parseResultData($type);
93 return new self(new LdapResult($resultCode, $dn, $diag, ...$ref), $saslCreds);
/plugin/mdpage/vendor/cebe/markdown/inline/
H A DLinkTrait.php221 if (($ref = $this->lookupReference($block['refkey'])) !== false) {
222 $block = array_merge($block, $ref);
238 if (($ref = $this->lookupReference($block['refkey'])) !== false) {
239 $block = array_merge($block, $ref);
/plugin/diagramsnet/lib/js/diagramly/
H A DGitLabFile.js38 ((this.meta.ref != null) ? this.meta.ref +
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Fixtures/Doctrine/
H A DBlogPost.php80 private $ref; variable in JMS\\Serializer\\Tests\\Fixtures\\Doctrine\\BlogPost
106 return $this->ref;
/plugin/findologicxmlexport/vendor/twig/twig/src/TokenParser/
H A DFilterTokenParser.php34 …$ref = new BlockReferenceExpression(new ConstantExpression($name, $token->getLine()), null, $token…
36 … $filter = $this->parser->getExpressionParser()->parseFilterExpressionRaw($ref, $this->getTag());
/plugin/elasticsearch/vendor/react/promise/src/
H A DPromise.php205 $ref = new \ReflectionMethod($callback[0], $callback[1]);
207 $ref = new \ReflectionMethod($callback, '__invoke');
209 $ref = new \ReflectionFunction($callback);
211 $args = $ref->getNumberOfParameters();
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DOSM.php106 $ref = intval($node->attributes->getNamedItem('ref')->nodeValue);
107 if (isset($nodes[$ref])) {
108 $nodes[$ref]['assigned'] = true;
109 $wayNodes[] = $ref;
155 $ref = $member->attributes->getNamedItem('ref')->nodeValue;
157 if ($memberType === 'node' && isset($nodes[$ref])) {
158 $nodes[$ref]['assigned'] = true;
159 $relationPoints[] = $nodes[$ref]['poin
[all...]
/plugin/bibtex/OSBib/format/
H A DEXPORTFILTER.php28 function EXPORTFILTER(&$ref, $output) argument
30 $this->bibformat =& $ref;
/plugin/combo/action/
H A Dindexer.php159 $ref = Reference::createFromResource($page)
163 $references->addRow([$ref]);
/plugin/struct/action/
H A Dmove.php193 $ref = new Schema($tconf['schema']);
194 if (!$ref->getId()) return; // this schema does not exist
195 if (!$ref->getTimeStamp()) return; // a lookup is referenced, nothing to do

123456789