Made the license notice a bit shorter in source code. Left the long version in script...
[librarian.git] / librarian / text.py
index 972dd61..156f92a 100644 (file)
@@ -1,4 +1,10 @@
 # -*- coding: utf-8 -*-
+#
+# 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>
+#
 from librarian import dcparser, parser
 from lxml import etree
 import cStringIO
@@ -79,7 +85,7 @@ ns['wrap_words'] = wrap_words
 def transform(input_filename, output_filename, is_file=True, parse_dublincore=True, **options):
     """Transforms file input_filename in XML to output_filename in TXT."""
     # Parse XSLT
-    style_filename = os.path.join(os.path.dirname(__file__), 'book2txt.xslt')
+    style_filename = os.path.join(os.path.dirname(__file__), 'xslt/book2txt.xslt')
     style = etree.parse(style_filename)
 
     if is_file: