From 14a54ee48d65ad5f3b14ecd139e210ef2a4dcea5 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 25 Aug 2010 08:43:22 -0400 Subject: [PATCH] Ran update_copyright.py --- AUTHORS | 2 ++ README | 1 + bin/chem_db.py | 17 ++++++++++++++++- bin/chem_web.py | 17 ++++++++++++++++- chemdb/__init__.py | 17 ++++++++++++++++- chemdb/chemdb.py | 17 ++++++++++++++++- chemdb/db/__init__.py | 17 ++++++++++++++++- chemdb/db/text.py | 17 ++++++++++++++++- chemdb/server.py | 17 ++++++++++++++++- template/doc/Makefile | 17 ++++++++++++++++- template/doc/door_template.tex | 17 +++++++++++++++++ template/doc/inventory_template.tex | 22 +++++++++++++++++++--- template/doc/nfpa_704.sty | 15 +++++++++++++++ template/doc/nfpa_704.tex | 17 +++++++++++++++++ 14 files changed, 199 insertions(+), 11 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..a329845 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,2 @@ +ChemDB was written by: +W. Trevor King diff --git a/README b/README index 465a63b..6fa37a5 100644 --- a/README +++ b/README @@ -78,6 +78,7 @@ Special Hazards (NFPA diamond). Contents ======== + AUTHORS (list of authors contributing code to ChemDB) bin (executibles) |-- chem_db.py (command line interface) `-- chem_web.py (web interface) diff --git a/bin/chem_db.py b/bin/chem_db.py index 0c1920b..163fa5f 100755 --- a/bin/chem_db.py +++ b/bin/chem_db.py @@ -1,6 +1,21 @@ #!/usr/bin/python -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . from sys import stdout, stdin, stderr diff --git a/bin/chem_web.py b/bin/chem_web.py index 89ba099..8e8a723 100755 --- a/bin/chem_web.py +++ b/bin/chem_web.py @@ -1,6 +1,21 @@ #!/usr/bin/python -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . from chemdb.server import ServerDaemon diff --git a/chemdb/__init__.py b/chemdb/__init__.py index b98f164..dd5bf60 100644 --- a/chemdb/__init__.py +++ b/chemdb/__init__.py @@ -1 +1,16 @@ -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . diff --git a/chemdb/chemdb.py b/chemdb/chemdb.py index 9852a89..5f13f5f 100644 --- a/chemdb/chemdb.py +++ b/chemdb/chemdb.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . """Utilities for chemical inventories. diff --git a/chemdb/db/__init__.py b/chemdb/db/__init__.py index b98f164..dd5bf60 100644 --- a/chemdb/db/__init__.py +++ b/chemdb/db/__init__.py @@ -1 +1,16 @@ -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . diff --git a/chemdb/db/text.py b/chemdb/db/text.py index 8d731a1..5536b61 100644 --- a/chemdb/db/text.py +++ b/chemdb/db/text.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2008-2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . """Database-style interface with a text-delimited, single files. diff --git a/chemdb/server.py b/chemdb/server.py index 1ceaad3..3dcfb0a 100644 --- a/chemdb/server.py +++ b/chemdb/server.py @@ -1,4 +1,19 @@ -# Copyright +# Copyright (C) 2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . """Chemical inventory web interface. """ diff --git a/template/doc/Makefile b/template/doc/Makefile index 40486cd..964eec0 100644 --- a/template/doc/Makefile +++ b/template/doc/Makefile @@ -1,5 +1,20 @@ # Produce pdf output from LaTeX source -# Copyright (C) 2008-2010 W. Trevor King +# Copyright (C) 2008-2010 W. Trevor King +# +# This file is part of ChemDB. +# +# ChemDB is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation, either version 3 of the License, or (at your +# option) any later version. +# +# ChemDB 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with ChemDB. If not, see . # exposed targets : # all : generate each output file and call view diff --git a/template/doc/door_template.tex b/template/doc/door_template.tex index 5664bad..45e4a25 100644 --- a/template/doc/door_template.tex +++ b/template/doc/door_template.tex @@ -1,3 +1,20 @@ +% Copyright (C) 2008-2010 W. Trevor King +% +% This file is part of ChemDB. +% +% ChemDB is free software: you can redistribute it and/or modify it +% under the terms of the GNU General Public License as published by the +% Free Software Foundation, either version 3 of the License, or (at your +% option) any later version. +% +% ChemDB 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 General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with ChemDB. If not, see . + % Paper for posting on the lab door % as per % http://www.drexelsafetyandhealth.com/lab-chem.htm#chpe7 diff --git a/template/doc/inventory_template.tex b/template/doc/inventory_template.tex index 222d492..e40f047 100644 --- a/template/doc/inventory_template.tex +++ b/template/doc/inventory_template.tex @@ -1,6 +1,22 @@ -% \documentclass[letterpaper]{article} % line moved to main. -% Paper for posting on the lab door -% as per +% Copyright (C) 2008-2010 W. Trevor King +% +% This file is part of ChemDB. +% +% ChemDB is free software: you can redistribute it and/or modify it +% under the terms of the GNU General Public License as published by the +% Free Software Foundation, either version 3 of the License, or (at your +% option) any later version. +% +% ChemDB 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 General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with ChemDB. If not, see . + +% Chemical inventory as per +% http://www.drexelsafetyandhealth.com/lab-chem.htm#chpe7 % setup the margins, \topmargin -0.5in diff --git a/template/doc/nfpa_704.sty b/template/doc/nfpa_704.sty index 38ba009..3b05b28 100644 --- a/template/doc/nfpa_704.sty +++ b/template/doc/nfpa_704.sty @@ -2,6 +2,21 @@ % Version 0.1 % % Copyright (C) 2010 W. Trevor King +% +% This file is part of ChemDB. +% +% ChemDB is free software: you can redistribute it and/or modify it +% under the terms of the GNU General Public License as published by the +% Free Software Foundation, either version 3 of the License, or (at your +% option) any later version. +% +% ChemDB 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 General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with ChemDB. If not, see . % See % http://en.wikipedia.org/wiki/NFPA_704 diff --git a/template/doc/nfpa_704.tex b/template/doc/nfpa_704.tex index 532f973..f613f04 100644 --- a/template/doc/nfpa_704.tex +++ b/template/doc/nfpa_704.tex @@ -1,3 +1,20 @@ +% Copyright (C) 2010 W. Trevor King +% +% This file is part of ChemDB. +% +% ChemDB is free software: you can redistribute it and/or modify it +% under the terms of the GNU General Public License as published by the +% Free Software Foundation, either version 3 of the License, or (at your +% option) any later version. +% +% ChemDB 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 General Public License for more details. +% +% You should have received a copy of the GNU General Public License +% along with ChemDB. If not, see . + \documentclass{article} \usepackage{nfpa_704} -- 2.26.2