-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Johan Brichau
committed
Sep 20, 2014
1 parent
3f8b123
commit 894269c
Showing
1 changed file
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
XMLPullParser [![](https://travis-ci.org/GsDevKit/XMLPullParser.svg?branch=master)](https://travis-ci.org/GsDevKit/XMLPullParser) | ||
============= | ||
XMLPullParser is a streaming XML parser. Instead of building a DOM tree, the parser streams over "events" (start tag, text, end tag) on demand. For more information on the technique in general, see [xmlpull.org](xmlpull.org). This is a port of the XMLPullParser code found on http://www.smalltalkhub.com/#!/~hernan/XMLPullParser/ to Gemstone/GLASS. | ||
XMLPullParser is a streaming XML parser. Instead of building a DOM tree, the parser streams over "events" (start tag, text, end tag) on demand. For more information on the technique in general, see [xmlpull.org](xmlpull.org). This is a port of the XMLPullParser code from http://www.smalltalkhub.com/#!/~hernan/XMLPullParser/ to Gemstone/GLASS. | ||
|
||
## Loading into GemStone | ||
|
||
Install the latest commit from the master branch: | ||
```Smalltalk | ||
Metacello new | ||
baseline: 'XMLPullParser'; | ||
repository: 'github://glassdb/XMLPullParser/repository'; | ||
repository: 'github://GsDevKit/XMLPullParser:master/repository'; | ||
load. | ||
``` | ||
|
||
[https://travis-ci.org/GsDevKit/XMLPullParser.svg?branch=master] | ||
|
||
Install a particular version, e.g. 1.5.0 (see [Releases](https://github.com/GsDevKit/XMLPullParser/releases) for a list of possible versions): | ||
```Smalltalk | ||
Metacello new | ||
baseline: 'XMLPullParser'; | ||
repository: 'github://GsDevKit/XMLPullParser:v1.5.0/repository'; | ||
load. | ||
``` |