Skip to content

Commit 2dcad72

Browse files
committed
categories: Change links from http to https
1 parent a645242 commit 2dcad72

File tree

1 file changed

+28
-28
lines changed

1 file changed

+28
-28
lines changed

categories.xml

+28-28
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
<desc/>
3939
<category name="Deprecated 1.3" slug="deprecated-1.3">
4040
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
41-
<p>For more information, see the <a href="http://blog.jquery.com/2009/01/14/jquery-1-3-released/">jQuery 1.3 Release Notes</a>.</p>
41+
<p>For more information, see the <a href="https://blog.jquery.com/2009/01/14/jquery-1-3-released/">jQuery 1.3 Release Notes</a>.</p>
4242
]]></desc>
4343
</category>
4444
<category name="Deprecated 1.4" slug="deprecated-1.4">
@@ -48,22 +48,22 @@
4848
</category>
4949
<category name="Deprecated 1.7" slug="deprecated-1.7">
5050
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
51-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2011/11/03/jquery-1-7-released/">http://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
51+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2011/11/03/jquery-1-7-released/">https://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
5252
]]></desc>
5353
</category>
5454
<category name="Deprecated 1.8" slug="deprecated-1.8">
5555
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
56-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2012/08/09/jquery-1-8-released/">http://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p>
56+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2012/08/09/jquery-1-8-released/">https://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p>
5757
]]></desc>
5858
</category>
5959
<category name="Deprecated 1.9" slug="deprecated-1.9">
6060
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
61-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p>
61+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/</a></p>
6262
]]></desc>
6363
</category>
6464
<category name="Deprecated 1.10" slug="deprecated-1.10">
6565
<desc><![CDATA[All the aspects of the API that were deprecated in the corresponding version of jQuery.
66-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">http://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p>
66+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/">https://blog.jquery.com/2013/05/24/jquery-1-10-0-and-2-0-1-released/</a></p>
6767
]]></desc>
6868
</category>
6969
</category>
@@ -98,7 +98,7 @@
9898
</category>
9999
<category name="Event Object" slug="event-object">
100100
<desc><![CDATA[
101-
<p>jQuery's event system normalizes the event object according to <a href="http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html">W3C standards</a>. The event object is guaranteed to be passed to the event handler. Most properties from the original event are copied over and normalized to the new event object.</p>
101+
<p>jQuery's event system normalizes the event object according to <a href="https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html">W3C standards</a>. The event object is guaranteed to be passed to the event handler. Most properties from the original event are copied over and normalized to the new event object.</p>
102102
<div class="longdesc">
103103
<h4>jQuery.Event Constructor</h4>
104104
<p>The <code>jQuery.Event</code> constructor is exposed and can be used when calling <a href="/trigger">trigger</a>. The <code>new</code> operator is optional.</p>
@@ -238,13 +238,13 @@ var files = event.originalEvent.dataTransfer.files;
238238
<category name="Selectors" slug="selectors">
239239
<desc><![CDATA[
240240
<p>Borrowing from CSS 1&#x2013;3, and then adding its own, jQuery offers a powerful set of tools for matching a set of elements in a document.</p>
241-
<p>To use any of the meta-characters ( such as <code> !"#$%&amp;'()*+,./:;&lt;=&gt;?@[\]^`{|}~</code> ) as a literal part of a name, it must be escaped with with two backslashes: <code>\\</code>. For example, an element with <code>id="foo.bar"</code>, can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">complete set of rules regarding valid CSS selectors</a>. Also useful is the blog entry by Mathias Bynens on <a href="http://mathiasbynens.be/notes/css-escapes">CSS character escape sequences for identifiers</a>.</p>
241+
<p>To use any of the meta-characters ( such as <code> !"#$%&amp;'()*+,./:;&lt;=&gt;?@[\]^`{|}~</code> ) as a literal part of a name, it must be escaped with with two backslashes: <code>\\</code>. For example, an element with <code>id="foo.bar"</code>, can use the selector <code>$("#foo\\.bar")</code>. The W3C CSS specification contains the <a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">complete set of rules regarding valid CSS selectors</a>. Also useful is the blog entry by Mathias Bynens on <a href="https://mathiasbynens.be/notes/css-escapes">CSS character escape sequences for identifiers</a>.</p>
242242
]]></desc>
243243
<category name="Attribute" slug="attribute-selectors">
244244
<desc><![CDATA[
245245
<p>The CSS specification allows elements to be identified by their attributes. While not supported by some older browsers for the purpose of styling documents, jQuery allows you to employ them regardless of the browser being used.</p>
246246
<p>When using any of the following attribute selectors, you should account for attributes that have multiple, space-separated values. Since these selectors see attribute values as a single string, this selector, for example, <code>$("a[rel='nofollow']")</code>, will select <code>&lt;a href="example.html" rel="nofollow"&gt;Some text&lt;/a&gt;</code> but not <code>&lt;a href="example.html" rel="nofollow foe"&gt;Some text&lt;/a&gt;</code>.</p>
247-
<p>Attribute values in selector expressions <b>must</b> follow the rules for W3C CSS selectors; in general, that means anything other than a <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">valid identifier</a> should be surrounded by quotation marks.</p>
247+
<p>Attribute values in selector expressions <b>must</b> follow the rules for W3C CSS selectors; in general, that means anything other than a <a href="https://www.w3.org/TR/CSS21/syndata.html#value-def-identifier">valid identifier</a> should be surrounded by quotation marks.</p>
248248
<ul>
249249
<li>double quotes inside single quotes: <code>$('a[rel="nofollow self"]')</code></li>
250250
<li>single quotes inside double quotes: <code>$("a[rel='nofollow self']")</code></li>
@@ -258,7 +258,7 @@ var files = event.originalEvent.dataTransfer.files;
258258
</desc>
259259
</category>
260260
<category name="Basic" slug="basic-css-selectors">
261-
<desc><![CDATA[The following selectors are based on the Cascading Style Sheet 1 specification, as outlined by the W3C. For more information about the specifications, visit <a href="http://www.w3.org/Style/CSS/#specs">http://www.w3.org/Style/CSS/#specs</a>. ]]></desc>
261+
<desc><![CDATA[The following selectors are based on the Cascading Style Sheet 1 specification, as outlined by the W3C. For more information about the specifications, visit <a href="https://www.w3.org/Style/CSS/#specs">https://www.w3.org/Style/CSS/#specs</a>. ]]></desc>
262262
</category>
263263
<category name="Basic Filter" slug="basic-filter-selectors">
264264
<desc/>
@@ -276,7 +276,7 @@ var files = event.originalEvent.dataTransfer.files;
276276
<desc/>
277277
</category>
278278
<category name="jQuery Extensions" slug="jquery-selector-extensions">
279-
<desc><![CDATA[jQuery has extended the CSS3 selectors with the following selectors. Because these selectors are jQuery extension and not part of the CSS specification, queries using them cannot take advantage of the performance boost provided by the native DOM <code>querySelectorAll()</code> method. To achieve the best performance when using these selectors, first select some elements using a pure CSS selector, then use <a href="http://api.jquery.com/filter/"><code>.filter()</code></a>.]]></desc>
279+
<desc><![CDATA[jQuery has extended the CSS3 selectors with the following selectors. Because these selectors are jQuery extension and not part of the CSS specification, queries using them cannot take advantage of the performance boost provided by the native DOM <code>querySelectorAll()</code> method. To achieve the best performance when using these selectors, first select some elements using a pure CSS selector, then use <a href="https://api.jquery.com/filter/"><code>.filter()</code></a>.]]></desc>
280280
</category>
281281
<category name="Visibility Filter" slug="visibility-filter-selectors">
282282
<desc/>
@@ -302,52 +302,52 @@ var files = event.originalEvent.dataTransfer.files;
302302
<desc/>
303303
<category name="Version 1.0" slug="1.0">
304304
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
305-
<a href="http://blog.jquery.com/2006/08/26/jquery-10/">jQuery 1.0 Release Notes</a>.
305+
<a href="https://blog.jquery.com/2006/08/26/jquery-10/">jQuery 1.0 Release Notes</a>.
306306
]]></desc>
307307
</category>
308308
<category name="Version 1.0.4" slug="1.0.4">
309309
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
310-
Release Notes: <a href="http://blog.jquery.com/2006/08/31/jquery-101/">1.0.1</a>, <a href="http://blog.jquery.com/2006/10/09/jquery-102/">1.0.2</a>, <a href="http://blog.jquery.com/2006/10/27/jquery-103/">1.0.3</a>, <a href="http://blog.jquery.com/2006/12/12/jquery-104/">1.0.4</a>.
310+
Release Notes: <a href="https://blog.jquery.com/2006/08/31/jquery-101/">1.0.1</a>, <a href="https://blog.jquery.com/2006/10/09/jquery-102/">1.0.2</a>, <a href="https://blog.jquery.com/2006/10/27/jquery-103/">1.0.3</a>, <a href="https://blog.jquery.com/2006/12/12/jquery-104/">1.0.4</a>.
311311
]]></desc>
312312
</category>
313313
<category name="Version 1.1" slug="1.1">
314314
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
315-
<a href="http://blog.jquery.com/2007/01/14/jquery-birthday-11-new-site-new-docs/">jQuery 1.1 Release Notes</a>.
315+
<a href="https://blog.jquery.com/2007/01/14/jquery-birthday-11-new-site-new-docs/">jQuery 1.1 Release Notes</a>.
316316
]]></desc>
317317
</category>
318318
<category name="Version 1.1.2" slug="1.1.2">
319319
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
320-
<a href="http://blog.jquery.com/2007/02/27/jquery-112/">jQuery 1.1.2 Release Notes</a>.
320+
<a href="https://blog.jquery.com/2007/02/27/jquery-112/">jQuery 1.1.2 Release Notes</a>.
321321
]]></desc>
322322
</category>
323323
<category name="Version 1.1.3" slug="1.1.3">
324324
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
325-
<a href="http://blog.jquery.com/2007/07/01/jquery-113-800-faster-still-20kb/">jQuery 1.1.3 Release Notes</a>
325+
<a href="https://blog.jquery.com/2007/07/01/jquery-113-800-faster-still-20kb/">jQuery 1.1.3 Release Notes</a>
326326
]]></desc>
327327
</category>
328328
<category name="Version 1.1.4" slug="1.1.4">
329329
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
330-
<a href="http://blog.jquery.com/2007/08/24/jquery-114-faster-more-tests-ready-for-12/">jQuery 1.1.4 Release Notes</a>.
330+
<a href="https://blog.jquery.com/2007/08/24/jquery-114-faster-more-tests-ready-for-12/">jQuery 1.1.4 Release Notes</a>.
331331
]]></desc>
332332
</category>
333333
<category name="Version 1.2" slug="1.2">
334334
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
335-
<a href="http://blog.jquery.com/2007/09/10/jquery-1-2-released/">jQuery 1.2 Release Notes</a>
335+
<a href="https://blog.jquery.com/2007/09/10/jquery-1-2-released/">jQuery 1.2 Release Notes</a>
336336
]]></desc>
337337
</category>
338338
<category name="Version 1.2.3" slug="1.2.3">
339339
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
340-
Release Notes: <a href="http://blog.jquery.com/2007/09/16/jquery-1-2-1-released/">1.2.1</a>, <a href="http://blog.jquery.com/2008/01/14/jquery-1-2-2-released/">1.2.2</a>, <a href="http://blog.jquery.com/2008/02/07/jquery-1-2-3-released/">1.2.3</a>.
340+
Release Notes: <a href="https://blog.jquery.com/2007/09/16/jquery-1-2-1-released/">1.2.1</a>, <a href="https://blog.jquery.com/2008/01/14/jquery-1-2-2-released/">1.2.2</a>, <a href="https://blog.jquery.com/2008/02/07/jquery-1-2-3-released/">1.2.3</a>.
341341
]]></desc>
342342
</category>
343343
<category name="Version 1.2.6" slug="1.2.6">
344344
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
345-
<a href="http://blog.jquery.com/2008/05/24/jquery-1-2-6-released/">jQuery 1.2.6 Release Notes</a>.
345+
<a href="https://blog.jquery.com/2008/05/24/jquery-1-2-6-released/">jQuery 1.2.6 Release Notes</a>.
346346
]]></desc>
347347
</category>
348348
<category name="Version 1.3" slug="1.3">
349349
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
350-
Release Notes: <a href="http://blog.jquery.com/2009/01/14/jquery-1-3-released/">1.3</a>, <a href="http://blog.jquery.com/2009/01/21/jquery-131-released/">1.3.1</a>, <a href="http://blog.jquery.com/2009/02/20/jquery-1-3-2-released/">1.3.2</a>
350+
Release Notes: <a href="https://blog.jquery.com/2009/01/14/jquery-1-3-released/">1.3</a>, <a href="https://blog.jquery.com/2009/01/21/jquery-131-released/">1.3.1</a>, <a href="https://blog.jquery.com/2009/02/20/jquery-1-3-2-released/">1.3.2</a>
351351
]]></desc>
352352
</category>
353353
<category name="Version 1.4" slug="1.4">
@@ -362,22 +362,22 @@ var files = event.originalEvent.dataTransfer.files;
362362
</category>
363363
<category name="Version 1.4.2" slug="1.4.2">
364364
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
365-
<a href="http://blog.jquery.com/2010/02/19/jquery-142-released/">jQuery 1.4.2 Release Notes</a>.
365+
<a href="https://blog.jquery.com/2010/02/19/jquery-142-released/">jQuery 1.4.2 Release Notes</a>.
366366
]]></desc>
367367
</category>
368368
<category name="Version 1.4.3" slug="1.4.3">
369369
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.
370-
<a href="http://blog.jquery.com/2010/10/16/jquery-143-released/">jQuery 1.4.3 Release Notes</a>.
370+
<a href="https://blog.jquery.com/2010/10/16/jquery-143-released/">jQuery 1.4.3 Release Notes</a>.
371371
]]></desc>
372372
</category>
373373
<category name="Version 1.4.4" slug="1.4.4">
374-
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. <a href="http://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/">jQuery 1.4.4 Release Notes</a>.]]></desc>
374+
<desc><![CDATA[All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery. <a href="https://blog.jquery.com/2010/11/11/jquery-1-4-4-release-notes/">jQuery 1.4.4 Release Notes</a>.]]></desc>
375375
</category>
376376
<category name="Version 1.5" slug="1.5">
377377
<desc><![CDATA[
378378
<p>All the aspects of the API that were added, or had a new signature added, in the corresponding version of jQuery.</p>
379-
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="http://api.jquery.com/extending-ajax/">Extending Ajax</a> documentation.</p>
380-
<p>Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the <a href="http://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
379+
<p>jQuery 1.5 also includes a large rewrite of the Ajax module, which has a number of extensibility improvements. You can find out more about those improvements in the <a href="https://api.jquery.com/extending-ajax/">Extending Ajax</a> documentation.</p>
380+
<p>Additionally jQuery 1.5 includes a new Deferred callback management system you can learn more about in in the <a href="https://api.jquery.com/category/deferred-object/">Deferred Object</a> documentation.</p>
381381
]]></desc>
382382
</category>
383383
<category name="Version 1.5.1" slug="1.5.1">
@@ -394,23 +394,23 @@ var files = event.originalEvent.dataTransfer.files;
394394
<code>jQuery.Callbacks()</code>
395395
Toggling Animations Work Intuitively
396396
</p>
397-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2011/11/03/jquery-1-7-released/">http://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
397+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2011/11/03/jquery-1-7-released/">https://blog.jquery.com/2011/11/03/jquery-1-7-released/</a></p>
398398
<hr/>
399399
]]></desc>
400400
</category>
401401
<category name="Version 1.8" slug="1.8">
402402
<desc><![CDATA[
403403
<p>Aspects of the API that were changed in the corresponding version of jQuery. API changes in jQuery 1.8.0 dealt primarily with animations and the removal of some methods such as <code>deferred.isResolved()</code>, <code>deferred.isRejected()</code>, <code>$.curCSS()</code>, <code>$.attrFn()</code>, and <code>$(element).closest(Array)</code> returning Array.
404404
</p>
405-
<p>For more information, see the Release Notes/Changelog at <a href="http://blog.jquery.com/2012/08/09/jquery-1-8-released/">http://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p>
405+
<p>For more information, see the Release Notes/Changelog at <a href="https://blog.jquery.com/2012/08/09/jquery-1-8-released/">https://blog.jquery.com/2012/08/09/jquery-1-8-released/</a></p>
406406
<hr/>
407407
]]></desc>
408408
</category>
409409
<category name="Version 1.9" slug="1.9">
410410
<desc><![CDATA[
411411
<p>Aspects of the API that were changed in the corresponding version of jQuery. Changes in jQuery 1.9 dealt primarily removal or modification of several APIs that behaved inconsistently or inefficiently in the past. A <a href="https://github.com/jquery/jquery-migrate">jQuery Migrate Plugin</a> was offered to help developers with a transitional upgrade path.
412412
</p>
413-
<p>For more information, see the <a href="http://jquery.com/upgrade-guide/1.9/">jQuery Core 1.9 Upgrade guide</a> and the <a href="http://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">Release Notes/Changelog</a></p>
413+
<p>For more information, see the <a href="https://jquery.com/upgrade-guide/1.9/">jQuery Core 1.9 Upgrade guide</a> and the <a href="https://blog.jquery.com/2013/01/15/jquery-1-9-final-jquery-2-0-beta-migrate-final-released/">Release Notes/Changelog</a></p>
414414
<hr/>
415415
]]></desc>
416416
</category>

0 commit comments

Comments
 (0)