From f90e41fe87f00055560f9f7860055d8512583079 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Fri, 8 Jul 2016 11:11:10 +0100 Subject: [PATCH] rename and document scripts --- .../{parse.py => parse_ctest_output.py} | 25 +++++++++++++++++++ contrib/utilities/wrapcomments.py | 18 +++++++++++++ 2 files changed, 43 insertions(+) rename contrib/utilities/{parse.py => parse_ctest_output.py} (89%) diff --git a/contrib/utilities/parse.py b/contrib/utilities/parse_ctest_output.py similarity index 89% rename from contrib/utilities/parse.py rename to contrib/utilities/parse_ctest_output.py index 001a37c456..b4499b3df3 100644 --- a/contrib/utilities/parse.py +++ b/contrib/utilities/parse_ctest_output.py @@ -1,3 +1,28 @@ +#!/usr/bin/python + +## --------------------------------------------------------------------- +## +## Copyright (C) 2016 by the deal.II authors +## +## This file is part of the deal.II library. +## +## The deal.II library is free software; you can use it, redistribute +## it, and/or modify it under the terms of the GNU Lesser General +## Public License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## The full text of the license can be found in the file LICENSE at +## the top level of the deal.II distribution. +## +## --------------------------------------------------------------------- + +# +# Written by timo.heister@gmail.com +# +# This is an (incomplete) script that parses test output from ctest's xml +# files and generates a static html page from it. +# +# Execute in the directory build/Testing + import xml.etree.ElementTree as ET import glob diff --git a/contrib/utilities/wrapcomments.py b/contrib/utilities/wrapcomments.py index b3c0c30a22..63f5a83946 100755 --- a/contrib/utilities/wrapcomments.py +++ b/contrib/utilities/wrapcomments.py @@ -1,5 +1,23 @@ #!/usr/bin/python +## --------------------------------------------------------------------- +## +## Copyright (C) 2016 by the deal.II authors +## +## This file is part of the deal.II library. +## +## The deal.II library is free software; you can use it, redistribute +## it, and/or modify it under the terms of the GNU Lesser General +## Public License as published by the Free Software Foundation; either +## version 2.1 of the License, or (at your option) any later version. +## The full text of the license can be found in the file LICENSE at +## the top level of the deal.II distribution. +## +## --------------------------------------------------------------------- + +# +# Written by timo.heister@gmail.com + # run this script on all headers of deal.II to fix comment line wrapping for # doxygen comments. # Example: -- 2.39.5