summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentationFormatterDocbook.cxx
Commit message (Collapse)AuthorAgeFilesLines
* Convert CMake to OSI-approved BSD LicenseBrad King2009-09-281-14/+9
| | | | | | | This converts the CMake license to a pure 3-clause OSI-approved BSD License. We drop the previous license clause requiring modified versions to be plainly marked. We also update the CMake copyright to cover the full development time range.
* BUG: don't create empty <itemizedlist>s (#7289), dblatex didn't like thatAlexander Neundorf2009-01-101-10/+13
| | | | Alex
* ENH: Improve generated documentation formattingBrad King2008-10-101-3/+4
| | | | | | | | | | | | Applying patch provided in issue #7797. Fixes to man-pages: - Character '-' must be espaced as '\-' - Surround preformatted text with '.nf' and '.fi' to adjust filling - Give every page a NAME section for indexing by mandb - Pass the man page filename without extension to .TH in its header Also added a title to the HTML header.
* STYLE: insert newlines after listitem so the generated lines don't getAlexander Neundorf2008-05-091-1/+1
| | | | | | several thousand characters long Alex
* ENH: Fix generated documentation internal links.Brad King2008-05-051-5/+7
| | | | | | | - Previously all links started in 'command_' which led to conflicts and was confusing for non-command items. - Use a per-section name that is meaningful to humans. - Fix link id names to be valid HTML.
* ENH: add support for creating the documentation in docbook formatAlexander Neundorf2008-02-191-0/+254
(http://www.oasis-open.org/docbook/xml/4.2/), which users can then convert to other formats. Tested with meinproc from KDE, which generates HTML pages which look good. Alex