diff -r 887c069d88df -r 560df423149a web/views/basetemplates.py --- a/web/views/basetemplates.py Tue Aug 10 18:26:43 2010 +0200 +++ b/web/views/basetemplates.py Tue Aug 10 18:27:02 2010 +0200 @@ -328,12 +328,9 @@ def call(self, view, **kwargs): self.main_header(view) - self.w(u''' -
''') + self.w(u'
') self.state_header() - self.w(u''' -
- ''') + self.w(u'
') def main_header(self, view): """build the top menu with authentification info and the rql box""" @@ -478,7 +475,7 @@ self.login_form(id) # Cookie authentication self.w(u'') if self._cw.https and config.anonymous_user()[0]: - path = config['base-url'] + self._cw.relative_path() + path = xml_escape(config['base-url'] + self._cw.relative_path()) self.w(u'
%s
\n' % (path, self._cw._('No account? Try public access at %s') % path)) self.w(u'\n')