Stripped personal data from development repository
Samo Penic
2019-02-20 83c3f647c35477564b77cbc5b36d37d793d5442a
commit | author | age
83c3f6 1 # Contributing to Bootstrap
SP 2
3 Looking to contribute something to Bootstrap? **Here's how you can help.**
4
5 Please take a moment to review this document in order to make the contribution
6 process easy and effective for everyone involved.
7
8 Following these guidelines helps to communicate that you respect the time of
9 the developers managing and developing this open source project. In return,
10 they should reciprocate that respect in addressing your issue or assessing
11 patches and features.
12
13
14 ## Using the issue tracker
15
16 The [issue tracker](https://github.com/twbs/bootstrap/issues) is
17 the preferred channel for [bug reports](#bug-reports), [features requests](#feature-requests)
18 and [submitting pull requests](#pull-requests), but please respect the following
19 restrictions:
20
21 * Please **do not** use the issue tracker for personal support requests.  Stack
22   Overflow ([`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4) tag), [Slack](https://bootstrap-slack.herokuapp.com/) or [IRC](README.md#community) are better places to get help.
23
24 * Please **do not** derail or troll issues. Keep the discussion on topic and
25   respect the opinions of others.
26
27 * Please **do not** post comments consisting solely of "+1" or ":thumbsup:".
28   Use [GitHub's "reactions" feature](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/)
29   instead. We reserve the right to delete comments which violate this rule.
30
31 * Please **do not** open issues regarding the official themes offered on <https://themes.getbootstrap.com/>.
32   Instead, please email any questions or feedback regarding those themes to `themes AT getbootstrap DOT com`.
33
34
35 ## Issues and labels
36
37 Our bug tracker utilizes several labels to help organize and identify issues. Here's what they represent and how we use them:
38
39 - `browser bug` - Issues that are reported to us, but actually are the result of a browser-specific bug. These are diagnosed with reduced test cases and result in an issue opened on that browser's own bug tracker.
40 - `confirmed` - Issues that have been confirmed with a reduced test case and identify a bug in Bootstrap.
41 - `css` - Issues stemming from our compiled CSS or source Sass files.
42 - `docs` - Issues for improving or updating our documentation.
43 - `examples` - Issues involving the example templates included in our docs.
44 - `feature` - Issues asking for a new feature to be added, or an existing one to be extended or modified. New features require a minor version bump (e.g., `v3.0.0` to `v3.1.0`).
45 - `build` - Issues with our build system, which is used to run all our tests, concatenate and compile source files, and more.
46 - `help wanted` - Issues we need or would love help from the community to resolve.
47 - `js` - Issues stemming from our compiled or source JavaScript files.
48 - `meta` - Issues with the project itself or our GitHub repository.
49
50 For a complete look at our labels, see the [project labels page](https://github.com/twbs/bootstrap/labels).
51
52
53 ## Bug reports
54
55 A bug is a _demonstrable problem_ that is caused by the code in the repository.
56 Good bug reports are extremely helpful, so thanks!
57
58 Guidelines for bug reports:
59
60 0. **Validate and lint your code** &mdash; [validate your HTML](https://html5.validator.nu/)
61    and [lint your HTML](https://github.com/twbs/bootlint) to ensure your
62    problem isn't caused by a simple error in your own code.
63
64 1. **Use the GitHub issue search** &mdash; check if the issue has already been
65    reported.
66
67 2. **Check if the issue has been fixed** &mdash; try to reproduce it using the
68    latest `master` or development branch in the repository.
69
70 3. **Isolate the problem** &mdash; ideally create a [reduced test
71    case](https://css-tricks.com/reduced-test-cases/) and a live example.
72    [This JS Bin](https://jsbin.com/lolome/edit?html,output) is a helpful template.
73
74
75 A good bug report shouldn't leave others needing to chase you up for more
76 information. Please try to be as detailed as possible in your report. What is
77 your environment? What steps will reproduce the issue? What browser(s) and OS
78 experience the problem? Do other browsers show the bug differently? What
79 would you expect to be the outcome? All these details will help people to fix
80 any potential bugs.
81
82 Example:
83
84 > Short and descriptive example bug report title
85 >
86 > A summary of the issue and the browser/OS environment in which it occurs. If
87 > suitable, include the steps required to reproduce the bug.
88 >
89 > 1. This is the first step
90 > 2. This is the second step
91 > 3. Further steps, etc.
92 >
93 > `<url>` - a link to the reduced test case
94 >
95 > Any other information you want to share that is relevant to the issue being
96 > reported. This might include the lines of code that you have identified as
97 > causing the bug, and potential solutions (and your opinions on their
98 > merits).
99
100 ### Reporting upstream browser bugs
101
102 Sometimes bugs reported to us are actually caused by bugs in the browser(s) themselves, not bugs in Bootstrap per se.
103 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).
104
105 | Vendor(s)     | Browser(s)                   | Rendering engine | Bug reporting website(s)                                                              | Notes                                                    |
106 | ------------- | ---------------------------- | ---------------- | ------------------------------------------------------------------------------------- | -------------------------------------------------------- |
107 | Mozilla       | Firefox                      | Gecko            | https://bugzilla.mozilla.org/enter_bug.cgi                                            | "Core" is normally the right product option to choose.   |
108 | Apple         | Safari                       | WebKit           | https://bugs.webkit.org/enter_bug.cgi?product=WebKit <br> https://bugreport.apple.com/ | In Apple's bug reporter, choose "Safari" as the product. |
109 | Google, Opera | Chrome, Chromium, Opera v15+ | Blink            | https://bugs.chromium.org/p/chromium/issues/list                                      | Click the "New issue" button.                            |
110 | Microsoft     | Edge                         | EdgeHTML         | https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/                 |                                                          |
111
112 ### Issues bots
113
114 [@twbs-lmvtfy](https://github.com/twbs-lmvtfy) is a Bootstrap bot that hangs out in our GitHub issue tracker and automatically checks for HTML validation errors in live examples (e.g. jsFiddles, JS Bins, Bootplys, Plunks, CodePens, etc.) posted in issue comments. If it finds any errors, it will post a follow-up comment on the issue and point out the errors. If this happens with an example you've posted, please fix the errors and post an updated live example. If you opened a bug report, please check whether the bug still occurs with your revised, valid live example. If the bug no longer occurs, it was probably due to your invalid HTML rather than something in Bootstrap and we'd appreciate it if you could close out the GitHub issue.
115
116
117 ## Feature requests
118
119 Feature requests are welcome. But take a moment to find out whether your idea
120 fits with the scope and aims of the project. It's up to *you* to make a strong
121 case to convince the project's developers of the merits of this feature. Please
122 provide as much detail and context as possible.
123
124
125 ## Pull requests
126
127 Good pull requests—patches, improvements, new features—are a fantastic
128 help. They should remain focused in scope and avoid containing unrelated
129 commits.
130
131 **Please ask first** before embarking on any significant pull request (e.g.
132 implementing features, refactoring code, porting to a different language),
133 otherwise you risk spending a lot of time working on something that the
134 project's developers might not want to merge into the project.
135
136 Please adhere to the [coding guidelines](#code-guidelines) used throughout the
137 project (indentation, accurate comments, etc.) and any other requirements
138 (such as test coverage).
139
140 **Do not edit `bootstrap.css`, or `bootstrap.js`
141 directly!** Those files are automatically generated. You should edit the
142 source files in [`/bootstrap/scss/`](https://github.com/twbs/bootstrap/tree/master/scss)
143 and/or [`/bootstrap/js/`](https://github.com/twbs/bootstrap/tree/master/js) instead.
144
145 Similarly, when contributing to Bootstrap's documentation, you should edit the
146 documentation source files in
147 [the `/bootstrap/docs/` directory of the `master` branch](https://github.com/twbs/bootstrap/tree/master/docs).
148 **Do not edit the `gh-pages` branch.** That branch is generated from the
149 documentation source files and is managed separately by the Bootstrap Core Team.
150
151 Adhering to the following process is the best way to get your work
152 included in the project:
153
154 1. [Fork](https://help.github.com/articles/fork-a-repo/) the project, clone your fork,
155    and configure the remotes:
156
157    ```bash
158    # Clone your fork of the repo into the current directory
159    git clone https://github.com/<your-username>/bootstrap.git
160    # Navigate to the newly cloned directory
161    cd bootstrap
162    # Assign the original repo to a remote called "upstream"
163    git remote add upstream https://github.com/twbs/bootstrap.git
164    ```
165
166 2. If you cloned a while ago, get the latest changes from upstream:
167
168    ```bash
169    git checkout master
170    git pull upstream master
171    ```
172
173 3. Create a new topic branch (off the main project development branch) to
174    contain your feature, change, or fix:
175
176    ```bash
177    git checkout -b <topic-branch-name>
178    ```
179
180 4. Commit your changes in logical chunks. Please adhere to these [git commit
181    message guidelines](https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
182    or your code is unlikely be merged into the main project. Use Git's
183    [interactive rebase](https://help.github.com/articles/about-git-rebase/)
184    feature to tidy up your commits before making them public.
185
186 5. Locally merge (or rebase) the upstream development branch into your topic branch:
187
188    ```bash
189    git pull [--rebase] upstream master
190    ```
191
192 6. Push your topic branch up to your fork:
193
194    ```bash
195    git push origin <topic-branch-name>
196    ```
197
198 7. [Open a Pull Request](https://help.github.com/articles/about-pull-requests/)
199     with a clear title and description against the `master` branch.
200
201 **IMPORTANT**: By submitting a patch, you agree to allow the project owners to
202 license your work under the terms of the [MIT License](LICENSE) (if it
203 includes code changes) and under the terms of the
204 [Creative Commons Attribution 3.0 Unported License](docs/LICENSE)
205 (if it includes documentation changes).
206
207
208 ## Code guidelines
209
210 ### HTML
211
212 [Adhere to the Code Guide.](http://codeguide.co/#html)
213
214 - Use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags).
215 - Use CDNs and HTTPS for third-party JS when possible. We don't use protocol-relative URLs in this case because they break when viewing the page locally via `file://`.
216 - Use [WAI-ARIA](https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA) attributes in documentation examples to promote accessibility.
217
218 ### CSS
219
220 [Adhere to the Code Guide.](http://codeguide.co/#css)
221
222 - When feasible, default color palettes should comply with [WCAG color contrast guidelines](https://www.w3.org/TR/WCAG20/#visual-audio-contrast).
223 - 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.
224
225 ### JS
226
227 - No semicolons (in client-side JS)
228 - 2 spaces (no tabs)
229 - strict mode
230 - "Attractive"
231 - 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.
232
233 ### Checking coding style
234
235 Run `npm run test` before committing to ensure your changes follow our coding standards.
236
237
238 ## License
239
240 By contributing your code, you agree to license your contribution under the [MIT License](LICENSE).
241 By contributing to the documentation, you agree to license your contribution under the [Creative Commons Attribution 3.0 Unported License](docs/LICENSE).
242
243 Prior to v3.1.0, Bootstrap's code was released under the Apache License v2.0.