diff options
author | Bruce Momjian | 2004-03-14 03:19:13 +0000 |
---|---|---|
committer | Bruce Momjian | 2004-03-14 03:19:13 +0000 |
commit | 181d4d410aaa2c3f86ea513766d7558703e0a0b6 (patch) | |
tree | 3071acf82c6ac9af8d8d575adc9e50cf829941b1 | |
parent | a8a3b54724d9e9487490a87793c56e04a399a5b3 (diff) |
Rename README's to match directory names. Mention copyright matches
PostgreSQL's.
-rw-r--r-- | contrib/xml/Makefile | 4 | ||||
-rw-r--r-- | contrib/xml/README.xml (renamed from contrib/xml/README.pgxml) | 3 | ||||
-rw-r--r-- | contrib/xml2/Makefile | 2 | ||||
-rw-r--r-- | contrib/xml2/README.xml2 (renamed from contrib/xml2/README.pgxml) | 1 |
4 files changed, 6 insertions, 4 deletions
diff --git a/contrib/xml/Makefile b/contrib/xml/Makefile index d5526e1c81..ccfa2bfb75 100644 --- a/contrib/xml/Makefile +++ b/contrib/xml/Makefile @@ -1,4 +1,4 @@ -# $Header: /cvsroot/pgsql/contrib/xml/Attic/Makefile,v 1.7 2004/03/05 04:10:11 momjian Exp $ +# $Header: /cvsroot/pgsql/contrib/xml/Attic/Makefile,v 1.8 2004/03/14 03:19:13 momjian Exp $ subdir = contrib/xml top_builddir = ../.. @@ -8,6 +8,6 @@ MODULE_big = pgxml_dom OBJS = pgxml_dom.o SHLIB_LINK = -lxml2 DATA_built = pgxml_dom.sql -DOCS = README.pgxml +DOCS = README.xml include $(top_srcdir)/contrib/contrib-global.mk diff --git a/contrib/xml/README.pgxml b/contrib/xml/README.xml index 76976f0f6d..b77538099c 100644 --- a/contrib/xml/README.pgxml +++ b/contrib/xml/README.xml @@ -3,7 +3,8 @@ This version is obsoleted by /contrib/xml2. This package contains some simple routines for manipulating XML documents stored in PostgreSQL. This is a work-in-progress and somewhat basic at the moment (see the file TODO for some outline of -what remains to be done). +what remains to be done). It has the same BSD licence as PostgreSQL. + At present, two modules (based on different XML handling libraries) are provided. diff --git a/contrib/xml2/Makefile b/contrib/xml2/Makefile index f08a25af00..9e19eab047 100644 --- a/contrib/xml2/Makefile +++ b/contrib/xml2/Makefile @@ -12,7 +12,7 @@ OBJS = xpath.o xslt_proc.o SHLIB_LINK = -lxml2 -lxslt DATA_built = pgxml.sql -DOCS = README.pgxml +DOCS = README.xml2 include $(top_builddir)contrib/contrib-global.mk diff --git a/contrib/xml2/README.pgxml b/contrib/xml2/README.xml2 index 88bc1c683f..be129e97d7 100644 --- a/contrib/xml2/README.pgxml +++ b/contrib/xml2/README.xml2 @@ -2,6 +2,7 @@ XML-handling functions for PostgreSQL ===================================== Development of this module was sponsored by Torchbox Ltd. (www.torchbox.com) +It has the same BSD licence as PostgreSQL. This version of the XML functions provides both XPath querying and XSLT functionality. There is also a new table function which allows |