From 9ecde0d23efd968512ed8247f0b67d599d1530b0 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Thu, 28 Jun 2007 19:07:52 -0700 Subject: [PATCH] webish: fix link to private_vdrive --- src/allmydata/web/welcome.xhtml | 2 +- src/allmydata/webish.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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."] -- 2.45.2