[SCM] GUI front-end for Debian Live. branch, master, updated. 2aa27fb9aa2e10e8f65fe0a35343e24c14a861b5

Chris Lamb chris at chris-lamb.co.uk
Sun Jul 13 01:21:01 UTC 2008


The following commit has been merged in the master branch:
commit 3e7ebede8f85ac5a37627cfa50124ad772b32bef
Author: Chris Lamb <chris at chris-lamb.co.uk>
Date:   Sun Jul 13 02:18:31 2008 +0100

    Add GPLv3 copyright notices to files.
    
    Signed-off-by: Chris Lamb <chris at chris-lamb.co.uk>

diff --git a/DebianLive/__init__.py b/DebianLive/__init__.py
index ab6fe8d..ada8e49 100644
--- a/DebianLive/__init__.py
+++ b/DebianLive/__init__.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from DebianLive import utils
 
 import os
diff --git a/DebianLive/elements/__init__.py b/DebianLive/elements/__init__.py
index 5ce3bf7..3af691e 100644
--- a/DebianLive/elements/__init__.py
+++ b/DebianLive/elements/__init__.py
@@ -1,2 +1,20 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from folder_of_files import FolderOfFiles
 from key_var import KeyVar
diff --git a/DebianLive/elements/folder_of_files.py b/DebianLive/elements/folder_of_files.py
index 73fe92b..15f53b9 100644
--- a/DebianLive/elements/folder_of_files.py
+++ b/DebianLive/elements/folder_of_files.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import glob
 import os
 
diff --git a/DebianLive/elements/key_var.py b/DebianLive/elements/key_var.py
index 305ca5b..5e939af 100644
--- a/DebianLive/elements/key_var.py
+++ b/DebianLive/elements/key_var.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import re
 import os
 
diff --git a/DebianLive/spec.py b/DebianLive/spec.py
index 075c314..05d0f19 100644
--- a/DebianLive/spec.py
+++ b/DebianLive/spec.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from DebianLive.elements import FolderOfFiles
 from DebianLive.elements import KeyVar
 
diff --git a/DebianLive/utils/__init__.py b/DebianLive/utils/__init__.py
index bcaf45c..4c1d450 100644
--- a/DebianLive/utils/__init__.py
+++ b/DebianLive/utils/__init__.py
@@ -1,2 +1,20 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from list_observer import ListObserver
 from sources_list import get_mirror
diff --git a/DebianLive/utils/list_observer.py b/DebianLive/utils/list_observer.py
index 4be8771..93617d2 100644
--- a/DebianLive/utils/list_observer.py
+++ b/DebianLive/utils/list_observer.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 class ListObserver(list):
     """
     Observed list implementation.
diff --git a/DebianLive/utils/sources_list.py b/DebianLive/utils/sources_list.py
index 069f325..cec6d19 100644
--- a/DebianLive/utils/sources_list.py
+++ b/DebianLive/utils/sources_list.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import os
 import re
 
diff --git a/LiveMagic/__init__.py b/LiveMagic/__init__.py
index ed5d1d9..a511037 100644
--- a/LiveMagic/__init__.py
+++ b/LiveMagic/__init__.py
@@ -1,3 +1,20 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import gtk
 import pygtk
diff --git a/LiveMagic/controllers/__init__.py b/LiveMagic/controllers/__init__.py
index 0d9a41a..0562768 100644
--- a/LiveMagic/controllers/__init__.py
+++ b/LiveMagic/controllers/__init__.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from build import BuildController as Build
 from main import MainController as Main
 from wizard import WizardController as Wizard
diff --git a/LiveMagic/controllers/build.py b/LiveMagic/controllers/build.py
index 9e35165..2679f53 100644
--- a/LiveMagic/controllers/build.py
+++ b/LiveMagic/controllers/build.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import os
 import pwd
 import sys
diff --git a/LiveMagic/controllers/main.py b/LiveMagic/controllers/main.py
index 808b002..dc9dcc5 100644
--- a/LiveMagic/controllers/main.py
+++ b/LiveMagic/controllers/main.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import os
 import gtk
 import pwd
diff --git a/LiveMagic/controllers/wizard.py b/LiveMagic/controllers/wizard.py
index 7394ddb..ecb1fcb 100644
--- a/LiveMagic/controllers/wizard.py
+++ b/LiveMagic/controllers/wizard.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import os
 import gtk
 import time
diff --git a/LiveMagic/utils.py b/LiveMagic/utils.py
index 45e0c74..85f52c6 100644
--- a/LiveMagic/utils.py
+++ b/LiveMagic/utils.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import os
 
 def find_resource(resource):
diff --git a/LiveMagic/views/__init__.py b/LiveMagic/views/__init__.py
index bc70066..0763187 100644
--- a/LiveMagic/views/__init__.py
+++ b/LiveMagic/views/__init__.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 from build import BuildView as Build
 from main import MainView as Main
 from wizard import WizardView as Wizard
diff --git a/LiveMagic/views/build.py b/LiveMagic/views/build.py
index 95d535f..eb11681 100644
--- a/LiveMagic/views/build.py
+++ b/LiveMagic/views/build.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import vte
 import gtk
 import gobject
diff --git a/LiveMagic/views/main.py b/LiveMagic/views/main.py
index 671f872..557765f 100644
--- a/LiveMagic/views/main.py
+++ b/LiveMagic/views/main.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import gtk
 import gobject
 
diff --git a/LiveMagic/views/wizard.py b/LiveMagic/views/wizard.py
index 203874d..bd82816 100644
--- a/LiveMagic/views/wizard.py
+++ b/LiveMagic/views/wizard.py
@@ -1,3 +1,21 @@
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
+
 import gtk
 
 from DebianLive.utils import get_mirror
diff --git a/setup.py b/setup.py
index 0e384ec..2610798 100755
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 from distutils.core import setup
 
diff --git a/tests/test_all.py b/tests/test_all.py
index d327fa9..e74f7cb 100755
--- a/tests/test_all.py
+++ b/tests/test_all.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import os
 import unittest
diff --git a/tests/test_config.py b/tests/test_config.py
index b1d2fd9..b0830b6 100755
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import unittest
 import os
diff --git a/tests/test_config_constructor.py b/tests/test_config_constructor.py
index 038c63e..a1e6544 100755
--- a/tests/test_config_constructor.py
+++ b/tests/test_config_constructor.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import unittest
 import os
diff --git a/tests/test_coverage.py b/tests/test_coverage.py
index 519105a..71eaaba 100755
--- a/tests/test_coverage.py
+++ b/tests/test_coverage.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import os
 import sys
diff --git a/tests/test_folder_of_files.py b/tests/test_folder_of_files.py
index 4dfa788..7774a50 100755
--- a/tests/test_folder_of_files.py
+++ b/tests/test_folder_of_files.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import unittest
 import os
diff --git a/tests/test_key_var.py b/tests/test_key_var.py
index dba5580..d94b926 100755
--- a/tests/test_key_var.py
+++ b/tests/test_key_var.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import unittest
 import os
diff --git a/tests/test_sources_list.py b/tests/test_sources_list.py
index ec2f98b..9079028 100755
--- a/tests/test_sources_list.py
+++ b/tests/test_sources_list.py
@@ -1,4 +1,21 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+#   live-magic - GUI frontend to create Debian LiveCDs, etc.
+#   Copyright (C) 2007-2008 Chris Lamb <chris at chris-lamb.co.uk>
+#
+#   This program 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.
+#
+#   This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
 import unittest
 import os

-- 
GUI front-end for Debian Live.



More information about the debian-live-changes mailing list