fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
fix chapter titles in toc
[librarian.git]
/
librarian
/
text.py
diff --git
a/librarian/text.py
b/librarian/text.py
index
0eb7b59
..
4064849
100644
(file)
--- a/
librarian/text.py
+++ b/
librarian/text.py
@@
-24,9
+24,9
@@
Wersja lektury w opracowaniu merytorycznym i krytycznym (przypisy i motywy) dost
Utwór opracowany został w ramach projektu Wolne Lektury przez fundację Nowoczesna Polska.
Utwór opracowany został w ramach projektu Wolne Lektury przez fundację Nowoczesna Polska.
-%(license_description)s.%(source)s
+%(license_description)s.%(source)s
%(publisher)s
-%(description)s%(contributors)s%(funders)s
+%(description)s%(contributors)s%(funders)s
%(isbn)s
"""
"""
@@
-60,7
+60,7
@@
def transform(wldoc, flags=None, **options):
license_description = parsed_dc.license_description
license = parsed_dc.license
if license:
license_description = parsed_dc.license_description
license = parsed_dc.license
if license:
- license_description = u"Ten utwór jest udost
e
pniony na licencji %s: \n%s" % (
+ license_description = u"Ten utwór jest udost
ę
pniony na licencji %s: \n%s" % (
license_description, license)
else:
license_description = u"Ten utwór nie jest objęty majątkowym prawem autorskim i znajduje się " \
license_description, license)
else:
license_description = u"Ten utwór nie jest objęty majątkowym prawem autorskim i znajduje się " \
@@
-83,7
+83,13
@@
def transform(wldoc, flags=None, **options):
contributors = "\n\nOpracowanie redakcyjne i przypisy: %s." % contributors
funders = ', '.join(parsed_dc.funders)
if funders:
contributors = "\n\nOpracowanie redakcyjne i przypisy: %s." % contributors
funders = ', '.join(parsed_dc.funders)
if funders:
- funders = u"\n\nPublikację ufundowali i ufundowały: %s." % funders
+ funders = u"\n\nPublikację wsparli i wsparły: %s." % funders
+ publisher = '\n\nWydawca: ' + ', '.join(parsed_dc.publisher)
+ isbn = getattr(parsed_dc, 'isbn_txt', None)
+ if isbn:
+ isbn = '\n\n' + isbn
+ else:
+ isbn = ''
else:
description = 'Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl).'
url = '*' * 10
else:
description = 'Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl).'
url = '*' * 10
@@
-91,6
+97,8
@@
def transform(wldoc, flags=None, **options):
source = ""
contributors = ""
funders = ""
source = ""
contributors = ""
funders = ""
+ publisher = ""
+ isbn = ""
result = (TEMPLATE % {
'description': description,
'url': url,
result = (TEMPLATE % {
'description': description,
'url': url,
@@
-99,6
+107,8
@@
def transform(wldoc, flags=None, **options):
'source': source,
'contributors': contributors,
'funders': funders,
'source': source,
'contributors': contributors,
'funders': funders,
+ 'publisher': publisher,
+ 'isbn': isbn,
}).encode('utf-8')
else:
result = unicode(result).encode('utf-8')
}).encode('utf-8')
else:
result = unicode(result).encode('utf-8')