Mercurial > p > roundup > code
diff doc/FAQ.txt @ 4260:493e933f6dfb
small update about SSL (and XMLRPC)...
...and some line-number fixes when referring to source files.
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Thu, 08 Oct 2009 13:59:33 +0000 |
| parents | be9122d753c5 |
| children | b7c74999947f |
line wrap: on
line diff
--- a/doc/FAQ.txt Thu Oct 08 13:07:51 2009 +0000 +++ b/doc/FAQ.txt Thu Oct 08 13:59:33 2009 +0000 @@ -96,8 +96,18 @@ How do I run Roundup through SSL (HTTPS)? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -You should proxy through apache and use its SSL service. See the previous -question on how to proxy through apache. +The preferred way of using SSL is to proxy through apache and use its +SSL service. See the previous question on how to proxy through apache. + +The standalone roundup-server now also has SSL support which is still +considered experimental. For details refer to the documentation of +roundup server, in particular to the generated configuration file +generated with :: + + roundup-server --save-config + +that describes the needed option in detail. With the standalone server +now XMLRPC over SSL works, too. Roundup runs very slowly on my XP machine when accessed from the Internet @@ -107,7 +117,7 @@ performing the request. You can turn off the resolution of the names when it's so slow like this. To do so, edit the module roundup/scripts/roundup_server.py around line 77 to add the following -to the RoundupRequestHandler class: +to the RoundupRequestHandler class:: def address_string(self): return self.client_address[0] @@ -133,7 +143,8 @@ But I just want a select/option list for .... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Really easy... edit ``html/issue.item``. For 'nosy', change line 53 from:: +Really easy... edit ``html/issue.item.html``. For ``nosy``, change the line +(around line 69) from:: <span tal:replace="structure context/nosy/field" /> @@ -141,11 +152,7 @@ <span tal:replace="structure context/nosy/menu" /> -For 'assigned to', change line 61 from:: - - <td tal:content="structure context/assignedto/field">assignedto menu</td> - -to:: +For ``assigned to``, this is already done around line 77:: <td tal:content="structure context/assignedto/menu">assignedto menu</td> @@ -156,7 +163,7 @@ Thats a little harder (but only a little ;^) -Again, edit ``html/issue.item``. For nosy, change line 53 from: +Again, edit ``html/issue.item``. For nosy, change line (around line 69) from:: <span tal:replace="structure context/nosy/field" />
