From 22158031bf1e486d7a0d5c12b4728dd106bcc8f8 Mon Sep 17 00:00:00 2001 From: Xue Fuqiao Date: Sat, 31 Jan 2015 17:59:45 +0800 Subject: [PATCH] Change HTTP to HTTPS. Change HTTP to HTTPS to avoid plaintext HTTP connections. --- CONTRIBUTING.md | 2 +- build/debian/Dockerfile | 6 +++--- docs/build-instructions/linux.md | 2 +- docs/build-instructions/windows.md | 4 ++-- docs/converting-a-text-mate-bundle.md | 6 +++--- docs/converting-a-text-mate-theme.md | 4 ++-- docs/creating-a-package.md | 2 +- docs/publishing-a-package.md | 6 +++--- docs/your-first-package.md | 2 +- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e007055bb..15e42f708 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,7 +36,7 @@ many packages and themes that are stored in other repos under the [tabs](https://github.com/atom/tabs), [find-and-replace](https://github.com/atom/find-and-replace), [language-javascript](https://github.com/atom/language-javascript), and -[atom-light-ui](http://github.com/atom/atom-light-ui). +[atom-light-ui](https://github.com/atom/atom-light-ui). For more information on how to work with Atom's official packages, see [Contributing to Atom Packages](https://atom.io/docs/latest/contributing-to-packages.html) diff --git a/build/debian/Dockerfile b/build/debian/Dockerfile index 6309c55d8..5dd5a5eb8 100644 --- a/build/debian/Dockerfile +++ b/build/debian/Dockerfile @@ -1,13 +1,13 @@ # VERSION: 0.1 -# DESCRIPTION: Create the atom editor in a container +# DESCRIPTION: Create the atom editor in a container # AUTHOR: Jessica Frazelle # COMMENTS: -# This file describes how to build the atom editor +# This file describes how to build the atom editor # in a container with all dependencies installed. # Tested on Debian Jessie. # USAGE: # # Download atom Dockerfile -# wget http://raw.githubusercontent.com/atom/atom/master/Dockerfile +# wget https://raw.githubusercontent.com/atom/atom/master/Dockerfile # # # Build atom image # docker build -t atom . diff --git a/docs/build-instructions/linux.md b/docs/build-instructions/linux.md index 0f965bca3..6f9dbfde5 100644 --- a/docs/build-instructions/linux.md +++ b/docs/build-instructions/linux.md @@ -8,7 +8,7 @@ Ubuntu LTS 12.04 64-bit is the recommended platform. * C++ toolchain * [Git](http://git-scm.com/) * [Node.js](http://nodejs.org/download/) v0.10.x - * [npm](http://www.npmjs.org/) v1.4.x (bundled with Node.js) + * [npm](https://www.npmjs.com/) v1.4.x (bundled with Node.js) * `npm -v` to check the version. * `npm config set python /usr/bin/python2 -g` to ensure that gyp uses python2. * You might need to run this command as `sudo`, depending on how you have set up [npm](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu-mint-elementary-os). diff --git a/docs/build-instructions/windows.md b/docs/build-instructions/windows.md index 8b1cb86ac..02934ee33 100644 --- a/docs/build-instructions/windows.md +++ b/docs/build-instructions/windows.md @@ -9,7 +9,7 @@ * For 64-bit builds of node and native modules you **must** have the [Windows 7 64-bit SDK](http://www.microsoft.com/en-us/download/details.aspx?id=8279). You may also need the [compiler update for the Windows SDK 7.1](http://www.microsoft.com/en-us/download/details.aspx?id=4422) - * [Python](http://www.python.org/download/) v2.7. + * [Python](https://www.python.org/downloads/) v2.7. * The python.exe must be available at `%SystemDrive%\Python27\python.exe`. If it is installed elsewhere, you can create a symbolic link to the directory containing the python.exe using: @@ -19,7 +19,7 @@ ### On Windows 8 * [Visual Studio Express 2013 for Windows Desktop](http://www.visualstudio.com/en-us/downloads/download-visual-studio-vs#DownloadFamilies_2) * [node.js](http://nodejs.org/download/) v0.10.x - * [Python](http://www.python.org/download/) v2.7.x (required by [node-gyp](https://github.com/TooTallNate/node-gyp)) + * [Python](https://www.python.org/downloads/) v2.7.x (required by [node-gyp](https://github.com/TooTallNate/node-gyp)) * [GitHub for Windows](http://windows.github.com/) ## Instructions diff --git a/docs/converting-a-text-mate-bundle.md b/docs/converting-a-text-mate-bundle.md index de410c31c..3471bc83b 100644 --- a/docs/converting-a-text-mate-bundle.md +++ b/docs/converting-a-text-mate-bundle.md @@ -44,9 +44,9 @@ the editor to see it in action! on publishing the package you just created to [atom.io][atomio]. [atomio]: https://atom.io -[CSS]: http://en.wikipedia.org/wiki/Cascading_Style_Sheets +[CSS]: https://en.wikipedia.org/wiki/Cascading_Style_Sheets [Less]: http://lesscss.org -[plist]: http://en.wikipedia.org/wiki/Property_list -[R]: http://en.wikipedia.org/wiki/R_(programming_language) +[plist]: https://en.wikipedia.org/wiki/Property_list +[R]: https://en.wikipedia.org/wiki/R_(programming_language) [TextMate]: http://macromates.com [TextMateOrg]: https://github.com/textmate diff --git a/docs/converting-a-text-mate-theme.md b/docs/converting-a-text-mate-theme.md index 37199d8f3..79dacd523 100644 --- a/docs/converting-a-text-mate-theme.md +++ b/docs/converting-a-text-mate-theme.md @@ -61,8 +61,8 @@ __Syntax Theme__ dropdown menu to enable your new theme. on publishing the theme you just created to [atom.io][atomio]. [atomio]: https://atom.io -[CSS]: http://en.wikipedia.org/wiki/Cascading_Style_Sheets +[CSS]: https://en.wikipedia.org/wiki/Cascading_Style_Sheets [Less]: http://lesscss.org -[plist]: http://en.wikipedia.org/wiki/Property_list +[plist]: https://en.wikipedia.org/wiki/Property_list [TextMate]: http://macromates.com [TextMateThemes]: http://wiki.macromates.com/Themes/UserSubmittedThemes diff --git a/docs/creating-a-package.md b/docs/creating-a-package.md index 55f534f54..20d2fda23 100644 --- a/docs/creating-a-package.md +++ b/docs/creating-a-package.md @@ -405,7 +405,7 @@ all the other available commands. [file-tree]: https://github.com/atom/tree-view [status-bar]: https://github.com/atom/status-bar [cs-syntax]: https://github.com/atom/language-coffee-script -[npm]: http://en.wikipedia.org/wiki/Npm_(software) +[npm]: https://en.wikipedia.org/wiki/Npm_(software) [npm-keys]: https://docs.npmjs.com/files/package.json [git-tag]: http://git-scm.com/book/en/Git-Basics-Tagging [wrap-guide]: https://github.com/atom/wrap-guide/ diff --git a/docs/publishing-a-package.md b/docs/publishing-a-package.md index 9df1339f3..264876c7a 100644 --- a/docs/publishing-a-package.md +++ b/docs/publishing-a-package.md @@ -47,7 +47,7 @@ If not, there are a few things you should check before publishing: Before you publish a package it is a good idea to check ahead of time if a package with the same name has already been published to atom.io. You can do -that by visiting `http://atom.io/packages/my-package` to see if the package +that by visiting `https://atom.io/packages/my-package` to see if the package already exists. If it does, update your package's name to something that is available before proceeding. @@ -73,7 +73,7 @@ and you only need to enter this information the first time you publish. The credentials are stored securely in your [keychain][keychain] once you login. :tada: Your package is now published and available on atom.io. Head on over to -`http://atom.io/packages/my-package` to see your package's page. +`https://atom.io/packages/my-package` to see your package's page. With `apm publish`, you can bump the version and publish by using ```sh @@ -107,7 +107,7 @@ Use `patch` when you make a small change like a bug fix that does not add or rem [atomio]: https://atom.io [github]: https://github.com [git-tag]: http://git-scm.com/book/en/Git-Basics-Tagging -[keychain]: http://en.wikipedia.org/wiki/Keychain_(Apple) +[keychain]: https://en.wikipedia.org/wiki/Keychain_(Apple) [repo-guide]: http://guides.github.com/overviews/desktop [semver]: http://semver.org [your-first-package]: your-first-package.html diff --git a/docs/your-first-package.md b/docs/your-first-package.md index 4f57f9240..578ca9f50 100644 --- a/docs/your-first-package.md +++ b/docs/your-first-package.md @@ -1,7 +1,7 @@ # Create Your First Package This tutorial will guide you though creating a simple command that replaces the -selected text with [ascii art](http://en.wikipedia.org/wiki/ASCII_art). When you +selected text with [ascii art](https://en.wikipedia.org/wiki/ASCII_art). When you run our new command with the word "cool" selected, it will be replaced with: ```