Skip to content

Commit 2e69dfa

Browse files
bardiharborowmdo
authored andcommitted
Fix broken/redirected links, moving to HTTPS where possible. (twbs#20557)
1 parent db533c2 commit 2e69dfa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+122
-122
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-
22

33
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
44

5-
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
5+
Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.

CONTRIBUTING.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ restrictions:
3232
[`Normalize`](https://github.com/necolas/normalize.css) (open them in
3333
its repository).
3434

35-
* Please **do not** open issues regarding the official themes offered on <http://themes.getbootstrap.com/>.
35+
* Please **do not** open issues regarding the official themes offered on <https://themes.getbootstrap.com/>.
3636
Instead, please email any questions or feedback regarding those themes to `themes AT getbootstrap DOT com`.
3737

3838

@@ -61,7 +61,7 @@ Good bug reports are extremely helpful, so thanks!
6161

6262
Guidelines for bug reports:
6363

64-
0. **Validate and lint your code** &mdash; [validate your HTML](http://html5.validator.nu)
64+
0. **Validate and lint your code** &mdash; [validate your HTML](https://html5.validator.nu)
6565
and [lint your HTML](https://github.com/twbs/bootlint) to ensure your
6666
problem isn't caused by a simple error in your own code.
6767

@@ -73,7 +73,7 @@ Guidelines for bug reports:
7373

7474
3. **Isolate the problem** &mdash; ideally create a [reduced test
7575
case](https://css-tricks.com/reduced-test-cases/) and a live example.
76-
[This JS Bin](http://jsbin.com/qusafa/edit?html,output) is a helpful template.
76+
[This JS Bin](https://jsbin.com/qusafa/edit?html,output) is a helpful template.
7777

7878

7979
A good bug report shouldn't leave others needing to chase you up for more
@@ -104,7 +104,7 @@ Example:
104104
### Reporting upstream browser bugs
105105

106106
Sometimes bugs reported to us are actually caused by bugs in the browser(s) themselves, not bugs in Bootstrap per se.
107-
When feasible, we aim to report such upstream bugs to the relevant browser vendor(s), and then list them on our [Wall of Browser Bugs](http://getbootstrap.com/browser-bugs/) and [document them in MDN](https://developer.mozilla.org/en-US/docs/Web).
107+
When feasible, we aim to report such upstream bugs to the relevant browser vendor(s), and then list them on our [Wall of Browser Bugs](https://getbootstrap.com/browser-bugs/) and [document them in MDN](https://developer.mozilla.org/en-US/docs/Web).
108108

109109
| Vendor(s) | Browser(s) | Rendering engine | Bug reporting website(s) | Notes |
110110
| ------------- | ---------------------------- | ---------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------- |
@@ -232,16 +232,16 @@ includes code changes) and under the terms of the
232232

233233
[Adhere to the Code Guide.](http://codeguide.co/#css)
234234

235-
- When feasible, default color palettes should comply with [WCAG color contrast guidelines](http://www.w3.org/TR/WCAG20/#visual-audio-contrast).
236-
- Except in rare cases, don't remove default `:focus` styles (via e.g. `outline: none;`) without providing alternative styles. See [this A11Y Project post](http://a11yproject.com/posts/never-remove-css-outlines) for more details.
235+
- When feasible, default color palettes should comply with [WCAG color contrast guidelines](https://www.w3.org/TR/WCAG20/#visual-audio-contrast).
236+
- Except in rare cases, don't remove default `:focus` styles (via e.g. `outline: none;`) without providing alternative styles. See [this A11Y Project post](http://a11yproject.com/posts/never-remove-css-outlines/) for more details.
237237

238238
### JS
239239

240240
- No semicolons (in client-side JS)
241241
- 2 spaces (no tabs)
242242
- strict mode
243243
- "Attractive"
244-
- Don't use [jQuery event alias convenience methods](https://github.com/jquery/jquery/blob/master/src/event/alias.js) (such as `$().focus()`). Instead, use [`$().trigger(eventType, ...)`](http://api.jquery.com/trigger/) or [`$().on(eventType, ...)`](http://api.jquery.com/on/), depending on whether you're firing an event or listening for an event. (For example, `$().trigger('focus')` or `$().on('focus', function (event) { /* handle focus event */ })`) We do this to be compatible with custom builds of jQuery where the event aliases module has been excluded.
244+
- Don't use [jQuery event alias convenience methods](https://github.com/jquery/jquery/blob/master/src/event/alias.js) (such as `$().focus()`). Instead, use [`$().trigger(eventType, ...)`](https://api.jquery.com/trigger/) or [`$().on(eventType, ...)`](https://api.jquery.com/on/), depending on whether you're firing an event or listening for an event. (For example, `$().trigger('focus')` or `$().on('focus', function (event) { /* handle focus event */ })`) We do this to be compatible with custom builds of jQuery where the event aliases module has been excluded.
245245

246246
### Checking coding style
247247

Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* Bootstrap's Gruntfile
3-
* http://getbootstrap.com
3+
* https://getbootstrap.com
44
* Copyright 2013-2016 The Bootstrap Authors
55
* Copyright 2013-2016 Twitter, Inc.
66
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Before opening an issue:
22

33
- [Search for duplicate or closed issues](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue)
4-
- [Validate](http://validator.w3.org/nu/) and [lint](https://github.com/twbs/bootlint#in-the-browser) any HTML to avoid common problems
4+
- [Validate](https://validator.w3.org/nu/) and [lint](https://github.com/twbs/bootlint#in-the-browser) any HTML to avoid common problems
55
- Prepare a [reduced test case](https://css-tricks.com/reduced-test-cases/) for any bugs
66
- Read the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md)
77

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Bootstrap](http://getbootstrap.com)
1+
# [Bootstrap](https://getbootstrap.com)
22

33
[![Slack](https://bootstrap-slack.herokuapp.com/badge.svg)](https://bootstrap-slack.herokuapp.com)
44
![Bower version](https://img.shields.io/bower/v/bootstrap.svg)
@@ -14,7 +14,7 @@
1414

1515
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thornton](https://twitter.com/fat), and maintained by the [core team](https://github.com/orgs/twbs/people) with the massive support and involvement of the community.
1616

17-
To get started, check out <http://getbootstrap.com>!
17+
To get started, check out <https://getbootstrap.com>!
1818

1919
## Table of contents
2020

@@ -39,7 +39,7 @@ Several quick start options are available:
3939
- Install with [Bower](https://bower.io): `bower install bootstrap#v4.0.0-alpha.4`
4040
- Install with [NuGet](https://www.nuget.org): CSS: `Install-Package bootstrap -Pre` Sass: `Install-Package bootstrap.sass -Pre` (`-Pre` is only required until Bootstrap v4 has a stable release).
4141

42-
Read the [Getting started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
42+
Read the [Getting started page](https://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
4343

4444
### What's included
4545

@@ -67,7 +67,7 @@ Have a bug or a feature request? Please first read the [issue guidelines](https:
6767

6868
## Documentation
6969

70-
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.
70+
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com) and publicly hosted on GitHub Pages at <https://getbootstrap.com>. The docs may also be run locally.
7171

7272
### Running documentation locally
7373

@@ -76,11 +76,11 @@ Bootstrap's documentation, included in this repo in the root directory, is built
7676
3. From the root `/bootstrap` directory, run `bundle exec jekyll serve` in the command line.
7777
4. Open <http://localhost:9001> in your browser, and voilà.
7878

79-
Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
79+
Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/home/).
8080

8181
### Documentation for previous releases
8282

83-
Documentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
83+
Documentation for v2.3.2 has been made available for the time being at <https://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
8484

8585
[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
8686

@@ -101,7 +101,7 @@ Editor preferences are available in the [editor config](https://github.com/twbs/
101101
Get updates on Bootstrap's development and chat with the project maintainers and community members.
102102

103103
- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap).
104-
- Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
104+
- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com).
105105
- Join [the official Slack room](https://bootstrap-slack.herokuapp.com).
106106
- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
107107
- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)).
@@ -113,7 +113,7 @@ Get updates on Bootstrap's development and chat with the project maintainers and
113113

114114
For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible.
115115

116-
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
116+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
117117

118118

119119
## Creators

_config.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ destination: _gh_pages
1414
host: 0.0.0.0
1515
port: 9001
1616
baseurl: ""
17-
url: http://v4-alpha.getbootstrap.com
17+
url: https://v4-alpha.getbootstrap.com
1818
encoding: UTF-8
1919
exclude: [assets/scss/]
2020

@@ -39,9 +39,9 @@ download:
3939
source: https://github.com/twbs/bootstrap/archive/v4.0.0-alpha.4.zip
4040
dist: https://github.com/twbs/bootstrap/releases/download/v4.0.0-alpha.4/bootstrap-4.0.0-alpha.4-dist.zip
4141

42-
blog: http://blog.getbootstrap.com
43-
expo: http://expo.getbootstrap.com
44-
themes: http://themes.getbootstrap.com
42+
blog: https://blog.getbootstrap.com
43+
expo: https://expo.getbootstrap.com
44+
themes: https://themes.getbootstrap.com
4545

4646
cdn:
4747
# See https://www.srihash.org for info on how to generate the hashes

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"framework",
1212
"web"
1313
],
14-
"homepage": "http://getbootstrap.com",
14+
"homepage": "https://getbootstrap.com",
1515
"license": "MIT",
1616
"moduleType": "globals",
1717
"main": [

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"framework",
1212
"web"
1313
],
14-
"homepage": "http://getbootstrap.com",
14+
"homepage": "https://getbootstrap.com",
1515
"authors": [
1616
{
1717
"name": "Mark Otto",

docs/_data/showcase.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
- name: Lyft
22
url: https://www.lyft.com
3-
expo_url: http://expo.getbootstrap.com/2014/10/29/lyft/
3+
expo_url: https://expo.getbootstrap.com/2014/10/29/lyft/
44
img: lyft
55

66
- name: Vogue
77
url: http://www.vogue.com
8-
expo_url: http://expo.getbootstrap.com/2014/09/30/vogue/
8+
expo_url: https://expo.getbootstrap.com/2014/09/30/vogue/
99
img: vogue
1010

1111
- name: Riot Design
1212
url: http://riotdesign.eu/en/
13-
expo_url: http://expo.getbootstrap.com/2014/03/13/riot-design/
13+
expo_url: https://expo.getbootstrap.com/2014/03/13/riot-design/
1414
img: riot
1515

1616
- name: Newsweek
1717
url: http://www.newsweek.com/
18-
expo_url: http://expo.getbootstrap.com/2014/02/12/newsweek/
18+
expo_url: https://expo.getbootstrap.com/2014/02/12/newsweek/
1919
img: newsweek

docs/_data/translations.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
- name: Brazilian Portuguese
1717
code: pt-BR
1818
description: Bootstrap 4 Português do Brasil
19-
url: http://bootstrapbrasil.github.io/v4/
19+
url: https://bootstrapbrasil.github.io/v4/

docs/_includes/nav-docs.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
{% endif %}
3434

3535
<li class="{{ active }}">
36-
<a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}">
36+
<a href="{{ site.baseurl }}/{{ group.title | downcase | replace: ' ', '-' }}/{{ doc.title | downcase | replace: ' ', '-' | replace:'-&-','-' }}/">
3737
{{ doc.title }}
3838
</a>
3939

docs/about/brand.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Documentation and examples for Bootstrap's logo and brand usage gui
55
group: about
66
---
77

8-
Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's [Brand Assets](http://mailchimp.com/about/brand-assets/).
8+
Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's [Brand Assets](https://mailchimp.com/about/brand-assets/).
99

1010
## Mark and logo
1111

docs/assets/js/ie10-viewport-bug-workaround.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
// See the Getting Started docs for more information:
9-
// http://getbootstrap.com/getting-started/#support-ie10-width
9+
// https://getbootstrap.com/getting-started/#support-ie10-width
1010

1111
(function () {
1212
'use strict';

docs/assets/js/src/application.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// ++++++++++++++++++++++++++++++++++++++++++
44

55
/*!
6-
* JavaScript for Bootstrap's docs (http://getbootstrap.com)
6+
* JavaScript for Bootstrap's docs (https://getbootstrap.com)
77
* Copyright 2011-2016 The Bootstrap Authors
88
* Copyright 2011-2016 Twitter, Inc.
99
* Licensed under the Creative Commons Attribution 3.0 Unported License. For

docs/assets/scss/docs.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootstrap Docs (http://getbootstrap.com)
2+
* Bootstrap Docs (https://getbootstrap.com)
33
* Copyright 2011-2016 The Bootstrap Authors
44
* Copyright 2011-2016 Twitter, Inc.
55
* Licensed under the Creative Commons Attribution 3.0 Unported License. For

docs/browser-bugs.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ See also:
3232
<tr>
3333
<td>{{ bug.browser }}</td>
3434
<td>{{ bug.summary | markdownify | bugify }}</td>
35-
<td>{{ bug.upstream_bug | bugify }}</td>
35+
<td>{{ bug.upstream_bug | bugify }}</td>
3636
<td>{{ bug.origin | bugify }}</td>
3737
</tr>
3838
{% endfor %}

docs/components/card.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Using custom widths:
142142

143143
## Text alignment
144144

145-
You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/components/utilities/#text-alignment).
145+
You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/utilities/typography/#text-alignment).
146146

147147
{% example html %}
148148
<div class="card card-block">
@@ -435,7 +435,7 @@ In need of a colored card, but not the hefty background colors they bring? Repla
435435

436436
## Groups
437437

438-
Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect.
438+
Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox/) can switch that to use `display: flex;` and provide the same effect.
439439

440440
Only applies to small devices and above.
441441

docs/components/carousel.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: A slideshow component for cycling through elements—images or slid
55
group: components
66
---
77

8-
A slideshow component for cycling through elements—images or slides of text—like a carousel. In browsers where the [Page Visibility API](http://www.w3.org/TR/page-visibility/) is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.). **Nested carousels are not supported.**
8+
A slideshow component for cycling through elements—images or slides of text—like a carousel. In browsers where the [Page Visibility API](https://www.w3.org/TR/page-visibility/) is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.). **Nested carousels are not supported.**
99

1010
## Contents
1111

docs/components/dropdowns.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ And with `<a>` elements:
3737

3838
{% example html %}
3939
<div class="dropdown open">
40-
<a class="btn btn-secondary dropdown-toggle" href="http://example.com" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
40+
<a class="btn btn-secondary dropdown-toggle" href="https://example.com" id="dropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
4141
Dropdown link
4242
</a>
4343

0 commit comments

Comments
 (0)