summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages
diff options
context:
space:
mode:
authorxue <>2005-12-24 17:13:54 +0000
committerxue <>2005-12-24 17:13:54 +0000
commit0401be173cd1f80785c09f3a1dfae79d54441197 (patch)
tree43d2c945b400d87532e05b90d8274f150478a24c /demos/quickstart/protected/pages
parent13e381d9f638d14157697d5229ffb2d99038c691 (diff)
Diffstat (limited to 'demos/quickstart/protected/pages')
-rw-r--r--demos/quickstart/protected/pages/TopicList.tpl17
-rw-r--r--demos/quickstart/protected/pages/chap1/Installation.page18
-rw-r--r--demos/quickstart/protected/pages/config.xml4
3 files changed, 25 insertions, 14 deletions
diff --git a/demos/quickstart/protected/pages/TopicList.tpl b/demos/quickstart/protected/pages/TopicList.tpl
index def0f9d7..479dcb0d 100644
--- a/demos/quickstart/protected/pages/TopicList.tpl
+++ b/demos/quickstart/protected/pages/TopicList.tpl
@@ -9,18 +9,17 @@
<div class="topic">
<span>Fundamentals</span><br/>
-<a href="?page=Construction">Architecture</a><br/>
-<a href="?page=Construction">Key Concepts</a><br/>
-<a href="?page=Construction">Configurations</a><br/>
-<a href="?page=Construction">Templates</a><br/>
+<a href="?page=chap2.Architecture">Architecture</a><br/>
+<a href="?page=chap2.KeyConcepts">Key Concepts</a><br/>
+<a href="?page=chap2.Structure">Application Structure</a><br/>
+<a href="?page=chap2.Configurations">Configurations</a><br/>
+<a href="?page=chap2.Templates">Templates</a><br/>
</div>
<div class="topic">
-<span>Applications</span><br/>
-<a href="?page=chap2.Structure">Directory Structure</a><br/>
-<a href="?page=chap2.Deployment">Application Deployment</a><br/>
-<a href="?page=chap2.HelloWorld">Sample: Hello World</a><br/>
-<a href="?page=chap2.HangmanGame">Sample: Hangman Game</a><br/>
+<span>Samples</span><br/>
+<a href="?page=chap3.HelloWorld">Hello World</a><br/>
+<a href="?page=chap3.Hangman">Hangman Game</a><br/>
</div>
<div class="topic">
diff --git a/demos/quickstart/protected/pages/chap1/Installation.page b/demos/quickstart/protected/pages/chap1/Installation.page
index 5723fcc9..77fd0b26 100644
--- a/demos/quickstart/protected/pages/chap1/Installation.page
+++ b/demos/quickstart/protected/pages/chap1/Installation.page
@@ -1,11 +1,21 @@
<com:TContent ID="body" >
<h4>Installing PRADO</h4>
<p>
-If you are viewing this page from your own Web server, you are already done
-with the installation. The instructions at the end of this page, however,
-may still be useful for you to troubleshoot issues happened during your
-development based on PRADO.
+If you are viewing this page from your own Web server, you are already done with the installation. The instructions at the end of this page, however, may still be useful for you to troubleshoot issues happened during your development based on PRADO.
</p>
<p>
+Installation of PRADO is very easy. Follow the following steps,
+<ol>
+<li>Go to <a href="http://www.pradosoft.com/">pradosoft.com</a> to grab a latest version of PRADO.</li>
+<li>Unpack the PRADO release file using <i>unzip</i> on Linux or <i>winzip</i> on Windows. A directory named <i>prado</i> will be created under the working directory.</li>
+<li>Copy or upload everything under the <i>prado</i> directory to the DocumentRoot directory (or a subdirectory) of the Web server.</li>
+<li>Your installation of PRADO is done and you can start to play with the demo applications included in the PRADO release via URL <i>http://web-server-address/demos/</i>. This QuickStart Tutorial is one of such applications.</li>
+</ol>
+</p>
+<p>
+If you encounter any problems with the demo applications, please use the PRADO requirement checker script to check if your server configuration fullfils the conditions required by PRADO.
+</p>
+<p>
+The minimum requirement by PRADO is that the Web server support PHP 5. PRADO has been tested with Apache Web server on Windows and Linux. Highly possibly it may also run on other platforms with other Web servers, as long as PHP 5 is supported.
</p>
</com:TContent> \ No newline at end of file
diff --git a/demos/quickstart/protected/pages/config.xml b/demos/quickstart/protected/pages/config.xml
index 41d5999d..929b26e7 100644
--- a/demos/quickstart/protected/pages/config.xml
+++ b/demos/quickstart/protected/pages/config.xml
@@ -4,5 +4,7 @@
<paths>
<alias id="Pages" path="." />
</paths>
- <pages MasterClass="Pages.Layout" Theme="Simple" />
+ <pages MasterClass="Pages.Layout" Theme="Simple">
+ <page id="ViewSource" MasterClass="" />
+ </pages>
</configuration> \ No newline at end of file