- Feb 14, 2025
-
-
Ben Boeckel authored
-
- Feb 02, 2025
-
-
Ben Boeckel authored
-
- Jan 24, 2025
-
-
Jaswant Panchumarti (Kitware) authored
- fixes undeclared name error with GCC 13.3.1 used in fedora39 runners.
-
- Jan 16, 2025
-
-
Spiros Tsalikis authored
From the image, it looks like the unit test read two input files. However, the unit test code doesn't actually read any data files. Instead, it programmatically generates two vtkImageData. I think the baseline was accidentally checked in and the regression test logic failed to detect the error. Also, the test has been fixed to assign all components to avoid random value initialization.
-
Jaswant Panchumarti (Kitware) authored
- the link options are now centralized in the `VTK::vtkWebAssemblyTestLinkOptions` target with `INTERFACE` visibility. - this leverages the fact that all unit tests link with the `VTK::TestingCore` library. - On emscripten platform, the asyncify link options are separately appended on the vtkRenderingWebGPUCxxTests target.
-
- Jan 09, 2025
-
-
Sean McBride authored
-
- Dec 21, 2024
-
-
Add support for setting multiple constant values for use with mappers which support manipulating multiple textures.
-
- Dec 10, 2024
-
-
When SSIM returns a negative value, the histogram bucketing ends up writing to out-of-bounds memory. Don't do that and instead shift the buckets to account for the full range of values that are possible. Finally, add commentary on the code. The clamping is still preserved as enabled by default in vtkTesting, because we want to treat the anti-correlated images (negative values) in the same way as not similar.
-
- Nov 07, 2024
-
-
Jaswant Panchumarti (Kitware) authored
- dynamically construct the arguments for recognized engines, like chrome/chromium.
-
- Oct 08, 2024
-
-
Spiros Tsalikis authored
When an operation supports only 1 input, but many inputs have been provided, we make sure that only the first is used.
-
Spiros Tsalikis authored
Also add anonymous namespace
-
Spiros Tsalikis authored
For some reason the baselines are slightly different on macos.
-
- Oct 07, 2024
-
-
Spiros Tsalikis authored
Remove the threshold that existed before because the new image testing framework is now used, whose threshold ranges from 0 to 1, and 0.05 is a good default.
-
- Sep 28, 2024
-
-
Also use C++17 syntax rules as the next release expects to use C++17.
-
- Sep 10, 2024
-
-
- this fixes flakiness in couple unit tests due to a spurious error that occurred when creating extra threads https://github.com/emscripten-core/emscripten/issues/12223 by completely disabling threads for unit tests. - sync XHR in `vtkPreloadDataFileIntoMemory` is apparently possible when the mimetype is `text/plain` - https://stackoverflow.com/a/63920556/7102809 - Now, `vtkEmscripten.cmake` does not enable threads by default when `VTK_BUILD_TESTING` is `WANT` or `ON`. - Make `VTK_USE_PTHREADS` honor the value of `VTK_WEBASSEMBLY_THREADS`. This correctly configures code in VTK which assumes pthreads exist. - Remove pthread proxying and offscreen canvas link flags from unit tests as they're no longer required.
-
(cherry picked from commit 137a5d40)
-
- Aug 19, 2024
-
-
Davide Punzo authored
-
- Aug 14, 2024
-
-
Mathieu Westphal (Kitware) authored
-
- Jul 29, 2024
-
-
Indexing into a multi-component image, the pointer was walking an additional step using the scalar size. Since, the pointer is templated over the underlying type, indexing directly into the active component yields the right result. (cherry picked from commit e070775b)
-
- Jul 25, 2024
-
-
Mathieu Westphal (Kitware) authored
Rework vtkImageSSIM mode logic to separate an explicit automatic mode (default) from a new MODE_INPUT_RANGE. MODE_NONE has been removed.
-
- Jul 24, 2024
-
-
- Jul 17, 2024
-
-
Sankhesh Jhaveri authored
Indexing into a multi-component image, the pointer was walking an additional step using the scalar size. Since, the pointer is templated over the underlying type, indexing directly into the active component yields the right result.
-
- Jul 01, 2024
-
-
Jaswant Panchumarti (Kitware) authored
- `CMAKE_SOURCE_DIR` is not guaranteed to be the top level VTK directory.
-
- Jun 26, 2024
-
-
The shift for vtkImageFourierCenter was off by one, placing the spectrum one pixel past the center of the image. (cherry picked from commit c578c9ac)
-
- Jun 20, 2024
-
-
David Gobbi authored
The shift for vtkImageFourierCenter was off by one, placing the spectrum one pixel past the center of the image.
-
- Jun 05, 2024
-
-
When an input vtkImageData did not contain point scalars (e.g., because it contains tensors, or no point data at all) then vtkImageReslice crashed. It is not a problem if the filter only processes scalar data, but it should never crash, for any kind of input data. (cherry picked from commit 064d36d5)
-
(cherry picked from commit 2a01ca8d)
-
- May 31, 2024
-
-
Andras Lasso authored
When an input vtkImageData did not contain point scalars (e.g., because it contains tensors, or no point data at all) then vtkImageReslice crashed. It is not a problem if the filter only processes scalar data, but it should never crash, for any kind of input data.
-
- May 22, 2024
-
-
Jaswant Panchumarti (Kitware) authored
- enablesr Rendering{Core, OpenGL}CxxTests in browser with vtk.wasm. - upgrades to CI can be found in the next commit. - all C++ tests are run with a python script Testing/WebAssembly/runner.py. This script coordinates the entire wasm testing process. - the runner.py script generates a html file per unit test at runtime, serves the html, js and wasm files with a http server and opens the URL in a browser. It implements some usefule POST/GET actions which enable C++ tests to preload/dump files and forward stdout/stderr/exit codes to the python process. - this commit introduces vtkEmscriptenTestUtilities which can load data files and baseline images required by a c++ unit test from a browser sandbox.
-
- May 17, 2024
-
-
Sankhesh Jhaveri authored
-
- Apr 22, 2024
-
-
Data races were found by TSan in the `ImagingCorePython-Spectrum` test. Solution copied from afb57cc2. Co-authored-by:
Ben Boeckel <ben.boeckel@kitware.com> (cherry picked from commit a5fad520)
-
- Apr 16, 2024
-
-
Sean McBride authored
Data races were found by TSan in the `ImagingCorePython-Spectrum` test. Solution copied from afb57cc2. Co-authored-by:
Ben Boeckel <ben.boeckel@kitware.com>
-
- Mar 01, 2024
-
-
Yohann Bearzi (Kitware) authored
Updating a lot of baselines to match the new image comparison method
-
Yohann Bearzi (Kitware) authored
SSIM Stands for Structural Similarity Index Measure
-
Yohann Bearzi (Kitware) authored
-
- Jan 02, 2024
-
-
Yohann Bearzi (Kitware) authored
-
- Nov 10, 2023
-
-
Sean McBride authored
-
- Oct 12, 2023
-
-
Sean McBride authored
-
Sean McBride authored
-
- Jul 25, 2023
-
-
Mathieu Westphal (Kitware) authored
Replace 1 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================(.|\n)*.*Program: Visualization Toolkit\n.*Module:.*\n\n Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n All rights reserved.\n See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n.*\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 2 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================(.|\n)*.*Program: Visualization Toolkit\n.*Module:.*\n\n Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n All rights reserved.\n See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n.*\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 3 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n.*Program:.*Visualization Toolkit\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n.*\n.*\n.*\n.*\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 4 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 5 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 6 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n.*=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 7 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 8 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*==================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n===================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace sandia 1 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n\n-------------------------------------------------------------------------\n.*Copyright 2008 Sandia Corporation.\n.*Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,\n.*the U.S. Government retains certain rights in this software.\n-------------------------------------------------------------------------\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright 2008 Sandia Corporation\n\/\/ SPDX-License-Identifier: LicenseRef-BSD-3-CLAUSE-Sandia-USGov/g' %s Replace 9 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*Visualization Toolkit\n.*Module:.*\n.*Language:.*\n\n.*Copyright \(c\) .* Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual 1 Replace 10 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace 11 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n.*Program:.*\n.*Module:.*\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n.*\n.*\n.*\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Replace Valve 1 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n.*Module:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\nParts Copyright Valve Corporation from.*\nunder their BSD license found here:\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright (c) 2015, Valve Corporation\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual 2 Manual 3 manual 4 manual sandia 1 manual 5 Replace ParaView 1 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n.*Module:.*\n\n.*Copyright \(c\) Sandia Corporation, Kitware Inc.\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright (c) Sandia Corporation, Kitware Inc\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual Sandia 2 Replace 13 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n.*=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual sandia 3 replace 14 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n.*Module:.*\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .* for details.\n\n.*\n.*\n.*\n\n.*=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual sandia 4 Manual 6 manual 7 manual sandia 5 Manual Kitware SAS 1 manual 7 Manual 10 manual 11 manual 12 manual 15 Fix wrong spdx name Remove useless cmake copyright Remove useless copyrights Remove useless copyright and license statement in python files Removal glsl cat files.out | xargs -I %s perl -i~ -0777 -pe "s/.*=========================================================================\n.*\n.*Program:.*\n.*Module:.*\n.*\n.*Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n.*All rights reserved.\n.*See Copyright.txt or .*for details.\n.*\n.*\n.*\n.*\n.*\n.*=========================================================================\n//g" %s Replace sandia accel cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\/=============================================================================\n.*\n.*Copyright \(c\) Kitware, Inc.\n.*All rights reserved.\n.*See LICENSE.txt for details.\n.*\n.*This.*\n.*the.*\n.*PURPOSE.*\n.*\n.*Copyright 2012 Sandia Corporation.\n.*Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,\n.*the U.S. Government retains certain rights in this software.\n.*\n.*=============================================================================/\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.\n\/\/ SPDX-FileCopyrightText: Copyright 2012 Sandia Corporation.\n\/\/ SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov/g' %s Manual sandia accel manual Kitware inc Manual fixups Manual 14 Replace 15 cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\*=========================================================================\n\n.*Program:.*\n.*Module:.*\n\n.*Copyright \(c\) Kitware, Inc.\n.*All rights reserved.\n.*See LICENSE file for details.\n\n.*\n.*\n.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-CLAUSE/g' %s Manual 16 Removing non-standard file header cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\/\/ \-\*\- c\+\+.*\n\n//g' %s Manual removal non standard header Adding custom sandia and lanl licenses Fix missing header common core Manual missing headers Add missing sandia cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\/ SPDX-FileCopyrightText.*\n\/\/ SPDX-License-Identifier.*\n\n\/\*\n.*Copyright 2004 Sandia Corporation.\n.*Under.*\n.*license.*\n.*U.*\n.*or.*\n.*statement.*\n \*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright 2004 Sandia Corporation\n\/\/ SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov/g' %s Adding missing sandia licenses Adding sandia licenses Adding missing sandia licenses Replace sandia Adding sandia module changes Use new custom license system Replace sandia cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\/ SPDX-FileCopyrightText.*\n\/\/ SPDX-License-Identifier.*\n\/\*-------------------------------------------------------------------------\n.*Copyright 2009 Sandia Corporation.\n.*Under the terms of Contract DE-AC04-94AL85000.*\n.*the.*\n-------------------------------------------------------------------------\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright 2009 Sandia Corporation\n\/\/ SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov/g' %s Adding missing sandia licenses Sandia final fixup license Adding missing sandia license Fix remaining sandia license Manual LANL license Replace sandia BSD cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\/ SPDX-FileCopyrightText.*\n\/\/ SPDX-License-Identifier.*\n\/\*----------------------------------------------------------------------------\n.*Copyright \(c\) Sandia Corporation\n.*See Copyright.txt.*\n.*----------------------------------------------------------------------------\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright \(c\) Sandia Corporation\n\/\/ SPDX-License-Identifier: BSD-3-Clause/g' %s Replace Kitware, Inc. cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\*=========================================================================\n\n.*Program.*\n.*Module.*\n\n.*Copyright \(c\) Kitware, Inc.\n.*All rights reserved.\n.*See Copyright.txt.*\n\n.*This.*\n.*the.*\n.*PURPOSE.*\n\n=========================================================================\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright \(c\) Kitware, Inc.\n\/\/ SPDX-License-Identifier: BSD-3-Clause/g' %s Manual ParaView license Remove useless license statement in cmake files Manual licenses Replace lanl cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\/ SPDX-FileCopyrightText.*\n\/\/ SPDX-License-Identifier.*\n\n\/\*.*\n.*\n.*Copyright \(c\) 2000.*2009.*Lawrence Livermore National Security, LLC\n.*Produced at the Lawrence.*\n.*LLNL-CODE-400124\n.*All rights reserved.\n.*\n.*This.*\n.*see.*\n.*file.*\n.*http.*\n.*\n.*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright \(c\) 2000 - 2009, Lawrence Livermore National Security, LLC\n\/\/ SPDX-License-Identifier: BSD-3-Clause/g' %s Manual LANL NVIDIA license impact Manual Indiana Manual copyrights More manual licenses More manual licenses Replace Atamai cat a.out | xargs -I %s perl -i~ -0777 -pe 's/\A\/\/ SPDX-FileCopyrightText.*\n\/\/ SPDX-License-Identifier.*\n\/\*.*\n\n.*Copyright \(c\) 2006 Atamai, Inc.\n\nUse.*\nbinary.*\nconditions.*\n\n1.*\n form.*\n the.*\n license.*\n\n2.*\n notice.*\n in.*\n distribution.*\n\n3.*\n and.*\n\nTHE.*\nWITHOUT.*\nTHE.*\nPURPOSE.*\nMODIFY.*\nBE.*\n.*\nOR.*\nTHE.*\nPOSSIBILITY.*\n\n.*\*\//\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-FileCopyrightText: Copyright \(c\) 2006 Atamai, Inc.\n\/\/ SPDX-License-Identifier: BSD-3-Clause/g' %s Manual MIT Manual licenses Xdmf2 License PLY license Manual VRML licenses replace Netcdf license Manual OpenXR license Manual Licenses Example Licenses manual Manual Copyrights and licenses Manual licensing Removing empty lines Manual licenses Manual final pass Manual Dicom Replace all cxx without copyright info find . -name "*.cxx" -exec grep -L "SPDX" {} \; | grep -v ThirdParty | grep -v Utilities > files.out cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A(.*)\n/\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-Clause\n$1\n/g' %s Replace all header missing license find . -name "*\.h" -exec grep -L "SPDX" {} \; | grep -v ThirdParty | grep -v Utilities > files.out cat files.out | xargs -I %s perl -i~ -0777 -pe 's/\A(.*)\n/\/\/ SPDX-FileCopyrightText: Copyright \(c\) Ken Martin, Will Schroeder, Bill Lorensen\n\/\/ SPDX-License-Identifier: BSD-3-Clause\n$1\n/g' %s Manual from build Add missing license Replace copyright.txt Remove license files Manual fixes found by building Fix header testing Add license in vtkEncodeString Manual new filters Review JF
-