1 # -*- coding: utf-8 -*-
2 from librarian import dcparser, parser
10 ENTITY_SUBSTITUTIONS = [
20 Kodowanie znaków w dokumencie: UTF-8.
22 Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl/). Reprodukcja cyfrowa wykonana przez
23 Bibliotekę Narodową z egzemplarza pochodzącego ze zbiorów BN. Ten utwór nie jest chroniony prawem autorskim i znajduje
24 się w domenie publicznej, co oznacza, że możesz go swobodnie wykorzystywać, publikować i rozpowszechniać.
26 Wersja lektury w opracowaniu merytorycznym i krytycznym (przypisy i motywy) dostępna jest na stronie %(url)s.
35 def strip(context, text):
36 """Remove unneeded whitespace from beginning and end"""
37 if isinstance(text, list):
39 return re.sub(r'\s+', ' ', text).strip()
42 def substitute_entities(context, text):
43 """XPath extension function converting all entites in passed text."""
44 if isinstance(text, list):
46 for entity, substitutution in ENTITY_SUBSTITUTIONS:
47 text = text.replace(entity, substitutution)
51 def wrap_words(context, text, wrapping):
52 """XPath extension function automatically wrapping words in passed text"""
53 if isinstance(text, list):
58 words = re.split(r'\s', text)
63 line_length += len(word) + 1
64 if line_length > wrapping:
65 # Max line length was exceeded. We create new line
67 line_length = len(word)
68 lines[-1].append(word)
69 return '\n'.join(' '.join(line) for line in lines)
72 # Register substitute_entities function with lxml
73 ns = etree.FunctionNamespace('http://wolnelektury.pl/functions')
75 ns['substitute_entities'] = substitute_entities
76 ns['wrap_words'] = wrap_words
79 def transform(input_filename, output_filename, is_file=True, parse_dublincore=True, **options):
80 """Transforms file input_filename in XML to output_filename in TXT."""
82 style_filename = os.path.join(os.path.dirname(__file__), 'book2txt.xslt')
83 style = etree.parse(style_filename)
86 document = parser.WLDocument.from_file(input_filename, True, parse_dublincore=parse_dublincore)
88 document = parser.WLDocument.from_string(input_filename, True, parse_dublincore=parse_dublincore)
90 result = document.transform(style, **options)
92 output_file = codecs.open(output_filename, 'wb', encoding='utf-8')
95 url = dcparser.parse(input_filename).url
98 output_file.write(TEMPLATE % {
100 'text': unicode(result),