======== resttask ======== Provides base class for tasks that deals with rest files. `TaksView` provides a generic viewer, that knows how to render rest files, given a Cheetah template and a reST file:: >>> from resttask import TaskView >>> view = TaskView('tests/templates/recipe.pt', ... 'tests/svn/project/recipes/glossary_recipe.txt', ... 'tests/svn/project/doc/glossary.txt', ... ['tests/svn/project/doc/tutorials'], []) ... >>> title, content = view() >>> title 'How to make a glossary' The content is also scanned, to replace glossary entries:: >>> print content ... PyCommunity ...