summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/support/gitfile-info
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2016-07-14 21:38:17 +0000
committerKarl Berry <karl@freefriends.org>2016-07-14 21:38:17 +0000
commit71d433e6039c736a93e0dfeb0e90d058ddc6fc60 (patch)
tree92be248a8eaa4b023fa3f921fd79f1da56e73e03 /Master/texmf-dist/doc/support/gitfile-info
parent3502b6b709295037d367cdd7ccd0795f027d095f (diff)
gitfile-info (14jul16)
git-svn-id: svn://tug.org/texlive/trunk@41693 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support/gitfile-info')
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/README4
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/gfi-run.py10
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/gitfile-info.gfi4
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/gitfile-info.pdf (renamed from Master/texmf-dist/doc/support/gitfile-info/doc/gitfile-info.pdf)bin565709 -> 569750 bytes
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/post-commit.py10
-rw-r--r--Master/texmf-dist/doc/support/gitfile-info/post-merge.py10
6 files changed, 28 insertions, 10 deletions
diff --git a/Master/texmf-dist/doc/support/gitfile-info/README b/Master/texmf-dist/doc/support/gitfile-info/README
index 550f74cce49..11bc8c4baf2 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/README
+++ b/Master/texmf-dist/doc/support/gitfile-info/README
@@ -10,8 +10,8 @@
and want to show within the document who had edited what. This package gives you the
opportunity to do so.
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -+
- Version: 0.2
- Last Change: 2016-06-30
+ Version: 0.3
+ Last Change: 2016-07-14
Current Maintainer: André Hilbig
mail@andrehilbig.de
+ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -+
diff --git a/Master/texmf-dist/doc/support/gitfile-info/gfi-run.py b/Master/texmf-dist/doc/support/gitfile-info/gfi-run.py
index 93806bf53ba..e39bb9459a2 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/gfi-run.py
+++ b/Master/texmf-dist/doc/support/gitfile-info/gfi-run.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- mode:python -*-
import os
@@ -9,7 +9,13 @@ from git import Repo
import locale
# Locales for date set up to de_DE
# Please edit to you needs
-locale.setlocale(locale.LC_ALL, 'de_DE')
+try:
+ locale.setlocale(locale.LC_ALL, 'de_DE.utf8')
+except:
+ try:
+ locale.setlocale(locale.LC_ALL, 'de_DE')
+ except:
+ print ("Fehler: bitte prüfen Sie das Ergebnis von 'locale -d' und fügen es in das Script ein.")
# set up the git repo
# path is the current working directory
diff --git a/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.gfi b/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.gfi
index 10ed60b188e..35d2df60953 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.gfi
+++ b/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.gfi
@@ -1,3 +1,3 @@
-\gfiSetDate{30}{06}{2016}{10}{33}{30. Juni 2016 10:33}
+\gfiSetDate{14}{07}{2016}{14}{14}{14. Juli 2016 14:14}
\gfiSetAuthor{André Hilbig}{mail@andrehilbig.de}
-\gfiSetCommit{1c6107b49f1e8829fdfe3b656867175cb9d5e043}{1c6107}% \end{macrocode}
+\gfiSetCommit{4850e30b19068843d017a4330d38cafd563d4586}{4850e3}% \end{macrocode}
diff --git a/Master/texmf-dist/doc/support/gitfile-info/doc/gitfile-info.pdf b/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.pdf
index 89bee1b125f..b0ccfd5a5ee 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/doc/gitfile-info.pdf
+++ b/Master/texmf-dist/doc/support/gitfile-info/gitfile-info.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/support/gitfile-info/post-commit.py b/Master/texmf-dist/doc/support/gitfile-info/post-commit.py
index 4f9a7aa2dd6..832b0750d26 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/post-commit.py
+++ b/Master/texmf-dist/doc/support/gitfile-info/post-commit.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- mode:python -*-
import os
@@ -8,7 +8,13 @@ from git import Repo
import locale
# Locales for date set up to de_DE
# Please edit to you needs
-locale.setlocale(locale.LC_ALL, 'de_DE')
+try:
+ locale.setlocale(locale.LC_ALL, 'de_DE.utf8')
+except:
+ try:
+ locale.setlocale(locale.LC_ALL, 'de_DE')
+ except:
+ print ("Fehler: bitte prüfen Sie das Ergebnis von 'locale -d' und fügen es in das Script ein.")
# set up the git repo
# path is the current working directory
diff --git a/Master/texmf-dist/doc/support/gitfile-info/post-merge.py b/Master/texmf-dist/doc/support/gitfile-info/post-merge.py
index 0988c7ed913..eebef400513 100644
--- a/Master/texmf-dist/doc/support/gitfile-info/post-merge.py
+++ b/Master/texmf-dist/doc/support/gitfile-info/post-merge.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# -*- mode:python -*-
import os
@@ -8,7 +8,13 @@ from git import Repo
import locale
# Locales for date set up to de_DE
# Please edit to you needs
-locale.setlocale(locale.LC_ALL, 'de_DE')
+try:
+ locale.setlocale(locale.LC_ALL, 'de_DE.utf8')
+except:
+ try:
+ locale.setlocale(locale.LC_ALL, 'de_DE')
+ except:
+ print ("Fehler: bitte prüfen Sie das Ergebnis von 'locale -d' und fügen es in das Script ein.")
# set up the git repo
# path is the current working directory