directory on a separate size-limited filesystem, and/or use per-user
OS/filesystem quotas.
-my_private_dir.uri (optional): When you create a new tahoe client, this
+my_private_dir.cap (optional): When you create a new tahoe client, this
file is created with no contents (as an empty file). When the node starts
up, it will inspect this file. If the file doesn't exist then nothing will
be done. If the file exists, then the node will try to read the contents of
return self.GET("/")
d.addCallback(_check)
def _check2(res):
- self.failUnless('To view your personal private non-shared' in res)
- self.failUnless('from your local filesystem:' in res)
- self.failUnless(os.path.abspath('web/test_welcome/private/start.html')
- in res)
+ # We shouldn't link to the start.html page since we don't have a
+ # private directory cap.
+ self.failIf('To view your personal private non-shared' in res)
+ self.failIf('from your local filesystem:' in res)
+ self.failIf(os.path.abspath('web/test_welcome/private/start.html') in res)
d.addCallback(_check2)
return d