示例#1
0
 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
 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
 def tiddler_delete(self, tiddler):
     """
     Delete a tiddler from the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle deleting tiddlers')
示例#4
0
 def bag_put(self, recipe):
     """
     Put a bag into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting bags')
示例#5
0
 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
 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
 def recipe_put(self, recipe):
     """
     Put a recipe into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting recipes')
示例#8
0
 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
 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
 def search(self, search_query):
     """
     Search the entire tiddler store for search_query.
     """
     raise StoreMethodNotImplemented('this store does not provide search')
示例#11
0
 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
 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
 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
 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
 def user_put(self, user):
     """
     Put a user into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting users')
示例#16
0
 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')