1
0
mirror of https://github.com/gryf/ebook-converter.git synced 2026-01-29 17:55:45 +01:00
Commit Graph

57 Commits

Author SHA1 Message Date
3f8844832d Move strftime to util.date module
In this patch strftime function is moved out of main __init__.py module
to util.date, where it belongs.
2020-06-14 20:47:01 +02:00
fdd531f6e0 Removed as_unicode function 2020-06-14 19:02:23 +02:00
bed16d24f1 Flaked8 cli module 2020-06-14 16:22:53 +02:00
372899739d Removed patheq function 2020-06-14 16:09:08 +02:00
dd60a1cd26 Removed guess_all_extensions 2020-06-14 15:54:38 +02:00
e35bd46422 Removed get_types_map 2020-06-14 15:52:24 +02:00
9891d02694 Fixed flake8 issues to several modules 2020-06-14 15:49:11 +02:00
1465e4267f Sorted out mime initialization.
Every mime related function in main __init__.py has a flag check for the
check if initialization has already done. This is nonsense, since it
should be done implicitly early on the converter is starting.

This commit straight the things out, and initialization is done in cli
module.

Also, function guess_type was removed, since it's just a proxy for
mimetypes.guess_type function.
2020-06-14 15:41:18 +02:00
ebb2e810eb Removed 'browser' related functions 2020-06-14 12:28:23 +02:00
be671ef2d8 Removed isbytestring function 2020-06-14 12:10:40 +02:00
a69884d724 Fixing leftovers from first concept of constants 2020-06-07 11:59:00 +02:00
7419954e0c Added missing dump module 2020-06-07 08:14:15 +02:00
ce89f5c9d1 Use the real constants module.
This is progressing refactor of the calibre code to make it more
readable, and transform it to something more coherent.

In this patch, there are changes regarding imports for some modules,
instead of polluting namespace of each module with some other modules
symbols, which often were imported from other modules. Yuck.
2020-05-29 17:04:53 +02:00
2c78d6e3a6 Renamed constants, to make room for real constants module 2020-05-26 19:52:18 +02:00
399456d9ad Added LRF input format support. 2020-05-24 12:43:33 +02:00
17c52a14a4 Some misc cleanups 2020-05-24 12:10:13 +02:00
2d26e8916d Clean up pdb_input module 2020-05-17 20:40:46 +02:00
178b9fd4d7 Removed palmdoc C implementation in favor of pure Python. 2020-05-17 20:38:53 +02:00
da010d7841 Get rid of icu string functions in favor of native ones. 2020-05-03 20:19:11 +02:00
212cb56d42 Removed gettext related functions 2020-05-03 19:04:07 +02:00
35445cb736 More cleanup 2020-05-03 15:37:23 +02:00
ea99f5223c Removing not needed excpetion class ConversionUserFeedBack 2020-04-23 20:11:10 +02:00
16d169d0d6 Removed another unicode/string nonsense 2020-04-23 20:07:19 +02:00
de4f8a444b Removed check for python version 2020-04-21 21:06:48 +02:00
3234e4de27 Removed iteritems and itervalues, which are redundant 2020-04-21 18:20:08 +02:00
9e076e0af4 Removed superfluous lopen builtin 2020-04-20 21:12:22 +02:00
3ca3f08054 Removing polyglot getcwd and getenv 2020-04-20 20:34:17 +02:00
c867f0321b Removing couple of "buildins" polyglot types 2020-04-20 20:22:50 +02:00
eac0b98d6f Removed polyglot codepoint_to_chr 2020-04-20 19:29:05 +02:00
128705f258 Removed polyglots unicode_type usage 2020-04-20 19:25:28 +02:00
ef7e2b10be Removing is_py3 method and duplicated by urllib. 2020-04-19 21:22:24 +02:00
b66cbd2c1e Removed overwritten builtins from mosto of the files.
Just started the process of cleaning up the code base.
2020-04-19 19:06:09 +02:00
571da747b3 Fix license formatting 2020-04-19 17:50:19 +02:00
48fedea799 Removing unneeded from __future__ import statements.
Since we are on Python 3.6 and up, we don't need those anymore.
2020-04-19 17:39:02 +02:00
41b687ee27 Added txt output format 2020-04-19 15:18:03 +02:00
d2159ed60c Added htmlz and pdf formats.
Added HTML reader/writer and PDF reader.
2020-04-19 15:16:48 +02:00
ebeca30bda Enable htmlz output format 2020-04-19 15:16:48 +02:00
d3369d55bc Enable docx write support 2020-04-19 15:16:48 +02:00
a4533957f7 Enable mobi write support. 2020-04-19 15:16:48 +02:00
32b86ab224 Added support for epub output format. 2020-04-19 15:16:48 +02:00
fa3cf5c178 Added FB2 format. 2020-04-19 15:16:48 +02:00
860044904d Workaround for missing mobi images. 2020-04-19 15:16:48 +02:00
5aa0b1a0eb Cleanup get_path usage in favor of pkg_resources. 2020-04-19 15:16:48 +02:00
0bf43ec6e8 Removed translations module 2020-04-19 15:16:48 +02:00
bd9cb86c1c Replace Calibre path resolve system for some of the modules.
In Calibre there is a module, which registers two functions in global
scope, one for filepath and one for images path. It relies on additional
three variables, registered during application startup. I found it
overcomplicated, and couple of the resource paths has been calculated
using pkg_resource module.
2020-04-19 15:16:48 +02:00
5bb235772d Fix issue with crash on LibreOffice format.
During tests, there was issue regarding ODF2XHTML.xhtml() method, which
assumes, that all lines are stored as strings. Although, in case of
single items, like footnotes, there is a chance, that numbers are stored
as ints. In this patch we assure, that all lines has to be strings. This
bug also affects current version of Calibre (as of cf5baaf449 commit).
2020-04-19 15:16:48 +02:00
5be4996b7b Fix issue with nonhashable TextStyle objects in LRF format. 2020-04-19 15:16:48 +02:00
01e617f206 Added missing txt metadata module 2020-04-19 15:16:48 +02:00
0f9792df36 Convert calibre modules to ebook_converter.
Here is the first batch of modules, which are needed for converting
several formats to LRF. Some of the logic has been change, more cleanups
will follow.
2020-04-19 15:16:48 +02:00
69d2e536c5 Added txt related modules 2020-04-19 15:16:39 +02:00