summaryrefslogtreecommitdiffstats
path: root/Source/cmDocumentation.cxx
Commit message (Collapse)AuthorAgeFilesLines
* BUG: properties and module names are case sensitiveAlexander Neundorf2007-08-091-27/+22
| | | | Alex
* STYLE: fix line lengthsAlexander Neundorf2007-07-201-9/+10
| | | | Alex
* STYLE: sort the property documentation intoAlexander Neundorf2007-07-111-18/+161
| | | | | | global/directory/target/test/sourcefile and variable sections Alex
* COMP: fix compile on HP-UX with aCC, reusing the same identifier for aAlexander Neundorf2007-07-031-38/+38
| | | | | | variable as for the enum type doesn't work here Alex
* ENH: generate separate documentation for the commands, compatiblityAlexander Neundorf2007-06-281-15/+92
| | | | | | | | commands, modules and properties as html, text and man pages. The names of the man pages are cmcommands, cmcompat, cmprops and cmmodules, so they are easy to type. Alex
* ENH:Alexander Neundorf2007-06-281-128/+158
| | | | | | | | | | | | -in the full documentation there is now an extra section for compatibility commands, so users see which commands they shouldn't use -cmake -h <command> now also works with lower case commands --help-fullm --help-command, --help-module and --help-property now determine the output format from the extension of the given filename Let me know if there are some things I overlooked. Alex
* ENH: put compatibility commands in extra section and prepare for creatingAlexander Neundorf2007-06-221-4/+102
| | | | | | | separate man pages for properties, modules, commands and compatibility commands Alex
* STYLE: create command documentation for ctestAlexander Neundorf2007-06-081-14/+17
| | | | | | | I think some of the cmake commands should be removed from ctest if possible, like add_executable etc. Alex
* BUG: Patch from Alex to fix single-command help broken by previous patch.Brad King2007-02-061-4/+8
|
* ENH: Patch from Alex to improve implementation and prepare for splitting the ↵Brad King2007-02-011-151/+150
| | | | man page into more sections.
* COMP: Patch from Alex for const correctness.Brad King2007-01-221-2/+2
|
* COMP: fix some warnings and style issuesKen Martin2006-12-081-1/+2
|
* ENH: make properties a bit more formal with documentation and chainingKen Martin2006-12-071-0/+83
|
* ENH: Make hyperlinks in documentation active when generated into HTML ↵Brad King2006-10-161-9/+74
| | | | documents. This addresses bug#3906.
* BUG: potential segfaultKen Martin2006-10-061-1/+4
|
* ENH: Adding links to web resources and FAQ to SEE ALSO section. This ↵Brad King2006-10-051-11/+34
| | | | addresses bug #3757.
* BUG: Fixed man page formatting for INSTALL command documentation. Fixed ↵Brad King2006-08-221-2/+6
| | | | line-too-long warning.
* STYLE: fix line lengthKen Martin2006-05-101-11/+19
|
* ENH: search for help modules in the correct place for install and source ↵Bill Hoffman2006-04-141-6/+4
| | | | tree builds
* ENH: case insensitive command helpBill Hoffman2006-04-121-0/+1
|
* ENH: make sure uncommented modules are not documentedBill Hoffman2005-12-161-2/+1
|
* ENH: fix module documenation to handle bad docs and fix qt3 docsBill Hoffman2005-12-151-4/+6
|
* ENH: add documentation support for modulesBill Hoffman2005-12-141-0/+211
|
* ENH: Cleanup the help a bitAndy Cedilnik2005-07-181-0/+5
|
* ENH: Add development version support in CMakeAndy Cedilnik2004-10-221-4/+10
|
* BUG: Move documentation so that it does not apear in ctestAndy Cedilnik2004-05-101-6/+0
|
* ENH: Renamed --help-list-commands to --help-command-list and split --help ↵Brad King2004-04-141-33/+88
| | | | [command] into separate --help and --help-command cmd options.
* ENH: Added --help-list-commands option.Brad King2004-04-141-2/+24
|
* BUG: Don't use -V as a version option. It conflicts with ctest.Brad King2003-08-061-1/+0
|
* ENH: Added configuration of name of executable in man page header and ↵Brad King2003-08-061-4/+23
| | | | version banner.
* ENH: Added support to --help to print help for a single command.Brad King2003-08-051-10/+53
|
* ENH: CheckOptions now takes const argv.Brad King2003-07-231-1/+1
|
* BUG: Text dump of documentation should be in ascii mode.Brad King2003-07-211-4/+0
|
* ENH: Added SEE ALSO section to generated man page. Minor formatting ↵Brad King2003-07-111-13/+36
| | | | improvements for generated text-only documentation.
* ERR: Added missing std::.Brad King2003-07-081-2/+2
|
* ENH: Improved name of cmake version variables. They are now CMake_VERSION ↵Brad King2003-07-081-3/+3
| | | | (major.minor) and CMake_VERSION_FULL (major.minor.patch).
* ENH: Added support to write multiple help options with one command line. ↵Brad King2003-07-081-17/+84
| | | | Output files can now also be specified for the help options.
* ENH: Registered global generators are now kept in a table in the cmake ↵Brad King2003-07-081-0/+23
| | | | instance. Added support for documentation with a Generators section.
* ENH: Running with zero arguments now produces usage.Brad King2003-04-031-1/+8
|
* ERR: Fixed signed/unsigned warning.Brad King2003-02-191-2/+2
|
* ENH: Re-implemented document generation class to be more organized and more ↵Brad King2003-02-191-319/+470
| | | | robust.
* Minor documentation fixesAndy Cedilnik2003-02-171-5/+22
|
* ENH: Added header before list of commands in generated docs. Made options ↵Brad King2003-02-171-12/+40
| | | | more intuitive.
* ERR: Use of stream format flags is hard to make portable. Manually ↵Brad King2003-02-161-6/+6
| | | | implementing justification.
* ERR: Use of std::ios::fmtflags is not portable to older compilers.Brad King2003-02-161-1/+1
|
* ENH: Improved formatting of plain-text help to add a blank line before the ↵Brad King2003-02-141-3/+7
| | | | beginning of a preformatted section.
* ENH: Further improved formatting. HTML/man/help now all have a consistent ↵Brad King2003-02-141-43/+88
| | | | appearance.
* ENH: Improved formatting of documentation.Brad King2003-02-141-7/+71
|
* ENH: Added cmDocumentation class to generate various forms of documentation. ↵Brad King2003-02-141-0/+478
Each executable will be able to generate its own documentation.