From 5d6d2f31a991a9c4c387315e1d57c4ac11bcf2f5 Mon Sep 17 00:00:00 2001 From: Panagiotis Cheilaris Date: Fri, 31 May 2013 10:08:29 +0200 Subject: [PATCH] remove xml file in documentation directory --- .../cgal_create_package_dir.py | 31 +------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/Scripts/developer_scripts/cgal_create_package_dir.py b/Scripts/developer_scripts/cgal_create_package_dir.py index eb2cc83893b..52dd0ebe065 100755 --- a/Scripts/developer_scripts/cgal_create_package_dir.py +++ b/Scripts/developer_scripts/cgal_create_package_dir.py @@ -28,32 +28,8 @@ INPUT = ${CMAKE_SOURCE_DIR}/PACKAGENAME/doc/PACKAGENAME/ \ ${CMAKE_SOURCE_DIR}/PACKAGENAME/include """ -xmlstring = \ -""" - - PRETTY PACKAGE NAME - ../PACKAGENAME/doc/PACKAGENAME - ../PACKAGENAME/include - - ../PACKAGENAME/doc/PACKAGENAME - ../PACKAGENAME/doc/PACKAGENAME/ - ../PACKAGENAME/doc/PACKAGENAME/fig - ../PACKAGENAME/examples - - Manual - Kernel_23 - STL_Extension - Algebraic_foundations - Circulator - Stream_support - - - - -""" - descrstring = \ -r"""// PRETTY PACKAGE NAME should be the same as the one in the xml file +r"""// PRETTY PACKAGE NAME should equal the project title in Doxyfile.in /// \defgroup PkgPACKAGE PRETTY PACKAGE NAME Reference /// \defgroup PkgPACKAGEConcepts Concepts @@ -180,11 +156,6 @@ if re.match("^[A-Za-z_][A-Za-z0-9_]*$", packagename): usermanfile.write(usermanstring) usermanfile.close() - xmlpath = os.path.join(docpath, (packagename + '.xml')) - xmlfile = open(xmlpath, 'w') - xmlfile.write(re.sub('PACKAGENAME', packagename, xmlstring)) - xmlfile.close() - doxypath = os.path.join(docpath, ('Doxyfile.in')) doxyfile = open(doxypath, 'w') doxyfile.write(re.sub('PACKAGENAME', packagename, doxystring))