From: Peter Munch Date: Wed, 4 Sep 2024 21:19:51 +0000 (+0200) Subject: Fix indentation script X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=91b68e07bbfb16def0960819418b3639243f6345;p=dealii.git Fix indentation script --- diff --git a/contrib/utilities/indent b/contrib/utilities/indent index 80d1d6c26d..80a08e728e 100755 --- a/contrib/utilities/indent +++ b/contrib/utilities/indent @@ -70,12 +70,12 @@ process_changed "source" ".*\.inst.in" format_inst process_changed "tests include source examples cmake/scripts contrib/python-bindings" \ ".*\.(cc|h|inst.in|output.*|cmake)" fix_permissions -process_changed "doc/news/*/*" "[A-Za-z0-9]*" fix_permissions +process_changed "doc/news/*/*" "doc/news/.*/.*/[0-9].*" fix_permissions process_changed "tests include source examples cmake/scripts contrib/python-bindings" \ ".*\.(cc|h|inst.in|cmake)" dos_to_unix -process_changed "doc/news/*/*" "[A-Za-z0-9]*" dos_to_unix +process_changed "doc/news/*/*" "doc/news/.*/.*/[0-9].*" dos_to_unix # # Removing trailing whitespace @@ -84,7 +84,7 @@ process_changed "doc/news/*/*" "[A-Za-z0-9]*" dos_to_unix process_changed "tests include source examples cmake/scripts contrib/python-bindings doc" \ ".*\.(cc|h|html|dox|txt)" remove_trailing_whitespace -process_changed "doc/news/*/*" "[A-Za-z0-9]*" remove_trailing_whitespace +process_changed "doc/news/*/*" "doc/news/.*/.*/[0-9].*" remove_trailing_whitespace # # Ensure only a single newline at end of files @@ -93,4 +93,4 @@ process_changed "doc/news/*/*" "[A-Za-z0-9]*" remove_trailing_whitespace process_changed "tests include source examples cmake/scripts contrib/python-bindings doc" \ ".*\.(cc|h|html|dox|txt)" ensure_single_trailing_newline -process_changed "doc/news/*/*" "[A-Za-z0-9]*" ensure_single_trailing_newline +process_changed "doc/news/*/*" "doc/news/.*/.*/[0-9].*" ensure_single_trailing_newline diff --git a/contrib/utilities/indent-all b/contrib/utilities/indent-all index 7f049e60b2..f4eea6916e 100755 --- a/contrib/utilities/indent-all +++ b/contrib/utilities/indent-all @@ -74,12 +74,12 @@ process "source" ".*\.inst.in" format_inst process "tests include source examples cmake/scripts contrib/python-bindings" \ ".*\.(cc|h|inst.in|output.*|cmake)" fix_permissions -process "doc/news/*/*" "[A-Za-z0-9]*" fix_permissions +process "doc/news/*/*" "doc/news/.*/.*/[0-9].*" fix_permissions process "tests include source examples cmake/scripts contrib/python-bindings" \ ".*\.(cc|h|inst.in|cmake)" dos_to_unix -process "doc/news/*/*" "[A-Za-z0-9]*" dos_to_unix +process "doc/news/*/*" "doc/news/.*/.*/[0-9].*" dos_to_unix # # Removing trailing whitespace @@ -88,7 +88,7 @@ process "doc/news/*/*" "[A-Za-z0-9]*" dos_to_unix process "tests include source examples cmake/scripts contrib/python-bindings doc" \ ".*\.(cc|h|html|dox|txt)" remove_trailing_whitespace -process "doc/news/*/*" "[A-Za-z0-9]*" remove_trailing_whitespace +process "doc/news/*/*" "doc/news/.*/.*/[0-9].*" remove_trailing_whitespace # # Ensure only a single newline at end of files @@ -97,4 +97,4 @@ process "doc/news/*/*" "[A-Za-z0-9]*" remove_trailing_whitespace process "tests include source examples cmake/scripts contrib/python-bindings doc" \ ".*\.(cc|h|html|dox|txt)" ensure_single_trailing_newline -process "doc/news/*/*" "[A-Za-z0-9]*" ensure_single_trailing_newline +process "doc/news/*/*" "doc/news/.*/.*/[0-9].*" ensure_single_trailing_newline diff --git a/doc/news/changes/incompatibilities/20240103AfricaBlaisMunch b/doc/news/changes/incompatibilities/20240103AfricaBlaisMunch index a1c898a17a..79ab250365 100644 --- a/doc/news/changes/incompatibilities/20240103AfricaBlaisMunch +++ b/doc/news/changes/incompatibilities/20240103AfricaBlaisMunch @@ -2,7 +2,7 @@ Deprecated: The classes SolutionTransfer and parallel::distributed::SolutionTran have been unified to SolutionTransfer. The class now supports both serial and parallel meshes. The class has lost some functions: the function SolutionTransfer::interpolate() that takes the input vector as well as the less frequently used functions -SolutionTransfer::prepare_for_pure_refinement() and +SolutionTransfer::prepare_for_pure_refinement() and SolutionTransfer::refine_interpolate(). Please use the other functions to accomplish the same functionality. For the time being, the old implementation has been moved to the `Legacy` namespace. The old parallel::distributed::SolutionTransfer has been now early deprecated. diff --git a/doc/news/changes/incompatibilities/20240821Munch b/doc/news/changes/incompatibilities/20240821Munch index 638698f616..dffc5e6ffd 100644 --- a/doc/news/changes/incompatibilities/20240821Munch +++ b/doc/news/changes/incompatibilities/20240821Munch @@ -1,4 +1,4 @@ -Changed: The deprecated entries Text and ShortText in OutputStyle +Changed: The deprecated entries Text and ShortText in OutputStyle have been removed.
(Peter Munch, 2024/08/21) diff --git a/doc/news/changes/minor/20240811Gassmoeller b/doc/news/changes/minor/20240811Gassmoeller index e10f8adcb2..4a72f3b7f1 100644 --- a/doc/news/changes/minor/20240811Gassmoeller +++ b/doc/news/changes/minor/20240811Gassmoeller @@ -1,6 +1,6 @@ New: Parameter entries in the ParameterHandler class can now be marked as deprecated using the function 'mark_as_deprecated'. If deprecated parameters -are found in a parameter file an exception of type +are found in a parameter file an exception of type 'ExcEncounteredDeprecatedEntries' is thrown that can be caught in the calling code, or if ignored will emit an error message.
diff --git a/doc/news/changes/minor/20240814chaycha b/doc/news/changes/minor/20240814chaycha index e945e345ba..06cff00e7b 100644 --- a/doc/news/changes/minor/20240814chaycha +++ b/doc/news/changes/minor/20240814chaycha @@ -1,4 +1,4 @@ New: Added SparseVanka::Tvmult() and SparseVanka::clear() SparseVanka can now be passed to MGSmootherPrecondition to be used as a multigrid smoother.
-(Chayapol Chaoveeraprasit, 2024/08/14) \ No newline at end of file +(Chayapol Chaoveeraprasit, 2024/08/14) diff --git a/doc/news/changes/minor/20240828Shi b/doc/news/changes/minor/20240828Shi index 5b4fba5266..7237c4f82b 100644 --- a/doc/news/changes/minor/20240828Shi +++ b/doc/news/changes/minor/20240828Shi @@ -2,4 +2,4 @@ Fix: Add the missing `compressed = false` in TpetraWrappers::Vector::add() function to ensure distributed Tpetra vector with writable nonlocal entries will always be non-compressed after any entry addition.
-(Qingyuan Shi, 2024/08/28) \ No newline at end of file +(Qingyuan Shi, 2024/08/28)