diff options
author | xue <> | 2007-07-26 17:12:56 +0000 |
---|---|---|
committer | xue <> | 2007-07-26 17:12:56 +0000 |
commit | f2cb31830f2f2264601b482df511affe87ff24d1 (patch) | |
tree | 80715ff61bf0be2080858ff06f5870aab61e27c4 | |
parent | 18e88ed7c522f782b7622aee0175bf5c4e9fb765 (diff) |
updated error message.
-rw-r--r-- | demos/quickstart/protected/pages/GettingStarted/NewFeatures.page | 11 | ||||
-rw-r--r-- | framework/Exceptions/messages.txt | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page index 8880b85b..560bbfd9 100644 --- a/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page +++ b/demos/quickstart/protected/pages/GettingStarted/NewFeatures.page @@ -9,23 +9,18 @@ This page summarizes the main new features that are introduced in each PRADO rel <h2>Version 3.1.1</h2>
<ul>
<li>Added a new control <a href="?page=Controls.TabPanel">TTabPanel</a> that displays tabbed views.</li>
+<li>Added a new module TCacheHttpSession that stores session data using a cache module to improve the session performance.</li>
+<li>Added Oracle DB support to Active Record</li>
</ul>
<h2 id="8006">Version 3.1.0</h2>
<ul>
-
<li>Added 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, i.e., plug in and use. For more details, see the tutorial about <a href="?page=ActiveControls.Home">active controls</a>.</li>
-
<li>Added complete database support. </li>
-<li>Added new controls, modules and services, including <a href="?page=Services.SoapService">TSoapService</a>, <a href="?page=Controls.OutputCache">TOutputCache</a>, TSessionPageStatePersister, TFeedService, TJsonService, cache dependency classes, TXmlTransform.
-</li>
-
+<li>Added new controls, modules and services, including <a href="?page=Services.SoapService">TSoapService</a>, <a href="?page=Controls.OutputCache">TOutputCache</a>, TSessionPageStatePersister, TFeedService, TJsonService, cache dependency classes, TXmlTransform.</li>
<li>Enhanced some data controls with renderers. Renderer enables reusing item templates that are commonly found in <tt>TRepeater</tt>, <tt>TDataList</tt> and <tt>TDataGrid</tt>, and makes the configuration on these controls much cleaner. For more details about renders, see the updated tutorials on <a href="?page=Controls.Repeater"><tt>TRepeater</tt></a>, <a href="?page=Controls.DataList"><tt>TDataList</tt></a> and <a href="?page=Controls.DataGrid"><tt>TDataGrid</tt></a>.</li>
-
<li>Added support to allow <a href="?page=Configurations.AppConfig">including external application configurations</a>. Enhanced template syntax to facilitate <a href="?page=Configurations.Templates1">subproperty configuration</a>.</li>
-
<li>Added TDbUserManager and TDbUser to simplify <a href="?page=Advanced.Auth">authentication and authorization</a> with user accounts stored in a database.</li>
-
</ul>
<div class="last-modified">$Id$</div>
diff --git a/framework/Exceptions/messages.txt b/framework/Exceptions/messages.txt index 23ec53ea..b75de56e 100644 --- a/framework/Exceptions/messages.txt +++ b/framework/Exceptions/messages.txt @@ -414,3 +414,7 @@ tabviewcollection_tabview_required = TTabPanel can only accept TTabView as chil tabpanel_activeviewid_invalid = TTabPanel.ActiveViewID has an invalid ID '{0}'.
tabpanel_activeviewindex_invalid = TTabPanel.ActiveViewIndex has an invalid Index '{0}'.
tabpanel_view_inexistent = TTabPanel cannot find the specified view.
+
+cachesession_cachemoduleid_required = TCacheHttpSession.CacheModuleID is required.
+cachesession_cachemodule_inexistent = TCacheHttpSession.CacheModuleID '{0}' points to a non-existent module.
+cachesession_cachemodule_invalid = TCacheHttpSession.CacheModuleID '{0}' points to a module that does not implement ICache interface.
\ No newline at end of file |