Mercurial > moin > 1.9
changeset 4026:d3c2d8d89959
fix failing sourcecode tests, including removing CRLF lineends
author | Thomas Waldmann <tw AT waldmann-edv DOT de> |
---|---|
date | Fri, 22 Aug 2008 23:30:38 +0200 |
parents | 24ef81d2b5f0 |
children | 0d6724b87856 |
files | MoinMoin/action/fckdialog.py |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/MoinMoin/action/fckdialog.py Tue Aug 19 19:00:33 2008 +0200 +++ b/MoinMoin/action/fckdialog.py Fri Aug 22 23:30:38 2008 +0200 @@ -7,7 +7,7 @@ """ from MoinMoin import config, wikiutil -import re +import re ############################################################################## ### Macro dialog @@ -238,15 +238,15 @@ else: resultlist = iwpreferred[:-1] interwiki = "\n".join( - ['<option value="%s">%s</option>' % (key, key) for key in resultlist]) - + ['<option value="%s">%s</option>' % (key, key) for key in resultlist]) + # wiki url url_prefix_static = request.cfg.url_prefix_static scriptname = request.getScriptname() if not scriptname or scriptname[-1] != "/": scriptname += "/" action = scriptname - basepage = request.page.page_name.encode(config.charset) + basepage = request.page.page_name.encode(config.charset) request.write(''' <!-- * FCKeditor - The text editor for internet @@ -323,7 +323,7 @@ <td> <span fckLang="WikiDlgName">Wiki:PageName</span><br> <select id="sctInterwiki" size="1"> - %(interwiki)s + %(interwiki)s </select>: <input id="txtInterwikipagename"></input> </td>