Skip to content

Commit 12cc993

Browse files
committed
update old links
1 parent 029b773 commit 12cc993

3 files changed

Lines changed: 14 additions & 17 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ more information on how to contribute.
88

99
[Clojure contrib]: https://clojure.org/community/contrib_libs
1010
[Contributing]: https://clojure.org/community/contributing
11-
[JIRA]: http://dev.clojure.org/jira/browse/DXML
11+
[JIRA]: https://jira.atlassian.net/browse/DXML
1212
[guidelines]: https://clojure.org/community/contrib_howto

README.md

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[data.xml](https://github.com/clojure/data.xml) is a Clojure library for reading and writing XML data. This
44
library 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).
66
data.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

8585
data.xml supports parsing and emitting XML. The parsing functions will
8686
read 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)
8888
or
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

110110
XML elements can be created using the typical defrecord constructor
111111
functions 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

332332
Make `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

352349
All 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
355352
more information.

src/main/clojure/clojure/data/xml/node.cljc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
;; it is similar to (defrecord Element [tag attrs content])
2424
;; but we override its hash and equality to be compatible with
2525
;; clojure's hash-maps
26-
;; see http://dev.clojure.org/jira/browse/CLJ-2084
26+
;; see https://clojure.atlassian.net/browse/CLJ-2084
2727
;; also, elements don't have an extmap and degrade to hash-maps also
2828
;; when assoc'ing unknown keys
2929

30-
;; FIXME hash caching cannot be used: http://dev.clojure.org/jira/browse/CLJ-2092
30+
;; FIXME hash caching cannot be used: https://clojure.atlassian.net/browse/CLJ-2092
3131

3232
#?
3333
(:clj

0 commit comments

Comments
 (0)