diff options
author | xue <> | 2005-11-12 18:17:58 +0000 |
---|---|---|
committer | xue <> | 2005-11-12 18:17:58 +0000 |
commit | 8a4e5a9b04c479fa027acfba52f4d68cf3bd6679 (patch) | |
tree | 461c326e7a2a82a998e329e29b1b28c65d1be7db /tests | |
parent | 63386d118321bbff8af2d8c480b89fe226400d53 (diff) |
Added asset manager.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/UnitTests/framework/Data/xml/data3.xml | 2 | ||||
-rw-r--r-- | tests/UnitTests/framework/Data/xml/data3.xml.out | 2 | ||||
-rw-r--r-- | tests/UnitTests/framework/TestSystem/protected/application.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/UnitTests/framework/Data/xml/data3.xml b/tests/UnitTests/framework/Data/xml/data3.xml index 9e66a7f0..5eaece3b 100644 --- a/tests/UnitTests/framework/Data/xml/data3.xml +++ b/tests/UnitTests/framework/Data/xml/data3.xml @@ -11,7 +11,7 @@ </module>
</modules>
<services default="page">
- <service id="page" RootPath="protected/pages">
+ <service id="page" BasePath="protected/pages">
<modules>
<module id="template" type="System.Modules.TTemplateManager" />
<module id="session" type="System.Modules.TSession" />
diff --git a/tests/UnitTests/framework/Data/xml/data3.xml.out b/tests/UnitTests/framework/Data/xml/data3.xml.out index a87d0558..d46e65b9 100644 --- a/tests/UnitTests/framework/Data/xml/data3.xml.out +++ b/tests/UnitTests/framework/Data/xml/data3.xml.out @@ -10,7 +10,7 @@ </module> </modules> <services default="page"> - <service id="page" RootPath="protected/pages"> + <service id="page" BasePath="protected/pages"> <modules> <module id="template" type="System.Modules.TTemplateManager" /> <module id="session" type="System.Modules.TSession" /> diff --git a/tests/UnitTests/framework/TestSystem/protected/application.xml b/tests/UnitTests/framework/TestSystem/protected/application.xml index 0ee5f172..6ca4aaa8 100644 --- a/tests/UnitTests/framework/TestSystem/protected/application.xml +++ b/tests/UnitTests/framework/TestSystem/protected/application.xml @@ -10,7 +10,7 @@ <module id="cache" type="System.Data.TSqliteCache" DbFile="TestSystem/protected/data/test.db" />
</modules>
<services>
- <service id="page" RootPath="TestSystem/protected/pages" />
+ <service id="page" BasePath="TestSystem/protected/pages" />
</services>
<parameters>
<parameter id="param1">value 1</parameter>
|