Skip to content

Commit b0b280c

Browse files
jdufresnetimmywil
authored andcommittedJan 13, 2016
Docs: Updated links to https where they are supported.
Close gh-2746
1 parent 6054139 commit b0b280c

File tree

9 files changed

+32
-32
lines changed

9 files changed

+32
-32
lines changed
 

‎CONTRIBUTING.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@
77

88
Note: This is the code development repository for *jQuery Core* only. Before opening an issue or making a pull request, be sure you're in the right place.
99
* jQuery plugin issues should be reported to the author of the plugin.
10-
* jQuery Core API documentation issues can be filed [at the API repo](http://github.com/jquery/api.jquery.com/issues).
11-
* Bugs or suggestions for other jQuery Foundation projects should be filed in [their respective repos](http://github.com/jquery/).
10+
* jQuery Core API documentation issues can be filed [at the API repo](https://github.com/jquery/api.jquery.com/issues).
11+
* Bugs or suggestions for other jQuery Foundation projects should be filed in [their respective repos](https://github.com/jquery/).
1212

1313
## Getting Involved
1414

1515
[API design principles](https://github.com/jquery/jquery/wiki/API-design-guidelines)
1616

1717
We're always looking for help [identifying bugs](#how-to-report-bugs), writing and reducing test cases, and improving documentation. And although new features are rare, anything passing our [guidelines](https://github.com/jquery/jquery/wiki/Adding-new-features) will be considered.
1818

19-
More information on how to contribute to this and other jQuery Foundation projects is at [contribute.jquery.org](http://contribute.jquery.org), including a short guide with tips, tricks, and ideas on [getting started with open source](http://contribute.jquery.org/open-source/). Please review our [commit & pull request guide](http://contribute.jquery.org/commits-and-pull-requests/) and [style guides](http://contribute.jquery.org/style-guide/) for instructions on how to maintain a fork and submit patches. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla/).
19+
More information on how to contribute to this and other jQuery Foundation projects is at [contribute.jquery.org](https://contribute.jquery.org), including a short guide with tips, tricks, and ideas on [getting started with open source](https://contribute.jquery.org/open-source/). Please review our [commit & pull request guide](https://contribute.jquery.org/commits-and-pull-requests/) and [style guides](https://contribute.jquery.org/style-guide/) for instructions on how to maintain a fork and submit patches. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](https://contribute.jquery.org/cla/).
2020

2121

2222
## Questions and Discussion
2323

2424
### Forum and IRC
2525

26-
jQuery is so popular that many developers have knowledge of its capabilities and limitations. Most questions about using jQuery can be answered on popular forums such as [Stack Overflow](http://stackoverflow.com). Please start there when you have questions, even if you think you've found a bug.
26+
jQuery is so popular that many developers have knowledge of its capabilities and limitations. Most questions about using jQuery can be answered on popular forums such as [Stack Overflow](https://stackoverflow.com). Please start there when you have questions, even if you think you've found a bug.
2727

28-
The jQuery Core team watches the [jQuery Development Forum](http://forum.jquery.com/developing-jquery-core). If you have longer posts or questions that can't be answered in places such as Stack Overflow, please feel free to post them there. If you think you've found a bug, please [file it in the bug tracker](#how-to-report-bugs). The Core team can be found in the [#jquery-dev](http://webchat.freenode.net/?channels=jquery-dev) IRC channel on irc.freenode.net.
28+
The jQuery Core team watches the [jQuery Development Forum](https://forum.jquery.com/developing-jquery-core). If you have longer posts or questions that can't be answered in places such as Stack Overflow, please feel free to post them there. If you think you've found a bug, please [file it in the bug tracker](#how-to-report-bugs). The Core team can be found in the [#jquery-dev](https://webchat.freenode.net/?channels=jquery-dev) IRC channel on irc.freenode.net.
2929

3030
### Weekly Status Meetings
3131

32-
The jQuery Core team has a weekly meeting to discuss the progress of current work. The meeting is held in the [#jquery-meeting](http://webchat.freenode.net/?channels=jquery-meeting) IRC channel on irc.freenode.net at [Noon EST](http://www.timeanddate.com/worldclock/fixedtime.html?month=1&day=17&year=2011&hour=12&min=0&sec=0&p1=43) on Mondays.
32+
The jQuery Core team has a weekly meeting to discuss the progress of current work. The meeting is held in the [#jquery-meeting](https://webchat.freenode.net/?channels=jquery-meeting) IRC channel on irc.freenode.net at [Noon EST](https://www.timeanddate.com/worldclock/fixedtime.html?month=1&day=17&year=2011&hour=12&min=0&sec=0&p1=43) on Mondays.
3333

34-
[jQuery Core Meeting Notes](http://meetings.jquery.org/category/core/)
34+
[jQuery Core Meeting Notes](https://meetings.jquery.org/category/core/)
3535

3636

3737
## How to Report Bugs
@@ -40,19 +40,19 @@ The jQuery Core team has a weekly meeting to discuss the progress of current wor
4040

4141
Most bugs reported to our bug tracker are actually bugs in user code, not in jQuery code. Keep in mind that just because your code throws an error inside of jQuery, this does *not* mean the bug is a jQuery bug.
4242

43-
Ask for help first in the [Using jQuery Forum](http://forum.jquery.com/using-jquery) or another discussion forum like [Stack Overflow](http://stackoverflow.com/). You will get much quicker support, and you will help avoid tying up the jQuery team with invalid bug reports.
43+
Ask for help first in the [Using jQuery Forum](https://forum.jquery.com/using-jquery) or another discussion forum like [Stack Overflow](https://stackoverflow.com/). You will get much quicker support, and you will help avoid tying up the jQuery team with invalid bug reports.
4444

4545
### Disable browser extensions
4646

4747
Make sure you have reproduced the bug with all browser extensions and add-ons disabled, as these can sometimes cause things to break in interesting and unpredictable ways. Try using incognito, stealth or anonymous browsing modes.
4848

4949
### Try the latest version of jQuery
5050

51-
Bugs in old versions of jQuery may have already been fixed. In order to avoid reporting known issues, make sure you are always testing against the [latest build](http://code.jquery.com/jquery.js). We cannot fix bugs in older released files, if a bug has been fixed in a subsequent version of jQuery the site should upgrade.
51+
Bugs in old versions of jQuery may have already been fixed. In order to avoid reporting known issues, make sure you are always testing against the [latest build](https://code.jquery.com/jquery.js). We cannot fix bugs in older released files, if a bug has been fixed in a subsequent version of jQuery the site should upgrade.
5252

5353
### Simplify the test case
5454

55-
When experiencing a problem, [reduce your code](http://webkit.org/quality/reduction.html) to the bare minimum required to reproduce the issue. This makes it *much* easier to isolate and fix the offending code. Bugs reported without reduced test cases take on average 9001% longer to fix than bugs that are submitted with them, so you really should try to do this if at all possible.
55+
When experiencing a problem, [reduce your code](https://webkit.org/quality/reduction.html) to the bare minimum required to reproduce the issue. This makes it *much* easier to isolate and fix the offending code. Bugs reported without reduced test cases take on average 9001% longer to fix than bugs that are submitted with them, so you really should try to do this if at all possible.
5656

5757
### Search for related or duplicate issues
5858

@@ -65,7 +65,7 @@ We *love* when people contribute back to the project by patching the bugs they f
6565

6666
### Build a Local Copy of jQuery
6767

68-
Create a fork of the jQuery repo on github at http://github.com/jquery/jquery
68+
Create a fork of the jQuery repo on github at https://github.com/jquery/jquery
6969

7070
Change directory to your web root directory, whatever that might be:
7171

@@ -136,6 +136,6 @@ Click "Load with AMD" after loading the test page.
136136

137137
### Browser support
138138

139-
Remember that jQuery supports multiple browsers and their versions; any contributed code must work in all of them. You can refer to the [browser support page](http://jquery.com/browser-support/) for the current list of supported browsers.
139+
Remember that jQuery supports multiple browsers and their versions; any contributed code must work in all of them. You can refer to the [browser support page](https://jquery.com/browser-support/) for the current list of supported browsers.
140140

141141
Note that browser support differs depending on whether you are targeting the `master` or `compat` branch.

‎README.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
[jQuery](http://jquery.com/) — New Wave JavaScript
1+
[jQuery](https://jquery.com/) — New Wave JavaScript
22
==================================================
33

44
Contribution Guides
55
--------------------------------------
66

77
In the spirit of open source software development, jQuery always encourages community code contribution. To help you get started and before you jump into writing code, be sure to read these important contribution guidelines thoroughly:
88

9-
1. [Getting Involved](http://contribute.jquery.org/)
10-
2. [Core Style Guide](http://contribute.jquery.org/style-guide/js/)
11-
3. [Writing Code for jQuery Foundation Projects](http://contribute.jquery.org/code/)
9+
1. [Getting Involved](https://contribute.jquery.org/)
10+
2. [Core Style Guide](https://contribute.jquery.org/style-guide/js/)
11+
3. [Writing Code for jQuery Foundation Projects](https://contribute.jquery.org/code/)
1212

1313

1414
Environments in which to use jQuery
1515
--------------------------------------
1616

17-
- [Browser support](http://jquery.com/browser-support/) differs between the master branch and the compat branch. Specifically, the master branch does not support legacy browsers such as IE8. The jQuery team continues to provide support for legacy browsers on the compat branch. Use the latest compat release if support for those browsers is required. See [browser support](http://jquery.com/browser-support/) for more info.
17+
- [Browser support](https://jquery.com/browser-support/) differs between the master branch and the compat branch. Specifically, the master branch does not support legacy browsers such as IE8. The jQuery team continues to provide support for legacy browsers on the compat branch. Use the latest compat release if support for those browsers is required. See [browser support](https://jquery.com/browser-support/) for more info.
1818
- To use jQuery in Node, browser extensions, and other non-browser environments, use only master branch releases given the name "jquery" rather than "jquery-compat". The compat branch does not support these environments.
1919

2020

@@ -23,7 +23,7 @@ What you need to build your own jQuery
2323

2424
In order to build jQuery, you need to have the latest Node.js/npm and git 1.7 or later. Earlier versions might work, but are not supported.
2525

26-
For Windows, you have to download and install [git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/download/).
26+
For Windows, you have to download and install [git](http://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
2727

2828
OS X users should install [Homebrew](http://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
2929
and `brew install node` to install Node.js.
@@ -176,9 +176,9 @@ grunt watch
176176
Run the unit tests with a local server that supports PHP. Ensure that you run the site from the root directory, not the "test" directory. No database is required. Pre-configured php local servers are available for Windows and Mac. Here are some options:
177177

178178
- Windows: [WAMP download](http://www.wampserver.com/en/)
179-
- Mac: [MAMP download](http://www.mamp.info/en/index.html)
179+
- Mac: [MAMP download](https://www.mamp.info/en/downloads/)
180180
- Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
181-
- [Mongoose (most platforms)](http://code.google.com/p/mongoose/)
181+
- [Mongoose (most platforms)](https://code.google.com/p/mongoose/)
182182

183183

184184

@@ -250,7 +250,7 @@ The following are some commands that can be used there:
250250
* `Ctrl + S` - save
251251
* `Ctrl + Q` - quit
252252

253-
[QUnit](http://api.qunitjs.com) Reference
253+
[QUnit](https://api.qunitjs.com) Reference
254254
-----------------
255255

256256
### Test methods ###
@@ -373,4 +373,4 @@ Questions?
373373
----------
374374

375375
If you have any questions, please feel free to ask on the
376-
[Developing jQuery Core forum](http://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.
376+
[Developing jQuery Core forum](https://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "JavaScript library for DOM operations",
55
"version": "3.0.0-pre",
66
"main": "dist/jquery.js",
7-
"homepage": "http://jquery.com",
7+
"homepage": "https://jquery.com",
88
"author": {
99
"name": "jQuery Foundation and other contributors",
1010
"url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt"

‎src/intro.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/*!
22
* jQuery JavaScript Library v@VERSION
3-
* http://jquery.com/
3+
* https://jquery.com/
44
*
55
* Includes Sizzle.js
6-
* http://sizzlejs.com/
6+
* https://sizzlejs.com/
77
*
88
* Copyright jQuery Foundation and other contributors
99
* Released under the MIT license
10-
* http://jquery.org/license
10+
* https://jquery.org/license
1111
*
1212
* Date: @DATE
1313
*/

‎src/manipulation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ jQuery.extend( {
239239
if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&
240240
!jQuery.isXMLDoc( elem ) ) {
241241

242-
// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2
242+
// We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2
243243
destElements = getAll( clone );
244244
srcElements = getAll( elem );
245245

‎src/queue/delay.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ define( [
55
], function( jQuery ) {
66

77
// Based off of the plugin by Clint Helfers, with permission.
8-
// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
8+
// https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/
99
jQuery.fn.delay = function( time, type ) {
1010
time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;
1111
type = type || "fx";

‎test/networkerror.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h1>
4040
</h1>
4141
<div>
4242
This is a test page for
43-
<a href="http://bugs.jquery.com/ticket/8135">
43+
<a href="https://bugs.jquery.com/ticket/8135">
4444
#8135
4545
</a>
4646
which was reported in Firefox when accessing properties

‎test/readywait.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ <h1>
3939
<p>
4040
This is a test page for jQuery.readyWait and jQuery.holdReady,
4141
see
42-
<a href="http://bugs.jquery.com/ticket/6781">#6781</a>
42+
<a href="https://bugs.jquery.com/ticket/6781">#6781</a>
4343
and
44-
<a href="http://bugs.jquery.com/ticket/8803">#8803</a>.
44+
<a href="https://bugs.jquery.com/ticket/8803">#8803</a>.
4545
</p>
4646
<p>
4747
Test for jQuery.holdReady, which can be used

‎test/unit/manipulation.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2575,7 +2575,7 @@ QUnit.test( "insertAfter, insertBefore, etc do not work when destination is orig
25752575
"<div id='test4087-multiple'><div class='test4087-multiple'>1</div><div class='test4087-multiple'>2</div></div>"
25762576
].join( "" ) ).appendTo( "#qunit-fixture" );
25772577

2578-
// complex case based on http://jsfiddle.net/pbramos/gZ7vB/
2578+
// complex case based on https://jsfiddle.net/pbramos/gZ7vB/
25792579
jQuery( "#test4087-complex div" )[ name ]( "#test4087-complex li:last-child div:last-child" );
25802580
assert.equal( jQuery( "#test4087-complex li:last-child div" ).length, name === "replaceAll" ? 1 : 2, name + " a node to itself, complex case." );
25812581

0 commit comments

Comments
 (0)