]> granicus.if.org Git - python/commitdiff
bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609) GH-5612)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 11 Feb 2018 00:42:22 +0000 (16:42 -0800)
committerTerry Jan Reedy <tjreedy@udel.edu>
Sun, 11 Feb 2018 00:42:22 +0000 (19:42 -0500)
The new link is given in a red box on the old page.
(cherry picked from commit 8d1f2f40389c476d9240ec87a33da0373597c6af)

Co-authored-by: sblondon <sblondon@users.noreply.github.com>
Doc/library/xml.etree.elementtree.rst
Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst [new file with mode: 0644]

index 7d814ad406eb1b53654d4535e2747aa9706c0eb3..80505ea64ac7c1a5a24b18dabb2bcc4f52ff9e30 100644 (file)
@@ -297,7 +297,7 @@ If the XML input has `namespaces
 with prefixes in the form ``prefix:sometag`` get expanded to
 ``{uri}sometag`` where the *prefix* is replaced by the full *URI*.
 Also, if there is a `default namespace
-<https://www.w3.org/TR/2006/REC-xml-names-20060816/#defaulting>`__,
+<https://www.w3.org/TR/xml-names/#defaulting>`__,
 that full URI gets prepended to all of the non-prefixed tags.
 
 Here is an XML example that incorporates two namespaces, one with the
diff --git a/Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst b/Misc/NEWS.d/next/Documentation/2018-02-10-15-16-04.bpo-32800.FyrqCk.rst
new file mode 100644 (file)
index 0000000..eac1107
--- /dev/null
@@ -0,0 +1 @@
+Update link to w3c doc for xml default namespaces.