Modify ↓
#4175 closed defect (fixed)
HTML title should be set to a specific name
Reported by: | Owned by: | Committo-Ergo-Sum | |
---|---|---|---|
Priority: | normal | Component: | DoxygenPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.10 |
Description
All the pages have the same title, which is very inconvenient when you have multiple pages open in separate tabs in a browser as you can not distinguish what tab shows which documentation. E.g. http://opensync.org/doxygen/group__OSyncArchiveAPI.html has as title simply "Doygen Trac - Opensync" but should have "OpenSync Archive"
Attachments (0)
Change History (9)
comment:1 Changed 9 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 9 years ago by
Minor coding style suggestions:
- Move all code that can't raise an exception out of the
try
/except
. Put thecharset = ...
before thetry
and everything aftercontent = file(path).read()
at the end of thetry
/except
. - Pass arguments to the logger rather than using string interpolation:
->
self.log.debug('Performing A %s, P %s, L %s, W %s.' % (action or 'default', path, link, self.wiki_index))
self.log.debug("Performing A %s, P %s, L %s, W %s.", action or 'default', path, link, self.wiki_index)
- Parenthesis aren't needed around
(self._merge_header(path))
.
comment:8 Changed 9 years ago by
Owner: | changed from Christian Boos to Committo-Ergo-Sum |
---|
Note: See
TracTickets for help on using
tickets.
In 15293: