/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 | 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 | 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 | 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); 535 public function tokenize(Source $source) argument 541 return $this->lexer->tokenize($source); 591 public function compileSource(Source $source) argument 594 return $this->compile($this->parse($this->tokenize($source))); 596 $e->setSourceContext($source); 599 …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, $property, 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/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/mikio/assets/ |
H A D | mikio-typeahead.js | 44 this.source = this.options.source; 132 setSource: function (source) { 133 this.source = source; 204 if (jQuery.isFunction(this.source) && this.source.length === 3) { 205 this.source(this.query, jQuery.proxy(this.process, this), jQuery.proxy(this.process, this)); 206 } else if (jQuery.isFunction(this.source)) { 207 this.source(thi 151 setSource(source) global() argument 720 source: [], global() property in Typeahead.defaults [all...] |
/template/twigstarter/ |
H A D | composer.lock | 12 "source": { 73 "source": "https://github.com/symfony/polyfill-ctype/tree/v1.26.0" 94 "source": { 156 "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.26.0" 177 "source": { 232 "source": "https://github.com/symfony/polyfill-php72/tree/v1.26.0" 253 "source": { 316 "source": "https://github.com/twigphp/Twig/tree/v2.15.3"
|
/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/twigstarter/vendor/twig/twig/src/Node/ |
H A D | Node.php | 200 public function setSourceContext(Source $source) argument 202 $this->sourceContext = $source; 204 $node->setSourceContext($source); 207 $this->setTemplateName($source->getName(), false);
|
/template/bootstrap3/assets/typeahead/ |
H A D | bootstrap3-typeahead.min.js | 1 (function(a,b){if(typeof module!=="undefined"&&module.exports){module.exports=b(require("jquery"))}else{if(typeof define==="function"&&define.amd){define(["jquery"],function(c){return b(c)})}else{b(a.jQuery)}}}(this,function(b){var c=function(e,d){this.$element=b(e);this.options=b.extend({},c.defaults,d);this.matcher=this.options.matcher||this.matcher;this.sorter=this.options.sorter||this.sorter;this.select=this.options.select||this.select;this.autoSelect=typeof this.options.autoSelect=="boolean"?this.options.autoSelect:true;this.highlighter=this.options.highlighter||this.highlighter;this.render=this.options.render||this.render;this.updater=this.options.updater||this.updater;this.displayText=this.options.displayText||this.displayText;this.itemLink=this.options.itemLink||this.itemLink;this.itemTitle=this.options.itemTitle||this.itemTitle;this.followLinkOnSelect=this.options.followLinkOnSelect||this.followLinkOnSelect;this.source=this.options.source;this.delay=this.options.delay;this.theme=this.options.theme&&this.options.themes&&this.options.themes[this.options.theme]||c.defaults.themes[c.defaults.theme];this.$menu=b(this.options.menu||this.theme.menu);this.$appendTo=this.options.appendTo?b(this.options.appendTo):null;this.fitToElement=typeof this.options.fitToElement=="boolean"?this.options.fitToElement:false;this.shown=false;this.listen();this.showHintOnFocus=typeof this.options.showHintOnFocus=="boolean"||this.options.showHintOnFocus==="all"?this.options.showHintOnFocus:false;this.afterSelect=this.options.afterSelect;this.afterEmptySelect=this.options.afterEmptySelect;this.addItem=false;this.value=this.$element.val()||this.$element.text();this.keyPressed=false;this.focused=this.$element.is(":focus");this.changeInputOnSelect=this.options.changeInputOnSelect||this.changeInputOnSelect;this.changeInputOnMove=this.options.changeInputOnMove||this.changeInputOnMove;this.openLinkInNewTab=this.options.openLinkInNewTab||this.openLinkInNewTab;this.selectOnBlur=this.options.selectOnBlur||this.selectOnBlur;this.showCategoryHeader=this.options.showCategoryHeader||this.showCategoryHeader};c.prototype={constructor:c,setDefault:function(e){this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change();this.afterSelect(d)}return this.hide()},select:function(){var e=this.$menu.find(".active").data("value");this.$element.data("active",e);if(this.autoSelect||e){var d=this.updater(e);if(!d){d=""}if(this.changeInputOnSelect){this.$element.val(this.displayText(d)||d).text(this.displayText(d)||d).change()}if(this.followLinkOnSelect&&this.itemLink(e)){if(this.openLinkInNewTab){window.open(this.itemLink(e),"_blank")}else{document.location=this.itemLink(e)}this.afterSelect(d)}else{if(this.followLinkOnSelect&&!this.itemLink(e)){this.afterEmptySelect(d)}else{this.afterSelect(d)}}}else{this.afterEmptySelect()}return this.hide()},updater:function(d){return d},setSource:function(d){this.source=d},show:function(){var k=b.extend({},this.$element.position(),{height:this.$element[0].offsetHeight});var h=typeof this.options.scrollHeight=="function"?this.options.scrollHeight.call():this.options.scrollHeight;var g;if(this.shown){g=this.$menu}else{if(this.$appendTo){g=this.$menu.appendTo(this.$appendTo);this.hasSameParent=this.$appendTo.is(this.$element.parent())}else{g=this.$menu.insertAfter(this.$element);this.hasSameParent=true}}if(!this.hasSameParent){g.css("position","fixed");var j=this.$element.offset();k.top=j.top;k.left=j.left}var e=b(g).parent().hasClass("dropup");var d=e?"auto":(k.top+k.height+h);var f=b(g).hasClass("dropdown-menu-right");var i=f?"auto":k.left;g.css({top:d,left:i}).show();if(this.options.fitToElement===true){g.css("width",this.$element.outerWidth()+"px")}this.shown=true;return this},hide:function(){this.$menu.hide();this.shown=false;return this},lookup:function(d){if(typeof(d)!="undefined"&&d!==null){this.query=d}else{this.query=this.$element.val()}if(this.query.length<this.options.minLength&&!this.options.showHintOnFocus){return this.shown?this.hide():this}var e=b.proxy(function(){if(b.isFunction(this.source)&&this.source.length===3){this.source(this.query,b.proxy(this.process,this),b.proxy(this.process,this))}else{if(b.isFunction(this.source)){this.source(this.query,b.proxy(this.process,this))}else{if(this.source){this.process(this.source)}}}},thi property in c.defaults [all...] |
/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 151 modifications to it. For an executable work, complete source code means all the 152 source cod [all...] |
/template/greensteel/css/ |
H A D | pagetools.css | 181 #dokuwiki__pagetools ul li a.source { 184 #dokuwiki__pagetools ul li a.source:hover, 185 #dokuwiki__pagetools ul li a.source:active, 186 #dokuwiki__pagetools ul li a.source:focus { 189 [dir=rtl] #dokuwiki__pagetools ul li a.source { 192 [dir=rtl] #dokuwiki__pagetools ul li a.source:hover, 193 [dir=rtl] #dokuwiki__pagetools ul li a.source:active, 194 [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/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 …]
|
/template/mystyle/ |
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/monobook/ |
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/writr/ |
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 139 source code, which must be distributed under the terms of Sections 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 155 The source code for a work means the preferred form of the work for 156 making modifications to it. For an executable work, complete source 157 code means all the source cod [all...] |