コード例 #1
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def list_tiddler_revisions(self, tiddler):
     """
     Retrieve a list of all the revision identifiers
     for one tiddler.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle listing tiddler revisions')
コード例 #2
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def tiddler_get(self, tiddler):
     """
     Get a tiddler from the store, returning a populated tiddler
     object. tiddler.creator and tiddler.created are based on
     the modifier and modified of the first revision of a tiddler.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle getting tiddlers')
コード例 #3
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def tiddler_delete(self, tiddler):
     """
     Delete a tiddler from the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle deleting tiddlers')
コード例 #4
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def bag_put(self, recipe):
     """
     Put a bag into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting bags')
コード例 #5
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def bag_get(self, bag):
     """
     Get a bag from the store, returning a populated bag object.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle getting bags')
コード例 #6
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def bag_delete(self, bag):
     """
     Remove the bag from the store, including the tiddlers within the bag.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle deleting bags')
コード例 #7
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def recipe_put(self, recipe):
     """
     Put a recipe into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting recipes')
コード例 #8
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def recipe_get(self, recipe):
     """
     Get a recipe from the store, returning a populated recipe object.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle getting recipes')
コード例 #9
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def recipe_delete(self, recipe):
     """
     Remove the recipe from the store, with no impact on the tiddlers.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle deleting recipes')
コード例 #10
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def search(self, search_query):
     """
     Search the entire tiddler store for search_query.
     """
     raise StoreMethodNotImplemented('this store does not provide search')
コード例 #11
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def list_users(self):
     """
     Retrieve a list of all the user objects in the system.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle listing users')
コード例 #12
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def list_bag_tiddlers(self, bag):
     """
     Retrieve a list of all tiddler objects in the named bag.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle listing bag tiddlers')
コード例 #13
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def list_bags(self):
     """
     Retrieve a list of all bag objects in the system.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle listing bags')
コード例 #14
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def list_recipes(self):
     """
     Retrieve a list of all recipe objects in the system.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle listing recipes')
コード例 #15
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def user_put(self, user):
     """
     Put a user into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting users')
コード例 #16
0
ファイル: __init__.py プロジェクト: funkyeah/tiddlyweb
 def user_get(self, user):
     """
     Get a user from the store, returning a populated user object.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle getting users')