Make the link on the Welcome page to 'https://tahoe-lafs.org/', not 'http:'. Includes a test. fixes #1682
This commit is contained in:
parent
aebaa838da
commit
aaee828abb
|
@ -504,6 +504,7 @@ class Web(WebMixin, WebErrorMixin, testutil.StallMixin, testutil.ReallyEqualMixi
|
|||
def _check(res):
|
||||
self.failUnlessIn('Welcome To Tahoe-LAFS', res)
|
||||
self.failUnlessIn(FAVICON_MARKUP, res)
|
||||
self.failUnlessIn('href="https://tahoe-lafs.org/"', res)
|
||||
|
||||
self.s.basedir = 'web/test_welcome'
|
||||
fileutil.make_dirs("web/test_welcome")
|
||||
|
|
|
@ -86,7 +86,7 @@
|
|||
<div class="section" id="other-resources">
|
||||
<h2>Other Resources</h2>
|
||||
|
||||
<div>Please visit the <a target="_blank" href="http://tahoe-lafs.org">Tahoe-LAFS home page</a> for
|
||||
<div>Please visit the <a target="_blank" href="https://tahoe-lafs.org/">Tahoe-LAFS home page</a> for
|
||||
code updates and bug reporting.</div>
|
||||
|
||||
<div n:render="incident_button" />
|
||||
|
|
Loading…
Reference in New Issue