- comment out using xsl style sheet until its ready

svn path=/trunk/; revision=25457
This commit is contained in:
Johannes Anderwald 2007-01-14 19:49:27 +00:00
parent e112816fe2
commit 6a1a30f13b

View file

@ -150,8 +150,8 @@ DepMapBackend::_generate_depmap ( FILE* OUT )
}
fprintf ( m_DepMapFile, "<?xml version=\"1.0\" encoding=\"iso-8859-1\" ?>\r\n" );
fprintf ( m_DepMapFile, "<?xml-stylesheet type=\"text/xsl\" href=\"depmap.xsl\"?>\r\n" );
fprintf ( m_DepMapFile, "<components>" );
//fprintf ( m_DepMapFile, "<?xml-stylesheet type=\"text/xsl\" href=\"depmap.xsl\"?>\r\n" );
fprintf ( m_DepMapFile, "<components>\r\n" );
for ( size_t i = 0; i < ProjectNode.modules.size(); i++ )
{
@ -162,6 +162,8 @@ DepMapBackend::_generate_depmap ( FILE* OUT )
{
module_data * data = it->second;
fprintf ( m_DepMapFile, "<component name=\"%s\" base=\"%s\" ref_count=\"%u\" library_count=\"%u\">\r\n", module.name.c_str(), module.GetBasePath ().c_str (), data->references.size (), data->libraries.size () );
if ( data->references.size () )