diff -r b0975c6f2e44 -r ab4958e2654b web/views/basetemplates.py --- a/web/views/basetemplates.py Tue Aug 10 16:05:00 2010 +0200 +++ b/web/views/basetemplates.py Tue Aug 10 18:28:28 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')