/template/twigstarter/vendor/twig/twig/src/Error/ |
H A D | Error.php | 62 if (null === $source) { 64 } elseif (!$source instanceof Source && !$source instanceof \Twig_Source) { 66 $name = $source; 68 $name = $source->getName(); 69 $this->sourceCode = $source->getCode(); 70 $this->sourcePath = $source->getPath(); 124 public function setSourceContext(Source $source = null) argument 126 if (null === $source) { 129 $this->sourceCode = $source->getCode(); 130 $this->name = $source->getName(); [all …]
|
/template/twigstarter/vendor/twig/twig/src/ |
H A D | TokenStream.php | 26 private $source; variable in Twig\\TokenStream 28 public function __construct(array $tokens, Source $source = null) argument 31 $this->source = $source ?: new Source('', ''); 50 …xError('Unexpected end of template.', $this->tokens[$this->current - 1]->getLine(), $this->source); 82 $this->source 96 …expected end of template.', $this->tokens[$this->current + $number - 1]->getLine(), $this->source); 130 return $this->source;
|
H A D | Compiler.php | 25 private $source; variable in Twig\\Compiler 55 return $this->source; 68 $this->source = ''; 84 $this->source .= str_repeat(' ', $this->indentation * 4); 101 $this->source .= $string; 114 $this->source .= str_repeat(' ', $this->indentation * 4).$string; 129 $this->source .= sprintf('"%s"', addcslashes($value, "\0\t\"\$\\")); 187 $this->sourceLine += substr_count($this->source, "\n", $this->sourceOffset); 188 $this->sourceOffset = \strlen($this->source);
|
H A D | Lexer.php | 33 private $source; variable in Twig\\Lexer 156 public function tokenize(Source $source) argument 158 $this->source = $source; 159 $this->code = str_replace(["\r\n", "\r"], "\n", $source->getCode()); 203 throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source); 206 return new TokenStream($this->tokens, $this->source); 340 …SyntaxError(sprintf('Unexpected "%s".', $this->code[$this->cursor]), $this->lineno, $this->source); 345 … throw new SyntaxError(sprintf('Unclosed "%s".', $expect), $lineno, $this->source); 372 …ew SyntaxError('Unexpected end of file: Unclosed "verbatim" block.', $this->lineno, $this->source); 396 throw new SyntaxError('Unclosed comment.', $this->lineno, $this->source); [all …]
|
H A D | Environment.php | 405 $source = null; 407 $source = $this->getLoader()->getSourceContext($name); 408 $content = $this->compileSource($source); 422 …d to load Twig template "%s", index "%s": cache might be corrupted.', $name, $index), -1, $source); 536 public function tokenize(Source $source) argument 542 return $this->lexer->tokenize($source); 592 public function compileSource(Source $source) argument 595 return $this->compile($this->parse($this->tokenize($source))); 597 $e->setSourceContext($source); 600 …has been thrown during the compilation of a template ("%s").', $e->getMessage()), -1, $source, $e);
|
/template/parallax/lib/js/ |
H A D | gallery-lightbox.js | 21 var source = jQuery(this).children().attr('src'); 22 var startIndex = source.lastIndexOf('-'); 23 var endIndex = source.lastIndexOf('.'); 24 var removeValue = source.substring(startIndex, endIndex); 25 var newSource = source.replace(removeValue, '');
|
/template/twigstarter/vendor/twig/twig/src/Test/ |
H A D | NodeTestCase.php | 27 public function testCompile($node, $source, $environment = null, $isPattern = false) argument 29 $this->assertNodeCompilation($source, $node, $environment, $isPattern); 32 …public function assertNodeCompilation($source, Node $node, Environment $environment = null, $isPat… argument 38 $this->assertStringMatchesFormat($source, trim($compiler->getSource())); 40 $this->assertEquals($source, trim($compiler->getSource()));
|
/template/twigstarter/vendor/twig/twig/src/Extension/ |
H A D | SandboxExtension.php | 80 public function checkMethodAllowed($obj, $method, int $lineno = -1, Source $source = null) argument 86 $e->setSourceContext($source); 94 public function checkPropertyAllowed($obj, $method, int $lineno = -1, Source $source = null) argument 100 $e->setSourceContext($source); 108 public function ensureToStringAllowed($obj, int $lineno = -1, Source $source = null) argument 114 $e->setSourceContext($source);
|
/template/twigstarter/vendor/twig/twig/doc/functions/ |
H A D | source.rst | 1 ``source`` 4 The ``source`` function returns the content of a template without rendering it: 8 {{ source('template.html') }} 9 {{ source(some_var) }} 16 {{ source('template.html', ignore_missing = true) }}
|
/template/m1/ |
H A D | script.js | 217 source : null, // Override the source of the content. 249 if(typeof settings.source === 'function') { 250 var newContent = settings.source(name); 253 else if(typeof settings.source === 'string' && privateMethods.isUrl(settings.source)) { 254 $.get(settings.source, function(data) { 258 else if(typeof settings.source === 'string') { 260 selectors = settings.source.split(','); 277 else if(settings.source !== null) {
|
/template/twigstarter/vendor/twig/twig/src/Node/ |
H A D | Node.php | 198 public function setSourceContext(Source $source) argument 200 $this->sourceContext = $source; 202 $node->setSourceContext($source); 205 $this->setTemplateName($source->getName(), false);
|
/template/mikio/assets/ |
H A D | mikio-typeahead.js | 63 this.source = this.options.source; 151 setSource: function (source) { argument 152 this.source = source; 223 if ($.isFunction(this.source) && this.source.length === 3) { 224 … this.source(this.query, $.proxy(this.process, this), $.proxy(this.process, this)); 225 } else if ($.isFunction(this.source)) { 226 this.source(this.query, $.proxy(this.process, this)); 227 } else if (this.source) { 228 this.process(this.source); 720 source: [], property in Typeahead.defaults
|
/template/templar/js/ |
H A D | bootstrap-typeahead.js | 36 this.source = this.options.source 90 …items = $.isFunction(this.source) ? this.source(this.query, $.proxy(this.process, this)) : this.so… 307 source: [] property in $.fn.typeahead.defaults
|
/template/bootstrap3/assets/typeahead/ |
H A D | bootstrap3-typeahead.min.js | 1 …source=this.options.source;this.delay=this.options.delay;this.theme=this.options.theme&&this.optio… property in c.defaults
|
/template/twigstarter/ |
H A D | composer.lock | 12 "source": { 70 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0" 91 "source": { 150 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.0" 171 "source": { 233 "source": "https://github.com/twigphp/Twig/tree/v2.14.6"
|
/template/twigstarter/vendor/twig/twig/doc/filters/ |
H A D | inline_css.rst | 29 {% apply inline_css(source("some_styles.css"), source("another.css")) %} 46 {{ include('some_template.html.twig')|inline_css(source("some_styles.css")) }}
|
/template/strap/css/ |
H A D | admin.css | 4 * This source code is licensed under the GPL license found in the 5 * COPYING file in the root directory of this source tree.
|
/template/sprintdoc/fonts/icons/ |
H A D | README.txt | 1 This webfont is generated by http://fontello.com open source project. 11 - If your project is open-source, usually, it will be ok to make LICENSE.txt 30 - LICENSE.txt - license info about source fonts, used to build your one. 51 content. See fontello source code for examples.
|
/template/slaad/ |
H A D | COPYING | 24 this service if you wish), that you receive source code or can get it 36 source code. And you must show them these terms so they know their 80 source code as you receive it, in any medium, provided that you 145 cost of physically performing source distribution, a complete 146 machine-readable copy of the corresponding source code, to be 151 to distribute corresponding source code. (This alternative is 161 special exception, the source code distributed need not include 162 anything that is normally distributed (in either source or binary 169 access to copy the source code from the same place counts as 170 distribution of the source code, even though third parties are not [all …]
|
/template/wallpaper/ |
H A D | COPYING | 24 this service if you wish), that you receive source code or can get it 36 source code. And you must show them these terms so they know their 80 source code as you receive it, in any medium, provided that you 144 cost of physically performing source distribution, a complete 145 machine-readable copy of the corresponding source code, to be 150 to distribute corresponding source code. (This alternative is 160 special exception, the source code distributed need not include 161 anything that is normally distributed (in either source or binary 168 access to copy the source code from the same place counts as 169 distribution of the source code, even though third parties are not [all …]
|
/template/mikio/ |
H A D | LICENSE.md | 26 that you receive source code or can get it if you want it, that you can change 37 sure that they, too, receive or can get the source code. And you must show them 78 **1.** You may copy and distribute verbatim copies of the Program's source code 134 * **a)** Accompany it with the complete corresponding machine-readable source 140 performing source distribution, a complete machine-readable copy of the 141 corresponding source code, to be distributed under the terms of Sections 1 145 distribute corresponding source code. (This alternative is allowed only for 150 The source code for a work means the preferred form of the work for making 152 source code for all modules it contains, plus any associated interface 155 need not include anything that is normally distributed (in either source or [all …]
|
/template/greensteel/css/ |
H A D | pagetools.css | 175 #dokuwiki__pagetools ul li a.source { 178 #dokuwiki__pagetools ul li a.source:hover, 179 #dokuwiki__pagetools ul li a.source:active, 180 #dokuwiki__pagetools ul li a.source:focus { 183 [dir=rtl] #dokuwiki__pagetools ul li a.source { 186 [dir=rtl] #dokuwiki__pagetools ul li a.source:hover, 187 [dir=rtl] #dokuwiki__pagetools ul li a.source:active, 188 [dir=rtl] #dokuwiki__pagetools ul li a.source:focus {
|
/template/dokufreech/css/ |
H A D | pagetools.css | 227 #dokuwiki__pagetools ul li a.source { 230 #dokuwiki__pagetools ul li a.source:before { 233 #dokuwiki__pagetools ul li a.source:hover, 234 #dokuwiki__pagetools ul li a.source:active, 235 #dokuwiki__pagetools ul li a.source:focus { 238 [dir=rtl] #dokuwiki__pagetools ul li a.source { 241 [dir=rtl] #dokuwiki__pagetools ul li a.source:hover, 242 [dir=rtl] #dokuwiki__pagetools ul li a.source:active, 243 [dir=rtl] #dokuwiki__pagetools ul li a.source:focus {
|
/template/twigstarter/vendor/twig/twig/doc/ |
H A D | internals.rst | 17 * First, the **lexer** tokenizes the template source code into small pieces 31 The lexer tokenizes a template source code into a token stream (each token is 46 You can manually convert a source code into a token stream by calling the 49 $stream = $twig->tokenize(new \Twig\Source($source, $identifier));
|
/template/dokubootstrapsimplified/ |
H A D | COPYING | 24 this service if you wish), that you receive source code or can get it 36 source code. And you must show them these terms so they know their 80 source code as you receive it, in any medium, provided that you 144 cost of physically performing source distribution, a complete 145 machine-readable copy of the corresponding source code, to be 150 to distribute corresponding source code. (This alternative is 160 special exception, the source code distributed need not include 161 anything that is normally distributed (in either source or binary 168 access to copy the source code from the same place counts as 169 distribution of the source code, even though third parties are not [all …]
|