From: Wolfgang Bangerth Date: Mon, 7 Aug 2023 10:23:10 +0000 (-0600) Subject: No longer list IWR as the hosting institution. X-Git-Tag: relicensing~614^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7f37a75c9276bbcdddc1519ce131c1f9777d87a6;p=dealii.git No longer list IWR as the hosting institution. --- diff --git a/doc/doxygen/CMakeLists.txt b/doc/doxygen/CMakeLists.txt index 020d921b2b..69f1d4cdc4 100644 --- a/doc/doxygen/CMakeLists.txt +++ b/doc/doxygen/CMakeLists.txt @@ -144,12 +144,6 @@ configure_file( ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl ) -configure_file( - ${CMAKE_CURRENT_SOURCE_DIR}/scripts/mod_footer.pl.in - ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl - ) - - # # Generate header, footer and style files for doxygen. # @@ -167,11 +161,9 @@ add_custom_command( COMMAND ${CMAKE_COMMAND} -E touch footer.html COMMAND ${DOXYGEN_EXECUTABLE} -w html header.html footer.html style.css options.dox COMMAND ${PERL_EXECUTABLE} -pi ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl header.html - COMMAND ${PERL_EXECUTABLE} -pi ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl footer.html WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/options.dox ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_header.pl - ${CMAKE_CURRENT_BINARY_DIR}/scripts/mod_footer.pl ) # diff --git a/doc/doxygen/scripts/mod_footer.pl.in b/doc/doxygen/scripts/mod_footer.pl.in deleted file mode 100644 index 54bf69ab13..0000000000 --- a/doc/doxygen/scripts/mod_footer.pl.in +++ /dev/null @@ -1,34 +0,0 @@ -## --------------------------------------------------------------------- -## -## Copyright (C) 2014 - 2018 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.md at -## the top level directory of deal.II. -## -## --------------------------------------------------------------------- - -# -# A PERL script that modifies the default-generated 'footer.html' file -# that doxygen provides for us and customizes it for our needs. -# - -use Sys::Hostname; -my $host = hostname; - -my $hosting = << 'EOT' -  Hosting provided by  -IWR -Universität Heidelberg -EOT - ; - -if ($host eq "simweb") -{ - s/\$doxygenversion/\$doxygenversion $hosting/; -}