# HG changeset patch
# User Nicolas Chauvat <nicolas.chauvat@logilab.fr>
# Date 1279900458 -7200
# Node ID 0300fae1f7cbf3be19681c68a8161626e40cf4e8
# Parent  d17d3b34bc12d26b717f6c051c9ed7ca275d4b7d
[views] link to public url when trying https without an account

diff -r d17d3b34bc12 -r 0300fae1f7cb web/views/basetemplates.py
--- a/web/views/basetemplates.py	Wed Jul 21 12:46:21 2010 +0200
+++ b/web/views/basetemplates.py	Fri Jul 23 17:54:18 2010 +0200
@@ -91,6 +91,7 @@
         return 0
     return view.templatable
 
+
 class NonTemplatableViewTemplate(MainTemplate):
     """main template for any non templatable views (xml, binaries, etc.)"""
     __regid__ = 'main-template'
@@ -472,10 +473,15 @@
         self.w(u'<div id="loginContent">\n')
         if showmessage and self._cw.message:
             self.w(u'<div class="loginMessage">%s</div>\n' % self._cw.message)
-        if self._cw.vreg.config['auth-mode'] != 'http':
-            # Cookie authentication
-            self.login_form(id)
-        self.w(u'</div></div>\n')
+        config = self._cw.vreg.config
+        if config['auth-mode'] != 'http':
+            self.login_form(id) # Cookie authentication
+        self.w(u'</div>')
+        if self._cw.https and config.anonymous_user()[0]:
+            path = config['base-url'] + self._cw.relative_path()
+            self.w(u'<div class="loginMessage"><a href="%s">%s</a></div>\n'
+                   % (path, self._cw._('No account? Try public access at %s') % path))
+        self.w(u'</div>\n')
 
     def login_form(self, id):
         cw = self._cw
@@ -490,6 +496,7 @@
 
 LogFormTemplate = class_renamed('LogFormTemplate', LogFormView)
 
+
 def login_form_url(req):
     if req.https:
         return req.url()