[Cmake-commits] [cmake-commits] hoffman committed cmDocumentationFormatterHTML.cxx 1.14 1.15

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Sep 14 20:54:26 EDT 2009


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv8268

Modified Files:
	cmDocumentationFormatterHTML.cxx 
Log Message:
Fix for bug# 5373, include CMake verison in generated docs.


Index: cmDocumentationFormatterHTML.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDocumentationFormatterHTML.cxx,v
retrieving revision 1.14
retrieving revision 1.15
diff -C 2 -d -r1.14 -r1.15
*** cmDocumentationFormatterHTML.cxx	10 Oct 2008 15:23:35 -0000	1.14
--- cmDocumentationFormatterHTML.cxx	15 Sep 2009 00:54:22 -0000	1.15
***************
*** 17,21 ****
  #include "cmDocumentationFormatterHTML.h"
  #include "cmDocumentationSection.h"
! 
  //----------------------------------------------------------------------------
  static bool cmDocumentationIsHyperlinkChar(char c)
--- 17,21 ----
  #include "cmDocumentationFormatterHTML.h"
  #include "cmDocumentationSection.h"
! #include "cmVersion.h"
  //----------------------------------------------------------------------------
  static bool cmDocumentationIsHyperlinkChar(char c)
***************
*** 259,263 ****
      }
  
!   os << "<h2><a name=\"section_Index\"/>Master Index</h2>\n";
    os << "<ul>\n";
    for(unsigned int i=0; i < sections.size(); ++i)
--- 259,265 ----
      }
  
!   os << "<h2><a name=\"section_Index\"/>Master Index "
!      << "CMake " << cmVersion::GetCMakeVersion()
!      << "</h2>\n";
    os << "<ul>\n";
    for(unsigned int i=0; i < sections.size(); ++i)



More information about the Cmake-commits mailing list