doc: Don't 'publish' release notes, don't build pdf release notes
authorKeith Packard <keithp@keithp.com>
Tue, 12 Dec 2017 06:36:00 +0000 (22:36 -0800)
committerKeith Packard <keithp@keithp.com>
Tue, 12 Dec 2017 06:38:32 +0000 (22:38 -0800)
All we use the release notes for is to include into the main AltOS
page. Also remove the docinfo for these files so that information
isn't duplicated for each set of release notes.

Signed-off-by: Keith Packard <keithp@keithp.com>
30 files changed:
doc/Makefile
doc/release-notes-0.7.1-docinfo.xml [deleted file]
doc/release-notes-0.8-docinfo.xml [deleted file]
doc/release-notes-0.9-docinfo.xml [deleted file]
doc/release-notes-0.9.2-docinfo.xml [deleted file]
doc/release-notes-1.0.1-docinfo.xml [deleted file]
doc/release-notes-1.1-docinfo.xml [deleted file]
doc/release-notes-1.1.1-docinfo.xml [deleted file]
doc/release-notes-1.2-docinfo.xml [deleted file]
doc/release-notes-1.2.1-docinfo.xml [deleted file]
doc/release-notes-1.3-docinfo.xml [deleted file]
doc/release-notes-1.3.1-docinfo.xml [deleted file]
doc/release-notes-1.3.2-docinfo.xml [deleted file]
doc/release-notes-1.4-docinfo.xml [deleted file]
doc/release-notes-1.4.1-docinfo.xml [deleted file]
doc/release-notes-1.4.2-docinfo.xml [deleted file]
doc/release-notes-1.5-docinfo.xml [deleted file]
doc/release-notes-1.6-docinfo.xml [deleted file]
doc/release-notes-1.6.1-docinfo.xml [deleted file]
doc/release-notes-1.6.2-docinfo.xml [deleted file]
doc/release-notes-1.6.3-docinfo.xml [deleted file]
doc/release-notes-1.6.4-docinfo.xml [deleted file]
doc/release-notes-1.6.5-docinfo.xml [deleted file]
doc/release-notes-1.6.8-docinfo.xml [deleted file]
doc/release-notes-1.7-docinfo.xml [deleted file]
doc/release-notes-1.8-docinfo.xml [deleted file]
doc/release-notes-1.8.1-docinfo.xml [deleted file]
doc/release-notes-1.8.2-docinfo.xml [deleted file]
doc/release-notes-1.8.3-docinfo.xml [deleted file]
doc/release-notes-docinfo.xml [deleted file]

index feb1de8f5cf574f9c7dd08eb6bde0bf1c51687ea..aa266e75c2db6f6cc3071a0eb4834f6ada8b0ff3 100644 (file)
@@ -186,7 +186,6 @@ SVG=\
        telemini-v3.svg \
        easymega.svg
 
-RELNOTES_PDF=$(RELNOTES_INC:.inc=.pdf)
 RELNOTES_HTML=$(RELNOTES_INC:.inc=.html)
 
 ONEFILE_TXT_FILES=\
@@ -196,10 +195,13 @@ ONEFILE_TXT_FILES=\
 
 ONEFILE_RAW_FILES=$(ONEFILE_TXT_FILES:.txt=.raw)
 ONEFILE_PDF_FILES=$(ONEFILE_TXT_FILES:.txt=.pdf)
+ONEFILE_HTML_FILES=$(ONEFILE_TXT_FILES:.txt=.html)
 
 AM_HTML=am.html
 
-HTML=altusmetrum.html micropeak.html telegps.html easymini.html $(RELNOTES_HTML) $(ONEFILE_HTML_FILES)
+PUBLISH_HTML=altusmetrum.html micropeak.html telegps.html easymini.html $(ONEFILE_HTML_FILES)
+
+HTML=$(PUBLISH_HTML) $(RELNOTES_HTML)
 
 HTML_REVHISTORY=\
        altusmetrum-revhistory.html \
@@ -207,7 +209,7 @@ HTML_REVHISTORY=\
        telegps-revhistory.html \
        easymini-revhistory.html
 
-PDF=altusmetrum.pdf micropeak.pdf telegps.pdf easymini.pdf $(RELNOTES_PDF) $(ONEFILE_PDF_FILES) \
+PDF=altusmetrum.pdf micropeak.pdf telegps.pdf easymini.pdf $(ONEFILE_PDF_FILES) \
        $(OUTLINE_PDF_FILES)
 
 FOP_STYLE=am-fo.xsl
@@ -235,6 +237,8 @@ TEMPLATES_XSL=$(TEMPLATES_TMPL:.tmpl=.xsl)
 PDF_CONFIG_FILES=$(FOP_STYLE) $(COMMON_STYLE) $(FOP_XCONF) $(TEMPLATES_XSL)
 HTML_CONFIG_FILES=$(HTML_STYLE) $(COMMON_STYLE) $(TEMPLATES_XSL)
 
+PUBLISH_DOC=$(PUBLISH_HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET)
+
 DOC=$(HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET)
 
 .SUFFIXES: .tmpl .xsl .inc .txt .raw .pdf .html
@@ -245,12 +249,12 @@ DOC=$(HTML) $(HTML_REVHISTORY) $(PDF) $(IMAGES) $(STYLESHEET)
 .inc.raw:
        sed -e 's/^[    ]*//' -e 's/^\\//' $*.inc > $@
 
-.raw.pdf:
+.raw.html:
        a2x --verbose -a docinfo -f pdf --xsltproc-opts "--stringparam toc.section.depth 2" --xsl-file $(FOP_STYLE) --fop --fop-opts="-c $(FOP_XCONF)" $*.raw
        a2x --verbose -a docinfo -f xhtml --xsltproc-opts "--stringparam toc.section.depth 2" --xsl-file $(HTML_STYLE) --stylesheet=$(STYLESHEET) $*.raw
        case $* in release-notes*) ./fix-html $*.html ;; esac
 
-.pdf.html:
+.html.pdf:
        @touch $@
 
 .tmpl.xsl:
@@ -278,19 +282,21 @@ telemini-v3-outline.pdf: telemini-v3-outline.txt telemini-v3.svg
 
 install:       all
 
-publish:       $(DOC) $(FONTS)
-       cp $(DOC) /home/bdale/web/altusmetrum/AltOS/doc/
-       mkdir -p /home/bdale/web/altusmetrum/AltOS/doc/fonts/
-       cp $(FONTS) /home/bdale/web/altusmetrum/AltOS/doc/fonts/
-       (cd /home/bdale/web/altusmetrum ; \
-        git add /home/bdale/web/altusmetrum/AltOS/doc/* ; \
-        git add /home/bdale/web/altusmetrum/AltOS/doc/fonts/* ; \
+WEB_ROOT=/home/bdale/web/
+
+publish:       $(PUBLISH_DOC) $(FONTS)
+       cp $(PUBLISH_DOC) $(WEB_ROOT)/altusmetrum/AltOS/doc/
+       mkdir -p $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/
+       cp $(FONTS) $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/
+       (cd $(WEB_ROOT)/altusmetrum ; \
+        git add $(WEB_ROOT)/altusmetrum/AltOS/doc/* ; \
+        git add $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/* ; \
         echo "update docs" | \
-        git commit -F - /home/bdale/web/altusmetrum/AltOS/doc/* /home/bdale/web/altusmetrum/AltOS/doc/fonts/* ; \
+        git commit -F - $(WEB_ROOT)/altusmetrum/AltOS/doc/* $(WEB_ROOT)/altusmetrum/AltOS/doc/fonts/* ; \
         git push)
 
-publish-keithp:        am.html $(DOC) $(FONTS)
-       scp -p am.html $(DOC) keithp.com:~keithp/public_html/altos
+publish-keithp:        am.html $(PUBLISH_DOC) $(FONTS)
+       scp -p am.html $(PUBLISH_DOC) keithp.com:~keithp/public_html/altos
        scp -p $(FONTS) keithp.com:~keithp/public_html/altos/fonts
 
 clean:
diff --git a/doc/release-notes-0.7.1-docinfo.xml b/doc/release-notes-0.7.1-docinfo.xml
deleted file mode 100644 (file)
index 9657f2a..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>29 September 2010</date>
-<copyright>
-  <year>2010</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-0.8-docinfo.xml b/doc/release-notes-0.8-docinfo.xml
deleted file mode 100644 (file)
index d593da3..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>24 November 2010</date>
-<copyright>
-  <year>2010</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-0.9-docinfo.xml b/doc/release-notes-0.9-docinfo.xml
deleted file mode 100644 (file)
index 605472f..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>18 January 2011</date>
-<copyright>
-  <year>2011</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-0.9.2-docinfo.xml b/doc/release-notes-0.9.2-docinfo.xml
deleted file mode 100644 (file)
index 40e5363..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>19 March 2011</date>
-<copyright>
-  <year>2011</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.0.1-docinfo.xml b/doc/release-notes-1.0.1-docinfo.xml
deleted file mode 100644 (file)
index 2397210..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>24 August 2011</date>
-<copyright>
-  <year>2011</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.1-docinfo.xml b/doc/release-notes-1.1-docinfo.xml
deleted file mode 100644 (file)
index 9327391..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>13 September 2012</date>
-<copyright>
-  <year>2013</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.1.1-docinfo.xml b/doc/release-notes-1.1.1-docinfo.xml
deleted file mode 100644 (file)
index 41ea12d..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>16 September 2012</date>
-<copyright>
-  <year>2012</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.2-docinfo.xml b/doc/release-notes-1.2-docinfo.xml
deleted file mode 100644 (file)
index ba2c9d5..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>18 April 2013</date>
-<copyright>
-  <year>2013</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.2.1-docinfo.xml b/doc/release-notes-1.2.1-docinfo.xml
deleted file mode 100644 (file)
index d0f08b9..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>21 May 2013</date>
-<copyright>
-  <year>2013</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.3-docinfo.xml b/doc/release-notes-1.3-docinfo.xml
deleted file mode 100644 (file)
index aa569df..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>12 November 2013</date>
-<copyright>
-  <year>2013</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.3.1-docinfo.xml b/doc/release-notes-1.3.1-docinfo.xml
deleted file mode 100644 (file)
index f67cf3b..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>21 January 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.3.2-docinfo.xml b/doc/release-notes-1.3.2-docinfo.xml
deleted file mode 100644 (file)
index 82b7677..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>24 January 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.4-docinfo.xml b/doc/release-notes-1.4-docinfo.xml
deleted file mode 100644 (file)
index 12a38ce..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>15 June 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.4.1-docinfo.xml b/doc/release-notes-1.4.1-docinfo.xml
deleted file mode 100644 (file)
index 6224b16..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>20 June 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.4.2-docinfo.xml b/doc/release-notes-1.4.2-docinfo.xml
deleted file mode 100644 (file)
index 8fd9432..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>17 August 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.5-docinfo.xml b/doc/release-notes-1.5-docinfo.xml
deleted file mode 100644 (file)
index 0c0cace..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>6 September 2014</date>
-<copyright>
-  <year>2014</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6-docinfo.xml b/doc/release-notes-1.6-docinfo.xml
deleted file mode 100644 (file)
index 5ae58bb..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>8 January 2015</date>
-<copyright>
-  <year>2015</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.1-docinfo.xml b/doc/release-notes-1.6.1-docinfo.xml
deleted file mode 100644 (file)
index dc0a2d6..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>15 July 2015</date>
-<copyright>
-  <year>2015</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.2-docinfo.xml b/doc/release-notes-1.6.2-docinfo.xml
deleted file mode 100644 (file)
index 78206e2..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>10 January 2016</date>
-<copyright>
-  <year>2016</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.3-docinfo.xml b/doc/release-notes-1.6.3-docinfo.xml
deleted file mode 100644 (file)
index ce22ebc..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>6 May 2016</date>
-<copyright>
-  <year>2016</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.4-docinfo.xml b/doc/release-notes-1.6.4-docinfo.xml
deleted file mode 100644 (file)
index 76af355..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>17 June 2016</date>
-<copyright>
-  <year>2016</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.5-docinfo.xml b/doc/release-notes-1.6.5-docinfo.xml
deleted file mode 100644 (file)
index a07d6f0..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>4 July 2016</date>
-<copyright>
-  <year>2016</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.6.8-docinfo.xml b/doc/release-notes-1.6.8-docinfo.xml
deleted file mode 100644 (file)
index 776c244..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>5 September 2016</date>
-<copyright>
-  <year>2016</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.7-docinfo.xml b/doc/release-notes-1.7-docinfo.xml
deleted file mode 100644 (file)
index 61d77d9..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>24 April 2017</date>
-<copyright>
-  <year>2017</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.8-docinfo.xml b/doc/release-notes-1.8-docinfo.xml
deleted file mode 100644 (file)
index 3b40421..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>12 August 2017</date>
-<copyright>
-  <year>2017</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.8.1-docinfo.xml b/doc/release-notes-1.8.1-docinfo.xml
deleted file mode 100644 (file)
index 29a4fe7..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>28 August 2017</date>
-<copyright>
-  <year>2017</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.8.2-docinfo.xml b/doc/release-notes-1.8.2-docinfo.xml
deleted file mode 100644 (file)
index a5fbc6e..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>18 September 2017</date>
-<copyright>
-  <year>2017</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-1.8.3-docinfo.xml b/doc/release-notes-1.8.3-docinfo.xml
deleted file mode 100644 (file)
index e036658..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<date>11 December 2017</date>
-<copyright>
-  <year>2017</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="altusmetrum-oneline.svg" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>
diff --git a/doc/release-notes-docinfo.xml b/doc/release-notes-docinfo.xml
deleted file mode 100644 (file)
index 4f842cd..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<author>
-  <firstname>Bdale</firstname>
-  <surname>Garbee</surname>
-  <email>bdale@gag.com</email>
-</author>
-<author>
-  <firstname>Keith</firstname>
-  <surname>Packard</surname>
-  <email>keithp@keithp.com</email>
-</author>
-<copyright>
-  <year>2015</year>
-  <holder>Bdale Garbee and Keith Packard</holder>
-</copyright>
-<mediaobject>
-  <imageobject>
-    <imagedata fileref="../themes/background.png" width="6.0in"/>
-  </imageobject>
-</mediaobject>
-<legalnotice>
-  <para>
-    This document is released under the terms of the
-    <ulink url="http://creativecommons.org/licenses/by-sa/3.0/">
-      Creative Commons ShareAlike 3.0
-    </ulink>
-    license.
-  </para>
-</legalnotice>