Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 34
- Log:
Updated to look and feel of RISC OS Open site. Fixed bugs related to
unterminated entities ("&187" and " " in various places). RSS links
based on url_for() output rather than on an assumed host document root.
- Author:
- adh
- Date:
- Sat Jul 29 16:30:03 +0100 2006
- Size:
- 231 Bytes
1 | module RssHelper |
2 | def format_host_url |
3 | host = "http://" + @request.host |
4 | unless (@request.port == 80) or (@request.port == 443) |
5 | host += ":" + @request.port.to_s |
6 | end |
7 | host + url_for(:controller => '') |
8 | end |
9 | end |