Skip to content

Commit

Permalink
Docs: Change a few most common domains from HTTP to HTTPS
Browse files Browse the repository at this point in the history
Also, update a few stale URLs to what they redirect now to.

Closes gh-2244
  • Loading branch information
mgol committed Apr 26, 2024
1 parent 2889591 commit 4966aea
Show file tree
Hide file tree
Showing 90 changed files with 301 additions and 301 deletions.
4 changes: 2 additions & 2 deletions AUTHORS.txt
@@ -1,5 +1,5 @@
Authors ordered by first contribution
A list of current team members is available at http://jqueryui.com/about
A list of current team members is available at https://jqueryui.com/about

Paul Bakaus <paul.bakaus@gmail.com>
Richard Worth <rdworth@gmail.com>
Expand Down Expand Up @@ -42,7 +42,7 @@ Adam Sontag <ajpiano@ajpiano.com>
Carl Fürstenberg <carl@excito.com>
Kevin Dalman <development@allpro.net>
Alberto Fernández Capel <afcapel@gmail.com>
Jacek Jędrzejewski (http://jacek.jedrzejewski.name)
Jacek Jędrzejewski (https://jacek.jedrzejewski.name)
Ting Kuei <ting@kuei.com>
Samuel Cormier-Iijima <sam@chide.it>
Jon Palmer <jonspalmer@gmail.com>
Expand Down
20 changes: 10 additions & 10 deletions CONTRIBUTING.md
@@ -1,16 +1,16 @@
# Contributing to jQuery UI

Welcome! Thanks for your interest in contributing to jQuery UI. Most of our information on how to contribute to this and all other jQuery projects is over at [contribute.jquery.org](http://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [code](http://contribute.jquery.org/code).
Welcome! Thanks for your interest in contributing to jQuery UI. Most of our information on how to contribute to this and all other jQuery projects is over at [contribute.jquery.org](https://contribute.jquery.org). You'll definitely want to take a look at the articles on contributing [code](https://contribute.jquery.org/code).

You may also want to take a look at 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 your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](http://contribute.jquery.org/cla).
You may also want to take a look at 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 your fork and submit your code. Before we can merge any pull request, we'll also need you to sign our [contributor license agreement](https://contribute.jquery.org/cla).

You can find us on [IRC](http://irc.jquery.org), specifically in #jqueryui-dev should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](http://contribute.jquery.org/open-source/). For other forms of discussion and support, please see the [jQuery UI support center](http://jqueryui.com/support/).
You can find us on [IRC](https://irc.jquery.org), specifically in #jqueryui-dev should you have any questions. If you've never contributed to open source before, we've put together [a short guide with tips, tricks, and ideas on getting started](https://contribute.jquery.org/open-source/). For other forms of discussion and support, please see the [jQuery UI support center](https://jqueryui.com/support/).

## Getting Involved

There are a number of ways to get involved with the development of jQuery UI. Even if you've never contributed code to an Open Source project before, we're always looking for help identifying bugs, writing and reducing test cases and documentation.

This is the best way to contribute to jQuery UI. Please read through the full guide detailing [How to Report Bugs](http://contribute.jquery.org/bug-reports/).
This is the best way to contribute to jQuery UI. Please read through the full guide detailing [How to Report Bugs](https://contribute.jquery.org/bug-reports/).

## Tips for Getting Started

Expand All @@ -27,7 +27,7 @@ The tests can run in any local web server. Ideally you should test your patch in

### Environment: Getting the Source

* Create a fork of the jQuery UI repo on GitHub at http://github.com/jquery/jquery-ui. This will create a fork of jquery-ui in your Github account.
* Create a fork of the jQuery UI repo on GitHub at https://github.com/jquery/jquery-ui. This will create a fork of jquery-ui in your Github account.
* You may want to clone jquery-ui under the path to your web server. If so, change to the required directory

```bash
Expand Down Expand Up @@ -59,7 +59,7 @@ git pull upstream main

jQuery UI uses Node.js to automate the building and validation of source code. Here is how to set that up:

* Get [Node.js](http://nodejs.org/) (includes NPM, necessary for the next step)
* Get [Node.js](https://nodejs.org/) (includes NPM, necessary for the next step)
* Install local Node.js modules

```bash
Expand All @@ -69,10 +69,10 @@ npm install
The tests require a local web server and the samples contain some PHP, so a PHP web server may be useful.

* Install a web server. Here are some you could use:
* Windows: [WAMP download](http://www.wampserver.com/en/)
* Mac: [MAMP download](http://www.mamp.info/en/index.html)
* Windows: [WAMP download](https://www.wampserver.com/en/)
* Mac: [MAMP download](https://www.mamp.info/en/mac/)
* Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
* [Mongoose (most platforms)](http://code.google.com/p/mongoose/)
* [Mongoose (most platforms)](https://code.google.com/archive/p/mongoose/)
* [http-server](https://www.npmjs.com/package/http-server)

### Running the Tests
Expand All @@ -85,4 +85,4 @@ npm test

To run the tests for a specific plugin in your browser, open the appropriate file from the `/tests/unit/` directory, for example: `http://localhost/tests/unit/accordion/accordion.html`. The domain will be dependent on your local server configuration; if there is a port, be sure to include it.

Ideally you would test in all of our [supported browsers](http://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.
Ideally you would test in all of our [supported browsers](https://jqueryui.com/browser-support/), but if you don't have all of these browsers available, that's ok.
4 changes: 2 additions & 2 deletions Gruntfile.js
Expand Up @@ -473,7 +473,7 @@ grunt.registerTask( "update-authors", function() {

authors = authors.map( function( author ) {
if ( author.match( /^Jacek Jędrzejewski </ ) ) {
return "Jacek Jędrzejewski (http://jacek.jedrzejewski.name)";
return "Jacek Jędrzejewski (https://jacek.jedrzejewski.name)";
} else if ( author.match( /^Pawel Maruszczyk </ ) ) {
return "Pawel Maruszczyk (http://hrabstwo.net)";
} else {
Expand All @@ -483,7 +483,7 @@ grunt.registerTask( "update-authors", function() {

grunt.file.write( "AUTHORS.txt",
"Authors ordered by first contribution\n" +
"A list of current team members is available at http://jqueryui.com/about\n\n" +
"A list of current team members is available at https://jqueryui.com/about\n\n" +
authors.join( "\n" ) + "\n" );
done();
} );
Expand Down
14 changes: 7 additions & 7 deletions README.md
@@ -1,23 +1,23 @@
# [jQuery UI](http://jqueryui.com/) - Interactions and Widgets for the web
# [jQuery UI](https://jqueryui.com/) - Interactions and Widgets for the web

_**Note:** jQuery UI is in maintenance-only mode. Please read [the project status blog post](https://blog.jqueryui.com/2021/10/jquery-maintainers-update-and-transition-jquery-ui-as-part-of-overall-modernization-efforts/) for more information._

jQuery UI is a curated set of user interface interactions, effects, widgets, and themes built on top of jQuery. Whether you're building highly interactive web applications, or you just need to add a date picker to a form control, jQuery UI is the perfect choice.

If you want to use jQuery UI, go to [jqueryui.com](http://jqueryui.com) to get started, [jqueryui.com/demos/](http://jqueryui.com/demos/) for demos, [api.jqueryui.com](http://api.jqueryui.com/) for API documentation, or the [Using jQuery UI Forum](http://forum.jquery.com/using-jquery-ui) for discussions and questions.
If you want to use jQuery UI, go to [jqueryui.com](https://jqueryui.com) to get started, [jqueryui.com/demos/](https://jqueryui.com/demos/) for demos, [api.jqueryui.com](https://api.jqueryui.com/) for API documentation, or the [Using jQuery UI Forum](https://forum.jquery.com/using-jquery-ui) for discussions and questions.

If you want to report a bug/issue, please visit [the GitHub issues page](https://github.com/jquery/jquery-ui/issues). Archive of older bug reports is kept for historical reasons in read-only mode at [bugs.jqueryui.com](http://bugs.jqueryui.com). If any of them still matters to you, please open a bug about it on GitHub, linking to the legacy [bugs.jqueryui.com](http://bugs.jqueryui.com) issue for context.
If you want to report a bug/issue, please visit [the GitHub issues page](https://github.com/jquery/jquery-ui/issues). Archive of older bug reports is kept for historical reasons in read-only mode at [bugs.jqueryui.com](https://bugs.jqueryui.com). If any of them still matters to you, please open a bug about it on GitHub, linking to the legacy [bugs.jqueryui.com](https://bugs.jqueryui.com) issue for context.

If you are interested in helping develop jQuery UI, you are in the right place.
To discuss development with team members and the community, visit the [Developing jQuery UI Forum](http://forum.jquery.com/developing-jquery-ui) or [#jqueryui-dev on irc.freenode.net](http://irc.jquery.org/).
To discuss development with team members and the community, visit the [Developing jQuery UI Forum](https://forum.jquery.com/developing-jquery-ui) or [#jqueryui-dev on irc.freenode.net](https://irc.jquery.org/).


## For Contributors

If you want to help and provide a patch for a bugfix or new feature, please take
a few minutes and look at [our Getting Involved guide](http://wiki.jqueryui.com/w/page/35263114/Getting-Involved).
In particular check out the [Coding standards](http://wiki.jqueryui.com/w/page/12137737/Coding-standards)
and [Commit Message Style Guide](http://contribute.jquery.org/commits-and-pull-requests/#commit-guidelines).
a few minutes and look at [our Getting Involved guide](https://wiki.jqueryui.com/w/page/35263114/Getting-Involved).
In particular check out the [Coding standards](https://wiki.jqueryui.com/w/page/12137737/Coding-standards)
and [Commit Message Style Guide](https://contribute.jquery.org/commits-and-pull-requests/#commit-guidelines).

In general, fork the project, create a branch for a specific change and send a
pull request for that branch. Don't mix unrelated changes. You can use the commit
Expand Down
2 changes: 1 addition & 1 deletion demos/dialog/modal-form.html
Expand Up @@ -21,7 +21,7 @@
<script src="../bootstrap.js" data-modules="effect">
var dialog, form,

// From http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#e-mail-state-%28type=email%29
// From https://html.spec.whatwg.org/multipage/input.html#e-mail-state-%28type=email%29
emailRegex = /^[a-zA-Z0-9.!#$%&'*+\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/,
name = $( "#name" ),
email = $( "#email" ),
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -3,7 +3,7 @@
"title": "jQuery UI",
"description": "A curated set of user interface interactions, effects, widgets, and themes built on top of the jQuery JavaScript Library.",
"version": "1.13.3-pre",
"homepage": "http://jqueryui.com",
"homepage": "https://jqueryui.com",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/jquery/jquery-ui/blob/main/AUTHORS.txt"
Expand All @@ -13,22 +13,22 @@
{
"name": "Jörn Zaefferer",
"email": "joern.zaefferer@gmail.com",
"url": "http://bassistance.de"
"url": "https://bassistance.de"
},
{
"name": "Mike Sherov",
"email": "mike.sherov@gmail.com",
"url": "http://mike.sherov.com"
"url": "https://mike.sherov.com"
},
{
"name": "TJ VanToll",
"email": "tj.vantoll@gmail.com",
"url": "http://tjvantoll.com"
"url": "https://www.tjvantoll.com"
},
{
"name": "Felix Nagel",
"email": "info@felixnagel.com",
"url": "http://www.felixnagel.com"
"url": "https://www.felixnagel.com"
},
{
"name": "Alex Schmitz",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/accordion/options.js
Expand Up @@ -50,7 +50,7 @@ QUnit.test( "{ active: false }", function( assert ) {
assert.strictEqual( element.accordion( "option", "active" ), 0 );
} );

// http://bugs.jqueryui.com/ticket/11938
// https://bugs.jqueryui.com/ticket/11938
QUnit.test( "{ active: false, collapsible: true }", function( assert ) {
assert.expect( 1 );
var element = $( "#collapsible" ).accordion(),
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/dialog/methods.js
Expand Up @@ -197,7 +197,7 @@ QUnit.test( "open", function( assert ) {
assert.ok( element.dialog( "widget" ).is( ":visible" ) && !element.dialog( "widget" ).is( ":hidden" ), "dialog visible after open method called" );
} );

// http://bugs.jqueryui.com/ticket/6137
// https://bugs.jqueryui.com/ticket/6137
QUnit.test( "Ensure form elements don't reset when opening a dialog", function( assert ) {
assert.expect( 2 );

Expand Down
8 changes: 4 additions & 4 deletions tests/unit/draggable/core.js
Expand Up @@ -109,7 +109,7 @@ QUnit.test( "#8269: Removing draggable element on drop", function( assert ) {
}
} );

// http://bugs.jqueryui.com/ticket/7778
// https://bugs.jqueryui.com/ticket/7778
// drag element breaks in IE8 when its content is replaced onmousedown
QUnit.test( "Stray mousemove after mousedown still drags", function( assert ) {
assert.expect( 2 );
Expand Down Expand Up @@ -186,11 +186,11 @@ QUnit.test( "scroll offset with fixed ancestors", function( assert ) {
var startValue = 300,
element = $( "#draggable1" )

// http://bugs.jqueryui.com/ticket/5009
// https://bugs.jqueryui.com/ticket/5009
// scroll not working with parent's position fixed
.wrap( "<div id='wrapper' />" )

// http://bugs.jqueryui.com/ticket/9612
// https://bugs.jqueryui.com/ticket/9612
// abspos elements inside of fixed elements moving away from the mouse when scrolling
.wrap( "<div id='wrapper2' />" )
.draggable( {
Expand Down Expand Up @@ -221,7 +221,7 @@ $( [ "hidden", "auto", "scroll" ] ).each( function() {
var overflow = this;

// Http://bugs.jqueryui.com/ticket/9379 - position bug in scrollable div
// http://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden"
// https://bugs.jqueryui.com/ticket/10147 - Wrong position in a parent with "overflow: hidden"
QUnit.test( "position in scrollable parent with overflow: " + overflow, function( assert ) {
assert.expect( 2 );

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/draggable/events.js
Expand Up @@ -124,7 +124,7 @@ QUnit.test( "stopping the stop callback", function( assert ) {
assert.ok( element.draggable( "instance" ).helper, "the clone should not be deleted if the stop callback is stopped" );
} );

// http://bugs.jqueryui.com/ticket/6884
// https://bugs.jqueryui.com/ticket/6884
// Draggable: ui.offset.left differs between the "start" and "drag" hooks
QUnit.test( "position and offset in hash is consistent between start, drag, and stop", function( assert ) {
assert.expect( 4 );
Expand Down
12 changes: 6 additions & 6 deletions tests/unit/draggable/options.js
Expand Up @@ -280,7 +280,7 @@ QUnit.test( "connectToSortable, dragging out of a sortable", function( assert )

$( element ).one( "dragstop", function( event, ui ) {

// http://bugs.jqueryui.com/ticket/8809
// https://bugs.jqueryui.com/ticket/8809
// Position issue when connected to sortable
result = ui.helper.offset();

Expand Down Expand Up @@ -324,15 +324,15 @@ QUnit.test( "connectToSortable, dragging clone into sortable", function( assert
$( sortable ).one( "sort", function( event, ui ) {
offsetPlaceholder = ui.placeholder.offset();

// http://bugs.jqueryui.com/ticket/8809
// https://bugs.jqueryui.com/ticket/8809
// Position issue when connected to sortable
assert.deepEqual( ui.helper.offset(), offsetSortable, "sortable offset is correct" );
assert.notDeepEqual( ui.helper.offset(), offsetPlaceholder, "offset not equal to placeholder" );
} );

$( sortable ).one( "sortstop", function( event, ui ) {

// http://bugs.jqueryui.com/ticket/9675
// https://bugs.jqueryui.com/ticket/9675
// Animation issue with revert and connectToSortable
assert.deepEqual( ui.item.offset(), offsetPlaceholder, "offset eventually equals placeholder" );
ready();
Expand Down Expand Up @@ -571,7 +571,7 @@ QUnit.test( "containment, account for border", function( assert ) {
"The draggable should be to the right of its parent's right border" );
} );

// http://bugs.jqueryui.com/ticket/7016
// https://bugs.jqueryui.com/ticket/7016
// draggable can be pulled out of containment in Chrome and IE8
QUnit.test( "containment, element cant be pulled out of container", function( assert ) {
assert.expect( 1 );
Expand Down Expand Up @@ -898,7 +898,7 @@ QUnit.test( "helper, default, switching after initialization", function( assert
testHelper.shouldMove( assert, element, "helper: original" );
} );

// http://bugs.jqueryui.com/ticket/9446
// https://bugs.jqueryui.com/ticket/9446
// Draggable: helper function cannot emulate default behavior
QUnit.test( "helper, function returning original element", function( assert ) {
assert.expect( 1 );
Expand Down Expand Up @@ -1490,7 +1490,7 @@ QUnit.test( "iframeFix", function( assert ) {
var divOffset, iframeOffset,
div = $( this ).children().not( "iframe" );

// http://bugs.jqueryui.com/ticket/9671
// https://bugs.jqueryui.com/ticket/9671
// iframeFix doesn't handle iframes that move
assert.equal( div.length, 1, "blocking div added as sibling" );
assert.equal( div.outerWidth(), iframe.outerWidth(), "blocking div is wide enough" );
Expand Down
4 changes: 2 additions & 2 deletions tests/unit/slider/events.js
Expand Up @@ -8,8 +8,8 @@ define( [

QUnit.module( "slider: events", { afterEach: helper.moduleAfterEach } );

//Specs from http://wiki.jqueryui.com/Slider#specs
//"change callback: triggers when the slider has stopped moving and has a new
// Specs from https://wiki.jqueryui.com/Slider#specs
// "change callback: triggers when the slider has stopped moving and has a new
// value (even if same as previous value), via mouse(mouseup) or keyboard(keyup)
// or value method/option"
QUnit.test( "mouse based interaction", function( assert ) {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/slider/options.js
Expand Up @@ -205,7 +205,7 @@ QUnit.test( "orientation", function( assert ) {
element.slider( "destroy" );
} );

//spec: http://wiki.jqueryui.com/Slider#specs
// spec: https://wiki.jqueryui.com/Slider#specs
// value option/method: the value option is not restricted by min/max/step.
// What is returned by the value method is restricted by min (>=), max (<=), and step (even multiple)
QUnit.test( "step", function( assert ) {
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/sortable/events.js
Expand Up @@ -263,7 +263,7 @@ QUnit.test( "over", function( assert ) {
assert.equal( overCount, 1, "over fires only once" );
} );

// http://bugs.jqueryui.com/ticket/9335
// https://bugs.jqueryui.com/ticket/9335
// Sortable: over & out events does not consistently fire
QUnit.test( "over, fires with draggable connected to sortable", function( assert ) {
assert.expect( 3 );
Expand Down
6 changes: 3 additions & 3 deletions tests/unit/tooltip/core.js
Expand Up @@ -135,7 +135,7 @@ QUnit.test( "tooltip on .ui-state-disabled element", function( assert ) {
assert.equal( $( ".ui-tooltip" ).length, 0 );
} );

// http://bugs.jqueryui.com/ticket/8740
// https://bugs.jqueryui.com/ticket/8740
QUnit.test( "programmatic focus with async content", function( assert ) {
var ready = assert.async();
assert.expect( 2 );
Expand Down Expand Up @@ -185,7 +185,7 @@ QUnit.test( "destroy during hide animation; only one close event", function( ass
} );
} );

// http://bugs.jqueryui.com/ticket/10602
// https://bugs.jqueryui.com/ticket/10602
QUnit.test( "multiple active delegated tooltips", function( assert ) {
var ready = assert.async();
assert.expect( 1 );
Expand Down Expand Up @@ -234,7 +234,7 @@ QUnit.test( "multiple active delegated tooltips", function( assert ) {
step1();
} );

// http://bugs.jqueryui.com/ticket/11272
// https://bugs.jqueryui.com/ticket/11272
QUnit.test( "remove conflicting attributes from live region", function( assert ) {
assert.expect( 2 );

Expand Down
2 changes: 1 addition & 1 deletion tests/unit/tooltip/options.js
Expand Up @@ -87,7 +87,7 @@ QUnit.test( "content: sync + async callback", function( assert ) {
} ).tooltip( "open" );
} );

// http://bugs.jqueryui.com/ticket/8740
// https://bugs.jqueryui.com/ticket/8740
QUnit.test( "content: async callback loses focus before load", function( assert ) {
var ready = assert.async();
assert.expect( 1 );
Expand Down
6 changes: 3 additions & 3 deletions themes/base/accordion.css
@@ -1,12 +1,12 @@
/*!
* jQuery UI Accordion @VERSION
* http://jqueryui.com
* https://jqueryui.com
*
* Copyright OpenJS Foundation and other contributors
* Released under the MIT license.
* http://jquery.org/license
* https://jquery.org/license
*
* http://api.jqueryui.com/accordion/#theming
* https://api.jqueryui.com/accordion/#theming
*/
.ui-accordion .ui-accordion-header {
display: block;
Expand Down

0 comments on commit 4966aea

Please sign in to comment.