final contrubution guide adjustments
This commit is contained in:
parent
0f2955c90b
commit
231078c0f6
@ -8,7 +8,7 @@ Contributing to Leaflet
|
|||||||
|
|
||||||
## Getting Involved
|
## Getting Involved
|
||||||
|
|
||||||
Third-party patches are absolutely essential on our quest to create the best mapping library that will ever exist. However, they're not the only way to get involved with the development of Leaflet. You can help the project tremendously by discovering and reporting bugs, improving documentation, helping others on the [Leaflet forum](https://groups.google.com/forum/#!forum/leaflet-js) and [GitHub issues](https://github.com/CloudMade/Leaflet/issues), and spreading the word about Leaflet among your colleagues and friends.
|
Third-party patches are absolutely essential on our quest to create the best mapping library that will ever exist. However, they're not the only way to get involved with the development of Leaflet. You can help the project tremendously by discovering and [reporting bugs](#reporting-bugs), [improving documentation](#improving-documentation), helping others on the [Leaflet forum](https://groups.google.com/forum/#!forum/leaflet-js) and [GitHub issues](https://github.com/CloudMade/Leaflet/issues), and spreading the word about Leaflet among your colleagues and friends.
|
||||||
|
|
||||||
## Reporting Bugs
|
## Reporting Bugs
|
||||||
|
|
||||||
@ -25,6 +25,8 @@ After you made sure that you've found a new Leaflet bug, here are some tips for
|
|||||||
|
|
||||||
## Contributing Code
|
## Contributing Code
|
||||||
|
|
||||||
|
### Considerations for Accepting Patches
|
||||||
|
|
||||||
While we happily accept patches, we're also commited to keeping Leaflet simple, lightweight and blazingly fast. So bugfixes, performance optimizations and small improvements that don't add a lot of code are much more likely to get accepted quickly.
|
While we happily accept patches, we're also commited to keeping Leaflet simple, lightweight and blazingly fast. So bugfixes, performance optimizations and small improvements that don't add a lot of code are much more likely to get accepted quickly.
|
||||||
|
|
||||||
Before sending a pull request with a new feature, first check if it's been discussed before already (either on [GitHub issues](https://github.com/CloudMade/Leaflet/issues) or [Leaflet UserVoice](http://leaflet.uservoice.com/)), and then ask yourself two questions:
|
Before sending a pull request with a new feature, first check if it's been discussed before already (either on [GitHub issues](https://github.com/CloudMade/Leaflet/issues) or [Leaflet UserVoice](http://leaflet.uservoice.com/)), and then ask yourself two questions:
|
||||||
@ -32,8 +34,37 @@ Before sending a pull request with a new feature, first check if it's been discu
|
|||||||
1. Are you sure that this new feature is important enough to justify its presense in the Leaflet core? Or will it look better as a plugin in a separate repository?
|
1. Are you sure that this new feature is important enough to justify its presense in the Leaflet core? Or will it look better as a plugin in a separate repository?
|
||||||
2. Is it written in a simple, concise way that doesn't add bulk to the codebase?
|
2. Is it written in a simple, concise way that doesn't add bulk to the codebase?
|
||||||
|
|
||||||
TODO building Leaflet, style guide, sending pulls, etc.
|
If your feature or API improvement dit get merged into master, please consider submitting another pull request with the corresponding [documentation update](#improving-documentation).
|
||||||
|
|
||||||
|
### Making Changes to Leaflet Source
|
||||||
|
|
||||||
|
If you're not yet familiar with the way GitHub works (forking, pull requests, etc.), be sure to check out the awesome [article about forking](https://help.github.com/articles/fork-a-repo) on the GitHub Help website -- it will get you started quickly.
|
||||||
|
|
||||||
|
You should always write each batch of changes (feature, bugfix, etc.) in **its own topic branch**. Please do not commit to the `master` branch, or your unrelated changes will go into the same pull request.
|
||||||
|
|
||||||
|
You should also follow the code style and whitespace conventions of the original codebase.
|
||||||
|
|
||||||
|
Before commiting your changes, run `jake lint` to catch any JS errors in the code and fix them.
|
||||||
|
|
||||||
|
You can build minified Leaflet by running `jake` (it will be built from source in the `dist` folder). But please **do not commit the built files** (`leaflet.js` and `leaflet-src.js`) along with your changes, otherwise there may problems merging the pull request. These files are only commited in the `master` branch of the main Leaflet repository.
|
||||||
|
|
||||||
## Improving Documentation
|
## Improving Documentation
|
||||||
|
|
||||||
TODO how to contribute to docs.
|
The code of the live Leaflet website that contains all documentation and examples is located in the `gh-pages` branch and is automatically generated from a set of HTML and Markdown files by [Jekyll](https://github.com/mojombo/jekyll).
|
||||||
|
|
||||||
|
The easiest way to make little improvements such as fixing typos without even leaving the browser is by editing one of the files with the online GitHub editor: browse the [gh-pages branch](https://github.com/CloudMade/Leaflet/tree/gh-pages), choose a certain file for editing (e.g. `reference.html` for API reference), click the Edit button, make changes and follow instructions from there. Once it gets merged, the changes will immediately appear on the website.
|
||||||
|
|
||||||
|
If you need to make edits in a local repository to see how it looks in the process, do the following:
|
||||||
|
|
||||||
|
1. [Install Ruby](http://www.ruby-lang.org/en/) if don't have it yet.
|
||||||
|
2. Run `gem install jekyll`.
|
||||||
|
3. Run `jekyll --auto` inside the `Leaflet` folder.
|
||||||
|
4. Open the website from the `_site` folder.
|
||||||
|
|
||||||
|
Now any file changes will be reflected on the generated pages automatically. After commiting the changes, just send a pull request.
|
||||||
|
|
||||||
|
If you need to update documentation according to a new feature that only appeared in the master version (not stable one), you need to make changes to `gh-pages-master` branch instead of `gh-pages`. It will get merged into the latter when released as stable.
|
||||||
|
|
||||||
|
## Thank You
|
||||||
|
|
||||||
|
Not only we're grateful for any contributions, -- helping Leaflet and its community actually makes you AWESOME. Join [this approved list of awesome people](https://github.com/CloudMade/Leaflet/graphs/contributors) and help us push limits of what's possible with online maps!
|
||||||
|
Loading…
Reference in New Issue
Block a user