Skip to content

Commit

Permalink
Basic README with status/TODO list.
Browse files Browse the repository at this point in the history
  • Loading branch information
nerdyc committed May 10, 2010
1 parent 218331a commit 1324860
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Opal.xcodeproj/project.pbxproj
Expand Up @@ -54,6 +54,7 @@
32DBCF5E0370ADEE00C91783 /* Opal_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Opal_Prefix.pch; sourceTree = "<group>"; };
6209984A1195EBDA0090D0BE /* OpalXMLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpalXMLEvent.h; sourceTree = "<group>"; };
6209984B1195EBDA0090D0BE /* OpalXMLEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpalXMLEvent.m; sourceTree = "<group>"; };
620998C511979CF40090D0BE /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
627912A211909ED400A6719C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
627912A611909F2000A6719C /* OpalXMLParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpalXMLParser.h; sourceTree = "<group>"; };
627912A711909F2000A6719C /* OpalXMLParser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OpalXMLParser.m; sourceTree = "<group>"; };
Expand Down Expand Up @@ -131,6 +132,7 @@
62791699119377D100A6719C /* Opal.bridgesupport */,
8DC2EF5A0486A6940098B216 /* Info.plist */,
089C1666FE841158C02AAC07 /* InfoPlist.strings */,
620998C511979CF40090D0BE /* README.md */,
);
name = Resources;
sourceTree = "<group>";
Expand Down
50 changes: 50 additions & 0 deletions README.md
@@ -0,0 +1,50 @@
# Opal XML Pull Parser

Opal is an XML pull parser written in Objective-C 2.0. XML pull parsers have a simpler interface than event-driven
parsers like NSXMLParser or SAX parsers, while avoiding the large memory and parsing overhead of DOM parsers. While
pull parsers can be extremely performant as well as easy, Opal's current focus is to provide a simple API so I don't
have to write any more annoying state machine parsers.

## Status

Opal is still very alpha software. It provides support for the most commonly used XML features, but does no validation
and currently has little error handling. It's a work in progress, basically, though the following are tested and working
(for valid XML documents):

* XML Declarations
* Elements &amp; Attributes
* Comments
* Text

Specifically NOT supported right now:

* DOCTYPEs
* DTDs
* Processing Instructions
* Namespaces
* Validation
* Everything else

## License

Opal is provided under an MIT-style License:

Copyright (c) 2010 Christian Niles (christian@nerdyc.com)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

0 comments on commit 1324860

Please sign in to comment.