summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex')
-rw-r--r--Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex31
1 files changed, 31 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex b/Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex
new file mode 100644
index 00000000000..4dbe8bfd540
--- /dev/null
+++ b/Master/texmf-dist/source/context/third/letter/doc/correspondence-revision.tex
@@ -0,0 +1,31 @@
+\startcomponent correspondence-revision
+
+\environment correspondence-environment
+
+\chapter{File versions}
+
+The letter module comes as a package with many different files
+and each of them has their own version tag, you could read this
+version tag at the bottom of each file in the field date.
+
+\setuptabulate[header=repeat]
+
+\starttabulatehead
+\NC \bf File \NC \bf Revision \NC \bf Description \NC\NR
+\stoptabulatehead
+
+\startluacode
+tex.sprint(tex.ctxcatcodes,"\\starttabulate[|l|l|l|]")
+for k,v in pairs(thirddata.correspondence.files) do
+ tex.sprint(tex.ctxcatcodes,"\\NC")
+ tex.sprint(tex.ctxcatcodes,thirddata.correspondence.files[k]["name"])
+ tex.sprint(tex.ctxcatcodes,"\\NC")
+ tex.sprint(tex.ctxcatcodes,thirddata.correspondence.files[k]["version"])
+ tex.sprint(tex.ctxcatcodes,"\\NC")
+ tex.sprint(tex.ctxcatcodes,thirddata.correspondence.files[k]["description"])
+ tex.sprint(tex.ctxcatcodes,"\\NC\\NR")
+end
+tex.sprint(tex.ctxcatcodes,"\\stoptabulate")
+\stopluacode
+
+\stopcomponent