1
0
Fork 0
forked from github/pelican
pelican-theme/pelican
Baillette 00a14a02a6
Resolving mtime truncation issue #2412
Issue #2412 : python copy instruction doesn't preserve mtime under Debian/stretch (up to date).
This results in lot of files are copied to output even if not changed (and a lot of wasted time).

Proposed solution in pelican/pelican/generators.py, line 823:
#return s_mtime > d_mtime
return s_mtime - d_mtime > 0.000001
2018-10-03 19:13:39 +02:00
..
tests Merge pull request #2384 from oulenz/pagination_per_template 2018-09-15 08:57:31 +02:00
themes Merge pull request #2376 from strburst/simple_theme_categories_title 2018-07-06 21:45:14 +02:00
tools Merge pull request #2395 from oulenz/import_from_blogger 2018-08-08 09:45:52 +02:00
__init__.py Merge pull request #2371 from oulenz/draft_pages 2018-07-04 18:20:57 +02:00
cache.py fulfil pep8 standard 2015-08-17 13:34:32 +02:00
contents.py allows pages to have draft status, like articles 2018-07-03 12:53:46 +02:00
generators.py Resolving mtime truncation issue #2412 2018-10-03 19:13:39 +02:00
log.py Adding --logs-deduping-min-level CLI option 2017-12-15 14:59:47 +01:00
paginator.py control pagination per template 2018-07-12 17:39:51 +02:00
readers.py Merge pull request #2311 from gwax/warn_rst_no_document_title 2018-04-06 11:51:22 -07:00
rstdirectives.py Fix warnings originating from bad regexes 2017-03-27 16:09:08 +02:00
server.py fix pelican.server __main__ code, add deprecation warning 2018-08-08 18:00:15 +02:00
settings.py control pagination per template 2018-07-12 17:39:51 +02:00
signals.py Add a new signal: page_generator_write_page 2017-10-17 07:38:18 +05:00
urlwrappers.py Add AUTHOR_SUBSTITUTIONS 2016-04-01 23:01:57 +03:00
utils.py Merge pull request #2285 from andreacorbellini/2263-handle-invalid-refs 2018-07-04 18:28:17 +02:00
writers.py control pagination per template 2018-07-12 17:39:51 +02:00