Skip to content

Commit 91d58ae

Browse files
committed
Update bootstrap to 3.4.1
- Legacy-Id: 18326
1 parent f445e1a commit 91d58ae

File tree

132 files changed

+12400
-9765
lines changed

Some content is hidden

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

132 files changed

+12400
-9765
lines changed

bootstrap/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs.
1+
Bootstrap uses [GitHub's Releases feature](https://blog.github.com/2013-07-02-release-your-software/) for its changelogs.
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.

bootstrap/CONTRIBUTING.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ restrictions:
2525
respect the opinions of others.
2626

2727
* Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
28-
Use [GitHub's "reactions" feature](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)
28+
Use [GitHub's "reactions" feature](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)
2929
instead. We reserve the right to delete comments which violate this rule.
3030

3131
* Please **do not** open issues or pull requests regarding the code in
3232
[`Normalize`](https://github.com/necolas/normalize.css) (open them in
3333
their respective repositories).
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

@@ -62,7 +62,7 @@ Good bug reports are extremely helpful, so thanks!
6262

6363
Guidelines for bug reports:
6464

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

@@ -105,7 +105,7 @@ Example:
105105
### Reporting upstream browser bugs
106106

107107
Sometimes bugs reported to us are actually caused by bugs in the browser(s) themselves, not bugs in Bootstrap per se.
108-
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).
108+
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/docs/3.4/browser-bugs/) and [document them in MDN](https://developer.mozilla.org/en-US/docs/Web).
109109

110110
| Vendor(s) | Browser(s) | Rendering engine | Bug reporting website(s) | Notes |
111111
| ------------- | ---------------------------- | ---------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------- |
@@ -199,7 +199,7 @@ included in the project:
199199
4. Commit your changes in logical chunks. Please adhere to these [git commit
200200
message guidelines](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
201201
or your code is unlikely to be merged into the main project. Use Git's
202-
[interactive rebase](https://help.github.com/articles/interactive-rebase)
202+
[interactive rebase](https://help.github.com/articles/about-git-rebase/)
203203
feature to tidy up your commits before making them public.
204204

205205
5. Locally merge (or rebase) the upstream development branch into your topic branch:
@@ -223,16 +223,6 @@ includes code changes) and under the terms of the
223223
[Creative Commons Attribution 3.0 Unported License](docs/LICENSE)
224224
(if it includes documentation changes).
225225

226-
### Pull request bots
227-
228-
[@twbs-rorschach](https://github.com/twbs-rorschach) is a Bootstrap bot that hangs out in our GitHub issue tracker and automatically checks all pull requests for a few simple common mistakes. It's possible that Rorschach might leave a comment on your pull request and then close it. If that happens, simply fix the problem(s) mentioned in the comment (there should be link(s) in the comment explaining the problem(s) in detail) and then either:
229-
230-
* Push the revised version to your pull request's branch and post a comment on the pull request saying that you've fixed the problem(s). One of the Bootstrap Core Team members will then come along and reopen your pull request.
231-
* Or you can just open a new pull request for your revised version.
232-
233-
[@twbs-savage](https://github.com/twbs-savage) is a Bootstrap bot that automatically runs cross-browser tests (via [Sauce](https://saucelabs.com) and Travis CI) on JavaScript pull requests. Savage will leave a comment on pull requests stating whether cross-browser JS tests passed or failed, with a link to the full Travis build details. If your pull request fails, check the Travis log to see which browser + OS combinations failed. Each browser test in the Travis log includes a link to a Sauce page with details about the test. On those details pages, you can watch a screencast of the test run to see exactly which unit tests failed.
234-
235-
236226
## Code guidelines
237227

238228
### HTML
@@ -247,16 +237,16 @@ includes code changes) and under the terms of the
247237

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

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

253243
### JS
254244

255245
- No semicolons (in client-side JS)
256246
- 2 spaces (no tabs)
257247
- strict mode
258248
- "Attractive"
259-
- 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.
249+
- 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.
260250

261251
### Checking coding style
262252

bootstrap/Gemfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
source 'https://rubygems.org'
22

33
group :development, :test do
4-
gem 'jekyll', '~> 3.1.2'
5-
gem 'jekyll-sitemap', '~> 0.11.0'
4+
gem 'jekyll', '~> 3.8.5'
5+
gem 'jekyll-redirect-from', '~> 0.14.0'
6+
gem 'jekyll-sitemap', '~> 1.2.0'
7+
gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform?
68
end

bootstrap/Gemfile.lock

Lines changed: 56 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,74 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.4.0)
5-
colorator (0.1)
6-
ffi (1.9.14-x64-mingw32)
7-
jekyll (3.1.6)
8-
colorator (~> 0.1)
4+
addressable (2.6.0)
5+
public_suffix (>= 2.0.2, < 4.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.4)
8+
em-websocket (0.5.1)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7)
12+
eventmachine (1.2.7-x64-mingw32)
13+
ffi (1.10.0)
14+
ffi (1.10.0-x64-mingw32)
15+
forwardable-extended (2.6.0)
16+
http_parser.rb (0.6.0)
17+
i18n (0.9.5)
18+
concurrent-ruby (~> 1.0)
19+
jekyll (3.8.5)
20+
addressable (~> 2.4)
21+
colorator (~> 1.0)
22+
em-websocket (~> 0.5)
23+
i18n (~> 0.7)
924
jekyll-sass-converter (~> 1.0)
10-
jekyll-watch (~> 1.1)
11-
kramdown (~> 1.3)
12-
liquid (~> 3.0)
25+
jekyll-watch (~> 2.0)
26+
kramdown (~> 1.14)
27+
liquid (~> 4.0)
1328
mercenary (~> 0.3.3)
14-
rouge (~> 1.7)
29+
pathutil (~> 0.9)
30+
rouge (>= 1.7, < 4)
1531
safe_yaml (~> 1.0)
16-
jekyll-sass-converter (1.4.0)
32+
jekyll-redirect-from (0.14.0)
33+
jekyll (~> 3.3)
34+
jekyll-sass-converter (1.5.2)
1735
sass (~> 3.4)
18-
jekyll-sitemap (0.11.0)
19-
addressable (~> 2.4.0)
20-
jekyll-watch (1.4.0)
21-
listen (~> 3.0, < 3.1)
22-
kramdown (1.11.1)
23-
liquid (3.0.6)
24-
listen (3.0.8)
36+
jekyll-sitemap (1.2.0)
37+
jekyll (~> 3.3)
38+
jekyll-watch (2.1.2)
39+
listen (~> 3.0)
40+
kramdown (1.17.0)
41+
liquid (4.0.1)
42+
listen (3.1.5)
2543
rb-fsevent (~> 0.9, >= 0.9.4)
2644
rb-inotify (~> 0.9, >= 0.9.7)
45+
ruby_dep (~> 1.2)
2746
mercenary (0.3.6)
28-
rb-fsevent (0.9.7)
29-
rb-inotify (0.9.7)
30-
ffi (>= 0.5.0)
31-
rouge (1.11.1)
47+
pathutil (0.16.2)
48+
forwardable-extended (~> 2.6)
49+
public_suffix (3.0.3)
50+
rb-fsevent (0.10.3)
51+
rb-inotify (0.10.0)
52+
ffi (~> 1.0)
53+
rouge (3.3.0)
54+
ruby_dep (1.5.0)
3255
safe_yaml (1.0.4)
33-
sass (3.4.22)
56+
sass (3.7.3)
57+
sass-listen (~> 4.0.0)
58+
sass-listen (4.0.0)
59+
rb-fsevent (~> 0.9, >= 0.9.4)
60+
rb-inotify (~> 0.9, >= 0.9.7)
61+
wdm (0.1.1)
3462

3563
PLATFORMS
64+
ruby
3665
x64-mingw32
3766

3867
DEPENDENCIES
39-
jekyll (~> 3.1.2)
40-
jekyll-sitemap (~> 0.11.0)
68+
jekyll (~> 3.8.5)
69+
jekyll-redirect-from (~> 0.14.0)
70+
jekyll-sitemap (~> 1.2.0)
71+
wdm (~> 0.1.1)
4172

4273
BUNDLED WITH
43-
1.12.5
74+
1.17.3

0 commit comments

Comments
 (0)