docs: rename wapi.txt to webapi.txt

Because Brian argues that the file contains a description of the wui as well as of the wapi, and because the name "webapi.txt" might be more obvious to the untrained eye.
This commit is contained in:
Zooko O'Whielacronx 2009-01-14 13:53:48 -07:00
parent e38dc8f310
commit 0a2895e17a
5 changed files with 5 additions and 5 deletions

2
NEWS
View File

@ -46,7 +46,7 @@ and deep-check operations. When these operations finish, they display a
results page that summarizes any problems that were encountered. All
long-running deep-traversal operations, including deep-check, use a
start-and-poll mechanism, to avoid depending upon a single long-lived HTTP
connection. docs/frontends/wapi.txt has details.
connection. docs/frontends/webapi.txt has details.
** Configuration Changes: single INI-format tahoe.cfg file

View File

@ -49,7 +49,7 @@ nickname = (UTF-8 string, optional)
web.port = (strports string, optional)
This controls where the node's webserver should listen, providing filesystem
access and node status as defined in wapi.txt . This file contains a
access and node status as defined in webapi.txt . This file contains a
Twisted "strports" specification such as "3456" or
"tcp:3456:interface=127.0.0.1". The 'tahoe create-client' command sets the
web.port to "tcp:3456:interface=127.0.0.1" by default, and is overridable by

View File

@ -151,7 +151,7 @@ that file with:
Multiple levels of subdirectories can be handled this way:
http://127.0.0.1:3456/uri/$DIRCAP/tahoe-source/docs/wapi.txt
http://127.0.0.1:3456/uri/$DIRCAP/tahoe-source/docs/webapi.txt
In this document, when we need to refer to a URL that references a file using
this child-of-some-directory format, we'll use the following string:

View File

@ -48,7 +48,7 @@
<h1>The WAPI</h1>
<p>Want to program your Tahoe node to do your bidding? Easy! See <a href="frontends/wapi.txt">wapi.txt</a>.</p>
<p>Want to program your Tahoe node to do your bidding? Easy! See <a href="frontends/webapi.txt">webapi.txt</a>.</p>
<p>P.S. "WAPI" is pronounced "wappy".</p>

View File

@ -109,7 +109,7 @@ class OphandleTable(rend.Page, service.Service):
if ophandle in self.timers and self.timers[ophandle].active():
self.timers[ophandle].cancel()
self.timers.pop(ophandle, None)
self.handles.pop(ophandle, None)
# self.handles.pop(ophandle, None)
class ReloadMixin:
REFRESH_TIME = 1*MINUTE