Changeset 89
- Timestamp:
- 10/02/07 07:50:49 (6 years ago)
- Location:
- trunk/idldoc/src
- Files:
-
- 3 added
- 1 modified
-
doc_system__define.pro (modified) (2 diffs)
-
templates/help.tt (added)
-
templates/index-entries.tt (added)
-
templates/warnings.tt (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/idldoc/src/doc_system__define.pro
r88 r89 225 225 compile_opt strictarr 226 226 227 templates = ['file-listing', 'all-files', 'dir-listing', 'dir-overview', $ 228 'index', 'overview', 'savefile', 'profile'] 227 templates = ['file-listing', 'all-files', 'dir-listing', $ 228 'index', 'overview', 'help', 'warnings', 'index-entries', $ 229 'dir-overview', 'savefile', 'profile'] 229 230 for t = 0L, n_elements(templates) - 1L do begin 230 231 templateFilename = filepath(templates[t] + '.tt', $ … … 280 281 281 282 ; generate index entries page 282 283 indexEntriesTemplate = self->getTemplate('index-entries') 284 indexEntriesTemplate->reset 285 indexEntriesTemplate->process, self, filepath('idldoc-index.html', $ 286 root=self.output) 287 283 288 ; generate warnings page 289 warningsTemplate = self->getTemplate('warnings') 290 warningsTemplate->reset 291 warningsTemplate->process, self, filepath('idldoc-warnings.html', $ 292 root=self.output) 284 293 285 294 ; generate help page 286 295 helpTemplate = self->getTemplate('help') 296 helpTemplate->reset 297 helpTemplate->process, self, filepath('idldoc-help.html', root=self.output) 298 287 299 ; generate index.html 288 300 indexTemplate = self->getTemplate('index')
