fnp
/
librarian.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git]
/
scripts
/
book2txt
diff --git
a/scripts/book2txt
b/scripts/book2txt
index
1b4c0ef
..
8b75f98
100755
(executable)
--- a/
scripts/book2txt
+++ b/
scripts/book2txt
@@
-1,6
+1,4
@@
#!/usr/bin/env python
#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
# This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
@@
-13,15
+11,20
@@
class Book2Txt(Book2Anything):
ext = "txt"
uses_cover = False
uses_provider = False
ext = "txt"
uses_cover = False
uses_provider = False
- parser_
arg
s = [
+ parser_
option
s = [
Option('-i', '--ignore-dublin-core', dest='parse_dublincore',
action='store_false', default=True,
help='don\'t try to parse dublin core metadata')
]
Option('-i', '--ignore-dublin-core', dest='parse_dublincore',
action='store_false', default=True,
help='don\'t try to parse dublin core metadata')
]
- transform_
arg
s = [
+ transform_
option
s = [
Option('-w', '--wrap', action='store', type='int', dest='wrapping', default=0,
help='set line wrap column')
]
Option('-w', '--wrap', action='store', type='int', dest='wrapping', default=0,
help='set line wrap column')
]
+ transform_flags = [
+ Option('-r', '--raw', dest='raw-text',
+ action='store_true', default=False,
+ help='Produce raw text, without any surrounding info.')
+ ]
transform = WLDocument.as_text
transform = WLDocument.as_text