diff options
-rw-r--r-- | .gitattributes | 1 | ||||
-rw-r--r-- | buildscripts/texbuilder/quickstart/pages.php | 1 | ||||
-rw-r--r-- | demos/quickstart/protected/controls/TopicList.tpl | 1 | ||||
-rw-r--r-- | demos/quickstart/protected/pages/GettingStarted/NewFeatures.page | 22 |
4 files changed, 25 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes index 6c06a23e..4b44ff72 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1169,6 +1169,7 @@ demos/quickstart/protected/pages/GettingStarted/CommandLine.page -text demos/quickstart/protected/pages/GettingStarted/HelloWorld.page -text demos/quickstart/protected/pages/GettingStarted/Installation.page -text demos/quickstart/protected/pages/GettingStarted/Introduction.page -text +demos/quickstart/protected/pages/GettingStarted/NewFeatures.page -text demos/quickstart/protected/pages/GettingStarted/Upgrading.page -text demos/quickstart/protected/pages/GettingStarted/directory.gif -text demos/quickstart/protected/pages/GettingStarted/fr/Introduction.page -text diff --git a/buildscripts/texbuilder/quickstart/pages.php b/buildscripts/texbuilder/quickstart/pages.php index 230ed6a4..2a2c6b54 100644 --- a/buildscripts/texbuilder/quickstart/pages.php +++ b/buildscripts/texbuilder/quickstart/pages.php @@ -8,6 +8,7 @@ $pages['Getting Started'] = array( 'GettingStarted/Introduction.page',
'GettingStarted/AboutPrado.page',
'GettingStarted/Installation.page',
+ 'GettingStarted/NewFeatures.page',
'GettingStarted/Upgrading.page'
);
diff --git a/demos/quickstart/protected/controls/TopicList.tpl b/demos/quickstart/protected/controls/TopicList.tpl index 8d68c2e2..d9668d66 100644 --- a/demos/quickstart/protected/controls/TopicList.tpl +++ b/demos/quickstart/protected/controls/TopicList.tpl @@ -6,6 +6,7 @@ <li><a href="?page=GettingStarted.Introduction">Introduction</a></li>
<li><a href="?page=GettingStarted.AboutPrado">What is PRADO?</a></li>
<li><a href="?page=GettingStarted.Installation">Installation</a></li>
+ <li><a href="?page=GettingStarted.NewFeatures">New Features</a></li>
<li><a href="?page=GettingStarted.Upgrading">Upgrading from v2.x and v1.x</a></li>
</ul>
</div>
diff --git a/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page new file mode 100644 index 00000000..781eb0fa --- /dev/null +++ b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page @@ -0,0 +1,22 @@ +<com:TContent ID="body" >
+
+<h1>New Features</h1>
+
+<p>
+This page summarizes the main new features that are introduced in each PRADO release.
+</p>
+
+<h2>Version 3.1.0</h2>
+<ul>
+
+<li>Seamless AJAX support - A whole array of AJAX-enabled controls, called active controls, are introduced. The usage of these active controls is very similar to their non-AJAX counterparts. For more details, see the tutorial about <a href="?page=ActiveControls.Home">active controls</a>.</li>
+
+<li>Layered database support - </li>
+<li>New controls, modules and services - TSoapService, TOutputCache, TSessionPageStatePersister, TFeedService, TJsonService, cache dependency classes, TXmlTransform
+</li>
+<li>Configure subproperties in a group</li>
+<li>Item renderer feature for <tt>TRepeater</tt>, <tt>TDataList</tt> and <tt>TDataGrid</tt></li>
+</ul>
+
+<div class="last-modified">$Id$</div>
+</com:TContent>
\ No newline at end of file |