Made the license notice a bit shorter in source code. Left the long version in script...
authorŁukasz Rekucki <lrekucki@gmail.com>
Sat, 20 Mar 2010 23:15:12 +0000 (00:15 +0100)
committerŁukasz Rekucki <lrekucki@gmail.com>
Sat, 20 Mar 2010 23:15:12 +0000 (00:15 +0100)
12 files changed:
README.md
librarian/__init__.py
librarian/dcparser.py
librarian/html.py
librarian/parser.py
librarian/text.py
scripts/master.css
scripts/normalize.py
tests/test_dcparser.py
tests/test_html.py
tests/test_text.py
tests/utils.py

index d19505d..a84d45f 100755 (executable)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 License
 -------
+
+  ![AGPL Logo](http://www.gnu.org/graphics/agplv3-155x51.png)
     
     Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
     
@@ -45,7 +47,7 @@ Other features:
 Dependencies
 ------------
 
- * [lxml] (http://codespeak.net/lxml/) >= 2.2
+ * lxml <http://codespeak.net/lxml/>, version 2.2 or later
 
 
 Installation
index 582ee98..ca527f6 100644 (file)
@@ -1,25 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-# exception classes
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>  
 
 class ParseError(Exception):
     
index d3547f0..30811ac 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from xml.parsers.expat import ExpatError
 from datetime import date
index 7733fee..983853d 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 import os
 import cStringIO
index 225000b..727f02e 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from librarian import ValidationError, NoDublinCore,  ParseError
 from librarian import RDFNS
index 70d98c4..156f92a 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from librarian import dcparser, parser
 from lxml import etree
index 8f61999..553bb59 100755 (executable)
@@ -1,25 +1,10 @@
 /*
-#
-#    This file is part of Librarian.
-#
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
-#
-*/
+ * Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
+ *
+ * This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+ * For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
+ *
+ */
 body {
     font-size: 16px;
     font: Georgia, "Times New Roman", serif;
index 38ac8be..ae1d84a 100644 (file)
@@ -1,24 +1,10 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 
 from __future__ import with_statement
index d3acef1..7af573e 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 
 from librarian import dcparser
index 6914066..a6c6125 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from librarian import html, NoDublinCore
 from nose.tools import *
index da7e4ab..3f93239 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from librarian import text, NoDublinCore
 from nose.tools import *
index 0c6f8d4..16db28b 100644 (file)
@@ -1,23 +1,9 @@
 # -*- coding: utf-8 -*-
 #
-#    This file is part of Librarian.
+# Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska  
 #
-#    Copyright © 2008,2009,2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
-#    
-#    For full list of contributors see AUTHORS file. 
-#
-#    This program is free software: you can redistribute it and/or modify
-#    it under the terms of the GNU Affero 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 Affero General Public License for more details.
-#
-#    You should have received a copy of the GNU Affero General Public License
-#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
+# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
+# For full license text see COPYING or <http://www.gnu.org/licenses/agpl.html>
 #
 from __future__ import with_statement
 from os.path import realpath, join, dirname