Attachment 'userform.diff'
Download 1 --- userform_old.py 2006-12-09 13:32:00.000000000 +0100
2 +++ userform.py 2006-12-10 21:28:58.000000000 +0100
3 @@ -637,9 +637,11 @@
4 sn = request.getScriptname()
5 pi = request.getPathinfo()
6 action = u"%s%s" % (sn, pi)
7 - userprefslink = wikiutil.getSysPage(request, "UserPreferences").link_to(request, rel='nofollow')
8 - hint = _("To create an account or recover a lost password, see the %(userprefslink)s page.") % {
9 - 'userprefslink': userprefslink}
10 + createaccountlink = wikiutil.getSysPage(request, "CreateAccount").link_to(request, rel='nofollow')
11 + sendmypasswordlink = wikiutil.getSysPage(request, "SendMyPassword").link_to(request, rel='nofollow')
12 + hint = _("To create a new account, see the %(createaccountlink)s page. To recover a lost password, go to %(sendmypasswordlink)s.") % {
13 + 'createaccountlink': createaccountlink,
14 + 'sendmypasswordlink': sendmypasswordlink}
15 self._form = html.FORM(action=action)
16 self._table = html.TABLE(border="0")
17
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.