Minor cleanup.
authorŁukasz Rekucki <lrekucki@gmail.com>
Sun, 28 Mar 2010 12:27:52 +0000 (14:27 +0200)
committerŁukasz Rekucki <lrekucki@gmail.com>
Sun, 28 Mar 2010 12:27:52 +0000 (14:27 +0200)
15 files changed:
NOTICE
apps/toolbar/management/commands/__init__.py
apps/toolbar/management/commands/fixbuttons.py
apps/toolbar/models.py
apps/toolbar/templatetags/toolbar_tags.py
apps/wiki/forms.py
apps/wiki/models.py
apps/wiki/nice_diff.py
lib/test_vstorage.py
lib/vstorage.py
lib/wlapi.py
platforma.wsgi.template
scripts/crop.py
scripts/imgconv.py
scripts/rip-themes-from-redmine.py

diff --git a/NOTICE b/NOTICE
index ff69f4a..815f1c9 100644 (file)
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
     
-    FNP Librarian
+    FNP Redakcja
 
     Copyright © 2010 Fundacja Nowoczesna Polska <fundacja@nowoczesnapolska.org.pl>
     
index 5ff26b2..e69de29 100644 (file)
@@ -1,4 +0,0 @@
-# To change this template, choose Tools | Templates
-# and open the template in the editor.
-
-
index 5482ddc..7a49b37 100644 (file)
@@ -1,5 +1,9 @@
 #!/usr/bin/env python
-# -*- conding: utf-8 -*-
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 __author__="lreqc"
 __date__ ="$2009-09-08 14:31:26$"
 from django.core.management.base import NoArgsCommand
index 0c40179..6a20263 100644 (file)
@@ -1,3 +1,8 @@
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 from django.db import models
 from django.utils.translation import ugettext_lazy as _
 
index ac7ebbb..421709e 100644 (file)
@@ -1,3 +1,8 @@
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 from django import template
 from toolbar import models
 
index db5998d..506ec8e 100644 (file)
@@ -1,3 +1,8 @@
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 from django import forms
 from wiki.models import Document, getstorage
 
index 8ec4d32..282d4c5 100644 (file)
@@ -1,3 +1,8 @@
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 import re
 import vstorage
 from vstorage import DocumentNotFound
index 612fa22..c000b13 100755 (executable)
@@ -1,5 +1,8 @@
-#!/usr/bin/env python
-
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 import difflib
 import re
 
index 87b9a94..00df2f6 100644 (file)
@@ -1,5 +1,9 @@
 #!/usr/bin/python
 # -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 
 import os
 import tempfile
index 02f0503..2274a04 100644 (file)
@@ -1,4 +1,8 @@
 # -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 import os
 import tempfile
 import datetime
index 6f49dfe..cc73596 100644 (file)
@@ -1,3 +1,8 @@
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 """
    Abstraction over API for wolnelektury.pl
 """
index 76e3903..3528fe8 100644 (file)
@@ -12,7 +12,6 @@ sys.stdout = sys.stderr
 
 # Add apps and lib directories to PYTHONPATH
 sys.path = [
-       '%(path)s/releases/current/%(project_name)s',
        '%(path)s/releases/current',
        '%(path)s/releases/current/apps',
        '%(path)s/releases/current/lib',
index a7d8384..3266e09 100644 (file)
@@ -1,4 +1,9 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 import sys
 import os
 from os.path import splitext, dirname, basename, realpath
index ce514b3..3a7cfa9 100644 (file)
@@ -1,4 +1,9 @@
 #!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# This file is part of FNP-Redakcja, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.  
+#
 import sys
 import os
 import shutil
index 379e853..24c8008 100644 (file)
@@ -1,5 +1,4 @@
 #!/usr/bin/env python
-
 import urllib
 
 from lxml import html