Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 3
0
 def tiddler_delete(self, tiddler):
     """
     Delete a tiddler from the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle deleting tiddlers')
Ejemplo n.º 4
0
 def bag_put(self, recipe):
     """
     Put a bag into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting bags')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 7
0
 def recipe_put(self, recipe):
     """
     Put a recipe into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting recipes')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 10
0
 def search(self, search_query):
     """
     Search the entire tiddler store for search_query.
     """
     raise StoreMethodNotImplemented('this store does not provide search')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 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')
Ejemplo n.º 15
0
 def user_put(self, user):
     """
     Put a user into the store.
     """
     raise StoreMethodNotImplemented(
         'this store does not handle putting users')
Ejemplo n.º 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')