Changeset 2205
- Timestamp:
- 23/10/08 12:14:09 (1 year ago)
- Files:
-
- cherokee/trunk/ChangeLog (modified) (2 diffs)
- cherokee/trunk/admin/ModuleBalancer.py (modified) (3 diffs)
- cherokee/trunk/admin/Page.py (modified) (1 diff)
- cherokee/trunk/admin/PageInfoSource.py (modified) (1 diff)
- cherokee/trunk/doc/config.txt (modified) (1 diff)
- cherokee/trunk/doc/config_info_sources.txt (modified) (1 diff)
- cherokee/trunk/doc/config_quickstart.txt (modified) (1 diff)
- cherokee/trunk/doc/cookbook_django.txt (modified) (1 diff)
- cherokee/trunk/doc/index.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/ChangeLog
r2202 r2205 1 2008-10-23 Taher Shihadeh <taher@unixwars.com> 2 3 * admin/Page.py, admin/ModuleBalancer.py, admin/PageInfoSource.py, 4 doc/config.txt, doc/config_info_sources.txt, 5 doc/cookbook_django.txt, doc/index.txt, doc/config_quickstart.txt: 6 unify naming conventions to address issue 7 http://code.google.com/p/cherokee/issues/detail?id=152. 8 1 9 2008-10-17 Alvaro Lopez Ortega <alvaro@octality.com> 2 10 … … 142 150 redirections, and 176 ensure that bug#146 is fixed: 143 151 http://code.google.com/p/cherokee/issues/detail?id=146 144 152 145 153 * cherokee/validator_htdigest.c (extract_user_entry): Fixes an 146 154 error processing htdigest files. Reported by Eric Drechsel cherokee/trunk/admin/ModuleBalancer.py
r2105 r2205 6 6 7 7 NOTE_BALANCER = 'Allow to select how the connections will be dispatched.' 8 NO_GENERAL_SOURCES = 'There are no Information Sources configured. Please proceed to configure an <a href="/source">Info Source</a>.'9 NO_SOURCE_WARNING = 'A load balancer must be configured to use at least one datasource.'8 NO_GENERAL_SOURCES = 'There are no Information Sources configured. Please proceed to configure an <a href="/source">Information Source</a>.' 9 NO_SOURCE_WARNING = 'A load balancer must be configured to use at least one information source.' 10 10 11 11 class ModuleBalancerGeneric (Module, FormHelper): … … 35 35 txt += self.Dialog(NO_SOURCE_WARNING, type_='warning') 36 36 else: 37 txt += '<h2>Info Sources</h2>'37 txt += '<h2>Information Sources</h2>' 38 38 table = Table(3,1, style='width="100%"') 39 39 table += ('Nick', 'Host', '') … … 51 51 txt += str(table) 52 52 53 txt += '<h2>Assign Info Sources</h2>'53 txt += '<h2>Assign Information Sources</h2>' 54 54 if not general_left: 55 55 txt += 'It is already balancing among all the configured ' + \ cherokee/trunk/admin/Page.py
r2136 r2205 43 43 <li id="general"><a href="/general">General</a></li> 44 44 <li id="vserver"><a href="/vserver">Virtual Servers</a></li> 45 <li id="source"><a href="/source">Info Sources</a></li>45 <li id="source"><a href="/source">Information Sources</a></li> 46 46 <li id="icon"><a href="/icons">Icons</a></li> 47 47 <li id="mime"><a href="/mime">Mime Types</a></li> cherokee/trunk/admin/PageInfoSource.py
r2074 r2205 23 23 24 24 HELPS = [ 25 ('config_info_sources', "Info Sources")25 ('config_info_sources', "Information Sources") 26 26 ] 27 27 cherokee/trunk/doc/config.txt
r1992 r2205 6 6 . link:config_virtual_servers.html[Virtual servers]: Server definition. 7 7 - link:config_virtual_servers_rule.html[Rule Options]: Specifying the matching rules. 8 . link:config_info_sources.html[Info Sources]: Defining information sources.8 . link:config_info_sources.html[Information Sources]: Defining information sources. 9 9 . link:config_icons.html[Icons]: Icon managment. 10 10 . link:config_mime_types.html[Mime Types]: Setting up the MIME types. cherokee/trunk/doc/config_info_sources.txt
r2043 r2205 32 32 whatever options do not apply. 33 33 34 image::media/images/admin_info_sources.png[Info Sources]34 image::media/images/admin_info_sources.png[Information Sources] 35 35 36 36 Unix Sockets cherokee/trunk/doc/config_quickstart.txt
r2123 r2205 33 33 facilities, etc. 34 34 35 * link:config_info_sources.html[Info Sources]:35 * link:config_info_sources.html[Information Sources]: 36 36 Define the resources that will be providing information. For 37 37 instance, PHP. cherokee/trunk/doc/cookbook_django.txt
r2058 r2205 71 71 service. This is done by adding one or more information sources. 72 72 73 image::media/images/cookbook_django_infosources.png[Info Sources]73 image::media/images/cookbook_django_infosources.png[Information Sources] 74 74 75 75 Note that you will have to manually launch the `spawner` if cherokee/trunk/doc/index.txt
r2043 r2205 35 35 . link:config_virtual_servers.html[Virtual servers]: Server definition. 36 36 - link:config_virtual_servers_rule.html[Rule Options]: Specifying the matching rules. 37 . link:config_info_sources.html[Info Sources]: Defining information sources.37 . link:config_info_sources.html[Information Sources]: Defining information sources. 38 38 . link:config_icons.html[Icons]: Icon managment. 39 39 . link:config_mime_types.html[Mime Types]: Setting up the MIME types.