initial commit
authorfabien <fabien@93ef8e89-cb99-4229-a87c-7fa0fa45744b>
Wed, 7 Oct 2009 21:21:11 +0000 (21:21 +0000)
committerfabien <fabien@93ef8e89-cb99-4229-a87c-7fa0fa45744b>
Wed, 7 Oct 2009 21:21:11 +0000 (21:21 +0000)
commitfd0646e4cfef27c6325da678863764f2f1aaa7f9
tree5f3b7909d78767aa0f4ed6cc24a0956695d20e1e
parent9511782b20f615109fb48a61147aa0be483e72ea
initial commit

git-svn-id: http://svn.twig-project.org/trunk@4 93ef8e89-cb99-4229-a87c-7fa0fa45744b
140 files changed:
AUTHORS [new file with mode: 0644]
LICENSE [new file with mode: 0644]
README.markdown [new file with mode: 0644]
doc/01-Introduction.markdown [new file with mode: 0644]
doc/02-Twig-for-Template-Designers.markdown [new file with mode: 0644]
doc/03-Twig-for-Developers.markdown [new file with mode: 0644]
doc/04-Extending-Twig.markdown [new file with mode: 0644]
doc/05-Hacking-Twig.markdown [new file with mode: 0644]
lib/Twig/Autoloader.php [new file with mode: 0644]
lib/Twig/Compiler.php [new file with mode: 0644]
lib/Twig/CompilerInterface.php [new file with mode: 0644]
lib/Twig/Environment.php [new file with mode: 0644]
lib/Twig/Error.php [new file with mode: 0644]
lib/Twig/ExpressionParser.php [new file with mode: 0644]
lib/Twig/Extension.php [new file with mode: 0644]
lib/Twig/Extension/Core.php [new file with mode: 0644]
lib/Twig/Extension/Escaper.php [new file with mode: 0644]
lib/Twig/Extension/Macro.php [new file with mode: 0644]
lib/Twig/Extension/Sandbox.php [new file with mode: 0644]
lib/Twig/Extension/Set.php [new file with mode: 0644]
lib/Twig/ExtensionInterface.php [new file with mode: 0644]
lib/Twig/Lexer.php [new file with mode: 0644]
lib/Twig/LexerInterface.php [new file with mode: 0644]
lib/Twig/Loader.php [new file with mode: 0644]
lib/Twig/Loader/Array.php [new file with mode: 0644]
lib/Twig/Loader/Filesystem.php [new file with mode: 0644]
lib/Twig/Loader/String.php [new file with mode: 0644]
lib/Twig/LoaderInterface.php [new file with mode: 0644]
lib/Twig/Node.php [new file with mode: 0644]
lib/Twig/Node/AutoEscape.php [new file with mode: 0644]
lib/Twig/Node/Block.php [new file with mode: 0644]
lib/Twig/Node/BlockReference.php [new file with mode: 0644]
lib/Twig/Node/Call.php [new file with mode: 0644]
lib/Twig/Node/Expression.php [new file with mode: 0644]
lib/Twig/Node/Expression/AssignName.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Add.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/And.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Concat.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Div.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Mod.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Mul.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Or.php [new file with mode: 0644]
lib/Twig/Node/Expression/Binary/Sub.php [new file with mode: 0644]
lib/Twig/Node/Expression/Compare.php [new file with mode: 0644]
lib/Twig/Node/Expression/Conditional.php [new file with mode: 0644]
lib/Twig/Node/Expression/Constant.php [new file with mode: 0644]
lib/Twig/Node/Expression/Filter.php [new file with mode: 0644]
lib/Twig/Node/Expression/GetAttr.php [new file with mode: 0644]
lib/Twig/Node/Expression/Name.php [new file with mode: 0644]
lib/Twig/Node/Expression/Unary.php [new file with mode: 0644]
lib/Twig/Node/Expression/Unary/Neg.php [new file with mode: 0644]
lib/Twig/Node/Expression/Unary/Not.php [new file with mode: 0644]
lib/Twig/Node/Expression/Unary/Pos.php [new file with mode: 0644]
lib/Twig/Node/Filter.php [new file with mode: 0644]
lib/Twig/Node/For.php [new file with mode: 0644]
lib/Twig/Node/If.php [new file with mode: 0644]
lib/Twig/Node/Include.php [new file with mode: 0644]
lib/Twig/Node/Macro.php [new file with mode: 0644]
lib/Twig/Node/Module.php [new file with mode: 0644]
lib/Twig/Node/Parent.php [new file with mode: 0644]
lib/Twig/Node/Print.php [new file with mode: 0644]
lib/Twig/Node/Set.php [new file with mode: 0644]
lib/Twig/Node/Text.php [new file with mode: 0644]
lib/Twig/NodeList.php [new file with mode: 0644]
lib/Twig/NodeListInterface.php [new file with mode: 0644]
lib/Twig/NodeTransformer.php [new file with mode: 0644]
lib/Twig/NodeTransformer/Chain.php [new file with mode: 0644]
lib/Twig/NodeTransformer/Escaper.php [new file with mode: 0644]
lib/Twig/NodeTransformer/Filter.php [new file with mode: 0644]
lib/Twig/NodeTransformer/Sandbox.php [new file with mode: 0644]
lib/Twig/Parser.php [new file with mode: 0644]
lib/Twig/ParserInterface.php [new file with mode: 0644]
lib/Twig/RuntimeError.php [new file with mode: 0644]
lib/Twig/Sandbox/SecurityError.php [new file with mode: 0644]
lib/Twig/Sandbox/SecurityPolicy.php [new file with mode: 0644]
lib/Twig/Sandbox/SecurityPolicyInterface.php [new file with mode: 0644]
lib/Twig/SyntaxError.php [new file with mode: 0644]
lib/Twig/Template.php [new file with mode: 0644]
lib/Twig/TemplateInterface.php [new file with mode: 0644]
lib/Twig/Token.php [new file with mode: 0644]
lib/Twig/TokenParser.php [new file with mode: 0644]
lib/Twig/TokenParser/AutoEscape.php [new file with mode: 0644]
lib/Twig/TokenParser/Block.php [new file with mode: 0644]
lib/Twig/TokenParser/Call.php [new file with mode: 0644]
lib/Twig/TokenParser/Display.php [new file with mode: 0644]
lib/Twig/TokenParser/Extends.php [new file with mode: 0644]
lib/Twig/TokenParser/Filter.php [new file with mode: 0644]
lib/Twig/TokenParser/For.php [new file with mode: 0644]
lib/Twig/TokenParser/If.php [new file with mode: 0644]
lib/Twig/TokenParser/Include.php [new file with mode: 0644]
lib/Twig/TokenParser/Macro.php [new file with mode: 0644]
lib/Twig/TokenParser/Parent.php [new file with mode: 0644]
lib/Twig/TokenParser/Set.php [new file with mode: 0644]
lib/Twig/TokenStream.php [new file with mode: 0644]
lib/Twig/runtime.php [new file with mode: 0644]
lib/Twig/runtime_escaper.php [new file with mode: 0644]
lib/Twig/runtime_for.php [new file with mode: 0644]
test/bin/coverage.php [new file with mode: 0644]
test/bin/prove.php [new file with mode: 0644]
test/fixtures/expressions/binary.test [new file with mode: 0644]
test/fixtures/expressions/comparison.test [new file with mode: 0644]
test/fixtures/expressions/grouping.test [new file with mode: 0644]
test/fixtures/expressions/ternary_operator.test [new file with mode: 0644]
test/fixtures/expressions/unary.test [new file with mode: 0644]
test/fixtures/filters/date.test [new file with mode: 0644]
test/fixtures/filters/default.test [new file with mode: 0644]
test/fixtures/filters/even.test [new file with mode: 0644]
test/fixtures/filters/format.test [new file with mode: 0644]
test/fixtures/filters/length.test [new file with mode: 0644]
test/fixtures/filters/odd.test [new file with mode: 0644]
test/fixtures/filters/sort.test [new file with mode: 0644]
test/fixtures/tags/autoescape/basic.test [new file with mode: 0644]
test/fixtures/tags/autoescape/double_escaping.test [new file with mode: 0644]
test/fixtures/tags/autoescape/nested.test [new file with mode: 0644]
test/fixtures/tags/autoescape/safe.test [new file with mode: 0644]
test/fixtures/tags/filter/basic.test [new file with mode: 0644]
test/fixtures/tags/filter/nested.test [new file with mode: 0644]
test/fixtures/tags/filter/with_for_tag.test [new file with mode: 0644]
test/fixtures/tags/filter/with_if_tag.test [new file with mode: 0644]
test/fixtures/tags/for/context.test [new file with mode: 0644]
test/fixtures/tags/for/else.test [new file with mode: 0644]
test/fixtures/tags/for/keys.test [new file with mode: 0644]
test/fixtures/tags/for/keys_and_values.test [new file with mode: 0644]
test/fixtures/tags/for/loop_context.test [new file with mode: 0644]
test/fixtures/tags/for/loop_context_local.test [new file with mode: 0644]
test/fixtures/tags/for/nested_else.test [new file with mode: 0644]
test/fixtures/tags/for/objects.test [new file with mode: 0644]
test/fixtures/tags/for/recursive.test [new file with mode: 0644]
test/fixtures/tags/for/values.test [new file with mode: 0644]
test/fixtures/tags/if/basic.test [new file with mode: 0644]
test/fixtures/tags/if/expression.test [new file with mode: 0644]
test/fixtures/tags/include/basic.test [new file with mode: 0644]
test/fixtures/tags/include/expression.test [new file with mode: 0644]
test/fixtures/tags/inheritance/basic.test [new file with mode: 0644]
test/fixtures/tags/inheritance/parent.test [new file with mode: 0644]
test/lib/Twig_Loader_Var.php [new file with mode: 0644]
test/unit/Twig/AutoloaderTest.php [new file with mode: 0644]
test/unit/Twig/Extension/Sandbox.php [new file with mode: 0644]
test/unit/integrationTest.php [new file with mode: 0644]