]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
#514: add meta-refresh=60 tag to t=status page for incomplete operations
authorBrian Warner <warner@lothar.com>
Wed, 22 Oct 2008 16:48:42 +0000 (09:48 -0700)
committerBrian Warner <warner@lothar.com>
Wed, 22 Oct 2008 16:48:42 +0000 (09:48 -0700)
docs/webapi.txt
src/allmydata/web/deep-check-and-repair-results.xhtml
src/allmydata/web/deep-check-results.xhtml
src/allmydata/web/manifest.xhtml
src/allmydata/web/operations.py

index d72ec2fb6ef6dc93f38e6991a3039fe706706b1e..a168bb77cd506dc02f983313e221f0ff3f8ef5cf 100644 (file)
@@ -211,7 +211,7 @@ GET /operations/$HANDLE?t=status&output=JSON
   * how much of the operation is complete, and how much is left, if possible
 
  The HTML form will include a meta-refresh tag, which will cause a regular
- web browser to reload the status page about 30 seconds later. This tag will
+ web browser to reload the status page about 60 seconds later. This tag will
  be removed once the operation has completed.
 
 POST /operations/$HANDLE?t=cancel
@@ -820,8 +820,8 @@ POST $URL?t=start-deep-check    (must add &ophandle=XYZ)
   /operations page should be used to find out when the operation is done.
 
   The HTML /operations/$HANDLE?t=status page for incomplete operations will
-  contain a meta-refresh tag, set to 30 seconds, so that a browser which uses
-  deep-check will automatically poll until the operation has completed. (TODO)
+  contain a meta-refresh tag, set to 60 seconds, so that a browser which uses
+  deep-check will automatically poll until the operation has completed.
 
   The JSON page (/options/$HANDLE?t=status&output=JSON) will contain a
   machine-readable JSON dictionary with the following keys:
index 2b842f764776236173fbc39294ef75370d97367b..b171d7bf470f2f5aa5b73167d85ae475c64f3ddb 100644 (file)
@@ -5,6 +5,7 @@
           rel="stylesheet" type="text/css"/> -->
     <link href="/webform_css" rel="stylesheet" type="text/css"/>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <meta n:render="refresh" />
   </head>
   <body>
 
index 7c9893e82985a2163a0284981b74bbab3e94b414..a15be3f5e4f7b769dca85bfb74902048b15759b6 100644 (file)
@@ -5,6 +5,7 @@
           rel="stylesheet" type="text/css"/> -->
     <link href="/webform_css" rel="stylesheet" type="text/css"/>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <meta n:render="refresh" />
   </head>
   <body>
 
index 6462308769c6406d526927c75403cdded91bf824..560ca933ad989ce574784a082f7cd6956e22f4c5 100644 (file)
@@ -5,6 +5,7 @@
           rel="stylesheet" type="text/css"/> -->
     <link href="/tahoe_css" rel="stylesheet" type="text/css"/>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <meta n:render="refresh" />
   </head>
   <body>
 
index ea44634d782122f065aaecb0b6d3fa06bec65943..080f8dbb7121ea625158f471fa5da0768a90ccec 100644 (file)
@@ -106,6 +106,16 @@ class OphandleTable(rend.Page, service.Service):
         self.handles.pop(ophandle, None)
 
 class ReloadMixin:
+    REFRESH_TIME = 1*MINUTE
+
+    def render_refresh(self, ctx, data):
+        if self.monitor.is_finished():
+            return ""
+        # dreid suggests ctx.tag(**dict([("http-equiv", "refresh")]))
+        # but I can't tell if he's joking or not
+        ctx.tag.attributes["http-equiv"] = "refresh"
+        ctx.tag.attributes["content"] = str(self.REFRESH_TIME)
+        return ctx.tag
 
     def render_reload(self, ctx, data):
         if self.monitor.is_finished():