2017 © Pedro Peláez
 

kohana-module userguide

Kohana user guide and live API documentation module

image

app-skeleton/userguide

Kohana user guide and live API documentation module

  • Monday, November 18, 2013
  • by app-skeleton
  • Repository
  • 1 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 118 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

What needs to be done?

Most articles are stubs, with a couple links to pages to be used as a reference when writing the page. The idea is to use the information on those links to help write the new ones. Some of the old userguide pages can probably be mostly copied, with a few improvements, others will be better to be completely rewritten. If you ever have questions, please feel free to jump in the kohana irc channel., (*1)

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., (*2)

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. Good: "Added initial draft of hello world tutorial." Bad: "working on docs"., (*3)

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

A brief explanation of how the userguide works:

The userguide uses Markdown and Markdown Extra for the documentation. Here is a short intro to Markdown syntax, as well as the complete guide, and the things Markdown Extra adds. Also read what the userguide adds to markdown at the end of this readme., (*5)

Userguide pages

Userguide pages are in the module they apply to, in guide/<module>. Documentation for Kohana is in system/guide/kohana and documentation for orm is in modules/orm/guide/orm, etc., (*6)

Each module has an index page at guide/<module>/index.md., (*7)

Each module's menu is in guide/<module>/menu.md., (*8)

Images

Any images used in the userguide pages must be in media/guide/<module>/. For example, if a userguide page has ![Image Title](hello-world.jpg) the image would be located at media/guide/<module>/hello-world.jpg. Images for the ORM module are in modules/orm/media/guide/orm, and images for the Kohana docs are in system/media/guide/kohana., (*9)

API browser

The API browser is generated from the actual source code. The descriptions for classes, constants, properties, and methods is extracted from the comments and parsed in Markdown. For example if you look in the comment for Kohana_Core::init you can see a markdown list and table. These are parsed and show correctly in the API browser. @param, @uses, @throws, @returns and other tags are parsed as well., (*10)

What the userguide adds to markdown:

In addition to the features and syntax of Markdown and Markdown Extra the following apply to userguide pages and api documentation:, (*11)

Namespacing

The first thing to note is that all urls are "namespaced". The name of the module is automatically added to links and image urls, you do not need to include it. For example, to link to the hello world tutorial page from another page in the Kohana userguide, you should use [Hello World Tutorial](tutorials/hello-world) rather than (kohana/tutorials/hello-world). To link to pages in a different section of the guide, you can use ../, for example [Cache](../cache/usage)., (*12)

Notes

If you put [!!] in front of line it will be a note, put in a box with a lightbulb., (*13)

[!!] This is a note.

Headers automatically get IDs

Headers are automatically assigned an id, based on the content of the header, so each header can be linked to. You can manually assign a different id using the syntax as defined in Markdown Extra. If multiple headers have the same content, like if more than one header is "Examples", only the first will get be automatically assigned an id, so you should manually assign more descriptive ids. For example:, (*14)

### Examples     {#header-id-examples}

You can make links to the api browser by wrapping any class name in brackets. You may also include a function and it will link to that function. All of the following will link to the API browser:, (*15)

[Request]
[Request::factory]
[Request::factory()]

If you want to have parameters, only put the brackets around the class and function (not the params), and put a backslash in front of the opening parenthesis., (*16)

[Kohana::$config]\('foobar','baz')

Including Views

You may include a view by putting the name of the view in double curly brackets. If the view is not found, no exception or error will be shown! The curly brackets and view will simply be shown an the page as is., (*17)

{{some/view}}

The Versions

18/11 2013

dev-3.3/master

dev-3.3/master http://kohanaframework.org

Kohana user guide and live API documentation module

  Sources   Download

BSD-3-Clause

The Requires

 

framework kohana docs

26/08 2013

dev-3.3/develop

dev-3.3/develop http://kohanaframework.org

Kohana user guide and live API documentation module

  Sources   Download

BSD-3-Clause

The Requires

 

framework kohana docs

26/08 2013

v3.3.1

3.3.1.0 http://kohanaframework.org

Kohana user guide and live API documentation module

  Sources   Download

BSD-3-Clause

The Requires

 

framework kohana docs