[Expat-checkins] CVS: expat Changes,1.1,1.2 Makefile.in,1.3,1.4 README,1.1,1.2 config.hin,1.3,1.4

Clark Cooper coopercc@users.sourceforge.net
Fri, 29 Sep 2000 07:57:48 -0700


Update of /cvsroot/expat/expat
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4975

Modified Files:
	Changes Makefile.in README config.hin 
Log Message:
Versioning information, fill in Changes file, possible final commit before
first release (1.95.0)


Index: Changes
===================================================================
RCS file: /cvsroot/expat/expat/Changes,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** Changes	2000/09/28 19:47:32	1.1
--- Changes	2000/09/29 14:57:44	1.2
***************
*** 0 ****
--- 1,22 ----
+ Release 1.95.0 Fri Sep 29 2000
+ 	- XML_ParserCreate_MM
+ 		Allows you to set a memory management suite to replace the
+ 		standard malloc,realloc, and free.
+ 	- XML_SetReturnNSTriplet
+ 		If you turn this feature on when namespace processing is in
+ 		effect, then qualified, prefixed element and attribute names
+ 		are returned as "uri|name|prefix" where '|' is whatever
+ 		separator character is used in namespace processing.
+ 	- Merged in features from perl-expat
+ 		o XML_SetElementDeclHandler
+ 		o XML_SetAttlistDeclHandler
+ 		o XML_SetXmlDeclHandler
+ 		o XML_SetEntityDeclHandler
+ 		o StartDoctypeDeclHandler takes 3 additional parameters:
+ 			sysid, pubid, has_internal_subset
+ 		o Many paired handler setters (like XML_SetElementHandler)
+ 		  now have corresponding individual handler setters
+ 		o XML_GetInputContext for getting the input context of
+ 		  the current parse position.
+ 	- Added reference material
+ 	- Packaged into a distribution that builds a sharable library
\ No newline at end of file

Index: Makefile.in
===================================================================
RCS file: /cvsroot/expat/expat/Makefile.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** Makefile.in	2000/09/28 19:47:32	1.3
--- Makefile.in	2000/09/29 14:57:44	1.4
***************
*** 129,132 ****
--- 129,134 ----
  
  distdir: MANIFEST
+ 	sed -e "1,3s/Release .*/Release $(VERSION)." README > README.tmp; \
+ 	mv -f README.tmp README; \
  	test -d $(DISTDIR) && rm -rf $(DISTDIR); \
  	mkdir $(DISTDIR); \

Index: README
===================================================================
RCS file: /cvsroot/expat/expat/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** README	2000/09/18 16:26:20	1.1
--- README	2000/09/29 14:57:44	1.2
***************
*** 1,45 ****
- 
- 			Expat, Release 2.00
- 
- This is expat, the C library for parsing XML, written by James Clark. Expat
- is a stream oriented XML parser. This means that you register handlers with
- the parser prior to starting the parse. These handlers are called when
- the parser discovers the associated structures in the document being parsed.
- A start tag is an example of the kind of structures for which you may
- register handlers.
- 
- Expat is free software. You may copy, distribute, and modify it under the
- terms of the License contained in the file, COPYING, distributed with this
- package. This license is the same as the MIT/X Consortium license.
- 
- To build expat, you first run the configuration shell script in the top
- level distribution directory:
- 
- 	./configure
- 
- There are many options which you may provide to configure (which you can
- discover by running configure with the --help option.) But the one of most
- interest is the one that sets the installation directory. By default,
- the configure script will set things up to install libexpat into
- /usr/local/lib and expat.h into /usr/local/include. If, for example, you'd
- prefer to install into /home/me/mystuff/lib and /home/me/mystuff/include,
- you can tell configure about that with:
- 
- 	./configure --prefix=/home/me/mystuff
- 
- After running the configure script, the "make" command will build things and
- "make install" will install things into their proper location. Note that
- you need to have write permission into the directories into which things
- will be installed.
- 
- A reference manual is available in the doc/reference.html in this
- distribution.
- 
- The homepage for this project is http://expat.sourceforge.net. There are
- links there to connect you to the bug reports page. If you need to report
- a bug when you don't have access to a browser, you may also send a bug
- report by email to expat-bugs@lists.sourceforge.net.
- 
- Discussion related to the direction of future expat development takes place
- on expat-discuss@lists.sourceforge.net. Archives of this list may be found
- at http://www.geocrawler.com/redir-sf.php3?list=expat-discuss.
--- 0 ----

Index: config.hin
===================================================================
RCS file: /cvsroot/expat/expat/config.hin,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** config.hin	2000/09/24 03:43:36	1.3
--- config.hin	2000/09/29 14:57:44	1.4
***************
*** 44,53 ****
  #undef HAVE_UNISTD_H
  
- /* Name of package */
- #undef PACKAGE
- 
- /* Version number of package */
- #undef VERSION
- 
  #define XML_NS
  #define XML_DTD
--- 44,47 ----