summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/application.xml
blob: 79ee4529731a08b78f3c4f24d3fab46604144a28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="utf-8"?>

<application id="QuickStart" Mode="Debug">
  <modules>
    <!-- uncomment the following to enable caching
    <module id="cache" class="System.Caching.TSqliteCache" />
    -->
    <!-- uncomment the following to enable logging to file
    <module id="log" class="System.Util.TLogRouter">
      <route class="TFileLogRoute" />
    </module>
    -->
   <module id="quickstart_search" 
    	class="Application.index.ZendSearch"
    	IndexDataDirectory="Application.index.quickstart" />
  </modules>
  <paths>
    <using namespace="Application.controls.*" />
	<using namespace="Application.comments.*" />
  </paths>
  <services>
    <service id="page" class="TPageService" DefaultPage="GettingStarted.Introduction" />
  </services>
  <parameters>
  	<parameter id="enableNewComment" value="false" />
  </parameters>
</application>