From 5e0211e0d3d7d01d5a49b76fe163962b9da707e8 Mon Sep 17 00:00:00 2001
From: Justin Clift
Date: Fri, 22 Oct 2010 16:50:27 +1100
Subject: [PATCH] docs: removed old changelog file, as it is no longer relevant
We instead point to the live git log URL for the few links still
needing to point to something.
---
docs/ChangeLog.awk | 49 --------------------------------------------
docs/ChangeLog.xsl | 37 ---------------------------------
docs/Makefile.am | 13 +-----------
docs/news.html.in | 2 +-
docs/sitemap.html.in | 2 +-
5 files changed, 3 insertions(+), 100 deletions(-)
delete mode 100755 docs/ChangeLog.awk
delete mode 100644 docs/ChangeLog.xsl
diff --git a/docs/ChangeLog.awk b/docs/ChangeLog.awk
deleted file mode 100755
index d9d92fc25b..0000000000
--- a/docs/ChangeLog.awk
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/awk -f
-function translate(str) {
- while (sub(/&/, "#amp;", str) == 1);
- while (sub(/#amp;/, "\\&", str) == 1); # fun isn't it ?
- while (sub(/, "\\<", str) == 1);
- while (sub(/>/, "\\>", str) == 1);
- sub(/[0-9][0-9][0-9][0-9][0-9]+/, "", str)
- return(str)
-}
-BEGIN {
- nb_entry = 0
- in_entry = 0
- in_item = 0
- print ""
- print ""
- }
-END {
- if (in_item == 1) printf("%s\n", translate(item))
- if (in_entry == 1) print " "
- print ""
- }
-/^[ \t]*$/ { next }
-/^[A-Za-z0-9]/ {
- match($0, "\(.*\) \([A-Z]+\) \([0-9][0-9][0-9][0-9]\) \(.*\) <\(.*\)>", loge)
- if (in_item == 1) printf("%s\n", translate(item))
- if (in_entry == 1) print " "
- nb_entry = nb_entry + 1
- if (nb_entry > 50) {
- in_entry = 0
- in_item = 0
- exit
- }
- in_entry = 1
- in_item = 0
- printf(" \n", loge[1], loge[2], loge[3], loge[4], loge[5])
- }
-/^[ \t]*\*/ {
- if (in_item == 1) printf("%s\n", translate(item))
- in_item = 1
- printf(" - ")
- match($0, "[ \t]*. *\(.*\)", loge)
- item = loge[1]
- }
-/^[ \t]*[a-zA-Z0-9\#]/ {
- if (in_item == 1) {
- match($0, "[ \t]*\(.*\)[ \t]*", loge)
- item = sprintf("%s %s", item, loge[1])
- }
- }
diff --git a/docs/ChangeLog.xsl b/docs/ChangeLog.xsl
deleted file mode 100644
index f2c68167fb..0000000000
--- a/docs/ChangeLog.xsl
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Log of recent changes to libvirt
-
-
-
-
-
-
-
-
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 13ab0c2313..ae13c46c5a 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -73,13 +73,12 @@ fig = \
EXTRA_DIST= \
apibuild.py \
- site.xsl newapi.xsl news.xsl page.xsl ChangeLog.xsl \
+ site.xsl newapi.xsl news.xsl page.xsl \
$(dot_html) $(dot_html_in) $(gif) $(apihtml) $(apipng) \
$(devhelphtml) $(devhelppng) $(devhelpcss) $(devhelpxsl) \
$(xml) $(fig) $(png) \
$(patches) \
sitemap.html.in \
- ChangeLog.awk \
todo.pl todo.cfg-example
MAINTAINERCLEANFILES = $(dot_html) $(apihtml) $(devhelphtml)
@@ -90,16 +89,6 @@ api: libvirt-api.xml libvirt-refs.xml
web: $(dot_html) html/index.html devhelp/index.html
-ChangeLog.xml: ../ChangeLog ChangeLog.awk
- $(AWK) -f ChangeLog.awk < $< > $@
-
-ChangeLog.html.in: ChangeLog.xml ChangeLog.xsl
- @if [ -x $(XSLTPROC) ] ; then \
- echo "Generating $@"; \
- name=`echo $@ | sed -e 's/.tmp//'`; \
- $(XSLTPROC) --nonet $(top_srcdir)/docs/ChangeLog.xsl $< > $@ \
- || { rm $@ && exit 1; }; fi
-
todo.html.in: todo.pl
if [ -f todo.cfg ]; then \
echo "Generating $@"; \
diff --git a/docs/news.html.in b/docs/news.html.in
index 4a9329de70..bbf1e8bf31 100644
--- a/docs/news.html.in
+++ b/docs/news.html.in
@@ -6,7 +6,7 @@
Releases
Here is the list of official releases, it is also possible to just use the GIT version or snapshot, contact the mailing list
-and check the ChangeLog to gauge progress.
+and check the GIT log to gauge progress.
0.8.4: Sep 10 2010
- Features:
diff --git a/docs/sitemap.html.in b/docs/sitemap.html.in
index 5f46b59826..f09b2c0eed 100644
--- a/docs/sitemap.html.in
+++ b/docs/sitemap.html.in
@@ -13,7 +13,7 @@
Details of new features and bugs fixed in each release