Home
last modified time | relevance | path

Searched full:template (Results 26 – 50 of 2321) sorted by relevance

12345678910>>...93

/plugin/odtplus2dw/
Dodt2dw.xsl56 <!-- Get toc sources styles to check paragraphe tag with header style in text:p template -->
60 <xsl:template match="/XML"/>
61 <xsl:template match="/office:document-content/office:meta"/>
62 <xsl:template match="/office:document-content/office:settings"/>
63 <xsl:template match="/office:document-content/office:script"/>
64 <xsl:template match="/office:document-content/office:font-face-decls"/>
65 <xsl:template match="/office:document-content/office:document-styles"/>
66 <xsl:template match="/office:document-content/office:automatic-styles"/>
67 <xsl:template match="/office:document-content/office:styles"/>
68 <xsl:template match="/office:document-content/office:master-styles"/>
[all …]
/plugin/asciidocjs/node_modules/lodash/
Dtemplate.js14 var INVALID_TEMPL_VAR_ERROR_TEXT = 'Invalid `variable` option passed into `_.template`';
16 /** Used to match empty string literals in compiled template source. */
22 * Used to validate the `validate` option in `_.template` variable.
35 …* [ES template delimiters](http://ecma-international.org/ecma-262/7.0/#sec-template-literal-lexica…
39 /** Used to ensure capturing order of template delimiters. */
52 * Creates a compiled template function that can interpolate data properties
55 * properties may be accessed as free variables in the template. If a setting
58 * **Note:** In the development build `_.template` utilizes
72 * @param {string} [string=''] The template string.
79 * An object to import into the template as free variables.
[all …]
/plugin/loadskin/lang/en/
Dsettings.php7 $lang['automaticOutput'] = 'Automatically output the template switcher on every page?';
8 $lang['excludeTemplates'] = 'Exclude templates from template switcher (comma-separated list)';
9 $lang['mobileSwitch'] = 'Show mobile template switcher (with only 1 normal and 1 mobile te…
10 $lang['mobileTemplate'] = 'Mobile template (if showing mobile template switcher)';
11 $lang['preferUserChoice'] = "Prefer user's template choice over admin's choice?";
12 $lang['inheritInTranslations'] = 'Inherit template choice per namespace inside a language namespace…
13 $lang['allowInAdmin'] = 'Allow template choice to persist in admin section?';
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dutility.js196 QUnit.test('template', function(assert) {
197 var basicTemplate = _.template("<%= thing %> is gettin' on my noives!");
201 var sansSemicolonTemplate = _.template('A <% this %> B');
204 var backslashTemplate = _.template('<%= thing %> is \\ridanculous');
207 var escapeTemplate = _.template('<%= a ? "checked=\\"checked\\"" : "" %>');
210 var fancyTemplate = _.template('<ul><% ' +
216 …var escapedCharsInJavascriptTemplate = _.template('<ul><% _.each(numbers.split("\\n"), function(it…
220 …var namespaceCollisionTemplate = _.template('<%= pageCount %> <%= thumbnails[pageCount] %> <% _.ea…
231 …var noInterpolateTemplate = _.template('<div><p>Just some text. Hey, I know this is silly but it a…
235 var quoteTemplate = _.template("It's its, not it's");
[all …]
/plugin/odt2dw/
Dodt2dw.xsl56 <!-- Get toc sources styles to check paragraphe tag with header style in text:p template -->
60 <xsl:template match="/XML"/>
61 <xsl:template match="/office:document-content/office:meta"/>
62 <xsl:template match="/office:document-content/office:settings"/>
63 <xsl:template match="/office:document-content/office:script"/>
64 <xsl:template match="/office:document-content/office:font-face-decls"/>
65 <xsl:template match="/office:document-content/office:document-styles"/>
66 <xsl:template match="/office:document-content/office:automatic-styles"/>
67 <xsl:template match="/office:document-content/office:styles"/>
68 <xsl:template match="/office:document-content/office:master-styles"/>
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Loader/
DArrayLoader.php18 * Loads a template from an array.
21 * key is generated each time a template content "changes" (the cache key being the
22 * source code of the template). If you don't want to see your cache grows out of
44 * Adds or overrides a template.
46 * @param string $name The template name
47 * @param string $template The template source
49 public function setTemplate($name, $template) argument
51 $this->templates[(string) $name] = $template;
60 throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
70 throw new LoaderError(sprintf('Template "%s" is not defined.', $name));
[all …]
DLoaderInterface.php24 * Gets the source code of a template, given its name.
26 * @param string $name The name of the template to load
28 * @return string The template source code
37 * Gets the cache key to use for the cache for a given template name.
39 * @param string $name The name of the template to load
48 * Returns true if the template is still fresh.
50 * @param string $name The template name
52 * cached template
54 * @return bool true if the template is fresh, false otherwise
/plugin/ahrefmenu/
DxmlTree.xsl4 <xsl:template match="/">
13 </xsl:template>
15 <xsl:template match="tree">
19 </xsl:template>
22 <xsl:template match="branch">
45 </xsl:template>
48 <xsl:template match="leaf">
58 </xsl:template>
60 <xsl:template match="branchLink">
73 </xsl:template>
[all …]
/plugin/multitemplate_styleman/
Dcss.php14 $template = NULL; variable
17 …if (preg_match('/^[a-z0-9_-]+$/iD', $tpl)) { //seems to be a valid template name, and not a code i…
18 $template = $tpl; variable
22 // We set the template constants before init.php can do it...
23 if (isset($template)) {
28 define('DOKU_TPL', $DOKU_BASE.'lib/tpl/' . $template .'/');
29 define('DOKU_TPLINC',realpath(dirname(__FILE__).'/../../') . '/tpl/' . $template .'/');
38 // Redirect template:
39 if (isset($template))
40 $conf['template'] = $template;
/plugin/findologicxmlexport/vendor/twig/twig/doc/tags/
Dembed.rst9 It allows you to include another template's contents, just like ``include``
11 included template, like when extending a template.
13 Think of an embedded template as a "micro layout skeleton".
28 The ``embed`` tag takes the idea of template inheritance to the level of
29 content fragments. While template inheritance allows for "document skeletons",
35 Imagine a base template shared by multiple HTML pages, defining a single block
45 │ │ (child template to │ │
92 template: one with vertically stacked boxes to be used by the "foo" and
97 template directly.
113 code can live in a single base template, and the two different content structures,
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/doc/
Dapi.rst4 This chapter describes the API to Twig and not the template language. It will
5 be most useful as reference to those implementing the template interface to
32 This will create a template environment with the default settings and a loader
49 To load a template from a Twig environment, call the ``load()`` method which
52 $template = $twig->load('index.html');
57 ``\Twig\Template`` instance.
59 To render the template with some variables, call the ``render()`` method::
61 echo $template->render(['the' => 'variables', 'go' => 'here']);
65 The ``display()`` method is a shortcut to output the template directly.
67 You can also load and render the template in one fell swoop::
[all …]
Dinternals.rst12 The rendering of a Twig template can be summarized into four key steps:
14 * **Load** the template: If the template is already compiled, load it and go
17 * First, the **lexer** tokenizes the template source code into small pieces
23 * **Evaluate** the template: It basically means calling the ``display()``
24 method of the compiled template and passing it the context.
29 The lexer tokenizes a template source code into a token stream (each token is
42 * ``\Twig\Token::EOF_TYPE``: Ends of template.
58 Here is the output for the ``Hello {{ name }}`` template:
91 Here is the output for the ``Hello {{ name }}`` template:
113 generates PHP code usable for runtime execution of the template.
[all …]
/plugin/loadskin/lang/de/
Dsettings.php8 $lang['automaticOutput'] = 'Template-Switcher auf jeder Seite automatisch anzeigen?';
9 $lang['excludeTemplates'] = 'Schließt Templates vom Template-Switcher aus (durch Kommata getre…
10 $lang['mobileSwitch'] = 'Mobilen Template-Switcher anzeigen (nur 1 Desktop- und 1 mobiles
11 $lang['mobileTemplate'] = 'Mobiles Template (wenn der mobile Template-Switcher angezeigt wir…
12 $lang['preferUserChoice'] = 'Template-Auswahl des Benutzers, oder die des Administrators bevor…
13 $lang['inheritInTranslations'] = 'Template-Auswahl pro Namensraum innerhalb eines Sprachnamensraums…
/plugin/pagetemplater/
H A DREADME.md4 … define templates for the blog namespaces. In our case, we have added a template for news entries …
5 You can also use the META plugin and define a template for only one page:
9 templater page=:my:template-page
13 ## Template Prequisites
16 The template page has to have the word ``@@CONTENT@@`` in the content. This is the placeholder wher…
18 ## Some more Template Functionality
20 …holders on your own. Simply use the word ``@@YOURPLACEHOLDER@@`` in the template page (where ``YOU…
22 Template Page Example:
34 templater page = :my:template
H A Daction.php4 * Select Template Pages for your Content
6 * the template per page can be defined using the META plugin
38 $template = $this->resolve_template();
39 if ( !$template || $ACT != 'show' ) { return; }
42 $template = p_wiki_xhtml( $template );
51 $new = $template;
53 if ( $new != $template ) { $template = $new; }
58 $new = str_replace('@@' . strtoupper(trim($rkey)) . '@@', $replace[$key], $template);
79 $template = $this->resolve_template( $event->data['current']['templater'] );
80 …if ( empty( $template) || in_array($template, array( $id, $event->data['page']) ) ) { return true;…
[all …]
/plugin/datatemplate/syntax/
Dentry.php45 // parameters. We want to extract the template parameter and treat
51 if(array_key_exists('template', $data['cols'])) {
52 unset($data['cols']['template']);
53 $data['template'] = $data['data']['template'];
54 unset($data['data']['template']);
56 if(array_key_exists('template', $data)) {
87 * Get template file name and check existance and access rights.
89 * @param string $template value of 'template' key in entry
95 function _getFile($template) { argument
97 $wikipage = preg_split('/\#/u', $template, 2);
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dclass.csstidy_print.php70 public $template; variable in csstidy_print
85 $this->template = & $css->template;
190 $template = & $this->template;
193 $template = array_map('strip_tags', $template);
201 …$output .= $template[0] . '@charset ' . $template[5] . $this->charset . $template[6] . $template[1…
216 …$output .= $template[0] . '@import ' . $template[5] . $this->import[$i] . $template[6] . $template
226 …$output .= $template[0] . '@namespace ' . $template[5] . $this->namespace . $template[6] . $templa…
236 $out .= $template[0] . $this->_htmlsp($token[1], $plain) . $template[1];
247 …$out .= ( $token[1][0] !== '@') ? $template[2] . $this->_htmlsp($token[1], $plain) : $template[0] …
248 $out .= $template[3];
[all …]
/plugin/elasticsearch/vendor/ruflin/elastica/src/
DIndexTemplate.php11 * Elastica index template object.
20 * Index template name.
32 * Creates a new index template object.
34 * @param string $name Index template name
43 throw new InvalidException('Index template should be a scalar type');
49 * Deletes the index template.
63 * Creates a new index template with the given arguments.
81 * Checks if the given index template is already created.
97 * Returns the index template name.
107 * Returns index template client.
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/test/Twig/Tests/Profiler/
DProfileTest.php18 $profile = new Profile('template', 'type', 'name');
20 $this->assertEquals('template', $profile->getTemplate());
27 $profile = new Profile('template', Profile::ROOT);
30 $profile = new Profile('template', Profile::TEMPLATE);
36 $profile = new Profile('template', Profile::TEMPLATE);
39 $profile = new Profile('template', Profile::ROOT);
45 $profile = new Profile('template', Profile::BLOCK);
48 $profile = new Profile('template', Profile::ROOT);
54 $profile = new Profile('template', Profile::MACRO);
57 $profile = new Profile('template', Profile::ROOT);
[all …]
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdfTplTrait.php29 * The template id for the currently created template.
36 * A counter for template ids.
52 …throw new \BadMethodCallException('The page format cannot be changed when writing to a template.');
87 * Draws a template onto the page or another template.
92 * @param mixed $tpl The template id
105 throw new \InvalidArgumentException('Template does not exist!');
118 $template = $this->templates[$tpl];
134 $template['id']
142 * Get the size of a template.
147 * @param mixed $tpl The template id
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/
DTemplate.php22 * This class is an implementation detail of how template compilation currently
30 abstract class Template implements \Twig_TemplateInterface class
58 * Returns the template name.
60 * @return string The template name
65 * Returns debug information about the template.
75 * Returns the template source code.
77 * @return string The template source code
89 * Returns information about the original template source code.
109 * Returns the parent template.
116 …* @return \Twig_TemplateInterface|TemplateWrapper|false The parent template or false if there is n…
[all …]
/plugin/combo/ComboStrap/
H A DTemplateStore.php13 * The data goes from and out of a template format
18 const CANONICAL = "template";
22 LogUtility::msg("You can't set a value with a template store");
27 LogUtility::msg("You can't get a value with a template store");
33 LogUtility::msg("You can't get a value with a template store");
38 LogUtility::msg("You can't set a value with a template store");
43 LogUtility::msg("You can't persist with a template store");
53 LogUtility::msg("Reset: The template format is not yet implemented");
/plugin/jsongendoc/
Dhelper.php28 $template = isset($data['keys']['template']) ? $data['keys']['template'] : '';
43 //dokuwiki page ID for template (optional)
44 $data['template'] = $template;
48 //[name1=>[path,to,name1], name2=>[path,to,name2], ..., template=>[path,to,template]]
105 $template = $data['template'];
119 if($key === 'template') {
120 $template = strval($v);
129 'template'=>$template, 'namespace'=>$data['namespace'], 'json'=>$select_data)));
136 … 'template'=>$data['template'], 'namespace'=>$data['namespace'], 'json'=>$data['json_combined'])));
/plugin/templateconfhelper/action/
Dtemplateaction.php3 * DokuWiki plugin template helper
20 'name' => 'template actions',
21 'desc' => 'switch template based on user selection',
34 $tpl = $conf['template'];
45 if( isset( $u['template'] ) && $u['template'] && $u['template'] != $tpl ) {
46 $tpl = $u['template'];
55 if( $_GET['utpl'] != $tpl && $_GET['utpl'] != $conf['template'] ) {
59 $this->save_session( 'template', $tpl );
63 $this->save_session( 'template', '' ); // fix subconf switch
121 if( $conf['template'] == $tpl ) { return ''; }
[all …]
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/Expression/
DBlockReferenceExpression.php26 * @param Node|null $template
28 public function __construct(\Twig_NodeInterface $name, $template = null, $lineno, $tag = null) argument
30 if (\is_bool($template)) {
33 $template = null;
37 if (null !== $template) {
38 $nodes['template'] = $template;
63 if (!$this->hasNode('template')) {
68 ->subcompile($this->getNode('template'))
90 if (!$this->hasNode('template')) {

12345678910>>...93