bootstrap-source/bootstrap-3.0.3/CONTRIBUTING.md
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
# Contributing to Bootstrap
info@54
     2
info@54
     3
Looking to contribute something to Bootstrap? **Here's how you can help.**
info@54
     4
info@54
     5
info@54
     6
info@54
     7
## Reporting issues
info@54
     8
info@54
     9
We only accept issues that are bug reports or feature requests. Bugs must be isolated and reproducible problems that we can fix within the Bootstrap core. Please read the following guidelines before opening any issue.
info@54
    10
info@54
    11
1. **Search for existing issues.** We get a lot of duplicate issues, and you'd help us out a lot by first checking if someone else has reported the same issue. Moreover, the issue may have already been resolved with a fix available.
info@54
    12
2. **Create an isolated and reproducible test case.** Be sure the problem exists in Bootstrap's code with a [reduced test case](http://css-tricks.com/reduced-test-cases/) that should be included in each bug report.
info@54
    13
3. **Include a live example.** Make use of jsFiddle or jsBin to share your isolated test cases.
info@54
    14
4. **Share as much information as possible.** Include operating system and version, browser and version, version of Bootstrap, customized or vanilla build, etc. where appropriate. Also include steps to reproduce the bug.
info@54
    15
info@54
    16
info@54
    17
info@54
    18
## Pull requests
info@54
    19
info@54
    20
- CSS changes must be done in `.less` files first, never just in the compiled `.css` files
info@54
    21
- If modifying the `.less` files, always recompile and commit the compiled files `bootstrap.css` and `bootstrap.min.css`
info@54
    22
- Try not to pollute your pull request with unintended changes--keep them simple and small
info@54
    23
- Try to share which browsers your code has been tested in before submitting a pull request
info@54
    24
- Pull requests should always be against the `master` branch, never against `gh-pages`.
info@54
    25
info@54
    26
info@54
    27
info@54
    28
## Coding standards
info@54
    29
info@54
    30
### HTML
info@54
    31
info@54
    32
- Two spaces for indentation, never tabs
info@54
    33
- Double quotes only, never single quotes
info@54
    34
- Always use proper indentation
info@54
    35
- Use tags and elements appropriate for an HTML5 doctype (e.g., self-closing tags)
info@54
    36
- 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://`.
info@54
    37
info@54
    38
### CSS
info@54
    39
info@54
    40
- Adhere to the [RECESS CSS property order](http://markdotto.com/2011/11/29/css-property-order/)
info@54
    41
- Multiple-line approach (one property and value per line)
info@54
    42
- Always a space after a property's colon (e.g., `display: block;` and not `display:block;`)
info@54
    43
- End all lines with a semi-colon
info@54
    44
- For multiple, comma-separated selectors, place each selector on its own line
info@54
    45
- Attribute selectors, like `input[type="text"]` should always wrap the attribute's value in double quotes, for consistency and safety (see this [blog post on unquoted attribute values](http://mathiasbynens.be/notes/unquoted-attribute-values) that can lead to XSS attacks).
info@54
    46
info@54
    47
### JS
info@54
    48
info@54
    49
- No semicolons
info@54
    50
- Comma first
info@54
    51
- 2 spaces (no tabs)
info@54
    52
- strict mode
info@54
    53
- "Attractive"
info@54
    54
info@54
    55
info@54
    56
info@54
    57
## License
info@54
    58
info@54
    59
With v3.1, we're moving from the Apache 2 to the MIT license for the Bootstrap code (not the docs). We're in the process of collecting permissions from all Bootstrap contributors with code still part of the project to make this happen. For details, please see [#2054](https://github.com/twbs/bootstrap/issues/2054).
info@54
    60
info@54
    61
By contributing your code, you agree to dual-license your contribution under the [Apache 2](https://github.com/twbs/bootstrap/blob/master/LICENSE) and [MIT](https://github.com/twbs/bootstrap/blob/master/LICENSE-MIT) licenses.
info@54
    62
info@54
    63
info@54
    64
info@54
    65
## Release checklist
info@54
    66
info@54
    67
1. Close ship list issue for the release.
info@54
    68
2. Close the milestone for the release.
info@54
    69
3. Open new release issue that includes this checklist.
info@54
    70
4. Ping folks to coordinate release (mainly @jdorfman for BootstrapCDN).
info@54
    71
5. Update version numbers using `grunt change-version-number --oldver=A.B.C --newver=X.Y.Z`. Review the changes and stage them manually.
info@54
    72
6. Run `grunt` one last time.
info@54
    73
7. Push to `master` branch.
info@54
    74
8. Merge `master` into `gh-pages`.
info@54
    75
9. Generate `bootstrap-X.Y.Z-dist.zip` file for release.
info@54
    76
10. Create release on GitHub with `/dist/` folder and release notes.
info@54
    77
11. Push `gh-pages`.
info@54
    78
12. Publish blog post.
info@54
    79
13. Tweet tweet.
Impressum Datenschutzerklärung