Skip to content

Commit 5176aff

Browse files
authored
docs: Assorted link fixes (#3671)
* fix redirected npmjs links * change npm to lowercase * use https when possible
1 parent 913682d commit 5176aff

40 files changed

+238
-238
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ assignees: ''
77

88
---
99

10-
Please read http://karma-runner.github.io/4.0/intro/troubleshooting.html first
10+
Please read https://karma-runner.github.io/4.0/intro/troubleshooting.html first

CHANGELOG.md

Lines changed: 147 additions & 147 deletions
Large diffs are not rendered by default.

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ Project maintainers have the right and responsibility to remove, edit, or reject
1010

1111
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
1212

13-
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
13+
This Code of Conduct is adapted from the [Contributor Covenant](https://www.contributor-covenant.org/), version 1.0.0, available at <https://www.contributor-covenant.org/version/1/0/0/code-of-conduct/>

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ with a fix.
1818
**Working on your first Pull Request?** You can learn how from this *free* series
1919
[How to Contribute to an Open Source Project on GitHub][egghead_series]
2020

21-
[docs_contributing]: http://karma-runner.github.io/latest/dev/contributing.html
21+
[docs_contributing]: https://karma-runner.github.io/latest/dev/contributing.html
2222
[gitter]: https://gitter.im/karma-runner/karma
23-
[stackoverflow]: http://stackoverflow.com/questions/tagged/karma-runner
23+
[stackoverflow]: https://stackoverflow.com/questions/tagged/karma-runner
2424
[github_newissue]: https://github.com/karma-runner/karma/issues/new
2525
[egghead_series]: https://egghead.io/series/how-to-contribute-to-an-open-source-project-on-github

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Karma
22
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat-square)](https://github.com/karma-runner/karma) [![npm version](https://img.shields.io/npm/v/karma.svg?style=flat-square)](https://www.npmjs.com/package/karma) [![npm downloads](https://img.shields.io/npm/dm/karma.svg?style=flat-square)](https://npmcharts.com/compare/karma?minimal=true)
33

4-
[![Build Status](https://img.shields.io/travis/karma-runner/karma/master.svg?style=flat-square)](https://travis-ci.org/karma-runner/karma) [![Build Status](https://img.shields.io/appveyor/ci/dignifiedquire/karma/master.svg?style=flat-square)](https://ci.appveyor.com/project/dignifiedquire/karma) [![Code Climate](https://img.shields.io/codeclimate/github/karma-runner/karma.svg?style=flat-square)](https://codeclimate.com/github/karma-runner/karma) [![PRs Welcome](https://img.shields.io/badge/prs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com) [![Dependency Status](https://img.shields.io/david/karma-runner/karma.svg?style=flat-square)](https://david-dm.org/karma-runner/karma) [![devDependency Status](https://img.shields.io/david/dev/karma-runner/karma.svg?style=flat-square)](https://david-dm.org/karma-runner/karma#info=devDependencies) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
4+
[![Build Status](https://img.shields.io/travis/karma-runner/karma/master.svg?style=flat-square)](https://travis-ci.org/karma-runner/karma) [![Build Status](https://img.shields.io/appveyor/ci/dignifiedquire/karma/master.svg?style=flat-square)](https://ci.appveyor.com/project/dignifiedquire/karma) [![Code Climate](https://img.shields.io/codeclimate/github/karma-runner/karma.svg?style=flat-square)](https://codeclimate.com/github/karma-runner/karma) [![PRs Welcome](https://img.shields.io/badge/prs-welcome-brightgreen.svg?style=flat-square)](https://makeapullrequest.com/) [![Dependency Status](https://img.shields.io/david/karma-runner/karma.svg?style=flat-square)](https://david-dm.org/karma-runner/karma) [![devDependency Status](https://img.shields.io/david/dev/karma-runner/karma.svg?style=flat-square)](https://david-dm.org/karma-runner/karma#info=devDependencies) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
55

66
A simple tool that allows you to execute JavaScript code in multiple
77
_real_ browsers.
@@ -48,7 +48,7 @@ So for testing purposes you can use pretty much anything you like. There are alr
4848
* [Jasmine]
4949
* [Mocha]
5050
* [QUnit]
51-
* and [many others](https://www.npmjs.org/browse/keyword/karma-adapter)
51+
* and [many others](https://www.npmjs.com/search?q=keywords:karma-adapter)
5252

5353
If you can't find an adapter for your favourite framework, don't worry and write your own.
5454
It's not that hard and we are here to help.
@@ -108,16 +108,16 @@ use the awesome [Socket.io] library and [Node.js].
108108

109109
[AngularJS]: https://angularjs.org/
110110
[JSTD]: https://code.google.com/p/js-test-driver/
111-
[Socket.io]: http://socket.io/
112-
[Node.js]: http://nodejs.org/
111+
[Socket.io]: https://socket.io/
112+
[Node.js]: https://nodejs.org/
113113
[Jasmine]: https://github.com/karma-runner/karma-jasmine
114114
[Mocha]: https://github.com/karma-runner/karma-mocha
115115
[QUnit]: https://github.com/karma-runner/karma-qunit
116116
[here]: https://www.youtube.com/watch?v=MVw8N3hTfCI
117117
[Mailing List]: https://groups.google.com/forum/#!forum/karma-users
118118
[Issue Tracker]: https://github.com/karma-runner/karma/issues
119119
[@JsKarma]: https://twitter.com/JsKarma
120-
[RequireJS]: http://requirejs.org/
120+
[RequireJS]: https://requirejs.org/
121121
[Istanbul]: https://github.com/gotwarlost/istanbul
122122

123123
[browsers]: https://karma-runner.github.io/latest/config/browsers.html

client/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ var KARMA_URL_ROOT = constants.KARMA_URL_ROOT
1010
var KARMA_PROXY_PATH = constants.KARMA_PROXY_PATH
1111
var BROWSER_SOCKET_TIMEOUT = constants.BROWSER_SOCKET_TIMEOUT
1212

13-
// Connect to the server using socket.io http://socket.io
13+
// Connect to the server using socket.io https://socket.io/
1414
var socket = io(location.host, {
1515
reconnectionDelay: 500,
1616
reconnectionDelayMax: Infinity,

config.tpl.coffee

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = (config) ->
99

1010

1111
# frameworks to use
12-
# available frameworks: https://npmjs.org/browse/keyword/karma-adapter
12+
# available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
1313
frameworks: [%FRAMEWORKS%]
1414

1515

@@ -24,14 +24,14 @@ module.exports = (config) ->
2424

2525

2626
# preprocess matching files before serving them to the browser
27-
# available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
27+
# available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
2828
preprocessors: {%PREPROCESSORS%
2929
}
3030

3131

3232
# test results reporter to use
3333
# possible values: 'dots', 'progress'
34-
# available reporters: https://npmjs.org/browse/keyword/karma-reporter
34+
# available reporters: https://www.npmjs.com/search?q=keywords:karma-reporter
3535
reporters: ['progress']
3636

3737

@@ -58,7 +58,7 @@ module.exports = (config) ->
5858

5959

6060
# start these browsers
61-
# available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
61+
# available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
6262
browsers: [%BROWSERS%]
6363

6464

@@ -67,5 +67,5 @@ module.exports = (config) ->
6767
singleRun: false
6868

6969
# Concurrency level
70-
# how many browser should be started simultaneous
70+
# how many browser instances should be started simultaneously
7171
concurrency: Infinity

config.tpl.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = function(config) {
99

1010

1111
// frameworks to use
12-
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
12+
// available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
1313
frameworks: [%FRAMEWORKS%],
1414

1515

@@ -24,14 +24,14 @@ module.exports = function(config) {
2424

2525

2626
// preprocess matching files before serving them to the browser
27-
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
27+
// available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
2828
preprocessors: {%PREPROCESSORS%
2929
},
3030

3131

3232
// test results reporter to use
3333
// possible values: 'dots', 'progress'
34-
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
34+
// available reporters: https://www.npmjs.com/search?q=keywords:karma-reporter
3535
reporters: ['progress'],
3636

3737

@@ -53,7 +53,7 @@ module.exports = function(config) {
5353

5454

5555
// start these browsers
56-
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
56+
// available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
5757
browsers: [%BROWSERS%],
5858

5959

@@ -62,7 +62,7 @@ module.exports = function(config) {
6262
singleRun: false,
6363

6464
// Concurrency level
65-
// how many browser should be started simultaneous
65+
// how many browser instances should be started simultaneously
6666
concurrency: Infinity
6767
})
6868
}

config.tpl.ls

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = (config) ->
99

1010

1111
# frameworks to use
12-
# available frameworks: https://npmjs.org/browse/keyword/karma-adapter
12+
# available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
1313
frameworks: [%FRAMEWORKS%]
1414

1515

@@ -24,13 +24,13 @@ module.exports = (config) ->
2424

2525

2626
# preprocess matching files before serving them to the browser
27-
# available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
27+
# available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
2828
preprocessors: {%PREPROCESSORS%
2929
}
3030

3131
# test results reporter to use
3232
# possible values: 'dots', 'progress'
33-
# available reporters: https://npmjs.org/browse/keyword/karma-reporter
33+
# available reporters: https://www.npmjs.com/search?q=keywords:karma-reporter
3434
reporters: ['progress']
3535

3636

@@ -57,7 +57,7 @@ module.exports = (config) ->
5757

5858

5959
# satart these browsers
60-
# available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
60+
# available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
6161
browsers: [%BROWSERS%]
6262

6363

@@ -66,5 +66,5 @@ module.exports = (config) ->
6666
singleRun: false
6767

6868
# Concurrency level
69-
# how many browser should be started simultaneous
69+
# how many browser instances should be started simultaneously
7070
concurrency: Infinity

config.tpl.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ module.exports = (config) => {
99

1010

1111
// frameworks to use
12-
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
12+
// available frameworks: https://www.npmjs.com/search?q=keywords:karma-adapter
1313
frameworks: [%FRAMEWORKS%],
1414

1515

@@ -24,14 +24,14 @@ module.exports = (config) => {
2424

2525

2626
// preprocess matching files before serving them to the browser
27-
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
27+
// available preprocessors: https://www.npmjs.com/search?q=keywords:karma-preprocessor
2828
preprocessors: {%PREPROCESSORS%
2929
},
3030

3131

3232
// test results reporter to use
3333
// possible values: 'dots', 'progress'
34-
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
34+
// available reporters: https://www.npmjs.com/search?q=keywords:karma-reporter
3535
reporters: ['progress'],
3636

3737

@@ -53,7 +53,7 @@ module.exports = (config) => {
5353

5454

5555
// start these browsers
56-
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
56+
// available browser launchers: https://www.npmjs.com/search?q=keywords:karma-launcher
5757
browsers: [%BROWSERS%],
5858

5959

@@ -62,7 +62,7 @@ module.exports = (config) => {
6262
singleRun: false,
6363

6464
// Concurrency level
65-
// how many browser should be started simultaneous
65+
// how many browser instances should be started simultaneously
6666
concurrency: Infinity
6767
})
6868
}

0 commit comments

Comments
 (0)