summaryrefslogtreecommitdiff
path: root/demos/northwind-db
diff options
context:
space:
mode:
authorwei <>2007-05-09 08:35:52 +0000
committerwei <>2007-05-09 08:35:52 +0000
commit3261f4dcadf1e7aa45446153f654b20530c950b9 (patch)
tree1f34edf5af76c1ec41c5eeb8d6a7d465e5cbbef0 /demos/northwind-db
parenta49bb746445974a692cbc00f32dd167cabaaf030 (diff)
Update northwind db
Diffstat (limited to 'demos/northwind-db')
-rw-r--r--demos/northwind-db/protected/pages/Home.page17
-rw-r--r--demos/northwind-db/protected/pages/NorthwindCrud.page10
-rw-r--r--demos/northwind-db/protected/pages/NorthwindCrud.php (renamed from demos/northwind-db/protected/pages/Home.php)4
-rw-r--r--demos/northwind-db/protected/pages/northwind.gifbin25177 -> 36713 bytes
4 files changed, 21 insertions, 10 deletions
diff --git a/demos/northwind-db/protected/pages/Home.page b/demos/northwind-db/protected/pages/Home.page
index e2c3668e..ba88bb43 100644
--- a/demos/northwind-db/protected/pages/Home.page
+++ b/demos/northwind-db/protected/pages/Home.page
@@ -1,12 +1,13 @@
<html>
-<com:THead Title="Welcome to Prado" />
+<com:THead Title="Northwind Database Sample" />
<body>
-<h1>Welcome to PRADO!</h1>
-<com:TForm>
-
- <com:TDropDownList ID="class_list" AutoPostBack="true"/>
- <com:TScaffoldView ID="scaffold1" RecordClass="<%= $this->class_list->selectedItem->Text %>" />
-
-</com:TForm>
+<h1>Northwind Database Sample</h1>
+<p>
+The Northwind Traders sample database contains the sales data for a fictitious
+company called Northwind Traders, which imports and exports specialty foods from around the world.
+The database contains information about customers, suppliers, products, orders and employees (as well as a few other bits of miscellaneous information).
+<a href="?page=NorthwindCrud">View database</a>
+</p>
+<img src=<%~ northwind.gif %> />
</body>
</html> \ No newline at end of file
diff --git a/demos/northwind-db/protected/pages/NorthwindCrud.page b/demos/northwind-db/protected/pages/NorthwindCrud.page
new file mode 100644
index 00000000..34d8ecd0
--- /dev/null
+++ b/demos/northwind-db/protected/pages/NorthwindCrud.page
@@ -0,0 +1,10 @@
+<html>
+<com:THead Title="Northwind Database" />
+<body>
+<h1>Northwind Database</h1>
+<com:TForm>
+ <com:TDropDownList ID="class_list" AutoPostBack="true"/>
+ <com:TScaffoldView ID="scaffold1" RecordClass="<%= $this->class_list->selectedItem->Text %>" />
+</com:TForm>
+</body>
+</html> \ No newline at end of file
diff --git a/demos/northwind-db/protected/pages/Home.php b/demos/northwind-db/protected/pages/NorthwindCrud.php
index 06035069..57694caa 100644
--- a/demos/northwind-db/protected/pages/Home.php
+++ b/demos/northwind-db/protected/pages/NorthwindCrud.php
@@ -1,6 +1,6 @@
<?php
-class Home extends TPage
+class NorthwindCrud extends TPage
{
function onInit($param)
{
@@ -17,7 +17,7 @@ class Home extends TPage
{
if($entry[0]==='.')
continue;
- else if(is_file($directory.'/'.$entry))
+ else if(is_file($directory.'/'.$entry) && strpos($entry,'.php'))
$list[] = str_replace('.php', '', $entry);
}
closedir($folder);
diff --git a/demos/northwind-db/protected/pages/northwind.gif b/demos/northwind-db/protected/pages/northwind.gif
index 34e1f2ed..acbacaea 100644
--- a/demos/northwind-db/protected/pages/northwind.gif
+++ b/demos/northwind-db/protected/pages/northwind.gif
Binary files differ