This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Templating
Fabien Potencier 1b2619078d Merge branch '2.2'
* 2.2:
  Fix default value handling for multi-value options
  [HttpKernel] truncate profiler token to 6 chars (see #7665)
  Disabled APC on Travis for PHP 5.5+ as it is not available
  [HttpFoundation] do not use server variable PATH_INFO because it is already decoded and thus symfony is fragile to double encoding of the path
  Fix download over SSL using IE < 8 and binary file response
  [Console] Fix merging of application definition, fixes #7068, replaces #7158
  [HttpKernel] fixed the Kernel when the ClassLoader component is not available (closes #7406)
  fixed output of bag values
  [Yaml] improved boolean naming ($notEOF -> !$EOF)
  [Yaml] fixed handling an empty value
  [Routing][XML Loader] Add a possibility to set a default value to null
  [Console] fixed handling of "0" input on ask
  The /e modifier for preg_replace() is deprecated in PHP 5.5; replace with preg_replace_callback()
  fixed handling of "0" input on ask
  [HttpFoundation] Fixed bug in key searching for NamespacedAttributeBag
  [Form] DateTimeToRfc3339Transformer use proper transformation exteption in reverse transformation
  Update PhpEngine.php
  [PropertyAccess] Add objectives to pluralMap
  [Security] Removed unused var
  [HttpFoundation] getClientIp is fixed.

Conflicts:
	src/Symfony/Component/Console/Tests/Command/CommandTest.php
	src/Symfony/Component/Console/Tests/Input/ArgvInputTest.php
	src/Symfony/Component/HttpFoundation/Request.php
	src/Symfony/Component/HttpKernel/Kernel.php
2013-04-17 07:31:37 +02:00
..
Asset Nsdocblocks 2012-10-20 09:10:30 +02:00
Helper Fixed most of the docblocks/unused namespaces 2012-12-19 08:09:49 +01:00
Loader Fixed most of the docblocks/unused namespaces 2012-12-19 08:09:49 +01:00
Storage [Templating] tagged the public @api 2011-07-20 10:27:25 +02:00
Tests made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
.gitignore made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
CHANGELOG.md [Templating] added CHANGELOG 2012-04-26 20:04:28 +02:00
composer.json updated the branch alias in composer files 2013-01-31 22:39:01 +01:00
DebuggerInterface.php fixed CS 2012-07-09 14:54:20 +02:00
DelegatingEngine.php CS Fixes - Replaced "array of type" by "Type[]" in PHPDoc block 2012-11-19 13:58:52 +01:00
EngineInterface.php fixed CS 2012-07-09 14:54:20 +02:00
LICENSE updated license year 2013-01-04 17:59:43 +01:00
PhpEngine.php Merge branch '2.1' into 2.2 2013-04-17 07:27:14 +02:00
phpunit.xml.dist made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
README.md made usage of Composer autoloader for subtree-split unit tests 2012-11-09 14:10:06 +01:00
StreamingEngineInterface.php CS Fixes - Replaced "array of type" by "Type[]" in PHPDoc block 2012-11-19 13:58:52 +01:00
TemplateNameParser.php [Templating] tagged the public @api 2011-07-20 10:27:25 +02:00
TemplateNameParserInterface.php fixed CS 2012-07-09 14:54:20 +02:00
TemplateReference.php fixed phpdoc @param alignment 2012-05-15 22:19:31 +02:00
TemplateReferenceInterface.php fixed CS 2012-07-09 14:54:20 +02:00

Templating Component

Templating provides all the tools needed to build any kind of template system.

It provides an infrastructure to load template files and optionally monitor them for changes. It also provides a concrete template engine implementation using PHP with additional tools for escaping and separating templates into blocks and layouts.

Resources

You can run the unit tests with the following command:

$ cd path/to/Symfony/Component/Templating/
$ composer.phar install --dev
$ phpunit