When the docs get merged these images/links should be update

Contributing

Kohana is community driven, and we rely on community contributions for the documentation.

Guidelines

Documentation should use complete sentences, good grammar, and be as clear as possible. Use lots of example code, but make sure the examples follow the Kohana conventions and style.

Try to commit often, with each commit only changing a file or two, rather than changing a ton of files and commiting it all at once. This will make it easier to offer feedback and merge your changes. Make sure your commit messages are clear and descriptive. Bad: "Added docs", Good: "Added initial draft of hello world tutorial", Bad: "Fixed typos", Good: "Fixed typos on the query builder page"

If you feel a menu needs to be rearranged or a module needs new pages, please open a bug report to discuss it.

Quick Method

To quickly point out something that needs improvement, report a bug report.

If you want to contribute some changes, you can do so right from your browser without even knowing git!

First create an account on Github.

You will need to fork the module for the area you want to improve. For example, to improve the ORM documentation fork http://github.com/kohana/orm. To improve the Kohana documentation, fork http://github.com/kohana/core, etc. So, find the module you want to improve and click on the Fork button in the top right.

Fork the module

The files that make the User Guide portion are found in guide/<module>/, and the API browser portion is made from the comments in the source code itself. Navigate to one of the files you want to change and click the edit button in the top right of the file viewer.

Click on edit to edit the file

Make the changes and add a detailed commit message. Repeat this for as many files as you want to improve. (Note that you can't preview what the changes will look unless you actually test it locally.)

After you have made your changes, send a pull request so your improvements can be reviewed to be merged into the official documentation.

Send a pull request

Once your pull request has been accepted, you can delete your repository if you want. Your commit will have been copied to the official branch.

If you know git

Short version: Create a ticket on redmine for your changes, fork the module whose docs you wish to improve (e.g. git://github.com/kohana/orm.git or git://github.com/kohana/core.git), checkout the appropriate branch, make changes, and then send a pull request with the ticket number.

Long version: (This still assumes you at least know your way around git, especially how submodules work.)

  1. Create a ticket on redmine for your changes.

  2. Fork the specific repo you want to contribute to on github. (For example go to http://github.com/kohana/core and click the fork button.)

  3. Now go into the repo of the area of docs you want to contribute to and add your forked repo as a new remote, and push to it.

    cd system
    
    # make sure we are up to date
    git checkout 3.1/develop
    git pull
    
    # add your repository as a new remote
    git remote add <your name> [email protected]:<your name>/core.git
    
    # (make some changes to the docs)
    
    # now commit the changes and push to your repo
    git commit
    git push <your name> 3.1/develop
    
  4. Send a pull request on github containing the ticket number, and update the ticket with a link to the pull request.