summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Hruby <michal.mhr@gmail.com>2012-02-09 10:32:33 +0100
committerMichal Hruby <michal.mhr@gmail.com>2012-02-09 10:32:33 +0100
commit9af5fdae221671807132ebf5961eba85015c9623 (patch)
treee71332fd2e1d6fd0fbe202c95e5a8f7d39e4583b
parentc43fd56211444dbece651a14662371c36ff92831 (diff)
downloadzeitgeist-9af5fdae221671807132ebf5961eba85015c9623.tar.gz
We wanted to use GPL2+. Make it so
-rw-r--r--extensions/fts++/controller.cpp7
-rw-r--r--extensions/fts++/controller.h7
-rw-r--r--extensions/fts++/fts.cpp7
-rw-r--r--extensions/fts++/fts.h7
-rw-r--r--extensions/fts++/indexer.cpp7
-rw-r--r--extensions/fts++/indexer.h7
-rw-r--r--extensions/fts++/stringutils.cpp7
-rw-r--r--extensions/fts++/stringutils.h7
-rw-r--r--extensions/fts++/task.cpp7
-rw-r--r--extensions/fts++/task.h7
-rw-r--r--extensions/fts++/test/test-fts.c7
-rw-r--r--extensions/fts++/test/test-indexer.cpp7
-rw-r--r--extensions/fts++/test/test-stringutils.cpp7
-rw-r--r--extensions/fts++/zeitgeist-fts.vala10
14 files changed, 57 insertions, 44 deletions
diff --git a/extensions/fts++/controller.cpp b/extensions/fts++/controller.cpp
index 0a6f3dc0..2c697fd8 100644
--- a/extensions/fts++/controller.cpp
+++ b/extensions/fts++/controller.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/controller.h b/extensions/fts++/controller.h
index a58cb6dc..abcd8fda 100644
--- a/extensions/fts++/controller.h
+++ b/extensions/fts++/controller.h
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/fts.cpp b/extensions/fts++/fts.cpp
index 802d46a7..5d66e2ea 100644
--- a/extensions/fts++/fts.cpp
+++ b/extensions/fts++/fts.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Canonical Ltd
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/fts.h b/extensions/fts++/fts.h
index f98af765..2226ec90 100644
--- a/extensions/fts++/fts.h
+++ b/extensions/fts++/fts.h
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Canonical Ltd
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/indexer.cpp b/extensions/fts++/indexer.cpp
index 743ecaff..8c8a3ddd 100644
--- a/extensions/fts++/indexer.cpp
+++ b/extensions/fts++/indexer.cpp
@@ -2,9 +2,10 @@
* Copyright (C) 2012 Canonical Ltd
* 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/indexer.h b/extensions/fts++/indexer.h
index e817ab5d..95ae6464 100644
--- a/extensions/fts++/indexer.h
+++ b/extensions/fts++/indexer.h
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Canonical Ltd
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/stringutils.cpp b/extensions/fts++/stringutils.cpp
index 24645470..12b0baf8 100644
--- a/extensions/fts++/stringutils.cpp
+++ b/extensions/fts++/stringutils.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/stringutils.h b/extensions/fts++/stringutils.h
index faff5585..ef011d00 100644
--- a/extensions/fts++/stringutils.h
+++ b/extensions/fts++/stringutils.h
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/task.cpp b/extensions/fts++/task.cpp
index 3c41420f..74c4092d 100644
--- a/extensions/fts++/task.cpp
+++ b/extensions/fts++/task.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Canonical Ltd
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/task.h b/extensions/fts++/task.h
index e6722233..1c124382 100644
--- a/extensions/fts++/task.h
+++ b/extensions/fts++/task.h
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Canonical Ltd
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/test/test-fts.c b/extensions/fts++/test/test-fts.c
index e6c4aa2f..6b9208fd 100644
--- a/extensions/fts++/test/test-fts.c
+++ b/extensions/fts++/test/test-fts.c
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/test/test-indexer.cpp b/extensions/fts++/test/test-indexer.cpp
index 54700362..188213e7 100644
--- a/extensions/fts++/test/test-indexer.cpp
+++ b/extensions/fts++/test/test-indexer.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/test/test-stringutils.cpp b/extensions/fts++/test/test-stringutils.cpp
index 07abfa23..3f9405fa 100644
--- a/extensions/fts++/test/test-stringutils.cpp
+++ b/extensions/fts++/test/test-stringutils.cpp
@@ -1,9 +1,10 @@
/*
* Copyright (C) 2012 Mikkel Kamstrup Erlandsen
*
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
+ * 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 2
+ * 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
diff --git a/extensions/fts++/zeitgeist-fts.vala b/extensions/fts++/zeitgeist-fts.vala
index 5c66cf59..f245b03e 100644
--- a/extensions/fts++/zeitgeist-fts.vala
+++ b/extensions/fts++/zeitgeist-fts.vala
@@ -3,17 +3,17 @@
* Copyright © 2012 Canonical Ltd.
* Copyright © 2012 Michal Hruby <michal.mhr@gmail.com>
*
- * This program 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 2.1 of the License, or
- * (at your option) any later version.
+ * 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 2
+ * 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 Lesser General Public License
+ * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/