]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
wui/wapi/webish: HTML form checkboxes send the value "on", so let's interpret that...
authorZooko O'Whielacronx <zooko@zooko.com>
Sat, 1 Mar 2008 03:29:42 +0000 (20:29 -0700)
committerZooko O'Whielacronx <zooko@zooko.com>
Sat, 1 Mar 2008 03:29:42 +0000 (20:29 -0700)
src/allmydata/webish.py

index f8da62717bf8e3d30b3d1d7877b3fa43048db9e0..bb5845034b96110d59a25548390cd02a396eafff 100644 (file)
@@ -33,8 +33,8 @@ class ILocalAccess(Interface):
         can talk to the webserver control over the local (disk) filesystem."""
 
 def boolean_of_arg(arg):
-    assert arg.lower() in ("true", "t", "1", "false", "f", "0")
-    return arg.lower() in ("true", "t", "1")
+    assert arg.lower() in ("true", "t", "1", "false", "f", "0", "on", "off")
+    return arg.lower() in ("true", "t", "1", "on")
 
 def get_arg(req, argname, default=None, multiple=False):
     """Extract an argument from either the query args (req.args) or the form