Commit Graph

67 Commits

Author SHA1 Message Date
Felix Geisendörfer 08c0943149 fix: String() handled ns prefixes incorrectly
Previously parsing a document like this:

  <root xmlns:foo='http:/example.org/foo' foo:bar='1'/>

Would produce an incorrect document when turning it back into a string:

  <root xmlns:foo='http:/example.org/foo' http:/example.org/foo:bar='1'/>

This patch fixes this by implementing a proper lookup for namespace
prefixes.
2013-09-04 00:35:22 +02:00
jimt 089e94f17d Merge pull request #12 from mattkanwisher/master
Adding new helper methods to make things more useful
2013-08-29 15:49:32 -07:00
Matthew Kanwisher 199b36f234 cleaning up remove function 2013-08-29 18:19:26 -04:00
Matthew Kanwisher 3236d1c7cb more helper methods 2013-08-29 17:38:55 -04:00
Matthew Kanwisher d59371c359 add some new helper methods 2013-08-29 17:29:22 -04:00
jimt 6de2878785 Merge pull request #10 from cgrinds/patch-1
CDATA is overwritten, append instead
2013-03-28 13:12:26 -07:00
Chris Grindstaff f41a2d1569 CDATA is overwritten, append instead
See testcase in https://github.com/jteeuwen/go-pkg-rss/blob/master/feed_test.go of an example of where CDATA is overwritten.
2013-03-28 17:05:49 -03:00
jimt f2fb9084dd Merge pull request #9 from anschelsc/master
http.Client flexibility
2013-03-19 10:49:48 -07:00
Anschel Schaffer-Cohen ab85624fd0 Allow fetching with arbitrary *http.Client. 2013-03-19 09:49:00 -04:00
jimt 79b9108a49 Adds a more complete set of numeric type conversion methods to Node.
These now cover all the bit sizes for signed and unsigned numbers.
Methods have been implemented for Node values and attributes.

This addresses issue #8
2012-12-11 12:36:39 +01:00
jimt c085b35fb9 Adds optional indented output for the Node.String() and Node.Bytes()
methods. Set the global `IndentPrefix` var to a tab or spaces to
enable indented output. The existing API has not been changed.

This addresses issue #7.
2012-11-25 23:46:56 +01:00
jimt 88d4341915 Merge pull request #6 from rdamazio/master
Fixed recursive node selection
2012-07-29 14:57:44 -07:00
Rodrigo Damazio 0459b7b32e Making the recursive SelectNodes a separate function and adding tests 2012-07-29 16:28:03 -03:00
Rodrigo Damazio 05fda09c14 Allowing recursive node selection - e.g. when getting all nodes from a given namespace, or simply all nodes 2012-07-29 10:06:21 -03:00
jim teeuwen 672384faa8 Small fixes in README 2012-04-05 11:35:46 +02:00
jim teeuwen 91731c5264 Another minor README fix. 2012-03-20 02:29:13 +01:00
jim teeuwen 45769307c0 Rename README to README.md and fix contents. 2012-03-20 02:27:54 +01:00
jim teeuwen 032fe9d27c Run gofmt and fix the Unmarshal test. 2012-02-29 11:42:39 +01:00
jim teeuwen 6da9091d5a Add a descriptive comment to the CharsetFunc type. 2012-02-29 11:27:52 +01:00
jim teeuwen 817a15ca8b Remove CharsetFunc as field for Document type and instead supply it as a parameter for all Document.LoadXXX methods. There should be no need to store the function pointer in the Document struct. 2012-02-29 11:21:35 +01:00
jim teeuwen ebbd6b3656 Remove deprecated Verbose field from Document type. 2012-02-29 11:10:05 +01:00
jim teeuwen fcfc98fd64 Add CharsetReader function pointer to Document struct as a public field. This allows the caller to specify their own charset conversion handler when loading xml content. 2012-02-29 11:08:37 +01:00
jim teeuwen b14dd79d8d No more Makefiles. Use go command to build and install. Temporarily removed dependency of external go-charset package. It is incompatible with new Go versions and is not updated by the author. We should find a replacement for it. This may cause problems with xml files supplied in non-utf8 encodings. 2012-02-09 17:30:21 +01:00
jim teeuwen 6e76dc96aa gofix for weekly.2012-01-27 2012-01-27 11:51:02 +01:00
jim teeuwen b5c33469fa fix for weekly 2011.12.06 2011-12-07 13:57:00 +01:00
jim teeuwen fb24618017 fix for weekly 2011.12.06 2011-12-07 13:53:17 +01:00
jim teeuwen 8a9dae755c gofix go1rename 2011-11-09 14:56:55 +01:00
jim teeuwen 4b31ea924d gofix error 2011-11-02 16:50:45 +01:00
jim teeuwen 0ecfd7fd99 Changed code to use new rune type unicode code points. 2011-10-26 12:24:45 +02:00
jim teeuwen 4f7417ecbc Minor improvements in Node.Bytes() implementation. Some test case tweaking. 2011-09-30 12:06:20 +02:00
jim teeuwen 2a2a591c08 Add wildcard support for node names. Allows selecting of all child nodes with a specific namespace (See issue #4). 2011-07-13 05:17:00 +02:00
jim teeuwen 29e84b1aeb Fix for weekly.2011-05-22 2011-05-23 15:18:45 +02:00
jim teeuwen ea7fc45209 Got rid of depracated Node api functions. Removed dependency on go-iconv in favor of go-charset (See README). go-charset is a native Go package and thus requires no CGO functionality. Meaning go-pkg-xmlx and go-pkg-rss can now be used in Google AppEngine. Some speed and memory efficiency improvements added. Should now do a lot less []byte -> string conversions. 2011-05-11 17:44:09 +02:00
jim teeuwen 882ba8d0bb Switch to more liberay CC0 public domain license 2011-03-19 14:50:46 +01:00
jim teeuwen 5e421dfebb Amended README with wildcard additions. 2011-02-01 15:33:47 +01:00
jim teeuwen 5fff1fb51a Allow SelectNode() calls with a wildcard as the namespace name ("*"). This allows us to find nodes if we do not strictly care about what namespace it carries. Same deal for attributes. node.SelectNode("*", foo") finds any node named "foo", regardless of what namespace it has. 2011-02-01 15:29:35 +01:00
jim teeuwen c07619da34 Fixed potential case issue in correctEncoding(). As per issue#2. 2011-01-30 23:19:52 +01:00
jim teeuwen c271c20e08 Fix bug in document.correctEncoding() which failed to properly parse xml doctypes. 2011-01-27 22:10:38 +01:00
jim teeuwen 9b53d04d9d Making package easily usable with goinstall. Including the reference to go-iconv. 2011-01-20 22:48:03 +01:00
jim teeuwen e36a8d35b8 Fix for Go release 2011-01-19/20 2011-01-20 12:13:49 +01:00
jim teeuwen 02d19ed0bd Fix issue 1: Added dependency to go-iconv. this lib is needed to ensure we pass valud UTF-8 encoded data to the XML tokenizer. 2011-01-18 21:31:56 +01:00
jim teeuwen bacbff0e71 Node.GetValueXXX() and Node.GetAttrX() functions are now changed to Node.X() and Node.AX() functions. The old ones still exist, so your code will not break, but we recommend you use the shorter names from now on. These have been added to reduce the amount of typing needed when using this package to extract typed node/attribute values. Added node.B() and node.Ab() to retrieve boolean values. README updated to reflect the changes. 2010-12-19 21:45:42 +01:00
jim teeuwen d0d1c2f9f5 Fixed bug in Document.LoadStream() function. 2010-12-19 20:45:57 +01:00
jim teeuwen 15ec07ab1a Some minor error handling fixes. 2010-12-16 21:08:01 +01:00
jim teeuwen 28e474f91f Fix for Go release.2010-02-12 2010-12-03 15:22:39 +01:00
jim teeuwen 8c492695c1 Changed slice code to use append() 2010-11-05 01:26:35 +01:00
jim teeuwen 18011ea2f0 Fixed 2 incorrect function signatures 2010-10-10 20:04:58 +02:00
jim teeuwen db4230b809 Reworked README and xmlx/entitymap.go. Now includes conversion of named xml entities instead of just numeric ones. Eg: &pi; and &#960; to a unicode character and vice-versa. It also came to my attention that lack of a proper opensource license might put people off of using this package. I therefor added a 1-clause BSD license under which this code now falls. 2010-09-26 22:59:14 +02:00
jim teeuwen 24f48a058b Fix for recent Go release. 2010-08-25 21:22:14 +02:00
jim teeuwen 6d8b8289d8 Refactored some code to be faster and a little more elegant. 2010-08-22 05:07:38 +02:00