Skip to content

Commit bc97309

Browse files
authored
Update README
1 parent a4053c6 commit bc97309

File tree

1 file changed

+6
-14
lines changed

1 file changed

+6
-14
lines changed

README

+6-14
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
Simple Java XML Parser (SJXP) for any Java Platform including Android.
2-
http://www.thebuzzmedia.com/software/simple-java-xml-parser-sjxp/
3-
42

53
Changelog
64
---------
@@ -11,15 +9,15 @@ Changelog
119
different kinds of XML were parsed, leading to many different unique paths
1210
and many different unique Integer hashCode's representing each path filling
1311
up the cache and never getting cleared.
14-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/7
12+
https://github.com/rkalla/simple-java-xml-parser/issues/closed#issue/7
1513

1614
2.1
1715
* Fixed bug where isStartTag was always true for TAG type rules
18-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/6
16+
https://github.com/rkalla/simple-java-xml-parser/issues/closed#issue/6
1917

2018
* Removed use of enhanced for-loop in code base because it caused a large
2119
number of AbstractList$Itr classes to be created for no great reason.
22-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/5
20+
https://github.com/rkalla/simple-java-xml-parser/issues/closed#issue/5
2321

2422
2.0
2523
* MAJOR PERFORMANCE IMPROVEMENT
@@ -36,13 +34,13 @@ Changelog
3634

3735
Memory usage and performance are increased drastically in this release on all
3836
platforms (especially good for Android).
39-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/4
37+
https://github.com/rkalla/simple-java-xml-parser/issues/4
4038

4139
* New IRule.Type.TAG type is defined which allows rules to be called when
4240
START and END tag events occur without the overhead of parsing data from the
4341
underlying XML stream. This is valuable when you want to examine (e.g. count
4442
elements) the XML content without actually parsing data out of it.
45-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/3
43+
https://github.com/rkalla/simple-java-xml-parser/issues/closed#issue/3
4644

4745
* Support for passing through a user-object from XMLParser to the IRule
4846
handlers was added. Given that in almost every parsing case *something* needs
@@ -58,7 +56,7 @@ Changelog
5856
Then in the IRule handler code your "user object" object is the passed-through
5957
store object that you can use to store the parsed value. This is just an
6058
example, it can be anything.
61-
https://github.com/thebuzzmedia/simple-java-xml-parser/issues/closed#issue/1
59+
https://github.com/rkalla/simple-java-xml-parser/issues/closed#issue/1
6260

6361
1.1
6462
* Initial public release.
@@ -374,9 +372,3 @@ XML Pull Parsing - http://www.xmlpull.org/
374372
XML Pull Parsing @ Indiana U - http://www.extreme.indiana.edu/xmlpull-website/
375373
XPP3 - http://www.extreme.indiana.edu/xgws/xsoap/xpp/mxp1/index.html
376374
Android XML Pull Parsing - http://developer.android.com/reference/org/xmlpull/v1/package-summary.html
377-
378-
379-
Contact
380-
-------
381-
If you have questions, comments or bug reports for this software please contact
382-

0 commit comments

Comments
 (0)