]> gitweb.factorcode.org Git - factor.git/blobdiff - extra/html5/html5.factor
Switch to https urls
[factor.git] / extra / html5 / html5.factor
index 508cb5a56675091199d7e9bba66b329854f307a3..236cf4001fb5f64a149bdc66da7d8e01ea84734b 100644 (file)
@@ -1,5 +1,5 @@
 ! Copyright (C) 2020 Doug Coleman.
-! See http://factorcode.org/license.txt for BSD license.
+! See https://factorcode.org/license.txt for BSD license.
 USING: accessors arrays assocs combinators
 combinators.short-circuit io io.encodings.utf8 io.files
 json.reader kernel math math.order memoize modern.slices
@@ -13,12 +13,12 @@ IN: html5
 ! https://html.spec.whatwg.org/multipage/parsing.html#tokenization
 
 ! https://infra.spec.whatwg.org/#namespaces
-CONSTANT: html-namespace "http://www.w3.org/1999/xhtml"
-CONSTANT: mathml-namespace "http://www.w3.org/1998/Math/MathML"
-CONSTANT: svg-namespace "http://www.w3.org/2000/svg"
-CONSTANT: xlink-namespace "http://www.w3.org/1999/xlink"
-CONSTANT: xml-namespace "http://www.w3.org/XML/1998/namespace"
-CONSTANT: xmlns-namespace "http://www.w3.org/2000/xmlns/"
+CONSTANT: html-namespace "https://www.w3.org/1999/xhtml"
+CONSTANT: mathml-namespace "https://www.w3.org/1998/Math/MathML"
+CONSTANT: svg-namespace "https://www.w3.org/2000/svg"
+CONSTANT: xlink-namespace "https://www.w3.org/1999/xlink"
+CONSTANT: xml-namespace "https://www.w3.org/XML/1998/namespace"
+CONSTANT: xmlns-namespace "https://www.w3.org/2000/xmlns/"
 
 DEFER: data-state
 DEFER: (data-state)