Skip to content

GsDevKit/XMLPullParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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. This is a port of the XMLPullParser code from https://github.com/pharo-contributions/XML-XMLPullParser to Gemstone/GLASS.

Loading into GemStone

Install the latest commit from the master branch:

Metacello new
  baseline: 'XMLPullParser';
  repository: 'github:https://GsDevKit/XMLPullParser:master/repository';
  load.

Install a particular version, e.g. 1.5.0 (see Releases for a list of possible versions):

Metacello new
  baseline: 'XMLPullParser';
  repository: 'github:https://GsDevKit/XMLPullParser:v1.5.0/repository';
  load.