Modify

Opened 15 years ago

Closed 8 years ago

Last modified 8 years ago

#4175 closed defect (fixed)

HTML title should be set to a specific name

Reported by: m.koller@… 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 8 years ago by Committo-Ergo-Sum

Resolution: fixed
Status: newclosed

In 15293:

Fix #4175: Set HTML title to a specific name.

comment:2 Changed 8 years ago by Ryan J Ollos

Minor coding style suggestions:

  • Move all code that can't raise an exception out of the try/except. Put the charset = ... before the try and everything after content = file(path).read() at the end of the try/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:3 Changed 8 years ago by Ryan J Ollos

In 15297:

0.2.0: Remove unnecessary parenthesis

Remove trailing whitespace.

Refs #4175.

comment:4 Changed 8 years ago by Ryan J Ollos

In 15298:

0.2.0: Remove tag_svn_revision from setup.cfg

The attribute isn't supported in setuptools >= 10.

Refs #4175.

comment:5 Changed 8 years ago by Ryan J Ollos

In 15299:

0.2.0: Fix incorrect indentation

Refs #4175.

comment:6 Changed 8 years ago by Ryan J Ollos

In 15300:

0.3.0dev: Bump version to 0.3.0dev

Refs #4175.

comment:7 Changed 8 years ago by Ryan J Ollos

In 15301:

0.3.0dev: Fix interpolation in logger calls

Refs #4175.

comment:8 Changed 8 years ago by Ryan J Ollos

Owner: changed from Christian Boos to Committo-Ergo-Sum

comment:9 Changed 8 years ago by Ryan J Ollos

In 15302:

0.3.0dev: Move code that doesn't raise exception out of try

Refs #4175.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Committo-Ergo-Sum.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.