Varia's website, varia.zone or vvvvvvaria.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
mb@mb 04c2824180 adding the 2 submodules again 6 years ago
..
README.rst adding the 2 submodules again 6 years ago
__init__.py adding the 2 submodules again 6 years ago
filetime_from_hg.py adding the 2 submodules again 6 years ago

README.rst

Use Mercurial commit to determine page date
===========================================

If your blog content is versioned via Mercurial, this plugin will set
articles' and pages' ``metadata['date']`` to correspond to that of the
hg commit. This plugin depends on the ``hglib`` python package,
which can be installed via::

sudo apt-get install python-hglib

or::

pip install hglib

The date is determined via the following logic:

* if a file is not tracked by hg, or a file is added but never committed
- metadata['date'] = filesystem time
- metadata['modified'] = filesystem time
* if a file is tracked, but no changes in working directory
- metadata['date'] = first commit time
- metadata['modified'] = last commit time
* if a file is tracked, and has changes in working directory
- metadata['date'] = first commit time
- metadata['modified'] = filesystem time

When this module is enabled, ``date`` and ``modified`` will be determined
by hg status; no need to manually set in article/page metadata. And
operations like copy and move will not affect the generated results.

If you don't want a given article or page to use the hg time, set the
metadata to ``hgtime: off`` to disable it.

You can also set ``HG_FILETIME_FOLLOW`` to ``True`` in your settings to
make the plugin follow file renames — i.e., ensure the creation date matches
the original file creation date, not the date it was renamed.

Credits
=======

This plugin is based on filetime_from_git.