Re: [Components] Rgression bug in template

2008-01-07 Thread Raymond Bosman
On Friday 04 January 2008 14:43, Kore Nordmann wrote: Hi list, By updateing the components in a personal project I found a regression in the tempalte componente between the versions 1.1 and 1.2, and opened an issue for this: http://issues.ez.no/12322 I wonder if this is really a bug, or a

[svn-components] 6835 - in /trunk/Archive: src/archive_mime.php tests/archive_test.php

2007-11-27 Thread Raymond Bosman
Author: rb Date: Tue Nov 27 16:18:19 2007 New Revision: 6835 Log: - Fixed issue #012044: strange long link file. The problem was that the wrong TAR type was recognized. (Ustar instead of GNU tar). Modified: trunk/Archive/src/archive_mime.php trunk/Archive/tests/archive_test.php

[svn-components] 6836 - in /trunk/Archive/tests/data: gnu_tar.tar gnu_tar2.tar

2007-11-27 Thread Raymond Bosman
Author: rb Date: Tue Nov 27 16:25:32 2007 New Revision: 6836 Log: - Forgot the data files for the new tests. Added: trunk/Archive/tests/data/gnu_tar.tar (with props) trunk/Archive/tests/data/gnu_tar2.tar (with props) Added: trunk/Archive/tests/data/gnu_tar.tar

[svn-components] 6838 - /trunk/Archive/ChangeLog

2007-11-27 Thread Raymond Bosman
Author: rb Date: Tue Nov 27 16:29:59 2007 New Revision: 6838 Log: - Updated changelog Modified: trunk/Archive/ChangeLog Modified: trunk/Archive/ChangeLog == --- trunk/Archive/ChangeLog [iso-8859-1] (original) +++

Re: [Components] Bumping PHP version requirement to 5.2

2007-09-10 Thread Raymond Bosman
On Thursday 06 September 2007 15:38, Raymond Bosman wrote: Opinions? Yes. Some nasty bugs are fixed in 5.2.x and AFAIK those bugfixes are not backported to the 5.1 branch. In that case, let's 'bump' the PHP requirement to version 5.2. I changed my mind, let's keep 5.1 work as good

[svn-components] 6005 - in /trunk/Template/src: configuration.php parsers/tst_to_ast/implementations/tst_to_ast_cached_transformer.php template.php

2007-09-07 Thread Raymond Bosman
Author: rb Date: Fri Sep 7 11:06:35 2007 New Revision: 6005 Log: - CacheManager and Locator settings are NULL when unset. Used to be false. Modified: trunk/Template/src/configuration.php trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_cached_transformer.php

[svn-components] 6004 - /trunk/Template/src/configuration.php

2007-09-07 Thread Raymond Bosman
Author: rb Date: Fri Sep 7 09:46:51 2007 New Revision: 6004 Log: - Made it possible to unset the locator and cacheManager in the configuration, by setting it to false. Modified: trunk/Template/src/configuration.php Modified: trunk/Template/src/configuration.php

[svn-components] 6003 - in /trunk/Template: src/configuration.php src/template.php tests/template_test.php

2007-09-06 Thread Raymond Bosman
Author: rb Date: Thu Sep 6 21:36:18 2007 New Revision: 6003 Log: - Added an option to compile the templates only (executeTemplate == false). Modified: trunk/Template/src/configuration.php trunk/Template/src/template.php trunk/Template/tests/template_test.php Modified:

Re: [Components] Template: includes and use variables

2007-09-03 Thread Raymond Bosman
Hi Thomas, I've already discussed this method with Raymond some months ago and he said, that it may be a bit slower, but I (with my limited experience) consider it a much cleaner approach then putting any logic inside the template. The issue we are discussing is different. If I understand

[svn-components] 5985 - /trunk/Template/tests/template_test.php

2007-09-03 Thread Raymond Bosman
Author: rb Date: Mon Sep 3 13:45:18 2007 New Revision: 5985 Log: - Added a test that when a template is processed twice, the same {use} variables are sent. Modified: trunk/Template/tests/template_test.php Modified: trunk/Template/tests/template_test.php

Re: [Components] Template: includes and use variables

2007-08-31 Thread Raymond Bosman
On Friday 31 August 2007 10:31, Tobias Schlitt wrote: On 08/30/2007 02:23 PM Raymond Bosman wrote: Solution 6: Struct like variable passed on -- The variables send to the first template can be packed in one structure. For example the user

[svn-components] 5980 - /trunk/Template/docs/functions/string.txt

2007-08-30 Thread Raymond Bosman
Author: rb Date: Thu Aug 30 17:01:07 2007 New Revision: 5980 Log: - Updated documentation. Modified: trunk/Template/docs/functions/string.txt Modified: trunk/Template/docs/functions/string.txt == ---

Re: [Components] Template: includes and use variables

2007-08-29 Thread Raymond Bosman
Problem --- In a system with lots of nested templates or template overrides the amount of variables that need to be forwarded to each template may grow out of proportion. Didn't we invent this mechanism exactly to make the available variables more user visible? And wouldn't all

Re: [Components] Template: includes and use variables

2007-08-29 Thread Raymond Bosman
On Wednesday 29 August 2007 16:05, Frederik Holljen wrote: On Wednesday 29 August 2007, Kore Nordmann wrote: On Wed, 2007-08-29 at 13:50 +0200, Raymond Bosman wrote: 1) Use Structs / Objects You may combine lots of information in some structs or objects representing logical

Re: [Components] Template: includes and use variables

2007-08-29 Thread Raymond Bosman
Personally, I compare each template with a function. The {use} variables are the function arguments. I think all the solutions we proposed are used in one or another way in a programming language. Yes, this is what I do as well. Can you give me examples of the original three proposals in

Re: [Components] Template: includes and use variables

2007-08-29 Thread Raymond Bosman
On Wednesday 29 August 2007 17:08, Frederik Holljen wrote: On Wednesday 29 August 2007, Raymond Bosman wrote: Personally, I compare each template with a function. The {use} variables are the function arguments. I think all the solutions we proposed are used in one or another way

[svn-components] 5946 - in /trunk/Template: ./ src/ src/parsers/tst_to_ast/implementations/ tests/ tests/regression_tests/use/incorrect/

2007-08-21 Thread Raymond Bosman
Author: rb Date: Tue Aug 21 14:08:41 2007 New Revision: 5946 Log: - Added a better error message when an external (use) variable is not given. Removed: trunk/Template/tests/regression_tests/use/incorrect/forgot_send.in trunk/Template/tests/regression_tests/use/incorrect/forgot_send.out

[svn-components] 5947 - /trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php

2007-08-21 Thread Raymond Bosman
Author: rb Date: Tue Aug 21 14:15:09 2007 New Revision: 5947 Log: - Caller filename was wrong. Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php

[svn-components] 5951 - /trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php

2007-08-21 Thread Raymond Bosman
Author: rb Date: Tue Aug 21 15:59:53 2007 New Revision: 5951 Log: - The path names should be loaded at run-time not compile-time. Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php Modified:

[svn-components] 5928 - in /trunk/Template: src/functions/ src/structs/ tests/custom_blocks/ tests/regression_tests/custom_functions/correct/

2007-08-17 Thread Raymond Bosman
Author: rb Date: Fri Aug 17 11:28:29 2007 New Revision: 5928 Log: - Custom functions can have a variable amount of arguments when the option variableArgumentList is enabled. Added: trunk/Template/tests/regression_tests/custom_functions/correct/variable_argument_list.in (with props)

[svn-components] 5923 - in /trunk/Template: src/ src/parsers/source_to_tst/implementations/ src/parsers/tst_to_ast/implementations/ src/syntax_trees/tst/nodes/ tests/regression_tests/capture/ tests/re

2007-08-16 Thread Raymond Bosman
Author: rb Date: Thu Aug 16 11:08:50 2007 New Revision: 5923 Log: - Added {capture $var} ... {/capture} to assign everything inside that block to the given variable ($var in this case). Added: trunk/Template/src/parsers/source_to_tst/implementations/capture.php (with props)

[svn-components] 5922 - in /trunk/Template/src: configuration.php interfaces/locator.php template.php template_autoload.php

2007-08-15 Thread Raymond Bosman
Author: rb Date: Wed Aug 15 15:44:25 2007 New Revision: 5922 Log: - Added locator support. Added: trunk/Template/src/interfaces/locator.php (with props) Modified: trunk/Template/src/configuration.php trunk/Template/src/template.php trunk/Template/src/template_autoload.php

[svn-components] 5911 - in /trunk/Template: src/parsers/tst_to_ast/implementations/ tests/regression_tests/custom_functions/incorrect/

2007-08-14 Thread Raymond Bosman
Author: rb Date: Tue Aug 14 11:13:27 2007 New Revision: 5911 Log: - Fixed an issue that the wrong error message was given when: (a) an unknown function is called and (b) the expression with that function uses one or more binary operators. Added:

Re: [Components] File class/component

2007-08-13 Thread Raymond Bosman
Not really true. If we make the ezcFile class extend ezcBaseFile and the users only update the File component, and not Base, their code will be broken as the class that is extended does not exist yet. But that is for all the components. Template needs to have the latest version of Base as

[svn-components] 5885 - /trunk/Template/docs/tutorial.txt

2007-08-13 Thread Raymond Bosman
Author: rb Date: Mon Aug 13 11:04:33 2007 New Revision: 5885 Log: - Small improvement in the documentation. Modified: trunk/Template/docs/tutorial.txt Modified: trunk/Template/docs/tutorial.txt == ---

Re: [Components] [PATCH] fixed bug #11228

2007-08-09 Thread Raymond Bosman
I've discussed this (briefly) with Raymond, and it would of course better fit in the File component. However, if we do that we'd need to make Template (and perhaps others later as well) dependent on File which I don't really like as we strive for as little depencies as possible. So I see a

[svn-components] 5807 - in /trunk/Template: ./ src/parsers/tst_to_ast/implementations/ src/structs/ tests/custom_blocks/ tests/regression_tests/custom_blocks/correct/

2007-08-02 Thread Raymond Bosman
Author: rb Date: Thu Aug 2 14:30:27 2007 New Revision: 5807 Log: - Made the TemplateObject available in CustomBlocks. Thanks to Felix Weis for the patch. Added: trunk/Template/tests/regression_tests/custom_blocks/correct/template_object.in (with props)

[svn-components] 5533 - in /trunk/Template: src/syntax_trees/tst/nodes/ tests/regression_tests/

2007-06-22 Thread Raymond Bosman
Author: rb Date: Fri Jun 22 13:12:03 2007 New Revision: 5533 Log: - Fixed more doc blocks - Changed the expected output of a test: {1.0e5} should be 10 and not 1.0E+5 Modified: trunk/Template/src/syntax_trees/tst/nodes/delimiter.php

[svn-components] 5536 - /trunk/Template/tests/template_test.php

2007-06-22 Thread Raymond Bosman
Author: rb Date: Fri Jun 22 13:32:04 2007 New Revision: 5536 Log: - Fixed two tests that failed when run on a 64 bit machine. Modified: trunk/Template/tests/template_test.php Modified: trunk/Template/tests/template_test.php

[svn-components] 5541 - in /trunk/Template/src: compiled_code.php source_code.php

2007-06-22 Thread Raymond Bosman
Author: rb Date: Fri Jun 22 15:40:36 2007 New Revision: 5541 Log: - Fixed properties. Modified: trunk/Template/src/compiled_code.php trunk/Template/src/source_code.php Modified: trunk/Template/src/compiled_code.php

[svn-components] 5484 - in /trunk/Template/src: exceptions/ functions/ interfaces/ parsers/ast_to_ast/implementations/ parsers/source_to_tst/interfaces/ syntax_trees/ast/interfaces/ syntax_trees/ast/n

2007-06-20 Thread Raymond Bosman
Author: rb Date: Wed Jun 20 13:57:01 2007 New Revision: 5484 Log: - Fixed documentation Modified: trunk/Template/src/exceptions/compilation_failed_exception.php trunk/Template/src/exceptions/custom_block_exception.php trunk/Template/src/exceptions/file_not_writeable_exception.php

[svn-components] 5485 - in /trunk/Template/src: parsers/tst_to_ast/implementations/tst_to_ast_transformer.php parsers/tst_to_tst/implementations/tst_walker.php syntax_trees/tst/interfaces/modifying_op

2007-06-20 Thread Raymond Bosman
Author: rb Date: Wed Jun 20 15:08:13 2007 New Revision: 5485 Log: - More documentation fixes. Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_transformer.php trunk/Template/src/parsers/tst_to_tst/implementations/tst_walker.php

[svn-components] 5442 - /trunk/Template/src/interfaces/location.php

2007-06-15 Thread Raymond Bosman
Author: rb Date: Fri Jun 15 14:05:09 2007 New Revision: 5442 Log: - Added documentation Modified: trunk/Template/src/interfaces/location.php Modified: trunk/Template/src/interfaces/location.php == ---

[svn-components] 5426 - in /trunk/Template: src/exceptions/file_not_writeable_exception.php src/parsers/ast_to_php/implementations/php_generator.php tests/template_test.php

2007-06-14 Thread Raymond Bosman
Author: rb Date: Thu Jun 14 12:39:53 2007 New Revision: 5426 Log: An non existing exception was thrown when the compiled template was not writeable. The TemplateFileNotWriteableException exception should have been thrown inside the php code generator. Added two tests for this. Modified:

[svn-components] 5335 - in /trunk/Template: ChangeLog docs/tutorial.txt

2007-05-31 Thread Raymond Bosman
Author: rb Date: Thu May 31 12:26:42 2007 New Revision: 5335 Log: - Updated the Changelog - Updated the tutorial Modified: trunk/Template/ChangeLog trunk/Template/docs/tutorial.txt Modified: trunk/Template/ChangeLog

[svn-components] 5324 - in /trunk/Template: ChangeLog src/parsers/tst_to_ast/implementations/tst_to_ast_cached_transformer.php

2007-05-30 Thread Raymond Bosman
Author: rb Date: Wed May 30 21:21:59 2007 New Revision: 5324 Log: - Fixed issue #10075: Invalid cache created when the Customblock or CustomFunction produces a PHP error. Modified: trunk/Template/ChangeLog

[svn-components] r5252 - /trunk/Template/docs/tutorial.txt

2007-05-22 Thread Raymond Bosman
Author: rb Date: Tue May 22 10:22:29 2007 New Revision: 5252 Log: - Hope this explains enough about permissions to solve issue 10786. Modified: trunk/Template/docs/tutorial.txt Modified: trunk/Template/docs/tutorial.txt

[svn-components] r5254 - /trunk/Archive/ChangeLog

2007-05-22 Thread Raymond Bosman
Author: rb Date: Tue May 22 10:34:39 2007 New Revision: 5254 Log: - Updated Changelog Modified: trunk/Archive/ChangeLog Modified: trunk/Archive/ChangeLog == --- trunk/Archive/ChangeLog [iso-8859-1] (original) +++

[svn-components] r5219 - in /trunk/Archive: src/archive_entry.php tests/tar/ustar_tar_test.php

2007-05-15 Thread Raymond Bosman
Author: rb Date: Tue May 15 11:17:01 2007 New Revision: 5219 Log: - This may fix issue #10658. Modified: trunk/Archive/src/archive_entry.php trunk/Archive/tests/tar/ustar_tar_test.php Modified: trunk/Archive/src/archive_entry.php

[svn-components] r5220 - /trunk/Archive/ChangeLog

2007-05-15 Thread Raymond Bosman
Author: rb Date: Tue May 15 11:22:06 2007 New Revision: 5220 Log: - Fixed issue #10658: Failures in Archive test suite. Modified: trunk/Archive/ChangeLog Modified: trunk/Archive/ChangeLog == ---

[svn-components] r5222 - /trunk/Archive/src/zip/zip.php

2007-05-15 Thread Raymond Bosman
Author: rb Date: Tue May 15 12:04:45 2007 New Revision: 5222 Log: - Possible fix for crc32 on a 64 bits machine. Modified: trunk/Archive/src/zip/zip.php Modified: trunk/Archive/src/zip/zip.php == ---

Re: [svn-components] r5222 - /trunk/Archive/src/zip/zip.php

2007-05-15 Thread Raymond Bosman
On Tuesday 15 May 2007 10:09, Kore Nordmann wrote: On Tue, 2007-05-15 at 10:04 +, Raymond Bosman wrote: Author: rb Date: Tue May 15 12:04:45 2007 New Revision: 5222 Log: - Possible fix for crc32 on a 64 bits machine. Modified: trunk/Archive/src/zip/zip.php

[svn-components] r5214 - /trunk/Debug/src/writers/memory_writer.php

2007-05-14 Thread Raymond Bosman
Author: rb Date: Mon May 14 14:08:21 2007 New Revision: 5214 Log: - More readable way. Modified: trunk/Debug/src/writers/memory_writer.php Modified: trunk/Debug/src/writers/memory_writer.php == ---

[svn-components] r5215 - /trunk/Archive/src/tar/headers/tar_v7.php

2007-05-14 Thread Raymond Bosman
Author: rb Date: Mon May 14 14:21:10 2007 New Revision: 5215 Log: - New checksum comparison. This may fix the problem with 64 bits machines. Modified: trunk/Archive/src/tar/headers/tar_v7.php Modified: trunk/Archive/src/tar/headers/tar_v7.php

[svn-components] r5216 - /trunk/Debug/src/debug.php

2007-05-14 Thread Raymond Bosman
Author: rb Date: Mon May 14 14:33:29 2007 New Revision: 5216 Log: - Fixed doc. Modified: trunk/Debug/src/debug.php Modified: trunk/Debug/src/debug.php == --- trunk/Debug/src/debug.php [iso-8859-1] (original) +++

Re: [svn-components] r5188 - /trunk/Template/docs/tutorial.txt

2007-05-11 Thread Raymond Bosman
On Friday 11 May 2007 07:08, Derick Rethans wrote: On Thu, 10 May 2007, Raymond Bosman wrote: Author: rb Date: Thu May 10 17:52:18 2007 New Revision: 5188 Log: - Grammar fix Should we ask Peter to have a look at this one again? I need to work a bit more on the caching part. Peter

Re: [svn-components] r5188 - /trunk/Template/docs/tutorial.txt

2007-05-11 Thread Raymond Bosman
Okay, then I think we should ask Peter to look over the whole thing after we released RC1, so that there is some time for him to attend to this before the release. In order for that to work, we would need to ask him now about it though, and it also means that you'd have to finish it by the

[svn-components] r5207 - /trunk/Template/docs/tutorial.txt

2007-05-11 Thread Raymond Bosman
Author: rb Date: Fri May 11 16:12:46 2007 New Revision: 5207 Log: - Grammar fixes. Modified: trunk/Template/docs/tutorial.txt Modified: trunk/Template/docs/tutorial.txt == --- trunk/Template/docs/tutorial.txt

[svn-components] [eZComponents: Trunk] r5179 - /trunk/Template/docs/tutorial.txt

2007-05-10 Thread Raymond Bosman
Author: rb Date: Thu May 10 11:28:33 2007 New Revision: 5179 Log: - Added information about caching. Needs to be re-read, spell checked, etc. This commit serves as a backup. Modified: trunk/Template/docs/tutorial.txt Modified: trunk/Template/docs/tutorial.txt

[svn-components] 5055 - in trunk/Template: src src/parsers/source_to_tst/implementations src/parsers/tst_to_ast/implementations src/parsers/tst_to_tst/implementations tests tests/templates [eZComponen

2007-05-04 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-05-04 16:20:26 +0200 (Fri, 04 May 2007) New Revision: 5055 Log: - Cache keys can contain expressions. - The {cache_template} will cache everything under this statement; allowing expressions, variable declaration, etc. outside the cache. Added: trunk

[svn-components] 5056 - trunk/Template/docs [eZComponents: Trunk]

2007-05-04 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-05-04 16:49:02 +0200 (Fri, 04 May 2007) New Revision: 5056 Log: - Added links to more information. Modified: trunk/Template/docs/syntax.txt Modified: trunk/Template/docs/syntax.txt === --- trunk

[svn-components] 5057 - trunk/Template/docs [eZComponents: Trunk]

2007-05-04 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-05-04 16:51:20 +0200 (Fri, 04 May 2007) New Revision: 5057 Log: - Removed the 'old' tutorial. Next commit will replace this tutorial. Removed: trunk/Template/docs/tutorial.txt Deleted: trunk/Template/docs/tutorial.txt

[svn-components] 4983 - trunk/Template/src/parsers/tst_to_ast/implementations [eZComponents: Trunk]

2007-05-03 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-05-03 13:21:20 +0200 (Thu, 03 May 2007) New Revision: 4983 Log: - Code cleanup Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_cached_transformer.php Modified: trunk/Template/src/parsers/tst_to_ast/implementations

[svn-components] 4939 - in trunk/Template: . src src/parsers/ast_to_php/implementations src/parsers/source_to_tst/implementations src/parsers/tst_to_ast/implementations src/syntax_trees/ast/nodes src/

2007-04-27 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-27 16:02:52 +0200 (Fri, 27 Apr 2007) New Revision: 4939 Log: - Fixed issue #10036: Invalid generated PHP code cannot be renewed without deleting the generated template. - Fixed issue #10035: Block comments mixed with Javascript comments generates wrong

[svn-components] 4866 - trunk/Archive/src/zip [eZComponents: Trunk]

2007-04-12 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-12 13:25:59 +0200 (Thu, 12 Apr 2007) New Revision: 4866 Log: - Check if data is valid. - Added an exception. Modified: trunk/Archive/src/zip/zip.php Modified: trunk/Archive/src/zip/zip.php

[svn-components] 4849 - trunk/Template/docs [eZComponents: Trunk]

2007-04-11 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-11 11:51:46 +0200 (Wed, 11 Apr 2007) New Revision: 4849 Log: - Documented named parameters, static blocks and sending template object. Modified: trunk/Template/docs/syntax.txt Modified: trunk/Template/docs/syntax.txt

[svn-components] 4850 - trunk/Template/docs [eZComponents: Trunk]

2007-04-11 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-11 13:17:33 +0200 (Wed, 11 Apr 2007) New Revision: 4850 Log: - Documented the Location Object. Modified: trunk/Template/docs/syntax.txt Modified: trunk/Template/docs/syntax.txt === --- trunk

[svn-components] 4843 - trunk/Template/tests [eZComponents: Trunk]

2007-04-10 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-10 16:09:05 +0200 (Tue, 10 Apr 2007) New Revision: 4843 Log: - Forgot to add this file. Added: trunk/Template/tests/override.php Added: trunk/Template/tests/override.php === --- trunk

[svn-components] 4807 - trunk/Template/docs [eZComponents: Trunk]

2007-04-04 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-04-04 16:22:02 +0200 (Wed, 04 Apr 2007) New Revision: 4807 Log: - Updated documentation. Modified: trunk/Template/docs/syntax.txt trunk/Template/docs/tutorial_variable_send_receive.ezt trunk/Template/docs/tutorial_variable_send_receive.php Modified

[svn-components] 4787 - in trunk/Template: . src src/parsers/source_to_tst/implementations tests/regression_tests/array_fetch/correct tests/regression_tests/expressions/incorrect tests/regression_test

2007-03-30 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-30 14:23:35 +0200 (Fri, 30 Mar 2007) New Revision: 4787 Log: - Fixed issue 10261: Template: {$address-_failures[$propertyName]} Added: trunk/Template/tests/regression_tests/array_fetch/correct/from_property.in trunk/Template/tests/regression_tests

[svn-components] 4780 - in trunk/Archive: src src/file src/zip src/zip/headers tests/data tests/zip [eZComponents: Trunk]

2007-03-29 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-29 12:21:05 +0200 (Thu, 29 Mar 2007) New Revision: 4780 Log: - Read the central directory headers first. This prevent problems when the archived file size is not specified in the local header. A disadvantage is that the end central directory header

[svn-components] 4781 - trunk/Archive [eZComponents: Trunk]

2007-03-29 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-29 13:02:46 +0200 (Thu, 29 Mar 2007) New Revision: 4781 Log: - Updated changelog Modified: trunk/Archive/ChangeLog Modified: trunk/Archive/ChangeLog === --- trunk/Archive/ChangeLog 2007

[svn-components] 4766 - in trunk/Template: src src/functions src/interfaces src/parsers/tst_to_ast/implementations src/structs tests tests/custom_blocks tests/regression_tests/custom_functions/correct

2007-03-20 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-20 11:48:10 +0100 (Tue, 20 Mar 2007) New Revision: 4766 Log: - Added interfaces for the template override system. - Custom functions can access the template object. Added: trunk/Template/src/interfaces/location.php trunk/Template/tests/regression_tests

[svn-components] 4719 - in trunk/Template: src src/parsers/tst_to_ast/implementations tests [eZComponents: Trunk]

2007-03-06 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-06 15:04:55 +0100 (Tue, 06 Mar 2007) New Revision: 4719 Log: - Added the option to disable caching. Modified: trunk/Template/src/compiled_code.php trunk/Template/src/configuration.php trunk/Template/src/parsers/tst_to_ast/implementations

[svn-components] 4713 - in trunk/Template: src/parsers/tst_to_ast/implementations src/parsers/tst_to_tst/implementations tests tests/templates [eZComponents: Trunk]

2007-03-05 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-03-05 14:48:48 +0100 (Mon, 05 Mar 2007) New Revision: 4713 Log: - Fixed some issues with the cache_blocks. Added: trunk/Template/tests/templates/cache_block_with_local_keys.tpl trunk/Template/tests/templates/show_users_cache_block.ezt Modified: trunk

[svn-components] 4678 - in trunk/Template: src src/parsers/source_to_tst/implementations src/parsers/tst_to_ast/implementations src/parsers/tst_to_tst/implementations tests tests/templates [eZComponen

2007-02-23 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-23 11:26:50 +0100 (Fri, 23 Feb 2007) New Revision: 4678 Log: - Refactored cache code. - Added some {cache_block} code. (See if it is easy to enable) Modified: trunk/Template/src/parser.php trunk/Template/src/parsers/source_to_tst/implementations

[svn-components] 4661 - trunk/Template/src [eZComponents: Trunk]

2007-02-16 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-16 14:45:57 +0100 (Fri, 16 Feb 2007) New Revision: 4661 Log: - Not valid. Modified: trunk/Template/src/template.php Modified: trunk/Template/src/template.php === --- trunk/Template/src

[svn-components] 4662 - in trunk/Template/tests: . templates [eZComponents: Trunk]

2007-02-16 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-16 15:11:53 +0100 (Fri, 16 Feb 2007) New Revision: 4662 Log: - Added missing files. Added: trunk/Template/tests/fetch.php trunk/Template/tests/templates/cache_block_with_begin_text.tpl Added: trunk/Template/tests/fetch.php

[svn-components] 4656 - trunk/Template/tests/templates [eZComponents: Trunk]

2007-02-15 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-15 12:16:36 +0100 (Thu, 15 Feb 2007) New Revision: 4656 Log: - Forgot the test file. Added: trunk/Template/tests/templates/cache_wrong_key.tpl Added: trunk/Template/tests/templates/cache_wrong_key.tpl

[svn-components] 4659 - trunk/Template/src/parsers/tst_to_ast/implementations [eZComponents: Trunk]

2007-02-15 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-15 16:07:32 +0100 (Thu, 15 Feb 2007) New Revision: 4659 Log: - Possible bug fix, needs testing. Modified: trunk/Template/src/parsers/tst_to_ast/implementations/tst_to_ast_cached_transformer.php Modified: trunk/Template/src/parsers/tst_to_ast

Re: [svn-components] 4630 - trunk/Graph/src/structs [eZComponents: Trunk]

2007-02-07 Thread Raymond Bosman
It's public: +public function __toString() Which I don't think is a good thing. Make sure you don't forget to remove it :) What is wrong with making __toString() public in coordinate.php? IMO this is exactly what you want. Raymond. -- svn-components mailing list

[svn-components] 4624 - in trunk/Template: src src/parsers/tst_to_ast/implementations src/structs tests tests/custom_blocks tests/regression_tests/custom_blocks/correct [eZComponents: Trunk]

2007-02-02 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-02 14:20:33 +0100 (Fri, 02 Feb 2007) New Revision: 4624 Log: - Added caching callbacks. - Added static custom blocks. Added: trunk/Template/tests/regression_tests/custom_blocks/correct/static.in trunk/Template/tests/regression_tests/custom_blocks

[svn-components] 4613 - trunk/SignalSlot/docs [eZComponents: Trunk]

2007-02-01 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-02-01 14:55:08 +0100 (Thu, 01 Feb 2007) New Revision: 4613 Log: - Pointed to the wrong example code. Modified: trunk/SignalSlot/docs/tutorial.txt Modified: trunk/SignalSlot/docs/tutorial.txt

[svn-components] 4596 - docs [eZComponents: Docs]

2007-01-30 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-30 11:06:56 +0100 (Tue, 30 Jan 2007) New Revision: 4596 Log: - Updated test environment documentation. (Thanks to Damien Pobel) Modified: docs/test_environment.txt Modified: docs/test_environment.txt

[svn-components] 4592 - trunk/Database/tests [eZComponents: Trunk]

2007-01-29 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-29 10:16:29 +0100 (Mon, 29 Jan 2007) New Revision: 4592 Log: - Added a test case. Modified: trunk/Database/tests/pdo_test.php Modified: trunk/Database/tests/pdo_test.php === --- trunk

[svn-components] 4548 - in trunk/Template/src: . parsers/source_to_tst/implementations parsers/tst_to_ast/implementations [eZComponents: Trunk]

2007-01-23 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-23 15:52:04 +0100 (Tue, 23 Jan 2007) New Revision: 4548 Log: - Try to fix caching but got lots of PDO segfaults. Trying it on another installation. Modified: trunk/Template/src/cache_filesystem.php trunk/Template/src/configuration.php trunk/Template

[svn-components] 4541 - trunk/Template/src [eZComponents: Trunk]

2007-01-22 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-22 12:07:09 +0100 (Mon, 22 Jan 2007) New Revision: 4541 Log: - Anything to make Derick happy. See bug #10049 Modified: trunk/Template/src/configuration.php Modified: trunk/Template/src/configuration.php

[svn-components] 4519 - trunk/Translation/src [eZComponents: Trunk]

2007-01-17 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-17 10:00:36 +0100 (Wed, 17 Jan 2007) New Revision: 4519 Log: - Updated docblock. Modified: trunk/Translation/src/translation.php Modified: trunk/Translation/src/translation.php === --- trunk

Re: [svn-components] 4509 - trunk/UnitTest/src [eZComponents: Trunk]

2007-01-16 Thread Raymond Bosman
On Tuesday 16 January 2007 09:38, Derick Rethans wrote: On Mon, 15 Jan 2007, Raymond Bosman wrote: Modified: trunk/UnitTest/src/runtests.php === --- trunk/UnitTest/src/runtests.php 2007-01-15 12:55:19 UTC (rev 4508

Re: [svn-components] 4509 - trunk/UnitTest/src [eZComponents: Trunk]

2007-01-15 Thread Raymond Bosman
Modified: trunk/UnitTest/src/runtests.php === --- trunk/UnitTest/src/runtests.php 2007-01-15 12:55:19 UTC (rev 4508) +++ trunk/UnitTest/src/runtests.php 2007-01-15 15:56:05 UTC (rev 4509) @@ -1,6 +1,11 @@ ?php // All

[svn-components] 4477 - trunk/Database/docs [eZComponents: Trunk]

2007-01-09 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-09 13:29:30 +0100 (Tue, 09 Jan 2007) New Revision: 4477 Log: - Removed the link to the forums. Modified: trunk/Database/docs/tutorial.txt Modified: trunk/Database/docs/tutorial.txt

[svn-components] 4478 - in trunk/DatabaseSchema: docs src [eZComponents: Docs]

2007-01-09 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-09 14:18:34 +0100 (Tue, 09 Jan 2007) New Revision: 4478 Log: - Fixed typo. - Added available formats to the doc-block. # Toby, do other formats work as well? Modified: trunk/DatabaseSchema/docs/tutorial.txt trunk/DatabaseSchema/src/schema.php Modified

[svn-components] 4478 - in trunk/DatabaseSchema: docs src [eZComponents: Trunk]

2007-01-09 Thread Raymond Bosman
Author: Raymond Bosman Date: 2007-01-09 14:18:34 +0100 (Tue, 09 Jan 2007) New Revision: 4478 Log: - Fixed typo. - Added available formats to the doc-block. # Toby, do other formats work as well? Modified: trunk/DatabaseSchema/docs/tutorial.txt trunk/DatabaseSchema/src/schema.php Modified

Re: [svn-components] 4437 - in trunk/Template/src: parsers/ast/implementations parsers/interfaces parsers/tst/implementations syntax_trees/ast/interfaces syntax_trees/tst/interfaces [eZComponents: Tru

2006-12-22 Thread Raymond Bosman
We decided recently not to use @return void at all, of course a normal description for the method is still wanted. Where is that decision? I remember that we had a decision a loong time ago. I don't remember the outcome. Anyway. We probably continue writing @return void. It doesn't hurt,

[svn-components] 4427 - trunk/Template/src [eZComponents: Trunk]

2006-12-21 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-21 11:55:14 +0100 (Thu, 21 Dec 2006) New Revision: 4427 Log: - Fixed docblocks Modified: trunk/Template/src/compiled_code.php Modified: trunk/Template/src/compiled_code.php === --- trunk

[svn-components] 4434 - trunk/Template/src/interfaces [eZComponents: Trunk]

2006-12-21 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-21 14:40:46 +0100 (Thu, 21 Dec 2006) New Revision: 4434 Log: - Removed class that was not used. Removed: trunk/Template/src/interfaces/autoloader.php Deleted: trunk/Template/src/interfaces/autoloader.php

[svn-components] 4435 - trunk/Template/src/interfaces [eZComponents: Trunk]

2006-12-21 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-21 14:46:25 +0100 (Thu, 21 Dec 2006) New Revision: 4435 Log: - Fixed documentation Modified: trunk/Template/src/interfaces/custom_block.php trunk/Template/src/interfaces/custom_function.php trunk/Template/src/interfaces/output_context.php Modified

[svn-components] 4439 - in trunk/Template/src: contexts exceptions [eZComponents: Trunk]

2006-12-21 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-21 16:49:07 +0100 (Thu, 21 Dec 2006) New Revision: 4439 Log: - Updated doc blocks. Modified: trunk/Template/src/contexts/no_context.php trunk/Template/src/contexts/xhtml_context.php trunk/Template/src/exceptions/compilation_failed_exception.php

[svn-components] 4416 - scripts [eZComponents: Scripts]

2006-12-20 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-20 12:02:14 +0100 (Wed, 20 Dec 2006) New Revision: 4416 Log: - skip @param if it does not have a description. Modified: scripts/clone-empty.php Modified: scripts/clone-empty.php

[svn-components] 4406 - scripts [eZComponents: Scripts]

2006-12-19 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-19 13:51:17 +0100 (Tue, 19 Dec 2006) New Revision: 4406 Log: - Add doc blocks Modified: scripts/clone-empty.php Modified: scripts/clone-empty.php === --- scripts/clone-empty.php 2006-12

[svn-components] 4408 - scripts [eZComponents: Scripts]

2006-12-19 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-19 18:05:50 +0100 (Tue, 19 Dec 2006) New Revision: 4408 Log: - Fixed docblocks. # Need to fix the *. Modified: scripts/clone-empty.php Modified: scripts/clone-empty.php === --- scripts/clone

[svn-components] 4373 - in trunk/Template/src: . parsers/tst_to_ast/implementations parsers/tst_to_tst/implementations [eZComponents: Trunk]

2006-12-18 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-18 11:37:45 +0100 (Mon, 18 Dec 2006) New Revision: 4373 Log: - Added doc blocks - Changed the variable prefix. Modified: trunk/Template/src/cache_filesystem.php trunk/Template/src/parsers/tst_to_ast/implementations/output_variable_manager.php trunk

[svn-components] 4328 - in trunk/Archive/src: . exceptions file [eZComponents: Trunk]

2006-12-15 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-15 10:41:07 +0100 (Fri, 15 Dec 2006) New Revision: 4328 Log: - Fixed #9820: The ezcArchiveBlockFile class has lots of debug information embedded. Added: trunk/Archive/src/exceptions/archive_internal_exception.php Modified: trunk/Archive/src

[svn-components] 4329 - trunk/Archive/src/exceptions [eZComponents: Trunk]

2006-12-15 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-15 10:46:37 +0100 (Fri, 15 Dec 2006) New Revision: 4329 Log: - Changed the angle braces to single quotes ' ' in the Archive exceptions. Modified: trunk/Archive/src/exceptions/archive_block_size.php trunk/Archive/src/exceptions/archive_checksum.php

[svn-components] 4332 - trunk/Base/src [eZComponents: Trunk]

2006-12-15 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-15 10:59:16 +0100 (Fri, 15 Dec 2006) New Revision: 4332 Log: - Removed unused code. Modified: trunk/Base/src/base.php Modified: trunk/Base/src/base.php === --- trunk/Base/src/base.php

[svn-components] 4283 - in trunk/Template: . src src/parsers/source_to_tst/implementations src/parsers/tst_to_ast/implementations src/syntax_trees/tst/nodes tests [eZComponents: Trunk]

2006-12-14 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-14 14:05:44 +0100 (Thu, 14 Dec 2006) New Revision: 4283 Log: - Fixed caching issues introduced with the variable translation. # Cache problems persist with the newline escaping. - Updated the TODO. Modified: trunk/Template/TODO trunk/Template/src

[svn-components] 4284 - in trunk/Template: src/syntax_trees/ast/nodes src/syntax_trees/tst/nodes tests/templates [eZComponents: Trunk]

2006-12-14 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-14 14:08:24 +0100 (Thu, 14 Dec 2006) New Revision: 4284 Log: - Added files for the {cache_block}. # This implementation is not complete. Added: trunk/Template/src/syntax_trees/ast/nodes/cache_block.php trunk/Template/src/syntax_trees/tst/nodes

[svn-components] 4285 - in trunk/Template: src/parsers/tst_to_ast/implementations tests/regression_tests/include/correct [eZComponents: Trunk]

2006-12-14 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-14 14:38:42 +0100 (Thu, 14 Dec 2006) New Revision: 4285 Log: - Fixed an issue that the return value from an include was not assigned to an use variable. Added: trunk/Template/tests/regression_tests/include/correct/receive_use_variable.in trunk

[svn-components] 4311 - trunk/Template/tests/regression_tests [eZComponents: Trunk]

2006-12-14 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-14 17:21:48 +0100 (Thu, 14 Dec 2006) New Revision: 4311 Log: - Removed (duplicated) cache tests from the regression test system. Removed: trunk/Template/tests/regression_tests/cache/ -- svn-components mailing list svn-components@lists.ez.no http

[svn-components] 4312 - in trunk/Template: src/parsers/source_to_tst/implementations tests [eZComponents: Trunk]

2006-12-14 Thread Raymond Bosman
Author: Raymond Bosman Date: 2006-12-14 17:32:20 +0100 (Thu, 14 Dec 2006) New Revision: 4312 Log: - Disabled caching for the release. Modified: trunk/Template/src/parsers/source_to_tst/implementations/cache.php trunk/Template/tests/suite.php Modified: trunk/Template/src/parsers

  1   2   3   4   >