- Patch #1591686 by Rob Loach, chx: Add Twig itself.
authorDries
Fri, 15 Jun 2012 17:16:18 +0000 (13:16 -0400)
committerDries
Fri, 15 Jun 2012 17:16:18 +0000 (13:16 -0400)
commit07e217036136e0bc3369c276349ef0dd65d12e55
treefac8de9b1d61f437ab3e1abf05dde0d9a3b60f87
parentc195d872bc7c5efdcd062501adf169590f291c91
- Patch #1591686 by Rob Loach, chx: Add Twig itself.
150 files changed:
core/includes/bootstrap.inc
core/vendor/Twig/Autoloader.php [new file with mode: 0644]
core/vendor/Twig/Compiler.php [new file with mode: 0644]
core/vendor/Twig/CompilerInterface.php [new file with mode: 0644]
core/vendor/Twig/Environment.php [new file with mode: 0644]
core/vendor/Twig/Error.php [new file with mode: 0644]
core/vendor/Twig/Error/Loader.php [new file with mode: 0644]
core/vendor/Twig/Error/Runtime.php [new file with mode: 0644]
core/vendor/Twig/Error/Syntax.php [new file with mode: 0644]
core/vendor/Twig/ExpressionParser.php [new file with mode: 0644]
core/vendor/Twig/Extension.php [new file with mode: 0644]
core/vendor/Twig/Extension/Core.php [new file with mode: 0644]
core/vendor/Twig/Extension/Debug.php [new file with mode: 0644]
core/vendor/Twig/Extension/Escaper.php [new file with mode: 0644]
core/vendor/Twig/Extension/Optimizer.php [new file with mode: 0644]
core/vendor/Twig/Extension/Sandbox.php [new file with mode: 0644]
core/vendor/Twig/ExtensionInterface.php [new file with mode: 0644]
core/vendor/Twig/Filter.php [new file with mode: 0644]
core/vendor/Twig/Filter/Function.php [new file with mode: 0644]
core/vendor/Twig/Filter/Method.php [new file with mode: 0644]
core/vendor/Twig/Filter/Node.php [new file with mode: 0644]
core/vendor/Twig/FilterInterface.php [new file with mode: 0644]
core/vendor/Twig/Function.php [new file with mode: 0644]
core/vendor/Twig/Function/Function.php [new file with mode: 0644]
core/vendor/Twig/Function/Method.php [new file with mode: 0644]
core/vendor/Twig/Function/Node.php [new file with mode: 0644]
core/vendor/Twig/FunctionInterface.php [new file with mode: 0644]
core/vendor/Twig/Lexer.php [new file with mode: 0644]
core/vendor/Twig/LexerInterface.php [new file with mode: 0644]
core/vendor/Twig/Loader/Array.php [new file with mode: 0644]
core/vendor/Twig/Loader/Chain.php [new file with mode: 0644]
core/vendor/Twig/Loader/Filesystem.php [new file with mode: 0644]
core/vendor/Twig/Loader/String.php [new file with mode: 0644]
core/vendor/Twig/LoaderInterface.php [new file with mode: 0644]
core/vendor/Twig/Markup.php [new file with mode: 0644]
core/vendor/Twig/Node.php [new file with mode: 0644]
core/vendor/Twig/Node/AutoEscape.php [new file with mode: 0644]
core/vendor/Twig/Node/Block.php [new file with mode: 0644]
core/vendor/Twig/Node/BlockReference.php [new file with mode: 0644]
core/vendor/Twig/Node/Body.php [new file with mode: 0644]
core/vendor/Twig/Node/Do.php [new file with mode: 0644]
core/vendor/Twig/Node/Embed.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Array.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/AssignName.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Add.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/And.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/BitwiseAnd.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/BitwiseOr.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/BitwiseXor.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Concat.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Div.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Equal.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/FloorDiv.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Greater.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/GreaterEqual.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/In.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Less.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/LessEqual.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Mod.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Mul.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/NotEqual.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/NotIn.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Or.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Power.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Range.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Binary/Sub.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/BlockReference.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Conditional.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Constant.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/ExtensionReference.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Filter.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Filter/Default.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Function.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/GetAttr.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/MethodCall.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Name.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Parent.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/TempName.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Constant.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Defined.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Divisibleby.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Even.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Null.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Odd.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Test/Sameas.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Unary.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Unary/Neg.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Unary/Not.php [new file with mode: 0644]
core/vendor/Twig/Node/Expression/Unary/Pos.php [new file with mode: 0644]
core/vendor/Twig/Node/Flush.php [new file with mode: 0644]
core/vendor/Twig/Node/For.php [new file with mode: 0644]
core/vendor/Twig/Node/ForLoop.php [new file with mode: 0644]
core/vendor/Twig/Node/If.php [new file with mode: 0644]
core/vendor/Twig/Node/Import.php [new file with mode: 0644]
core/vendor/Twig/Node/Include.php [new file with mode: 0644]
core/vendor/Twig/Node/Macro.php [new file with mode: 0644]
core/vendor/Twig/Node/Module.php [new file with mode: 0644]
core/vendor/Twig/Node/Print.php [new file with mode: 0644]
core/vendor/Twig/Node/Sandbox.php [new file with mode: 0644]
core/vendor/Twig/Node/SandboxedModule.php [new file with mode: 0644]
core/vendor/Twig/Node/SandboxedPrint.php [new file with mode: 0644]
core/vendor/Twig/Node/Set.php [new file with mode: 0644]
core/vendor/Twig/Node/SetTemp.php [new file with mode: 0644]
core/vendor/Twig/Node/Spaceless.php [new file with mode: 0644]
core/vendor/Twig/Node/Text.php [new file with mode: 0644]
core/vendor/Twig/NodeInterface.php [new file with mode: 0644]
core/vendor/Twig/NodeOutputInterface.php [new file with mode: 0644]
core/vendor/Twig/NodeTraverser.php [new file with mode: 0644]
core/vendor/Twig/NodeVisitor/Escaper.php [new file with mode: 0644]
core/vendor/Twig/NodeVisitor/Optimizer.php [new file with mode: 0644]
core/vendor/Twig/NodeVisitor/SafeAnalysis.php [new file with mode: 0644]
core/vendor/Twig/NodeVisitor/Sandbox.php [new file with mode: 0644]
core/vendor/Twig/NodeVisitorInterface.php [new file with mode: 0644]
core/vendor/Twig/Parser.php [new file with mode: 0644]
core/vendor/Twig/ParserInterface.php [new file with mode: 0644]
core/vendor/Twig/Sandbox/SecurityError.php [new file with mode: 0644]
core/vendor/Twig/Sandbox/SecurityPolicy.php [new file with mode: 0644]
core/vendor/Twig/Sandbox/SecurityPolicyInterface.php [new file with mode: 0644]
core/vendor/Twig/Template.php [new file with mode: 0644]
core/vendor/Twig/TemplateInterface.php [new file with mode: 0644]
core/vendor/Twig/Test/Function.php [new file with mode: 0644]
core/vendor/Twig/Test/Method.php [new file with mode: 0644]
core/vendor/Twig/Test/Node.php [new file with mode: 0644]
core/vendor/Twig/TestInterface.php [new file with mode: 0644]
core/vendor/Twig/Token.php [new file with mode: 0644]
core/vendor/Twig/TokenParser.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/AutoEscape.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Block.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Do.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Embed.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Extends.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Filter.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Flush.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/For.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/From.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/If.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Import.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Include.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Macro.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Sandbox.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Set.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Spaceless.php [new file with mode: 0644]
core/vendor/Twig/TokenParser/Use.php [new file with mode: 0644]
core/vendor/Twig/TokenParserBroker.php [new file with mode: 0644]
core/vendor/Twig/TokenParserBrokerInterface.php [new file with mode: 0644]
core/vendor/Twig/TokenParserInterface.php [new file with mode: 0644]
core/vendor/Twig/TokenStream.php [new file with mode: 0644]