commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

r5965 - trunk/gnue-common/src/printing/barcodes


From: jcater
Subject: r5965 - trunk/gnue-common/src/printing/barcodes
Date: Sun, 11 Jul 2004 23:35:38 -0500 (CDT)

Author: jcater
Date: 2004-07-11 23:35:38 -0500 (Sun, 11 Jul 2004)
New Revision: 5965

Modified:
   trunk/gnue-common/src/printing/barcodes/Base.py
   trunk/gnue-common/src/printing/barcodes/__init__.py
   trunk/gnue-common/src/printing/barcodes/codabar.py
   trunk/gnue-common/src/printing/barcodes/code39.py
   trunk/gnue-common/src/printing/barcodes/interleaved2of5.py
   trunk/gnue-common/src/printing/barcodes/postnet.py
   trunk/gnue-common/src/printing/barcodes/standard2of5.py
Log:
oops... added missing copyright headers

Modified: trunk/gnue-common/src/printing/barcodes/Base.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/Base.py     2004-07-12 04:29:12 UTC 
(rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/Base.py     2004-07-12 04:35:38 UTC 
(rev 5965)
@@ -1,3 +1,30 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/Base.py
+#
+# DESCRIPTION:
+"""
+"""
+#
 import sys, os
 import Image, ImageDraw
 

Modified: trunk/gnue-common/src/printing/barcodes/__init__.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/__init__.py 2004-07-12 04:29:12 UTC 
(rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/__init__.py 2004-07-12 04:35:38 UTC 
(rev 5965)
@@ -1,3 +1,30 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/__init__.py
+#
+# DESCRIPTION:
+"""
+"""
+#
 from codabar import *
 from code39 import *
 from interleaved2of5 import *

Modified: trunk/gnue-common/src/printing/barcodes/codabar.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/codabar.py  2004-07-12 04:29:12 UTC 
(rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/codabar.py  2004-07-12 04:35:38 UTC 
(rev 5965)
@@ -1,3 +1,31 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/codabar.py
+#
+# DESCRIPTION:
+"""
+Implements the Codabar barcode spec
+"""
+#
 from Base import Barcode
 
 class Codabar(Barcode):

Modified: trunk/gnue-common/src/printing/barcodes/code39.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/code39.py   2004-07-12 04:29:12 UTC 
(rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/code39.py   2004-07-12 04:35:38 UTC 
(rev 5965)
@@ -1,3 +1,32 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/code39.py
+#
+# DESCRIPTION:
+"""
+Implements the Code 39 barcode spec
+"""
+#
+
 from Base import Barcode
 
 class Code39(Barcode):

Modified: trunk/gnue-common/src/printing/barcodes/interleaved2of5.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/interleaved2of5.py  2004-07-12 
04:29:12 UTC (rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/interleaved2of5.py  2004-07-12 
04:35:38 UTC (rev 5965)
@@ -1,3 +1,32 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/code39.py
+#
+# DESCRIPTION:
+"""
+Implements the Interleaved 2 of 5 barcode spec
+"""
+#
+
 from Base import Barcode
 
 class Interleaved2of5(Barcode):

Modified: trunk/gnue-common/src/printing/barcodes/postnet.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/postnet.py  2004-07-12 04:29:12 UTC 
(rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/postnet.py  2004-07-12 04:35:38 UTC 
(rev 5965)
@@ -1,3 +1,32 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/code39.py
+#
+# DESCRIPTION:
+"""
+Implements the USPS PostNet barcode spec
+"""
+#
+
 from Base import Barcode, InvalidBarcode
 
 class PostNet(Barcode):

Modified: trunk/gnue-common/src/printing/barcodes/standard2of5.py
===================================================================
--- trunk/gnue-common/src/printing/barcodes/standard2of5.py     2004-07-12 
04:29:12 UTC (rev 5964)
+++ trunk/gnue-common/src/printing/barcodes/standard2of5.py     2004-07-12 
04:35:38 UTC (rev 5965)
@@ -1,3 +1,32 @@
+#
+# This file is part of GNU Enterprise.
+#
+# GNU Enterprise 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 2, or (at your option) any later version.
+#
+# GNU Enterprise 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 program; see the file COPYING. If not,
+# write to the Free Software Foundation, Inc., 59 Temple Place
+# - Suite 330, Boston, MA 02111-1307, USA.
+#
+# Copyright 2004 Free Software Foundation
+#
+# FILE:
+# barcodes/code39.py
+#
+# DESCRIPTION:
+"""
+Implements the Standard 2 of 5 barcode spec
+"""
+#
+
 from Base import Barcode
 
 class Standard2of5(Barcode):





reply via email to

[Prev in Thread] Current Thread [Next in Thread]