Move busui to seperate repository
[bus.git] / options_general.tpl
1 <div class="panel_headline"><?php echo $headline?></div>
2
3 <div class="subview_content">
4
5 <form method="post" name="owa_options">
6
7 <fieldset name="owa-options" class="options">
8 <legend>Request Processing Options</legend>
9
10 <div class="setting" id="resolve_hosts">
11 <div class="title">Resolve Host Names</div>
12 <div class="description">Controls the resolution of host names (e.g. verizon.com) from visitor's raw IP addresses.</div>
13 <div class="field">
14 <select name="<?php echo $this->getNs();?>config[base.resolve_hosts]">
15 <option value="0" <?php if ($config['resolve_hosts'] == false):?>SELECTED<?php endif;?>>Off</option>
16 <option value="1" <?php if ($config['resolve_hosts'] == true):?>SELECTED<?php endif;?>>On</option>
17 </select>
18 </div>
19 </div>
20
21 <div class="setting" id="log_feedreaders">
22 <div class="title">Log Requests From Feed Readers</div>
23 <div class="description">Controls the logging of page requests made by Feed Readers. This setting must be enabled in order to compile statistics about your site's feeds.</div>
24 <div class="field">
25 <select name="<?php echo $this->getNs();?>config[base.log_feedreaders]">
26 <option value="0" <?php if ($config['log_feedreaders'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
27 <option value="1" <?php if ($config['log_feedreaders'] == true):?>SELECTED<?php endif;?>>On</OPTION>
28 </select>
29 </div>
30 </div>
31
32 <div class="setting" id="log_robots">
33 <div class="title">Log Requests From Known Robots</div>
34 <div class="description">Controls the logging of page requests made by known robots and spiders. Turning this feature on will dramatically increase the number of requests that are processed and logged.</div>
35 <div class="field">
36 <SELECT NAME="<?php echo $this->getNs();?>config[base.log_robots]">
37 <OPTION VALUE="0" <?php if ($config['log_robots'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
38 <OPTION VALUE="1" <?php if ($config['log_robots'] == true):?>SELECTED<?php endif;?>>On</OPTION>
39 </SELECT>
40 </div>
41 </div>
42
43 <div class="setting" id="log_named_users">
44 <div class="title">Log Requests From Named Users</div>
45 <div class="description">Controls the logging of requests made by named users.</div>
46 <div class="field">
47 <SELECT NAME="<?php echo $this->getNs();?>config[base.log_named_users]">
48 <OPTION VALUE="0" <?php if ($config['log_named_users'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
49 <OPTION VALUE="1" <?php if ($config['log_named_users'] == true):?>SELECTED<?php endif;?>>On</OPTION>
50 </SELECT>
51 </div>
52 </div>
53
54
55
56 <div class="setting" id="fetch_refering_page_info">
57 <div class="title">Fetch Referring Web Page Info</div>
58 <div class="description">Controls whether OWA should crawl the web pages that refer visitors to your web site and extract descriptive meta-data that will be used in reporting.</div>
59 <div class="field">
60 <select name="<?php echo $this->getNs();?>config[base.fetch_refering_page_info]">
61 <option value="0" <?php if ($config['fetch_refering_page_info'] == false):?>SELECTED<?php endif;?>>
62 Off</option>
63 <option value="1" <?php if ($config['fetch_refering_page_info'] == true):?>SELECTED<?php endif;?>>
64 On</option>
65 </select>
66 </div>
67 </div>
68
69 <div class="setting" id="first_hit">
70 <div class="title">Delay First Hit</div>
71 <div class="description">This setting controls whether OWA should delay logging the first hit of new visitors untill a secondary http request for a special web bug is made. This tactic is used to foil spiders/robots that spoof their user agents in an attempt to appear like a normal web browser.</div>
72 <div class="field">
73 <select name="<?php echo $this->getNs();?>config[base.delay_first_hit]">
74 <option value="0" <?php if ($config['delay_first_hit'] == false):?>SELECTED<?php endif;?>>Off</option>
75 <option value="1" <?php if ($config['delay_first_hit'] == true):?>SELECTED<?php endif;?>>On</option>
76 </select>
77 </div>
78 </div>
79
80 <div class="setting" id="log_dom_streams">
81 <div class="title">Log Domstreams</div>
82 <div class="description">This setting controls whether OWA should should log Domstreams.</div>
83 <div class="field">
84 <select name="<?php echo $this->getNs();?>config[base.log_dom_streams]">
85 <option value="0" <?php if ($config['log_dom_streams'] == false):?>SELECTED<?php endif;?>>Off</option>
86 <option value="1" <?php if ($config['log_dom_streams'] == true):?>SELECTED<?php endif;?>>On</option>
87 </select>
88 </div>
89 </div>
90
91
92 <div class="setting" id="p3p_policy">
93 <div class="title">P3P Compact Privacy Policy</div>
94 <div class="description">This setting controls the P3P compact privacy policy that is returned to the browser when OWA sets cookies. Click <a href="http://www.p3pwriter.com/LRN_111.asp">here</a> for more information on compact privacy policies and choosing the right one for your web site.</div>
95 <div class="field"><input type="text" size="50" name="<?php echo $this->getNs();?>config[base.p3p_policy]" value="<?php echo $config['p3p_policy'];?>"></div>
96 </div>
97
98 <div class="setting" id="url_params">
99 <div class="title">URL Parameters</div>
100 <div class="description">This setting controls the URL parameters that OWA should ignore when processing requests. This is useful for avoiding duplicate URLs due to the use of tracking or others state parameters in your URLs. Parameter names should be separated by comma.</div>
101 <div class="field"><input type="text" size="50" name="<?php echo $this->getNs();?>config[base.query_string_filters]" value="<?php echo $config['query_string_filters'];?>"></div>
102 </div>
103
104 </fieldset>
105
106 <BR>
107
108 <fieldset name="owa-options" class="options">
109 <legend>Visitor Announcements</legend>
110
111 <div class="setting" id="announce_visitors">
112 <div class="title">Announce New Visitors Via E-mail</div>
113 <div class="description">Announces each new visitor to your web site via e-mail. If you have a lot of visitors then you probably want to keep this feature turned off.</div>
114 <div class="field">
115 <select name="<?php echo $this->getNs();?>config[base.announce_visitors]">
116 <option value="0" <?php if ($config['announce_visitors'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
117 <option value="1" <?php if ($config['announce_visitors'] == true):?>SELECTED<?php endif;?>>On</OPTION>
118 </select>
119 </div>
120 </div>
121
122 <div class="setting" id="notice_email">
123 <div class="title">Notice E-mail Address</div>
124 <div class="description">This is the e-mail address that new visitor e-mails will be sent to.</div>
125 <div class="field"><input size="50" type="text" name="<?php echo $this->getNs();?>config[base.notice_email]" value="<?php echo $config['notice_email']?>"></div>
126
127 </div>
128
129 </fieldset>
130
131
132 <BR>
133
134 <fieldset name="owa-geolocation-options" class="options">
135
136 <legend>Geo-location</legend>
137
138 <div class="setting" id="geolocation_lookup">
139 <div class="title">Perform Geo-location Lookup</div>
140 <div class="description">Lookup the geographic location of visitors.</div>
141 <div class="field">
142 <select name="<?php echo $this->getNs();?>config[base.geolocation_lookup]">
143 <option value="0" <?php if ($config['geolocation_lookup'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
144 <option value="1" <?php if ($config['geolocation_lookup'] == true):?>SELECTED<?php endif;?>>On</OPTION>
145 </select>
146 </div>
147 </div>
148
149 <div class="setting" id="google_maps_api_key">
150 <div class="title">Google Maps API Key</div>
151 <div class="description">Google maps API key is needed to produce Google maps of visitor geo-locations. You may obtain an API key from <a href="http://www.google.com/apis/maps/signup.html">this Google web site</a> for free.</div>
152 <div class="field"><input type="text" size="90" name="<?php echo $this->getNs();?>config[base.google_maps_api_key]" value="<?php echo $config['google_maps_api_key']?>"></div>
153 </div>
154
155 </fieldset>
156
157 <BR>
158
159 <fieldset name="owa-feed-options" class="options">
160 <legend>Feed Tracking</legend>
161
162 <div class="setting" id="feeds">
163 <div class="title">Feed Link Tracking</div>
164 <div class="description">Adds tracking parameters to RSS or Atom feeds links. This provides a way to track how many visitors come from your feeds.</div>
165 <div class="field">
166 <select name="<?php echo $this->getNs();?>config[base.track_feed_links]">
167
168 <option value="0" <?php if ($config['track_feed_links'] == false):?>SELECTED<?php endif;?>>Off</OPTION>
169 <option value="1" <?php if ($config['track_feed_links'] == true):?>SELECTED<?php endif;?>>On</OPTION>
170 </select>
171 </div>
172 </div>
173
174 </fieldset>
175
176 <BR>
177
178 <fieldset name="owa-event-options" class="options">
179 <legend>Event Queueing</legend>
180
181 <div class="setting" id="async_log_dir">
182 <div class="title">Event Log File Directory</div>
183 <div class="description">This is the file system path of the file that OWA will write queued events to when Event Queuing mode is turned on. (e.g. /path/to/owa/log/file.txt)</div>
184 <div class="field"><input type="text" size="80" name="<?php echo $this->getNs();?>config[base.async_log_dir]" value="<?php echo $config['async_log_dir']?>"></div>
185 </div>
186
187 </fieldset>
188
189 <BR>
190
191
192 <fieldset name="owa-cache-options" class="options">
193 <legend>Object Cache</legend>
194
195 <div class="setting" id="object_cache">
196 <div class="title">Cache Control</div>
197 <div class="description">Enables and disables object caching. This will improve performance under high load conditions. The object cache can be turned on/off via your config file.
198 </div>
199 <div class="field">
200 Status: <?php if ($config['cache_objects'] == true):?><B>ON</B><?php else:?><B>OFF</B><?php endif;?> </div>
201 </div>
202
203 <div class="setting" id="object_cache_flush">
204 <div class="title">Flush Cache</div>
205 <div class="description">Flushes the object cache</div>
206 <div class="field">
207
20