summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/protected/pages/Requirements.page
diff options
context:
space:
mode:
authorxue <>2007-04-03 21:43:22 +0000
committerxue <>2007-04-03 21:43:22 +0000
commit51db38c9423a1d3bf476bb30054cf3288ee16c88 (patch)
tree370665b0eb19070334b73e73e4080239b1a5c055 /demos/blog-tutorial/protected/pages/Requirements.page
parent03dbe16b7762cc1a9e57df4e9e34bc04f46bb57f (diff)
Added blog-tutorial.
Diffstat (limited to 'demos/blog-tutorial/protected/pages/Requirements.page')
-rw-r--r--demos/blog-tutorial/protected/pages/Requirements.page38
1 files changed, 38 insertions, 0 deletions
diff --git a/demos/blog-tutorial/protected/pages/Requirements.page b/demos/blog-tutorial/protected/pages/Requirements.page
new file mode 100644
index 00000000..497eba90
--- /dev/null
+++ b/demos/blog-tutorial/protected/pages/Requirements.page
@@ -0,0 +1,38 @@
+<com:TContent ID="Main">
+
+<h1>Requirement Analysis</h1>
+
+<p>
+This page lists the requirements for the blog system that we are going to develop in this tutorial using PRADO. We are not including some popular blog features here (e.g. commenting, posts organizing, calendar, etc.), because we want to keep our tutorial short enough and we believe these features are easy to be added after you finish reading this tutorial.
+</p>
+
+<p>
+In general, the blog system should allow users to read blogs and authenticated users to publish blogs. It should separate presentation and logic, and it should support changing themes.
+</p>
+
+<h2>Post Management</h2>
+<ul>
+<li>The system shall allow listing posts by their creaing time in descending order with paging.</li>
+<li>The system shall allow viewing the detail of a selected post.</li>
+<li>The system shall allow creating a new post by an authenticated user.</li>
+<li>The system shall allow updating an existing post by its author or administrator.</li>
+<li>The system shall allow deleting an existing post by its author or administrator.</li>
+</ul>
+
+<h2>User Management</h2>
+<ul>
+<li>The system shall allow authenticating and authorizing users.</li>
+<li>The system shall allow the administrator to list all user accounts.</li>
+<li>The system shall allow the administrator to create a new user account.</li>
+<li>The system shall allow the administrator or the account holder to update an existing account.</li>
+<li>The system shall allow the administrator to delete a user account.</li>
+</ul>
+
+<h2>System Maintenance</h2>
+<ul>
+<li>The system shall provide a mechanism to collect users' feedback.</li>
+<li>The system shall be flexible enough to allow adding new portlets in future.</li>
+<li>The system shall provide ease of using a different theme which changes the styles of the UI elements.</li>
+</ul>
+
+</com:TContent> \ No newline at end of file