From 9b24573bfc3836f1572e2c1d405f3f6bc749fbc8 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 21 Jul 2012 08:30:08 -0400 Subject: [PATCH] Ran update-copyright.py. --- bin/igorbinarywave.py | 17 ++++++++++++++++- bin/igorpackedexperiment.py | 17 ++++++++++++++++- igor/__init__.py | 17 ++++++++++++++++- igor/binarywave.py | 25 ++++++++++++------------- igor/packed.py | 17 ++++++++++++++++- igor/record/__init__.py | 17 ++++++++++++++++- igor/record/base.py | 17 ++++++++++++++++- igor/record/folder.py | 17 ++++++++++++++++- igor/record/history.py | 17 ++++++++++++++++- igor/record/packedfile.py | 17 ++++++++++++++++- igor/record/procedure.py | 17 ++++++++++++++++- igor/record/variables.py | 17 ++++++++++++++++- igor/record/wave.py | 17 ++++++++++++++++- igor/script.py | 17 ++++++++++++++++- igor/struct.py | 17 ++++++++++++++++- igor/util.py | 17 ++++++++++++++++- setup.py | 18 +++++++++++++++++- 17 files changed, 269 insertions(+), 29 deletions(-) diff --git a/bin/igorbinarywave.py b/bin/igorbinarywave.py index dc55ceb..6215628 100755 --- a/bin/igorbinarywave.py +++ b/bin/igorbinarywave.py @@ -1,6 +1,21 @@ #!/usr/bin/env python # -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "IBW -> ASCII conversion" diff --git a/bin/igorpackedexperiment.py b/bin/igorpackedexperiment.py index 056017b..6664a96 100755 --- a/bin/igorpackedexperiment.py +++ b/bin/igorpackedexperiment.py @@ -1,6 +1,21 @@ #!/usr/bin/env python # -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "PXP -> ASCII conversion" diff --git a/igor/__init__.py b/igor/__init__.py index 816051c..50e057a 100644 --- a/igor/__init__.py +++ b/igor/__init__.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Interface for reading binary IGOR files." diff --git a/igor/binarywave.py b/igor/binarywave.py index ee70be2..b172312 100644 --- a/igor/binarywave.py +++ b/igor/binarywave.py @@ -1,20 +1,19 @@ -# Copyright (C) 2010 W. Trevor King +# Copyright (C) 2010-2012 W. Trevor King # -# This file is part of Hooke. +# This file is part of igor. # -# Hooke is free software: you can 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 3 of the -# License, or (at your option) any later version. +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. # -# Hooke is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General -# Public License for more details. +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. # -# You should have received a copy of the GNU Lesser General Public -# License along with Hooke. If not, see -# . +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Read IGOR Binary Wave files into Numpy arrays." diff --git a/igor/packed.py b/igor/packed.py index 1b0fec5..c644063 100644 --- a/igor/packed.py +++ b/igor/packed.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Read IGOR Packed Experiment files files into records." diff --git a/igor/record/__init__.py b/igor/record/__init__.py index faaa61d..eafebfb 100644 --- a/igor/record/__init__.py +++ b/igor/record/__init__.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Record parsers for IGOR's packed experiment files." diff --git a/igor/record/base.py b/igor/record/base.py index f173d20..eebd923 100644 --- a/igor/record/base.py +++ b/igor/record/base.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . class Record (object): diff --git a/igor/record/folder.py b/igor/record/folder.py index be98c58..caaeb54 100644 --- a/igor/record/folder.py +++ b/igor/record/folder.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . from .base import TextRecord diff --git a/igor/record/history.py b/igor/record/history.py index 4d39b75..e5d2199 100644 --- a/igor/record/history.py +++ b/igor/record/history.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . from .base import TextRecord diff --git a/igor/record/packedfile.py b/igor/record/packedfile.py index 9e12437..b457f20 100644 --- a/igor/record/packedfile.py +++ b/igor/record/packedfile.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . from .base import Record diff --git a/igor/record/procedure.py b/igor/record/procedure.py index 59c8610..de00e6e 100644 --- a/igor/record/procedure.py +++ b/igor/record/procedure.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . from .base import TextRecord diff --git a/igor/record/variables.py b/igor/record/variables.py index d604bfd..cdcdd89 100644 --- a/igor/record/variables.py +++ b/igor/record/variables.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . import io as _io diff --git a/igor/record/wave.py b/igor/record/wave.py index db36cfa..49ed20e 100644 --- a/igor/record/wave.py +++ b/igor/record/wave.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . from io import BytesIO as _BytesIO diff --git a/igor/script.py b/igor/script.py index be34b61..cbfd519 100644 --- a/igor/script.py +++ b/igor/script.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Common code for scripts distributed with the `igor` package." diff --git a/igor/struct.py b/igor/struct.py index 6097c20..c87a17f 100644 --- a/igor/struct.py +++ b/igor/struct.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . """Structure and Field classes for declaring structures diff --git a/igor/util.py b/igor/util.py index c263cd1..c60e597 100644 --- a/igor/util.py +++ b/igor/util.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "Utility functions for handling buffers" diff --git a/setup.py b/setup.py index a01a3cf..de684a6 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,20 @@ -# Copyright +# Copyright (C) 2011-2012 Paul Kienzle +# W. Trevor King +# +# This file is part of igor. +# +# igor is free software: you can 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 3 of the License, or (at your option) any +# later version. +# +# igor is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR +# A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more +# details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with igor. If not, see . "igor: interface for reading binary IGOR files." -- 2.26.2