From: Brian Warner Date: Fri, 29 Jun 2007 02:07:52 +0000 (-0700) Subject: webish: fix link to private_vdrive X-Git-Tag: allmydata-tahoe-0.4.0~11 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=9ecde0d23efd968512ed8247f0b67d599d1530b0;p=tahoe-lafs%2Ftahoe-lafs.git webish: fix link to private_vdrive --- diff --git a/src/allmydata/web/welcome.xhtml b/src/allmydata/web/welcome.xhtml index b5cd72d9..cc0b15ae 100644 --- a/src/allmydata/web/welcome.xhtml +++ b/src/allmydata/web/welcome.xhtml @@ -11,7 +11,7 @@

Welcome To AllMyData! (tahoe2)

-
+

Grid Status

diff --git a/src/allmydata/webish.py b/src/allmydata/webish.py index e92b8db9..85549086 100644 --- a/src/allmydata/webish.py +++ b/src/allmydata/webish.py @@ -71,10 +71,10 @@ class Welcome(rend.Page): return T.p["vdrive.furl not specified (or vdrive server not " "responding), no vdrive available."] - def render_my_vdrive(self, ctx, data): + def render_private_vdrive(self, ctx, data): if IClient(ctx).getServiceNamed("vdrive").have_private_root(): return T.p["To view your personal private non-shared filestore, ", - T.a(href="../my_vdrive")["Click Here!"], + T.a(href="../private_vdrive")["Click Here!"], ] return T.p["personal vdrive not available."]