aboutsummaryrefslogtreecommitdiffstats
path: root/CONTRIBUTING.md
diff options
context:
space:
mode:
authorMichał Gołębiowski-Owczarek <m.goleb@gmail.com>2024-04-26 16:25:34 +0200
committerGitHub <noreply@github.com>2024-04-26 16:25:34 +0200
commit4966aea381403ce368c17bcf4b2ecd836c82487d (patch)
treef22c8c76026832b9834dfc51f3d46be3d1831b22 /CONTRIBUTING.md
parent28895912d7eed6862a062be7b8c51fad021e51cf (diff)
downloadjquery-ui-4966aea381403ce368c17bcf4b2ecd836c82487d.tar.gz
jquery-ui-4966aea381403ce368c17bcf4b2ecd836c82487d.zip
Docs: Change a few most common domains from HTTP to HTTPS
Also, update a few stale URLs to what they redirect now to. Closes gh-2244
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r--CONTRIBUTING.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 17321e179..b10ab6b86 100644
--- a/CONTRIBUTING.md
+++ b/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
@@ -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
@@ -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
@@ -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
@@ -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.