예제 #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')