Skip to content

Commit 2674d6e

Browse files
Peter Linsssvgeesus
authored andcommitted
update www.w3.org/TR urls to https
1 parent 71ab853 commit 2674d6e

File tree

2 files changed

+25
-25
lines changed

2 files changed

+25
-25
lines changed

geometry/Overview.bs

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ Shortname: geometry
55
Level: 1
66
Status: ED
77
ED: https://drafts.fxtf.org/geometry/
8-
TR: http://www.w3.org/TR/geometry-1/
9-
Previous Version: http://www.w3.org/TR/2014/CR-geometry-1-20141125/
10-
Previous Version: http://www.w3.org/TR/2014/WD-geometry-1-20140918/
11-
Previous Version: http://www.w3.org/TR/2014/WD-geometry-1-20140626/
12-
Previous Version: http://www.w3.org/TR/2014/WD-geometry-1-20140522/
13-
Previous Version: http://www.w3.org/TR/2013/WD-matrix-20130919/
8+
TR: https://www.w3.org/TR/geometry-1/
9+
Previous Version: https://www.w3.org/TR/2014/CR-geometry-1-20141125/
10+
Previous Version: https://www.w3.org/TR/2014/WD-geometry-1-20140918/
11+
Previous Version: https://www.w3.org/TR/2014/WD-geometry-1-20140626/
12+
Previous Version: https://www.w3.org/TR/2014/WD-geometry-1-20140522/
13+
Previous Version: https://www.w3.org/TR/2013/WD-matrix-20130919/
1414
Group: fxtf
1515
Ignored Terms: float32array, float64array, indexsizeerror, DOMString, boolean
1616
Link Defaults: css-transforms-1 (type) <transform-list>/<transform-function>, css-transforms-1 (function) matrix3d()/matrix()
@@ -48,7 +48,7 @@ The SVG interfaces SVGPoint, SVGRect and SVGMatrix [[SVG11]] are aliasing the he
4848

4949
Issue: The IDL in this specification is currently in an experimental state.
5050
An <a href="https://lists.w3.org/Archives/Public/public-fx/2015AprJun/0001.html">approach</a> of avoiding overloading in constructors and instead using factory static methods, and supporting dictionary types everywhere, is explored.
51-
Readers interested in a specification that more closely matches implementations as of April 2015 are referred to an <a href="http://www.w3.org/TR/2014/WD-geometry-1-20140522/">earlier revision of this specification</a>.
51+
Readers interested in a specification that more closely matches implementations as of April 2015 are referred to an <a href="https://www.w3.org/TR/2014/WD-geometry-1-20140522/">earlier revision of this specification</a>.
5252

5353
<h2 id='DOMPoint'>
5454
The DOMPoint interfaces</h2>
@@ -666,16 +666,16 @@ The <dfn dfn-type=constructor dfn-for=DOMMatrixReadOnly><code>DOMMatrixReadOnly(
666666
the <dfn dfn-type=constructor dfn-for=DOMMatrix><code>DOMMatrix(<var>transformList</var>)</code></dfn> constructors, when invoked with a {{DOMString}} argument, must follow these steps:
667667

668668
<ol>
669-
<li>Parse <var>transformList</var> by following the syntax description in “<a href=http://www.w3.org/TR/css-transforms-1/#svg-syntax>Syntax of the SVG ‘transform’ attribute</a>[[!CSS3-TRANSFORMS]] to a <<transform-list>>. If parsing is not successful or any <<transform-function>> has <<length>> values without <a spec='css-values'>absolute length</a> units<!--For WD: <a spec='css-values-3'>absolute length units</a>-->, throw a {{SyntaxError}} exception.</li>
669+
<li>Parse <var>transformList</var> by following the syntax description in “<a href=https://www.w3.org/TR/css-transforms-1/#svg-syntax>Syntax of the SVG ‘transform’ attribute</a>[[!CSS3-TRANSFORMS]] to a <<transform-list>>. If parsing is not successful or any <<transform-function>> has <<length>> values without <a spec='css-values'>absolute length</a> units<!--For WD: <a spec='css-values-3'>absolute length units</a>-->, throw a {{SyntaxError}} exception.</li>
670670
<li>Let <var>2dTransform</var> track the 2D/3D dimension status of the <<transform-list>>.
671671
<dl class=switch>
672-
<dt>If the <<transform-list>> consists of any <a href='http://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a></dt>
672+
<dt>If the <<transform-list>> consists of any <a href='https://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a></dt>
673673
<dd>Set <var>2dTransform</var> to <code>false</code>.</dd>
674674
<dt>Otherwise</dt>
675675
<dd>Set <var>2dTransform</var> to <code>true</code>.</dd>
676676
</dl>
677677
</li>
678-
<li>Transform all <<transform-function>>s to 4x4 matrices by following the “<a href=http://www.w3.org/TR/css-transforms-1/#mathematical-description>Mathematical Description of Transform Functions</a>[[!CSS3-TRANSFORMS]].</li>
678+
<li>Transform all <<transform-function>>s to 4x4 matrices by following the “<a href=https://www.w3.org/TR/css-transforms-1/#mathematical-description>Mathematical Description of Transform Functions</a>[[!CSS3-TRANSFORMS]].</li>
679679
<li>Let <var>matrix</var> be a 4x4 matrix as shown in the initial figure of this section. Post-multiply all matrices from left to right and set <var>matrix</var> to this product.</li>
680680
<li>
681681
<dl class=switch>
@@ -1027,7 +1027,7 @@ Note: Authors who use chained method calls are recommended to use mutable transf
10271027
<dt><dfn>translateSelf(<var>tx</var>, <var>ty</var>, <var>tz</var>)</dfn></dt>
10281028
<dd>
10291029
<ol>
1030-
<li>Post-multiply a translation transformation on the current matrix. The 3D translation matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Translate3dDefined">described</a> in CSS Transforms [[!CSS3-TRANSFORMS]].</p>
1030+
<li>Post-multiply a translation transformation on the current matrix. The 3D translation matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Translate3dDefined">described</a> in CSS Transforms [[!CSS3-TRANSFORMS]].</p>
10311031
<li>If <em>tz</em> is specified and not ''0'', set <a>is2D</a> of the current matrix to <code>false</code>.</p>
10321032
<li>Return the current matrix.</li>
10331033
</ol>
@@ -1042,7 +1042,7 @@ Note: Authors who use chained method calls are recommended to use mutable transf
10421042

10431043
<li>Post-multiply a non-uniform scale transformation on the current matrix. The 3D scale
10441044
matrix is <a
1045-
href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Scale3dDefined">described</a> in
1045+
href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Scale3dDefined">described</a> in
10461046
CSS Transforms with <var>sx</var> = <var>scaleX</var>, <var>sy</var> = <var>scaleY</var> and
10471047
<var>sz</var> = <var>scaleZ</var>. [[!CSS3-TRANSFORMS]].</li>
10481048

@@ -1061,7 +1061,7 @@ Note: Authors who use chained method calls are recommended to use mutable transf
10611061
<dd>
10621062
<ol>
10631063
<li>Apply a <a method>translateSelf(<var>originX</var>, <var>originY</var>, <var>originZ</var>)</a> transformation to the current matrix.</li>
1064-
<li>Post-multiply a uniform 3D scale transformation (<a attribute>m11</a> = <a attribute>m22</a> = <a attribute>m33</a> = <em>scale</em>) on the current matrix. The 3D scale matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Scale3dDefined">described</a> in CSS Transforms with <em>sx</em> = <em>sy</em> = <em>sz</em> = <em>scale</em>. [[!CSS3-TRANSFORMS]].</li>
1064+
<li>Post-multiply a uniform 3D scale transformation (<a attribute>m11</a> = <a attribute>m22</a> = <a attribute>m33</a> = <em>scale</em>) on the current matrix. The 3D scale matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Scale3dDefined">described</a> in CSS Transforms with <em>sx</em> = <em>sy</em> = <em>sz</em> = <em>scale</em>. [[!CSS3-TRANSFORMS]].</li>
10651065
<li>Apply a <a method>translateSelf(-<var>originX</var>, -<var>originY</var>, -<var>originZ</var>)</a> transformation to the current matrix.</li>
10661066
<li>If <em>scale</em> is not ''1'', set <a>is2D</a> of the current matrix to <code>false</code>.</li>
10671067
<li>Return the current matrix.</li>
@@ -1090,29 +1090,29 @@ Note: Authors who use chained method calls are recommended to use mutable transf
10901090
<dt><dfn>rotateFromVectorSelf(<var>x</var>, <var>y</var>)</dfn></dt>
10911091
<dd>
10921092
<ol>
1093-
<li>Post-multiply a rotation transformation on the current matrix. The rotation angle is determined by the angle between the vector (1,0)<sup>T</sup> and (<em>x</em>,<em>y</em>)<sup>T</sup> in the clockwise direction. If <em>x</em> and <em>y</em> should both be zero, the angle is specified as zero. The 2D rotation matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#RotateDefined">described</a> in CSS Transforms where <code>alpha</code> is the angle between the vector (1,0)<sup>T</sup> and (<em>x</em>,<em>y</em>)<sup>T</sup> in degrees [[!CSS3-TRANSFORMS]].</li>
1093+
<li>Post-multiply a rotation transformation on the current matrix. The rotation angle is determined by the angle between the vector (1,0)<sup>T</sup> and (<em>x</em>,<em>y</em>)<sup>T</sup> in the clockwise direction. If <em>x</em> and <em>y</em> should both be zero, the angle is specified as zero. The 2D rotation matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#RotateDefined">described</a> in CSS Transforms where <code>alpha</code> is the angle between the vector (1,0)<sup>T</sup> and (<em>x</em>,<em>y</em>)<sup>T</sup> in degrees [[!CSS3-TRANSFORMS]].</li>
10941094
<li>Return the current matrix.</li>
10951095
</ol>
10961096
</dd>
10971097
<dt><dfn>rotateAxisAngleSelf(<var>x</var>, <var>y</var>, <var>z</var>, <var>angle</var>)</dfn></dt>
10981098
<dd>
10991099
<ol>
1100-
<li>Post-multiply a rotation transformation on the current matrix around the specified vector <em>x</em>, <em>y</em>, <em>z</em> by the specified rotation <em>angle</em> in degrees. The 3D rotation matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Rotate3dDefined">described</a> in CSS Transforms with <em>alpha</em> = <em>angle</em> in degrees [[!CSS3-TRANSFORMS]].</li>
1100+
<li>Post-multiply a rotation transformation on the current matrix around the specified vector <em>x</em>, <em>y</em>, <em>z</em> by the specified rotation <em>angle</em> in degrees. The 3D rotation matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#Rotate3dDefined">described</a> in CSS Transforms with <em>alpha</em> = <em>angle</em> in degrees [[!CSS3-TRANSFORMS]].</li>
11011101
<li>If <em>x</em> or <em>y</em> are not ''0'', set <a>is2D</a> of the current matrix to <code>false</code>.</li>
11021102
<li>Return the current matrix.</li>
11031103
</ol>
11041104
</dd>
11051105
<dt><dfn>skewXSelf(<var>sx</var>)</dfn></dt>
11061106
<dd>
11071107
<ol>
1108-
<li>Post-multiply a skewX transformation on the current matrix by the specified angle <em>sx</em> in degrees. The 2D skewX matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#SkewXDefined">described</a> in CSS Transforms with <em>alpha</em> = <em>sx</em> in degrees [[!CSS3-TRANSFORMS]].</li>
1108+
<li>Post-multiply a skewX transformation on the current matrix by the specified angle <em>sx</em> in degrees. The 2D skewX matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#SkewXDefined">described</a> in CSS Transforms with <em>alpha</em> = <em>sx</em> in degrees [[!CSS3-TRANSFORMS]].</li>
11091109
<li>Return the current matrix.</li>
11101110
</ol>
11111111
</dd>
11121112
<dt><dfn>skewYSelf(<var>sy</var>)</dfn></dt>
11131113
<dd>
11141114
<ol>
1115-
<li>Post-multiply a skewX transformation on the current matrix by the specified angle <em>sy</em> in degrees. The 2D skewY matrix is <a href="http://www.w3.org/TR/2012/WD-css3-transforms-20120911/#SkewYDefined">described</a> in CSS Transforms with <em>beta</em> = <em>sy</em> in degrees [[!CSS3-TRANSFORMS]].</li>
1115+
<li>Post-multiply a skewX transformation on the current matrix by the specified angle <em>sy</em> in degrees. The 2D skewY matrix is <a href="https://www.w3.org/TR/2012/WD-css3-transforms-20120911/#SkewYDefined">described</a> in CSS Transforms with <em>beta</em> = <em>sy</em> in degrees [[!CSS3-TRANSFORMS]].</li>
11161116
<li>Return the current matrix.</li>
11171117
</ol>
11181118
</dd>
@@ -1127,9 +1127,9 @@ Note: Authors who use chained method calls are recommended to use mutable transf
11271127
<dt><dfn>setMatrixValue(<var>transformList</var>)</dfn></dt>
11281128
<dd>
11291129
<ol>
1130-
<li>Parse <var>transformList</var> by following the syntax description in “<a href=http://www.w3.org/TR/css-transforms-1/#svg-syntax>Syntax of the SVG ‘transform’ attribute</a>[[!CSS3-TRANSFORMS]] to a <<transform-list>>. If parsing is not successful or any <<transform-function>> has <<length>> values without <a spec='css-values'>absolute length</a> units<!--For WD: <a spec='css-values-3'>absolute length units</a>-->, throw a {{SyntaxError}} exception.</li>
1131-
<li>Set <a>is2D</a> to <code>false</code> if the <<transform-list>> consists of any <a href='http://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a>. Otherwise set <a>is2D</a> to <code>true</code>.</li>
1132-
<li>Transform all <<transform-function>>s to 4x4 matrices by following the “<a href=http://www.w3.org/TR/css-transforms-1/#mathematical-description>Mathematical Description of Transform Functions</a>[[!CSS3-TRANSFORMS]].</li>
1130+
<li>Parse <var>transformList</var> by following the syntax description in “<a href=https://www.w3.org/TR/css-transforms-1/#svg-syntax>Syntax of the SVG ‘transform’ attribute</a>[[!CSS3-TRANSFORMS]] to a <<transform-list>>. If parsing is not successful or any <<transform-function>> has <<length>> values without <a spec='css-values'>absolute length</a> units<!--For WD: <a spec='css-values-3'>absolute length units</a>-->, throw a {{SyntaxError}} exception.</li>
1131+
<li>Set <a>is2D</a> to <code>false</code> if the <<transform-list>> consists of any <a href='https://www.w3.org/TR/css-transforms-1/#three-d-transform-functions'>3D Transform functions</a>. Otherwise set <a>is2D</a> to <code>true</code>.</li>
1132+
<li>Transform all <<transform-function>>s to 4x4 matrices by following the “<a href=https://www.w3.org/TR/css-transforms-1/#mathematical-description>Mathematical Description of Transform Functions</a>[[!CSS3-TRANSFORMS]].</li>
11331133
<li>Post-multiply all matrices from left to right to a combined 4x4 matrix.</li>
11341134
<li>Set the <a attribute>m11</a> to <a attribute>m44</a> attributes to the element values of the 4x4 matrix in column-major order.</li>
11351135
<li>Return the current matrix.</li>
@@ -1146,11 +1146,11 @@ When a user agent is asked to <b>clone</b> an <a interface>DOMPointReadOnly</a>,
11461146
<li>Return <var>new</var>. It is the clone.
11471147
</ol>
11481148

1149-
The above algorithm follows the <a href="http://www.w3.org/TR/html5/infrastructure.html#safe-passing-of-structured-data">“safe passing of structured data”</a> [[!HTML5]] definitions.
1149+
The above algorithm follows the <a href="https://www.w3.org/TR/html5/infrastructure.html#safe-passing-of-structured-data">“safe passing of structured data”</a> [[!HTML5]] definitions.
11501150

11511151
<h2 class="no-num" id="changes">Changes since last publication</h2>
11521152

1153-
The following changes were made since the <a href="http://www.w3.org/TR/2014/WD-geometry-1-20140918/">18 September 2014 Working Draft</a>.
1153+
The following changes were made since the <a href="https://www.w3.org/TR/2014/WD-geometry-1-20140918/">18 September 2014 Working Draft</a>.
11541154

11551155
<ul>
11561156
<li>Changed {{DOMMatrixReadOnly}} and {{DOMMatrix}} to be compatible with
@@ -1176,7 +1176,7 @@ The following changes were made since the <a href="http://www.w3.org/TR/2014/WD-
11761176
<li>The live <code>bounds</code> attribute on {{DOMQuad}} was replaced with a non-live {{DOMQuad/getBounds()}} method. The "associated bounding rectangle" concept was also removed.
11771177
</ul>
11781178

1179-
The following changes were made since the <a href="http://www.w3.org/TR/2014/WD-geometry-1-20140626/">26 June 2014 Last Call Public Working Draft</a>.
1179+
The following changes were made since the <a href="https://www.w3.org/TR/2014/WD-geometry-1-20140626/">26 June 2014 Last Call Public Working Draft</a>.
11801180

11811181
<ul>
11821182
<li><a interface>DOMPointReadOnly</a> got a constructor taking 4 arguments.</li>
@@ -1188,7 +1188,7 @@ The following changes were made since the <a href="http://www.w3.org/TR/2014/WD-
11881188
<li>Replace IndexSizeError exception with TypeError.</li>
11891189
</ul>
11901190

1191-
The following changes were made since the <a href="http://www.w3.org/TR/2014/WD-geometry-1-20140522/">22 May 2014 First Public Working Draft</a>.
1191+
The following changes were made since the <a href="https://www.w3.org/TR/2014/WD-geometry-1-20140522/">22 May 2014 First Public Working Draft</a>.
11921192

11931193
<ul>
11941194
<li>Renamed mutable transformation methods *By to *Self. (E.g. translateBy() got to translateSelf().)</li>

geometry/issuegen.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
print "~~~~~~~~~~~~~~~~~~~~~ Template for issues-list.txt ~~~~~~~~~~~~~~~~~~~~~\n";
2222
print <<XXX;
2323
24-
Draft: http://www.w3.org/TR/2013/WD-css-text-decor-3-20130103/
24+
Draft: https://www.w3.org/TR/2013/WD-css-text-decor-3-20130103/
2525
Title: CSS Text Decoration Level 3
2626
... anything else you want here, except 4 dashes ...
2727

0 commit comments

Comments
 (0)