diff options
| author | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-12 21:33:46 +0100 | 
|---|---|---|
| committer | Fabio Bas <ctrlaltca@gmail.com> | 2014-01-12 21:33:46 +0100 | 
| commit | f25b3b4272a2571247457eb2926af0f88cfca838 (patch) | |
| tree | 1ffdd890afef329cd9f779a441e972f2981cb07d /demos/quickstart/protected/pages/Fundamentals/Architecture.page | |
| parent | 781f6731122cf622bcdf64441d247b5e37a2c3d0 (diff) | |
Big quickstart doc overhaul, pt. 1
Diffstat (limited to 'demos/quickstart/protected/pages/Fundamentals/Architecture.page')
| -rwxr-xr-x | demos/quickstart/protected/pages/Fundamentals/Architecture.page | 25 | 
1 files changed, 22 insertions, 3 deletions
| diff --git a/demos/quickstart/protected/pages/Fundamentals/Architecture.page b/demos/quickstart/protected/pages/Fundamentals/Architecture.page index 10f16c3f..c6bee7de 100755 --- a/demos/quickstart/protected/pages/Fundamentals/Architecture.page +++ b/demos/quickstart/protected/pages/Fundamentals/Architecture.page @@ -2,12 +2,31 @@  <h1 id="601">Architecture</h1>
  <p id="100111" class="block-content">
 -PRADO is primarily a presentational framework, although it is not limited to be so. The framework focuses on making Web programming, which deals most of the time with user interactions, to be component-based and event-driven so that developers can be more productive. The following class tree depicts some of the major classes provided by PRADO,
 +PRADO is primarily a presentational framework, although it is not limited to be so. The framework focuses on making Web programming, which deals most of the time with user interactions, to be component-based and event-driven so that developers can be more productive. The following class tree depicts some of the major classes provided by PRADO:
  </p>
  <img src="<%~classtree.gif%>" />
  <p id="100112" class="block-content">
 -When a PRADO application is processing a page request, its static object diagram can be shown as follows,
 +When a PRADO application is processing a page request, its static object diagram can be shown as follows:
  </p>
  <img src="<%~objectdiagram.gif%>" />
 -</com:TContent>
 +
 +<p class="block-content">
 +Once the main <tt>Application</tt> object gets created, it load the <a href="?page=Configurations.AppConfig">application configuration</a>.
 +The minimal configuration defines a set of basic <a href="?page=Fundamentals.Modules">modules</a> to parse the <tt>Request</tt>, create a proper <tt>Response</tt>, mantain the user <tt>Session</tt>, handle any <tt>Error</tt> and publish the needed <tt>Assets</tt> (images, css, javascript, etc). These helpers module will be available from anywhere inside the application code.
 +<br/>
 +Additionally, any 3rd-party or <tt>custom module</tt> can be loaded, and external <tt>Parameters</tt> can be loaded from external configurations.
 +</p>
 +
 +<p class="block-content">
 +Once the basic infrastructure has been set up, the <tt>Request</tt> module parses the request trying to identify the requested route. Different routes can be handled by different services, but the default route for http requests is the <tt>Page Service</tt>.
 +<br/>
 +The <a href="?page=Configurations.AppConfig">Page Service</a>'s role is to instanciate the requested <tt>Page</tt>, run it, apply any defined <tt>Theme</tt> and grab the result in order to build the <tt>Response</tt>.
 +</p>
 +
 +<p class="block-content">
 +A <a href="?page=Fundamentals.Pages">Page</a> can be a simple script (.php), a <tt>Template</tt> (.page), or both. PRADO uses a very powerful <a href="?page=Configurations.Templates1">template engine</a> where <tt>Controls</tt> can be instanciated directly.
 +<br/>
 +A <a href="?page=Fundamentals.Controls">Control</a> is an self-contained widget that fullfills a specific task; they can be a simple script (.php), a <tt>Template</tt> (.page), or both.
 +</p>
 +</com:TContent>
\ No newline at end of file | 
