summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/GettingStarted/Upgrading.page
diff options
context:
space:
mode:
Diffstat (limited to 'demos/quickstart/protected/pages/GettingStarted/Upgrading.page')
-rw-r--r--demos/quickstart/protected/pages/GettingStarted/Upgrading.page52
1 files changed, 52 insertions, 0 deletions
diff --git a/demos/quickstart/protected/pages/GettingStarted/Upgrading.page b/demos/quickstart/protected/pages/GettingStarted/Upgrading.page
new file mode 100644
index 00000000..cb89cb10
--- /dev/null
+++ b/demos/quickstart/protected/pages/GettingStarted/Upgrading.page
@@ -0,0 +1,52 @@
+<com:TContent ID="body" >
+
+<h1>Upgrading from Earlier Versions</h1>
+
+<h2>Upgrading from v2.x and v1.x</h2>
+<p>
+PRADO v3.0 is NOT backward compatible with earlier versions of PRADO.
+</p>
+<p>
+A good news is, properties and events of most controls remain intact, and the syntax of control templates remains largely unchanged. Therefore, developers' knowledge of earlier versions of PRADO are still applicable in v3.0.
+</p>
+<p>
+We summarize in the following the most significant changes in v3.0 to help developers upgrade their v2.x and v1.x PRADO applications more easily.
+</p>
+
+<h3>Component Definition</h3>
+<p>
+Version 3.0 has completely discarded the need of component specification files. It relies more on conventions for defining component properties and events. In particular, a property is defined by the existence of a getter method and/or a setter method, while an event is defined by the existence of an <tt>on</tt>-method. Property and event names in v3.0 are both case-insensitive.
+</p>
+
+<h3>Application Controller</h3>
+<p>
+Application controller now implements a modular architecture. Modules can be plugged in and configured in application specifications. Each module assumes a particular functionality, and they are coordinated together by the <a href="?page=Fundamentals.Applications">application lifecycle</a>. The concept of v2.x modules is replaced in v3.0 by <a href="?page=Configurations.PageConfig">page directories</a>. As a result, the format of v3.0 <a href="?page=Configurations.AppConfig">application specification</a> is also different from earlier versions.
+</p>
+
+<h3>Pages</h3>
+<p>
+Pages in v3.0 are organized in directories which may be compared to the module concept in v2.x. Pages are requested using the path to them. For example, a URL <tt>index.php?page=Controls.Samples.Sample1</tt> would request for a page named <tt>Sample1</tt> stored under the <tt>[BasePath]/Controls/Samples</tt> directory, where <tt>[BasePath]</tt> refers to the root page path. The file name of a page template must be ended with <tt>.page</tt>, mainly to differentiate from templates of non-page controls whose file names must be ended with <tt>.tpl</tt>.
+</p>
+
+<h3>Control Relationship</h3>
+<p>
+Version 3.0 redefines the relationships between controls. In particular, the parent-child relationship now refers to the enclosure relationship between controls' presentation. And a new naming-container relationship is introduced to help better manage control IDs. For more details, see the <a href="?page=Fundamentals.Controls">controls</a> section.
+</p>
+
+<h3>Template Syntax</h3>
+<p>
+The syntax of control templates in v3.0 remains similar to those in earlier versions, with many enhancements. A major change is about the databinding expression. In v3.0, this is done by the following,
+</p>
+<com:TTextHighlighter Language="prado" CssClass="source">
+&lt;com:MyComponent PropertyName=&lt;%# PHP expression %&gt; .../&gt;
+</com:TTextHighlighter>
+<p>
+Expression and statement tags are also changed similarly. For more details, see the <a href="?page=Configurations.Templates1">template definition</a> section.
+</p>
+
+<h3>Theme Syntax</h3>
+<p>
+Themes in v3.0 are defined like control templates with a few restrictions.
+</p>
+
+</com:TContent> \ No newline at end of file