22
33[ data.xml] ( https://github.com/clojure/data.xml ) is a Clojure library for reading and writing XML data. This
44library is the successor to
5- [ lazy-xml] ( http ://clojure.github.com /clojure-contrib/lazy-xml-api.html) .
5+ [ lazy-xml] ( https ://clojure.github.io /clojure-contrib/lazy-xml-api.html) .
66data.xml has the following features:
77
88* Parses XML documents into Clojure data structures
@@ -13,11 +13,11 @@ data.xml has the following features:
1313
1414## API Reference
1515
16- Generated API docs for data.xml are available [ here] ( http ://clojure.github.com /data.xml) .
16+ Generated API docs for data.xml are available [ here] ( https ://clojure.github.io /data.xml) .
1717
1818## Bugs
1919
20- Please report bugs using JIRA [ here] ( http ://dev. clojure.org/jira /browse/DXML) .
20+ Please report bugs using JIRA [ here] ( https ://clojure.atlassian.net /browse/DXML) .
2121
2222## Installation
2323
@@ -27,7 +27,7 @@ Latest preview release: `0.2.0-alpha6`
2727
2828(The main features of the ` 0.2.0 ` series are XML Namespace support and Clojurescript support)
2929
30- * [ All Released Versions] ( http ://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22data.xml%22)
30+ * [ All Released Versions] ( https ://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22data.xml%22)
3131
3232* [ Development Snapshot Versions] ( https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~data.xml~~~ )
3333
@@ -84,9 +84,9 @@ The examples below assume you have added a `:refer :all` for data.xml:
8484
8585data.xml supports parsing and emitting XML. The parsing functions will
8686read XML from a
87- [ Reader] ( http ://docs.oracle.com/javase/6 /docs/api/java/io/Reader.html)
87+ [ Reader] ( https ://docs.oracle.com/javase/8 /docs/api/java/io/Reader.html)
8888or
89- [ InputStream] ( http ://docs.oracle.com/javase/6 /docs/api/java/io/InputStream.html) .
89+ [ InputStream] ( https ://docs.oracle.com/javase/8 /docs/api/java/io/InputStream.html) .
9090
9191 (let [input-xml (java.io.StringReader. "<?xml version=\"1.0\" encoding=\"UTF-8\"?>
9292 <foo><bar><baz>The baz value</baz></bar></foo>")]
@@ -109,7 +109,7 @@ can be passed via key pairs:
109109
110110XML elements can be created using the typical defrecord constructor
111111functions or the element function used below or just a plain map with : tag : attrs : content keys, and written using a
112- [ java.io.Writer] ( http ://docs.oracle.com/javase/6 /docs/api/java/io/Writer.html) .:
112+ [ java.io.Writer] ( https ://docs.oracle.com/javase/8 /docs/api/java/io/Writer.html) .:
113113
114114 (let [tags (element :foo {:foo-attr "foo value"}
115115 (element :bar {:bar-attr "bar value"}
@@ -331,7 +331,7 @@ Some utilities, like `process/*-xmlns`, `prxml/sexp-as-*`, `indent` aren't yet i
331331
332332Make ` extend-dom-as-data! ` also support assoc, ... on dom nodes.
333333
334- #### Feel free to pick a [ ticket] ( http ://dev. clojure.org/jira/secure/IssueNavigator.jspa?reset=true&jqlQuery=project+%3D+ DXML+AND+status+in+%28Open%2C+%22In+Progress%22%2C+Reopened%29 ) to work on
334+ #### Feel free to pick a [ ticket] ( https ://clojure.atlassian.net/browse/ DXML) to work on
335335
336336## License
337337
@@ -340,16 +340,13 @@ Licensed under the [Eclipse Public License](http://www.opensource.org/licenses/e
340340## Developer Information
341341
342342* [ GitHub project] ( https://github.com/clojure/data.xml )
343-
344- * [ Bug Tracker] ( http://dev.clojure.org/jira/browse/DXML )
345-
343+ * [ Bug Tracker] ( https://clojure.atlassian.net/browse/DXML )
346344* [ Continuous Integration] ( http://build.clojure.org/job/data.xml/ )
347-
348345* [ Compatibility Test Matrix] ( http://build.clojure.org/job/data.xml-test-matrix/ )
349346
350347## Contributing
351348
352349All contributions need to be made via patches attached to tickets in
353- [ JIRA] ( http://dev. clojure.org/jira /browse/DXML ) . Check the
354- [ Contributing to Clojure] ( http ://clojure.org/contributing) page for
350+ [ JIRA] ( http://clojure.atlassian.net /browse/DXML ) . Check the
351+ [ Contributing to Clojure] ( https ://clojure.org/community /contributing) page for
355352more information.
0 commit comments