Added changelogs generation tools.

This commit is contained in:
Andrei Belov
2017-10-19 17:48:58 +03:00
parent e7d81186b5
commit 8ca14503b7
7 changed files with 669 additions and 0 deletions

26
docs/change_log_conf.dtd Normal file
View File

@@ -0,0 +1,26 @@
<!ELEMENT configuration (generic, rpm, deb, changes+) >
<!ELEMENT generic (length, start, indent?) >
<!ELEMENT rpm (length, start, indent?) >
<!ELEMENT deb (length, start, indent?) >
<!ELEMENT length (#PCDATA) >
<!ELEMENT start (#PCDATA) >
<!ELEMENT indent (#PCDATA) >
<!ELEMENT changes (title, length,
bugfix, feature, change, security, workaround,
(month, month, month, month, month, month,
month, month, month, month, month, month),
(day, day, day, day, day, day, day)?) >
<!ELEMENT title (#PCDATA) >
<!ELEMENT bugfix (#PCDATA) >
<!ELEMENT feature (#PCDATA) >
<!ELEMENT change (#PCDATA) >
<!ELEMENT security (#PCDATA) >
<!ELEMENT workaround (#PCDATA) >
<!ELEMENT month (#PCDATA) >
<!ELEMENT day (#PCDATA) >