@@ -96,8 +96,18 @@ following should be useful as a starting template::
9696How do I run Roundup through SSL (HTTPS)?
9797~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
9898
99- You should proxy through apache and use its SSL service. See the previous
100- question on how to proxy through apache.
99+ The preferred way of using SSL is to proxy through apache and use its
100+ SSL service. See the previous question on how to proxy through apache.
101+
102+ The standalone roundup-server now also has SSL support which is still
103+ considered experimental. For details refer to the documentation of
104+ roundup server, in particular to the generated configuration file
105+ generated with ::
106+
107+ roundup-server --save-config
108+
109+ that describes the needed option in detail. With the standalone server
110+ now XMLRPC over SSL works, too.
101111
102112
103113Roundup runs very slowly on my XP machine when accessed from the Internet
@@ -107,7 +117,7 @@ The issue is probably related to host name resolution for the client
107117performing the request. You can turn off the resolution of the names
108118when it's so slow like this. To do so, edit the module
109119roundup/scripts/roundup_server.py around line 77 to add the following
110- to the RoundupRequestHandler class:
120+ to the RoundupRequestHandler class::
111121
112122 def address_string(self):
113123 return self.client_address[0]
@@ -133,19 +143,16 @@ Page Templates".
133143But I just want a select/option list for ....
134144~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
135145
136- Really easy... edit ``html/issue.item``. For 'nosy', change line 53 from::
146+ Really easy... edit ``html/issue.item.html``. For ``nosy``, change the line
147+ (around line 69) from::
137148
138149 <span tal:replace="structure context/nosy/field" />
139150
140151to::
141152
142153 <span tal:replace="structure context/nosy/menu" />
143154
144- For 'assigned to', change line 61 from::
145-
146- <td tal:content="structure context/assignedto/field">assignedto menu</td>
147-
148- to::
155+ For ``assigned to``, this is already done around line 77::
149156
150157 <td tal:content="structure context/assignedto/menu">assignedto menu</td>
151158
@@ -156,7 +163,7 @@ Great! But now the select/option list is too big
156163
157164Thats a little harder (but only a little ;^)
158165
159- Again, edit ``html/issue.item``. For nosy, change line 53 from:
166+ Again, edit ``html/issue.item``. For nosy, change line (around line 69) from: :
160167
161168 <span tal:replace="structure context/nosy/field" />
162169
0 commit comments