[Cmake-commits] [cmake-commits] king committed cmCTestUpdateHandler.cxx 1.69 1.70

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Dec 18 10:54:30 EST 2009


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

Modified Files:
	cmCTestUpdateHandler.cxx 
Log Message:
Use literal quotes in Update.xml UpdateCommand

Previously we escaped quotes in <UpdateCommand>...</UpdateCommand>
values using '&quot;'.  This is not necessary because the value is in
xml CDATA and not an xml attribute.


Index: cmCTestUpdateHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestUpdateHandler.cxx,v
retrieving revision 1.69
retrieving revision 1.70
diff -C 2 -d -r1.69 -r1.70
*** cmCTestUpdateHandler.cxx	24 Nov 2009 13:58:58 -0000	1.69
--- cmCTestUpdateHandler.cxx	18 Dec 2009 15:54:24 -0000	1.70
***************
*** 259,263 ****
    os << "\t<StartDateTime>" << start_time << "</StartDateTime>\n"
      << "\t<StartTime>" << start_time_time << "</StartTime>\n"
!     << "\t<UpdateCommand>" << cmXMLSafe(vc->GetUpdateCommandLine())
      << "</UpdateCommand>\n"
      << "\t<UpdateType>" << cmXMLSafe(
--- 259,264 ----
    os << "\t<StartDateTime>" << start_time << "</StartDateTime>\n"
      << "\t<StartTime>" << start_time_time << "</StartTime>\n"
!     << "\t<UpdateCommand>"
!      << cmXMLSafe(vc->GetUpdateCommandLine()).Quotes(false)
      << "</UpdateCommand>\n"
      << "\t<UpdateType>" << cmXMLSafe(



More information about the Cmake-commits mailing list