Changeset 78:b5dabe9762d1 for pycommunity/pycommunity/package.py
- Timestamp:
- 04/12/07 17:38:04 (15 months ago)
- Files:
-
- 1 modified
-
pycommunity/pycommunity/package.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pycommunity/pycommunity/package.py
r68 r78 158 158 self._glossary_file = configuration.glossary 159 159 self._options = configuration.options 160 self._tutorials = configuration.tutorials 161 self._recipes = configuration.recipes 160 162 161 163 for target in targets: … … 199 201 template = self._rest_template 200 202 glossary = self._glossary_file 203 tutorials = self._tutorials 204 recipes = self._recipes 201 205 202 206 for file_ in files: 203 view = TaskView(template, file_, glossary )207 view = TaskView(template, file_, glossary, tutorials, recipes) 204 208 filename = os.path.join(folder, self._getHTMLName(file_)) 205 209 self._writeFile(filename, view()[1])
