Mercurial > pub > Impl
annotate _test/Resources/app.xml @ 93:0667064553ef
fixed _is_class in activator
rewritten IMPL::Config::Resolve
new features in the Abstract class
author | wizard |
---|---|
date | Wed, 28 Apr 2010 17:50:55 +0400 |
parents | 9f5795a10939 |
children | 964587c5183c |
rev | line source |
---|---|
58 | 1 <?xml version="1.0" encoding="UTF-8"?> |
60
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
2 <Application id='app' type="Test::Web::Application::Instance"> |
66 | 3 |
4 <!-- Begin custom properties --> | |
63
76b878ad6596
Added serialization support for the IMPL::Object::List
wizard
parents:
60
diff
changeset
|
5 <name>Sample application</name> |
58 | 6 <dataSource type='IMPL::Config::Activator' id='ds'> |
63
76b878ad6596
Added serialization support for the IMPL::Object::List
wizard
parents:
60
diff
changeset
|
7 <factory>IMPL::Object</factory> |
58 | 8 <parameters type='HASH'> |
9 <db>data</db> | |
10 <user>nobody</user> | |
11 </parameters> | |
12 </dataSource> | |
13 <securityMod type='IMPL::Config::Activator'> | |
63
76b878ad6596
Added serialization support for the IMPL::Object::List
wizard
parents:
60
diff
changeset
|
14 <factory>IMPL::Object</factory> |
58 | 15 <parameters type='HASH'> |
60
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
16 <ds refid='ds'/> |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
17 </parameters> |
66 | 18 </securityMod> |
19 <!-- End custom properties --> | |
20 | |
21 <!-- direct access to the activators --> | |
60
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
22 <options type="HASH"> |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
23 <dataSource refid='ds'/> |
b0c068da93ac
Lazy activation for the configuration objects (final concept)
wizard
parents:
58
diff
changeset
|
24 </options> |
66 | 25 |
26 <!-- Set default output encoding, can be changed due query handling --> | |
65 | 27 <responseCharset>utf-8</responseCharset> |
66 | 28 |
29 <!-- Actions creation configuration --> | |
67 | 30 <actionFactory type="IMPL::Object::Factory"> |
65 | 31 <factory>IMPL::Web::Application::Action</factory> |
32 <parameters type='HASH'> | |
33 <responseFactory type='IMPL::Object::Factory'> | |
34 <factory>IMPL::Web::Application::Response</factory> | |
35 <parameters type='HASH'> | |
36 <streamOut>memory</streamOut> | |
37 </parameters> | |
38 </responseFactory> | |
39 </parameters> | |
67 | 40 </actionFactory> |
66 | 41 |
42 <!-- Query processing --> | |
63
76b878ad6596
Added serialization support for the IMPL::Object::List
wizard
parents:
60
diff
changeset
|
43 <handlersQuery type="IMPL::Object::List"> |
65 | 44 <item type="IMPL::Web::QueryHandler::PageFormat"> |
45 <templatesCharset>cp1251</templatesCharset> | |
46 </item> | |
63
76b878ad6596
Added serialization support for the IMPL::Object::List
wizard
parents:
60
diff
changeset
|
47 </handlersQuery> |
58 | 48 </Application> |