summaryrefslogtreecommitdiffstats
path: root/dilos/tdesdk/debian/poxml-trinity.README.Debian
diff options
context:
space:
mode:
authorDenis Kozadaev <denis@dilos.org>2020-01-30 22:13:12 +0300
committerSlávek Banko <slavek.banko@axis.cz>2020-03-08 15:40:43 +0100
commitf53be2a5db8dc889056420689a1913aeff7b0af5 (patch)
tree80c8bacab0e649d3a42a4525426ad1512f91c438 /dilos/tdesdk/debian/poxml-trinity.README.Debian
parentfc267b3a7e513cfa519c60aab4c340a9588e60cb (diff)
downloadtde-packaging-f53be2a5db8dc889056420689a1913aeff7b0af5.tar.gz
tde-packaging-f53be2a5db8dc889056420689a1913aeff7b0af5.zip
DilOS: tdesdk build pack
Signed-off-by: Denis Kozadaev <denis@dilos.org> (cherry picked from commit e803ab9f23e7657fa39666791169e1670f6ce3cf)
Diffstat (limited to 'dilos/tdesdk/debian/poxml-trinity.README.Debian')
-rw-r--r--dilos/tdesdk/debian/poxml-trinity.README.Debian39
1 files changed, 39 insertions, 0 deletions
diff --git a/dilos/tdesdk/debian/poxml-trinity.README.Debian b/dilos/tdesdk/debian/poxml-trinity.README.Debian
new file mode 100644
index 000000000..0b5434012
--- /dev/null
+++ b/dilos/tdesdk/debian/poxml-trinity.README.Debian
@@ -0,0 +1,39 @@
+PO/XML tools for Debian
+-----------------------
+
+Overview:
+
+ This package contains several tools for working with PO-files and
+ DocBook XML files.
+
+ Binaries included are:
+
+ po2xml: translates a DocBook XML file using a PO-file
+ split2po: creates a PO-file from two DocBook XML files
+ swappo: swaps msgid and msgstr fields in a PO-file
+ transxx: creates a basic fleshed-out PO-file from a PO-template file
+ xml2pot: creates a PO-template file from a DocBook XML file
+
+ Please see the relevant manpages for further information on each tool.
+
+Warning:
+
+ The PO/XML tools are fussy about system identifiers (unlike some other
+ XML processing tools). When writing DocBook XML files, if a DTD is
+ declared then a system identifier must be included also.
+
+ Thus (for example) the following declaration is invalid, and will cause
+ the PO/XML tools to break:
+
+ <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
+
+ On the other hand, both of the following declarations are acceptable:
+
+ <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1/docbookx.dtd">
+ <!DOCTYPE article>
+
+ See "DocBook: The Definitive Guide" (in the docbook-defguide package)
+ for further information.
+
+ -- Ben Burton <bab@debian.org>, Thu, 24 Mar 2005 07:59:47 +1100