12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- import os
- from git import Git, Repo, InvalidGitRepositoryError
- from pelican import signals, contents
- from datetime import datetime
- from time import mktime, altzone
- from pelican.utils import strftime
- try:
- repo = Repo(os.path.abspath('.'))
- git = Git(os.path.abspath('.'))
- except InvalidGitRepositoryError as e:
- repo = None
- def filetime_from_git(content):
- if isinstance(content, contents.Static) or repo is None:
- return
- gittime = content.metadata.get('gittime', 'yes').lower()
- gittime = gittime.replace("false", "no").replace("off", "no")
- if gittime == "no":
- return
-
-
-
-
-
-
-
-
- path = content.source_path
- status, stdout, stderr = git.execute(['git', 'ls-files', path, '--error-unmatch'],
- with_extended_output=True, with_exceptions=False)
- if status != 0:
-
- content.date = datetime.fromtimestamp(os.stat(path).st_ctime)
- else:
-
- commits = repo.commits(path=path)
- if len(commits) == 0:
-
- content.date = datetime.fromtimestamp(os.stat(path).st_ctime)
- else:
-
- content.date = datetime.fromtimestamp(mktime(commits[-1].committed_date) - altzone)
- status, stdout, stderr = git.execute(['git', 'diff', '--quiet', 'HEAD', path],
- with_extended_output=True, with_exceptions=False)
- if status != 0:
-
- content.modified = datetime.fromtimestamp(os.stat(path).st_ctime)
- else:
-
- if len(commits) > 1:
- content.modified = datetime.fromtimestamp(mktime(commits[0].committed_date) - altzone)
- if not hasattr(content, 'modified'):
- content.modified = content.date
- if hasattr(content, 'date'):
- content.locale_date = strftime(content.date, content.date_format)
- if hasattr(content, 'modified'):
- content.locale_modified = strftime(content.modified, content.date_format)
- def register():
- signals.content_object_init.connect(filetime_from_git)
|