| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | [ticket/11662] Typos: occured -> occurred | Andreas Fischer | 2013-07-12 | 1 | -1/+1 |
| | | | | | PHPBB3-11662 | ||||
| * | [feature/bootstrap-dic] Bootstrap container from config.php | Igor Wiedler | 2013-07-11 | 1 | -1/+4 |
| | | | | | PHPBB3-11651 | ||||
| * | [feature/twig] Fix template test case | Nathaniel Guse | 2013-07-02 | 1 | -1/+1 |
| | | | | | PHPBB3-11598 | ||||
| * | [feature/twig] Remove resource locator dependency from template | Nathaniel Guse | 2013-07-01 | 1 | -1/+1 |
| | | | | | PHPBB3-11598 | ||||
| * | [feature/twig] Fix includephp_from_subdir_test.php | Nathaniel Guse | 2013-07-01 | 1 | -2/+6 |
| | | | | | PHPBB3-11598 | ||||
| * | [feature/twig] Fix template_test.php | Nathaniel Guse | 2013-07-01 | 1 | -11/+13 |
| | | | | | | | | Various tests were broken completely, and some things such as whitespace changed with Twig PHPBB3-11598 | ||||
| * | [feature/twig] Going back to Twig's handling of cache file names for now | Nathaniel Guse | 2013-06-25 | 1 | -1/+1 |
| | | | | | | | My method was not working correctly, will work on it more later. PHPBB3-11598 | ||||
| * | [feature/twig] Working on fixing tests | Nathan Guse | 2013-06-24 | 1 | -32/+3 |
| | | | | | PHPBB3-11598 | ||||
| * | [feature/twig] Use phpbb_template_twig in tests | Nathan Guse | 2013-06-12 | 1 | -1/+1 |
| | | | | | | | Replace all new phpbb_template( with new phpbb_template_twig( PHPBB3-11598 | ||||
| * | [feature/template-events] Convert a single style name to array of them. | Oleg Pudeyev | 2012-11-17 | 1 | -1/+1 |
| | | | | | | | | This allows template code to know the entire style hierarchy for templates being rendered. PHPBB3-9550 | ||||
| * | [ticket/10933] Dependency inject template context. | Oleg Pudeyev | 2012-11-02 | 1 | -1/+1 |
| | | | | | PHPBB3-10933 | ||||
| * | [ticket/10973] Drop all require_once for mocks. Use autoloading. | Andreas Fischer | 2012-07-08 | 1 | -1/+0 |
| | | | | | PHPBB3-10973 | ||||
| * | [ticket/10800] Changing template paths in tests | Vjacheslav Trushkin | 2012-04-29 | 1 | -1/+3 |
| | | | | | | | Changing template paths in tests from absolute to relative PHPBB3-10800 | ||||
| * | [ticket/10756] Renaming phpbb_style_template to phpbb_template | Vjacheslav Trushkin | 2012-04-19 | 1 | -1/+1 |
| | | | | | | | Renaming phpbb_style_template to phpbb_template PHPBB3-10756 | ||||
| * | [ticket/10756] Removing path provider from template class | Vjacheslav Trushkin | 2012-04-19 | 1 | -1/+1 |
| | | | | | | | Removing path provider from template class because it is not used by template class PHPBB3-10756 | ||||
| * | [feature/merging-style-components] Fix for unit tests | Vjacheslav Trushkin | 2012-03-31 | 1 | -1/+1 |
| | | | | | | | Fixing typo in template unit tests PHPBB3-10632 | ||||
| * | [feature/merging-style-components] Moving template initialization out of style | Vjacheslav Trushkin | 2012-03-31 | 1 | -2/+2 |
| | | | | | | | Moving template initialization out of style constructor PHPBB3-10632 | ||||
| * | [feature/merging-style-components] Initializing locator and provider separately | Vjacheslav Trushkin | 2012-03-31 | 1 | -1/+5 |
| | | | | | | | Moving locator and path provider initialization out of style class PHPBB3-10632 | ||||
| * | [feature/merging-style-components] Updating test cases | Vjacheslav Trushkin | 2012-03-15 | 1 | -1/+1 |
| | | | | | | | Updating code in test cases for new template classes. PHPBB3-10632 | ||||
| * | [feature/merging-style-components] Creating style class | Vjacheslav Trushkin | 2012-03-15 | 1 | -5/+3 |
| | | | | | | | Creating phpbb_style class, changing template initialization to style initialization PHPBB3-10632 | ||||
| * | [feature/merging-style-components] Renaming template classes | Vjacheslav Trushkin | 2012-03-14 | 1 | -3/+3 |
| | | | | | | | Changing template classes prefixes from phpbb_template to phpbb_style (for classes that will work with styles) or phpbb_style_template (for classes that are specific to templates) PHPBB3-10632 | ||||
| * | [ticket/10685] Refactor template test defaults for php 5.4 compatibility. | Oleg Pudeyev | 2012-03-06 | 1 | -3/+8 |
| | | | | | PHPBB3-10685 | ||||
| * | [ticket/9916] Updating license in non-distributed files | Unknown | 2012-01-02 | 1 | -1/+1 |
| | | | | | PHPBB3-9916 | ||||
| * | [feature/extension-manager] Refactoring the structure of extension provider | Nils Adermann | 2011-09-29 | 1 | -1/+1 |
| | | | | | PHPBB3-10323 | ||||
| * | [feature/extension-manager] Add support for templates in extensions. | Nils Adermann | 2011-09-29 | 1 | -1/+4 |
| | | | | | | | | | | | | | | | | | | | This commit adds a template path provider to separate the process of locating (cached) paths in extensions from the template engine. The locator is supplied with a list of paths from the path provider. Admin templates can now be created in ext/<ext>/adm/style/ and regular templates go into ext/<ext>/styles/<style>/template/. Extension templates override regular templates. So if an extension supplies a file with a name used in phpBB, the extension's file will be used. A side-effect of this commit: Locator and Provider are now able to deal with arbitrary levels of template inheritance. So we can expose this through phpbb_template if we choose to, and allow styles to inherit from inherited styles. PHPBB3-10323 | ||||
| * | Merge branch 'develop-olympus' into develop | Igor Wiedler | 2011-09-05 | 1 | -2/+3 |
| | | | | | | | | | * develop-olympus: [ticket/10354] Include cache directory path in unwritable message. Conflicts: tests/template/template_test.php | ||||
| * | [ticket/10355] Correctly end output buffering in template tests. | Oleg Pudeyev | 2011-09-05 | 1 | -2/+16 |
| | | | | | | | This code was copied verbatim from develop-olympus. PHPBB3-10355 | ||||
| * | [feature/template-engine] Dependency inject locator into template. | Oleg Pudeyev | 2011-08-09 | 1 | -1/+3 |
| | | | | | PHPBB3-9726 | ||||
| * | [feature/template-engine] Remove $include_once argument of display() | Igor Wiedler | 2011-07-10 | 1 | -1/+1 |
| | | | | | PHPBB3-9726 | ||||
| * | [feature/template-engine] Refactor $config dependency out of the filter | Igor Wiedler | 2011-07-10 | 1 | -6/+10 |
| | | | | | | | | | | | The template stream filter no longer depends on the $config global. Instead it uses a 'allow_php' param that is passed via stream_bucket_append's last argument. Tests also adjusted. PHPBB3-9726 | ||||
| * | [feature/template-engine] Move template.php to includes/template | Igor Wiedler | 2011-07-10 | 1 | -1/+0 |
| | | | | | | | This allows making use of autoloading. PHPBB3-9726 | ||||
| * | [feature/template-engine] Added a test for inclusion of php files from subdir. | Oleg Pudeyev | 2011-05-14 | 1 | -0/+113 |
| PHPBB3-9726 | |||||
