From: Jan Szejko Date: Tue, 16 May 2017 15:25:24 +0000 (+0200) Subject: ISBN in txt X-Git-Tag: 1.7~51 X-Git-Url: https://git.mdrn.pl/librarian.git/commitdiff_plain/128ba2e8b97f2f3abfc40283c182fd08f2f0a818 ISBN in txt --- diff --git a/librarian/text.py b/librarian/text.py index 0761ab0..39bf324 100644 --- a/librarian/text.py +++ b/librarian/text.py @@ -26,7 +26,7 @@ Utwór opracowany został w ramach projektu Wolne Lektury przez fundację Nowocz %(license_description)s.%(source)s%(publisher)s -%(description)s%(contributors)s%(funders)s +%(description)s%(contributors)s%(funders)s%(isbn)s """ @@ -85,6 +85,11 @@ def transform(wldoc, flags=None, **options): if funders: funders = u"\n\nPublikację wsparli i wsparły: %s." % funders publisher = '\n\nWydawca: ' + ', '.join(parsed_dc.publisher) + isbn_element = document.edoc.find("//meta[@id='txt-id']") + if isbn_element is not None: + isbn = isbn_element.text.replace('ISBN-', '\n\nISBN ') + else: + isbn = '' else: description = 'Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl).' url = '*' * 10 @@ -93,6 +98,7 @@ def transform(wldoc, flags=None, **options): contributors = "" funders = "" publisher = "" + isbn = "" result = (TEMPLATE % { 'description': description, 'url': url, @@ -102,6 +108,7 @@ def transform(wldoc, flags=None, **options): 'contributors': contributors, 'funders': funders, 'publisher': publisher, + 'isbn': isbn, }).encode('utf-8') else: result = unicode(result).encode('utf-8') diff --git a/librarian/xslt/book2txt.xslt b/librarian/xslt/book2txt.xslt index 6a25023..89c9dfd 100644 --- a/librarian/xslt/book2txt.xslt +++ b/librarian/xslt/book2txt.xslt @@ -21,6 +21,7 @@ + @@ -334,6 +335,14 @@ + + + + +ISBN + + +