Help:Contents
From PRADO Wiki
How to use MediaWiki
Organization of PRADO wiki
The major part of the PRADO wiki is the component documentation. Other than that, the wiki maintains a series of tutorials as well as several information pages such as Requirements, Installation, etc.
Multilanguage translations
Each language translation must start from the Main Page.
Page titles should be first translated (except the Main Page). If the translated page title is the same as the English title, please prefix the title with the language code, such as de:TControl (German).
Please contact me if your language is not listed on the Main Page.
How to write component doc pages
Each component is documented with an overview page, a member list page, and several member pages (each corresponding to a component property or event).
- An overview page should use the component type as the page title, such as TControl. Please use the TControl page as a template.
- A member list page should use the component name followed by the word members as the page title, such as TControl members. Please use TControl members as a template.
- A member page should use the prefixed property/event name as the page title, such as TComponent.ID, TComponent.OnDataBinding. Please use TComponent.ID as a template.
Special tags for writing nice wiki pages
Besides the tags defined by wiki system, you can use two additional tags specific for our PRADO documentation: <php/> and <prado/>. The former will highlight code enclosed within it according to PHP syntax while the latter will highlight according to PRADO template syntax. For example, displaying a PHP class code,
class MyPage { protected $data=null; public function onLoad($param) { parent::onLoad($param); $this->data='start'; } }
and a PRADO template
<html> <head></head> <body> <com:TForm> <com:TButton Text="Click me" OnClick="onBtnClicked" /> </com:TForm> </body> </html>

