Changesets can be listed by changeset number.
The Git repository is here.
Changeset 147
Fixed Ticket #95. Upper case 'y' in 'Yes' for account lists.
- Comitted by: adh
- Date: Monday November 20 23:33:32 2006 (over 17 years ago)
Affected files:
- rool/rails/hub/trunk/app/helpers/account_helper.rb (diff)
- rool/rails/hub/trunk/app/views/account/change_details.rhtml (diff)
- rool/rails/hub/trunk/app/views/account/signup.rhtml (diff)
rool/rails/hub/trunk/app/helpers/account_helper.rb:
prev. | current | |
if (Time.now.utc >= value) | ||
'<td class="expired">Expired</td>' | ||
else | ||
23 | | |
23 | '<td class="yes">Yes</td>' | |
end | ||
else | ||
'<td class="no">No</td>' |
rool/rails/hub/trunk/app/views/account/change_details.rhtml:
prev. | current | |
1 | | |
2 | | |
3 | | |
4 |
| |
5 | | |
6 | | |
7 | | |
8 | | |
9 | | |
10 |
| |
11 | | |
12 | | |
13 |
| |
14 | | |
15 | | |
16 | | |
17 | | |
18 | | |
19 | | |
20 | | |
21 | | |
22 |
| |
23 | | |
24 | | |
25 | | |
26 |
| |
27 | | |
28 | | |
29 | | |
30 | | |
2 | A RISC OS Open web site account doesn't contain much information. It's really | |
3 | just a way to make sure that forum posts, news article comments and so-on come | |
4 | from real people, rather than advertisers. | |
5 | ||
6 | <p /> | |
7 | All personal details stored in your account can be edited below, except for | |
8 | your e-mail address. To change address, you must delete your old account and | |
9 | create a new one. This is required so that the proper account activation | |
10 | process is followed for any new e-mail address. | |
11 | ||
12 | <p /> | |
13 | <%= error_messages_for :user %> | |
14 | ||
15 | <%= start_form_tag %> | |
16 | <p /> | |
17 | <table class="list" cellspacing="1" cellpadding="4" border="1" align="center" bgcolor="#ffffff"> | |
18 | <tr> | |
19 | <th bgcolor="#eeeeee" align="left"><label for="real_name">Real name</label></th> | |
20 | <td><%= text_field_tag 'real_name', @real_name, :size => 40, :maxlength => 128 %></td> | |
21 | </tr> | |
22 | </table> | |
23 | ||
24 | <p align="center" /> | |
25 | <%= submit_tag('Update') %> | |
26 | <%= end_form_tag %> | |
27 | ||
28 | <p /> | |
29 | If you don't want to do this, you can | |
30 | <%= link_to 'go back to the control panel', :controller => 'tasks', :action => 'index' %> | |
31 | instead. |
rool/rails/hub/trunk/app/views/account/signup.rhtml:
prev. | current | |
log in. | ||
<p /> | ||
6 | | |
6 | Your <b>e-mail address</b> is required for account activation. Please give a | |
reasonably complete <b>real name</b> that you are happy being used in forum posts, | ||
documentation pages, welcome messages and so-on (e.g. "John Doe"). Your | ||
<b>password</b> can consist of any combination of letters, numbers and symbols | ||
... | ... | |
<p /> | ||
If you don't want to do this, you can | ||
<%= link_to 'go back to the control panel', :controller => 'tasks', :action => 'index' %> | ||
49 | | |
50 | instead. |