summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorxue <>2007-05-14 11:40:22 +0000
committerxue <>2007-05-14 11:40:22 +0000
commit82621f4f0a7e47314222fa3b21a0745425e1248b (patch)
tree9569f0c1aa7f6a4d52743c4f568bc5c2665d5067 /demos
parent7429863609d6c5708b4414d3619bdf152de2ea16 (diff)
moving unfinished files to dev branch.
Diffstat (limited to 'demos')
-rw-r--r--demos/activeblog/index.php22
-rw-r--r--demos/activeblog/protected/.htaccess1
-rw-r--r--demos/activeblog/protected/App_Controls/BlogException.php31
-rw-r--r--demos/activeblog/protected/App_Controls/BlogPage.php49
-rw-r--r--demos/activeblog/protected/App_Controls/messages.txt12
-rw-r--r--demos/activeblog/protected/App_Data/Settings.xml18
-rw-r--r--demos/activeblog/protected/App_Data/blog.dbbin19456 -> 0 bytes
-rw-r--r--demos/activeblog/protected/App_Layouts/MainLayout.php24
-rw-r--r--demos/activeblog/protected/App_Layouts/MainLayout.tpl28
-rw-r--r--demos/activeblog/protected/App_Modules/BlogDataModule.php633
-rw-r--r--demos/activeblog/protected/App_Modules/BlogErrorHandler.php46
-rw-r--r--demos/activeblog/protected/App_Modules/BlogUser.php60
-rw-r--r--demos/activeblog/protected/App_Modules/BlogUserManager.php73
-rw-r--r--demos/activeblog/protected/App_Modules/schema.sql76
-rw-r--r--demos/activeblog/protected/App_Pages/Home.page11
-rw-r--r--demos/activeblog/protected/App_Pages/Home.php27
-rw-r--r--demos/activeblog/protected/application.xml86
-rw-r--r--demos/activeblog/protected/urlmaps.xml4
-rw-r--r--demos/activeblog/themes/Default/style.css18
-rw-r--r--demos/providers/index.php20
-rw-r--r--demos/providers/protected/.htaccess1
-rw-r--r--demos/providers/protected/application.xml47
-rw-r--r--demos/providers/protected/pages/Home.page55
-rw-r--r--demos/providers/protected/pages/Home.php27
24 files changed, 0 insertions, 1369 deletions
diff --git a/demos/activeblog/index.php b/demos/activeblog/index.php
deleted file mode 100644
index c9808717..00000000
--- a/demos/activeblog/index.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-$frameworkPath=dirname(__FILE__).'/../../framework/prado.php';
-
-/** The directory checks may be removed if performance is required **/
-$basePath=dirname(__FILE__);
-$assetsPath=$basePath."/assets";
-$runtimePath=$basePath."/protected/runtime";
-
-if(!is_file($frameworkPath))
- die("Unable to find prado framework path $frameworkPath.");
-if(!is_writable($assetsPath))
- die("Please make sure that the directory $assetsPath is writable by Web server process.");
-if(!is_writable($runtimePath))
- die("Please make sure that the directory $runtimePath is writable by Web server process.");
-
-
-require_once($frameworkPath);
-
-$application=new TApplication;
-$application->run();
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/.htaccess b/demos/activeblog/protected/.htaccess
deleted file mode 100644
index 3418e55a..00000000
--- a/demos/activeblog/protected/.htaccess
+++ /dev/null
@@ -1 +0,0 @@
-deny from all \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Controls/BlogException.php b/demos/activeblog/protected/App_Controls/BlogException.php
deleted file mode 100644
index 2501fa49..00000000
--- a/demos/activeblog/protected/App_Controls/BlogException.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<?php
-/**
- * BlogException class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogException.php 1398 2006-09-08 19:31:03Z xue $
- */
-
-/**
- * BlogException class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogException extends THttpException
-{
- /**
- * @return string path to the error message file
- */
- protected function getErrorMessageFile()
- {
- return dirname(__FILE__).'/messages.txt';
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Controls/BlogPage.php b/demos/activeblog/protected/App_Controls/BlogPage.php
deleted file mode 100644
index 61f7492d..00000000
--- a/demos/activeblog/protected/App_Controls/BlogPage.php
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-/**
- * BlogPage class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogPage.php 1509 2006-11-25 20:51:43Z xue $
- */
-
-/**
- * BlogPage class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogPage extends TPage
-{
- public function onPreInit($param)
- {
- parent::onPreInit($param);
- // $this->setTheme($this->getApplication()->Parameters['ThemeName']);
- }
-
- public function getDataAccess()
- {
- return $this->getApplication()->getModule('data');
- }
-
- public function gotoDefaultPage()
- {
- $this->gotoPage($this->getService()->DefaultPage);
- }
-
- public function gotoPage($pagePath,$getParameters=null)
- {
- $this->getResponse()->redirect($this->getService()->constructUrl($pagePath,$getParameters,false));
- }
-
- public function reportError($errorCode)
- {
- $this->gotoPage('ErrorReport',array('id'=>$errorCode));
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Controls/messages.txt b/demos/activeblog/protected/App_Controls/messages.txt
deleted file mode 100644
index 2a18aac2..00000000
--- a/demos/activeblog/protected/App_Controls/messages.txt
+++ /dev/null
@@ -1,12 +0,0 @@
-blogdatamodule_dbconnect_failed = Unable to connect to database: {0}
-blogdatamodule_dbfile_invalid = BlogDataModule.DbFile='{0}' is invalid.
-blogdatamodule_createdatabase_failed = BlogDataModule failed to create database when executing SQL: {1}. Last SQL error is: {0}.
-blogdatamodule_query_failed = Failed to execute SQL: {1}. Last SQL error is: {0}.
-
-newuser_registration_disallowed = The Weblog system is running in single user mode and does not allow new user registration.
-profile_edit_disallowed = You are not allowed to modify user profile {0}.
-profile_id_invalid = Unable to retrieve user profile {0}.
-
-post_id_invalid = Unable to retrieve post {0}.
-post_edit_disallowed = You are not allowed to modify post {0}.
-post_view_disallowed = You are not allowed to read post {0}. \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Data/Settings.xml b/demos/activeblog/protected/App_Data/Settings.xml
deleted file mode 100644
index d8b3c92b..00000000
--- a/demos/activeblog/protected/App_Data/Settings.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<parameters>
- <parameter id="SiteTitle" value="My Blog" />
- <parameter id="SiteSubtitle" value="A Prado-driven weblog" />
- <parameter id="SiteOwner" value="Prado User" />
- <parameter id="AdminEmail" value="admin@example.com" />
- <parameter id="MultipleUser" value="false" />
- <parameter id="AccountApproval" value="false" />
- <parameter id="PostPerPage" value="6" />
- <parameter id="RecentComments" value="6" />
- <parameter id="PostApproval" value="false" />
- <parameter id="ThemeName" value="Default" />
- <parameter id="SiteOffline" value="False"/>
- <!-- Are we allowing signups -->
- <parameter id="AllowRegister" value="True"/>
- <!-- Email Controls -->
- <parameter id="DisableEmails" value="False"/>
-</parameters> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Data/blog.db b/demos/activeblog/protected/App_Data/blog.db
deleted file mode 100644
index ef3dbbfc..00000000
--- a/demos/activeblog/protected/App_Data/blog.db
+++ /dev/null
Binary files differ
diff --git a/demos/activeblog/protected/App_Layouts/MainLayout.php b/demos/activeblog/protected/App_Layouts/MainLayout.php
deleted file mode 100644
index e307aaed..00000000
--- a/demos/activeblog/protected/App_Layouts/MainLayout.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<?php
-/**
- * MainLayout class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: MainLayout.php 1398 2006-09-08 19:31:03Z xue $
- */
-
-/**
- * MainLayout class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class MainLayout extends TTemplateControl
-{
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Layouts/MainLayout.tpl b/demos/activeblog/protected/App_Layouts/MainLayout.tpl
deleted file mode 100644
index 63fa576d..00000000
--- a/demos/activeblog/protected/App_Layouts/MainLayout.tpl
+++ /dev/null
@@ -1,28 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
-
-<com:THead Title=<%$ SiteName %> >
-</com:THead>
-
-<body>
-<com:TForm>
-<div class="container">
- <div class="header"><h1>Header</h1></div>
- <div class="wrapper">
- <div class="content">
- <com:TContentPlaceHolder ID="Main" />
- </div>
- </div>
- <div class="navigation">
- <p><strong>2) Navigation here.</strong> long long fill filler very fill column column silly filler very filler fill fill filler text fill very silly fill text filler silly silly filler fill very make fill column text column very very column fill fill very silly column silly silly fill fill long filler </p>
- </div>
- <div class="extra">
- <p><strong>3) More stuff here.</strong> very text make long column make filler fill make column column silly filler text silly column fill silly fill column text filler make text silly filler make filler very silly make text very very text make long filler very make column make silly column fill silly column long make silly filler column filler silly long long column fill silly column very </p>
- </div>
- <div class="footer">
- <p>Copyright &copy; <%= date('Y') %> <%$ SiteOwner %>.<br/><%= Prado::poweredByPrado() %></p>
- </div>
-</div>
-</com:TForm>
-</body>
-</html> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Modules/BlogDataModule.php b/demos/activeblog/protected/App_Modules/BlogDataModule.php
deleted file mode 100644
index 5065d239..00000000
--- a/demos/activeblog/protected/App_Modules/BlogDataModule.php
+++ /dev/null
@@ -1,633 +0,0 @@
-<?php
-/**
- * BlogDataModule class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogDataModule.php 1398 2006-09-08 19:31:03Z xue $
- */
-
-/**
- * BlogDataModule class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogDataModule extends TModule
-{
- const DB_FILE_EXT='.db';
- const DEFAULT_DB_FILE='Application.App_Data.blog';
- private $_db=null;
- private $_dbFile=null;
-
- public function init($config)
- {
- $this->connectDatabase();
- }
-
- public function getDbFile()
- {
- if($this->_dbFile===null)
- $this->_dbFile=Prado::getPathOfNamespace(self::DEFAULT_DB_FILE,self::DB_FILE_EXT);
- return $this->_dbFile;
- }
-
- public function setDbFile($value)
- {
- if(($this->_dbFile=Prado::getPathOfNamespace($value,self::DB_FILE_EXT))===null)
- throw new BlogException(500,'blogdatamodule_dbfile_invalid',$value);
- }
-
- protected function createDatabase()
- {
- $schemaFile=dirname(__FILE__).'/schema.sql';
- $statements=explode(';',file_get_contents($schemaFile));
- foreach($statements as $statement)
- {
- if(trim($statement)!=='')
- {
- if(@sqlite_query($this->_db,$statement)===false)
- throw new BlogException(500,'blogdatamodule_createdatabase_failed',sqlite_error_string(sqlite_last_error($this->_db)),$statement);
- }
- }
- }
-
- protected function connectDatabase()
- {
- $dbFile=$this->getDbFile();
- $newDb=!is_file($dbFile);
- $error='';
-
- //create a connection and give it to the ActiveRecord manager.
- $dsn = 'sqlite2:'.$dbFile; //Postgres SQL
- $conn = new TDbConnection($dsn);
- TActiveRecordManager::getInstance()->setDbConnection($conn);
-
- if($newDb)
- $this->createDatabase();
- }
-
- protected function generateModifier($filter,$orderBy,$limit)
- {
- $modifier='';
- if($filter!=='')
- $modifier=' WHERE '.$filter;
- if($orderBy!=='')
- $modifier.=' ORDER BY '.$orderBy;
- if($limit!=='')
- $modifier.=' LIMIT '.$limit;
- return $modifier;
- }
-
- public function query($sql)
- {
- if(($result=@sqlite_query($this->_db,$sql))!==false)
- return $result;
- else
- throw new BlogException(500,'blogdatamodule_query_failed',sqlite_error_string(sqlite_last_error($this->_db)),$sql);
- }
-
- protected function populateUserRecord($row)
- {
- $userRecord=new UserRecord;
- $userRecord->ID=(integer)$row['id'];
- $userRecord->Name=$row['name'];
- $userRecord->FullName=$row['full_name'];
- $userRecord->Role=(integer)$row['role'];
- $userRecord->Password=$row['passwd'];
- $userRecord->VerifyCode=$row['vcode'];
- $userRecord->Email=$row['email'];
- $userRecord->CreateTime=(integer)$row['reg_time'];
- $userRecord->Status=(integer)$row['status'];
- $userRecord->Website=$row['website'];
- return $userRecord;
- }
-
- public function queryUsers($filter='',$orderBy='',$limit='')
- {
- if($filter!=='')
- $filter='WHERE '.$filter;
- $sql="SELECT * FROM tblUsers $filter $orderBy $limit";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $users=array();
- foreach($rows as $row)
- $users[]=$this->populateUserRecord($row);
- return $users;
- }
-
- public function queryUserCount($filter)
- {
- if($filter!=='')
- $filter='WHERE '.$filter;
- $sql="SELECT COUNT(id) AS user_count FROM tblUsers $filter";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $row['user_count'];
- else
- return 0;
- }
-
- public function queryUserByID($id)
- {
- $sql="SELECT * FROM tblUsers WHERE id=$id";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $this->populateUserRecord($row);
- else
- return null;
- }
-
- public function queryUserByName($name)
- {
- $name=sqlite_escape_string($name);
- $sql="SELECT * FROM tblUsers WHERE name='$name'";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $this->populateUserRecord($row);
- else
- return null;
- }
-
- public function insertUser($user)
- {
- $name=sqlite_escape_string($user->Name);
- $fullName=sqlite_escape_string($user->FullName);
- $passwd=sqlite_escape_string($user->Password);
- $email=sqlite_escape_string($user->Email);
- $website=sqlite_escape_string($user->Website);
- $createTime=time();
- $sql="INSERT INTO tblUsers ".
- "(name,full_name,role,passwd,email,reg_time,status,website) ".
- "VALUES ('$name','$fullName',{$user->Role},'$passwd','$email',$createTime,{$user->Status},'$website')";
- $this->query($sql);
- $user->ID=sqlite_last_insert_rowid($this->_db);
- }
-
- public function updateUser($user)
- {
- $name=sqlite_escape_string($user->Name);
- $fullName=sqlite_escape_string($user->FullName);
- $passwd=sqlite_escape_string($user->Password);
- $email=sqlite_escape_string($user->Email);
- $website=sqlite_escape_string($user->Website);
- $sql="UPDATE tblUsers SET
- name='$name',
- full_name='$fullName',
- role={$user->Role},
- passwd='$passwd',
- vcode='{$user->VerifyCode}',
- email='$email',
- status={$user->Status},
- website='$website'
- WHERE id={$user->ID}";
- $this->query($sql);
- }
-
- public function deleteUser($id)
- {
- $this->query("DELETE FROM tblUsers WHERE id=$id");
- }
-
- protected function populatePostRecord($row)
- {
- $postRecord=new PostRecord;
- $postRecord->ID=(integer)$row['id'];
- $postRecord->AuthorID=(integer)$row['author_id'];
- if($row['author_full_name']!=='')
- $postRecord->AuthorName=$row['author_full_name'];
- else
- $postRecord->AuthorName=$row['author_name'];
- $postRecord->CreateTime=(integer)$row['create_time'];
- $postRecord->ModifyTime=(integer)$row['modify_time'];
- $postRecord->Title=$row['title'];
- $postRecord->Content=$row['content'];
- $postRecord->Status=(integer)$row['status'];
- $postRecord->CommentCount=(integer)$row['comment_count'];
- return $postRecord;
- }
-
- public function queryPosts($postFilter,$categoryFilter,$orderBy,$limit)
- {
- $filter='';
- if($postFilter!=='')
- $filter.=" AND $postFilter";
- if($categoryFilter!=='')
- $filter.=" AND a.id IN (SELECT post_id AS id FROM tblPost2Category WHERE $categoryFilter)";
- $sql="SELECT a.id AS id,
- a.author_id AS author_id,
- b.name AS author_name,
- b.full_name AS author_full_name,
- a.create_time AS create_time,
- a.modify_time AS modify_time,
- a.title AS title,
- a.content AS content,
- a.status AS status,
- a.comment_count AS comment_count
- FROM tblPosts a, tblUsers b
- WHERE a.author_id=b.id $filter $orderBy $limit";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $posts=array();
- foreach($rows as $row)
- $posts[]=$this->populatePostRecord($row);
- return $posts;
- }
-
- public function queryPostCount($postFilter,$categoryFilter)
- {
- $filter='';
- if($postFilter!=='')
- $filter.=" AND $postFilter";
- if($categoryFilter!=='')
- $filter.=" AND a.id IN (SELECT post_id AS id FROM tblPost2Category WHERE $categoryFilter)";
- $sql="SELECT COUNT(a.id) AS post_count
- FROM tblPosts a, tblUsers b
- WHERE a.author_id=b.id $filter";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $row['post_count'];
- else
- return 0;
- }
-
- public function queryPostByID($id)
- {
- $sql="SELECT a.id AS id,
- a.author_id AS author_id,
- b.name AS author_name,
- b.full_name AS author_full_name,
- a.create_time AS create_time,
- a.modify_time AS modify_time,
- a.title AS title,
- a.content AS content,
- a.status AS status,
- a.comment_count AS comment_count
- FROM tblPosts a, tblUsers b
- WHERE a.id=$id AND a.author_id=b.id";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $this->populatePostRecord($row);
- else
- return null;
- }
-
- public function escapeString($string)
- {
- return sqlite_escape_string($string);
- }
-
- public function insertPost($post,$catIDs)
- {
- $title=sqlite_escape_string($post->Title);
- $content=sqlite_escape_string($post->Content);
- $sql="INSERT INTO tblPosts
- (author_id,create_time,modify_time,title,content,status)
- VALUES ({$post->AuthorID},{$post->CreateTime},{$post->ModifyTime},'$title','$content',{$post->Status})";
- $this->query($sql);
- $post->ID=sqlite_last_insert_rowid($this->_db);
- foreach($catIDs as $catID)
- $this->insertPostCategory($post->ID,$catID);
- }
-
- public function updatePost($post,$newCatIDs=null)
- {
- if($newCatIDs!==null)
- {
- $cats=$this->queryCategoriesByPostID($post->ID);
- $catIDs=array();
- foreach($cats as $cat)
- $catIDs[]=$cat->ID;
- $deleteIDs=array_diff($catIDs,$newCatIDs);
- foreach($deleteIDs as $id)
- $this->deletePostCategory($post->ID,$id);
- $insertIDs=array_diff($newCatIDs,$catIDs);
- foreach($insertIDs as $id)
- $this->insertPostCategory($post->ID,$id);
- }
-
- $title=sqlite_escape_string($post->Title);
- $content=sqlite_escape_string($post->Content);
- $sql="UPDATE tblPosts SET
- modify_time={$post->ModifyTime},
- title='$title',
- content='$content',
- status={$post->Status}
- WHERE id={$post->ID}";
- $this->query($sql);
- }
-
- public function deletePost($id)
- {
- $cats=$this->queryCategoriesByPostID($id);
- foreach($cats as $cat)
- $this->deletePostCategory($id,$cat->ID);
- $this->query("DELETE FROM tblComments WHERE post_id=$id");
- $this->query("DELETE FROM tblPosts WHERE id=$id");
- }
-
- protected function populateCommentRecord($row)
- {
- $commentRecord=new CommentRecord;
- $commentRecord->ID=(integer)$row['id'];
- $commentRecord->PostID=(integer)$row['post_id'];
- $commentRecord->AuthorName=$row['author_name'];
- $commentRecord->AuthorEmail=$row['author_email'];
- $commentRecord->AuthorWebsite=$row['author_website'];
- $commentRecord->AuthorIP=$row['author_ip'];
- $commentRecord->CreateTime=(integer)$row['create_time'];
- $commentRecord->Content=$row['content'];
- $commentRecord->Status=(integer)$row['status'];
- return $commentRecord;
- }
-
- public function queryComments($filter,$orderBy,$limit)
- {
- if($filter!=='')
- $filter='WHERE '.$filter;
- $sql="SELECT * FROM tblComments $filter $orderBy $limit";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $comments=array();
- foreach($rows as $row)
- $comments[]=$this->populateCommentRecord($row);
- return $comments;
- }
-
- public function queryCommentsByPostID($id)
- {
- $sql="SELECT * FROM tblComments WHERE post_id=$id ORDER BY create_time DESC";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $comments=array();
- foreach($rows as $row)
- $comments[]=$this->populateCommentRecord($row);
- return $comments;
- }
-
- public function insertComment($comment)
- {
- $authorName=sqlite_escape_string($comment->AuthorName);
- $authorEmail=sqlite_escape_string($comment->AuthorEmail);
- $authorWebsite=sqlite_escape_string($comment->AuthorWebsite);
- $content=sqlite_escape_string($comment->Content);
- $sql="INSERT INTO tblComments
- (post_id,author_name,author_email,author_website,author_ip,create_time,status,content)
- VALUES ({$comment->PostID},'$authorName','$authorEmail','$authorWebsite','{$comment->AuthorIP}',{$comment->CreateTime},{$comment->Status},'$content')";
- $this->query($sql);
- $comment->ID=sqlite_last_insert_rowid($this->_db);
- $this->query("UPDATE tblPosts SET comment_count=comment_count+1 WHERE id={$comment->PostID}");
- }
-
- public function updateComment($comment)
- {
- $authorName=sqlite_escape_string($comment->AuthorName);
- $authorEmail=sqlite_escape_string($comment->AuthorEmail);
- $content=sqlite_escape_string($comment->Content);
- $sql="UPDATE tblComments SET status={$comment->Status} WHERE id={$comment->ID}";
- $this->query($sql);
- }
-
- public function deleteComment($id)
- {
- $result=$this->query("SELECT post_id FROM tblComments WHERE id=$id");
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- {
- $postID=$row['post_id'];
- $this->query("DELETE FROM tblComments WHERE id=$id");
- $this->query("UPDATE tblPosts SET comment_count=comment_count-1 WHERE id=$postID");
- }
- }
-
- protected function populateCategoryRecord($row)
- {
- $catRecord=new CategoryRecord;
- $catRecord->ID=(integer)$row['id'];
- $catRecord->Name=$row['name'];
- $catRecord->Description=$row['description'];
- $catRecord->PostCount=$row['post_count'];
- return $catRecord;
- }
-
- public function queryCategories()
- {
- $sql="SELECT * FROM tblCategories ORDER BY name ASC";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $cats=array();
- foreach($rows as $row)
- $cats[]=$this->populateCategoryRecord($row);
- return $cats;
- }
-
- public function queryCategoriesByPostID($postID)
- {
- $sql="SELECT a.id AS id,
- a.name AS name,
- a.description AS description,
- a.post_count AS post_count
- FROM tblCategories a, tblPost2Category b
- WHERE a.id=b.category_id AND b.post_id=$postID ORDER BY a.name";
- $result=$this->query($sql);
- $rows=sqlite_fetch_all($result,SQLITE_ASSOC);
- $cats=array();
- foreach($rows as $row)
- $cats[]=$this->populateCategoryRecord($row);
- return $cats;
- }
-
- public function queryCategoryByID($id)
- {
- $sql="SELECT * FROM tblCategories WHERE id=$id";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $this->populateCategoryRecord($row);
- else
- return null;
- }
-
- public function queryCategoryByName($name)
- {
- $name=sqlite_escape_string($name);
- $sql="SELECT * FROM tblCategories WHERE name='$name'";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $this->populateCategoryRecord($row);
- else
- return null;
- }
-
- public function insertCategory($category)
- {
- $name=sqlite_escape_string($category->Name);
- $description=sqlite_escape_string($category->Description);
- $sql="INSERT INTO tblCategories
- (name,description)
- VALUES ('$name','$description')";
- $this->query($sql);
- $category->ID=sqlite_last_insert_rowid($this->_db);
- }
-
- public function updateCategory($category)
- {
- $name=sqlite_escape_string($category->Name);
- $description=sqlite_escape_string($category->Description);
- $sql="UPDATE tblCategories SET name='$name', description='$description', post_count={$category->PostCount} WHERE id={$category->ID}";
- $this->query($sql);
- }
-
- public function deleteCategory($id)
- {
- $sql="DELETE FROM tblPost2Category WHERE category_id=$id";
- $this->query($sql);
- $sql="DELETE FROM tblCategories WHERE id=$id";
- $this->query($sql);
- }
-
- public function insertPostCategory($postID,$categoryID)
- {
- $sql="INSERT INTO tblPost2Category (post_id, category_id) VALUES ($postID, $categoryID)";
- $this->query($sql);
- $sql="UPDATE tblCategories SET post_count=post_count+1 WHERE id=$categoryID";
- $this->query($sql);
- }
-
- public function deletePostCategory($postID,$categoryID)
- {
- $sql="DELETE FROM tblPost2Category WHERE post_id=$postID AND category_id=$categoryID";
- if($this->query($sql)>0)
- {
- $sql="UPDATE tblCategories SET post_count=post_count-1 WHERE id=$categoryID";
- $this->query($sql);
- }
- }
-
- public function queryEarliestPostTime()
- {
- $sql="SELECT MIN(create_time) AS create_time FROM tblPosts";
- $result=$this->query($sql);
- if(($row=sqlite_fetch_array($result,SQLITE_ASSOC))!==false)
- return $row['create_time'];
- else
- return time();
- }
-}
-
-class UserRecord extends TActiveRecord
-{
- const ROLE_USER=0;
- const ROLE_ADMIN=1;
- const STATUS_NORMAL=0;
- const STATUS_DISABLED=1;
- const STATUS_PENDING=2;
- public $id;
- public $name;
- public $full_name;
- public $role;
- public $passwd;
- public $vcode;
- public $email;
- public $reg_time;
- public $status;
- public $website;
-
- public static $_tablename='tblUsers'; //table name
-
- /**
- * @return TActiveRecord active record finder instance
- */
- public static function finder()
- {
- return self::getRecordFinder('UserRecord');
- }
-}
-
-class PostRecord extends TActiveRecord
-{
- const STATUS_PUBLISHED=0;
- const STATUS_DRAFT=1;
- const STATUS_PENDING=2;
- const STATUS_STICKY=3;
- public $id;
- public $author_id;
- public $author_name;
- public $create_time;
- public $modify_time;
- public $title;
- public $content;
- public $status;
- public $comment_count;
-
- public static $_tablename='tblPosts'; //table name
-
- /**
- * @return TActiveRecord active record finder instance
- */
- public static function finder()
- {
- return self::getRecordFinder('PostRecord');
- }
-}
-
-class CommentRecord extends TActiveRecord
-{
- public $id;
- public $post_id;
- public $author_name;
- public $author_email;
- public $author_website;
- public $author_ip;
- public $create_time;
- public $status;
- public $content;
-
- public static $_tablename='tblComments'; //table name
-
- /**
- * @return TActiveRecord active record finder instance
- */
- public static function finder()
- {
- return self::getRecordFinder('CommentRecord');
- }
-}
-
-class CategoryRecord extends TActiveRecord
-{
- public $id;
- public $name;
- public $description;
- public $post_count;
-
- public static $_tablename='tblCategories'; //table name
-
- /**
- * @return TActiveRecord active record finder instance
- */
- public static function finder()
- {
- return self::getRecordFinder('CategoryRecord');
- }
-}
-
-class Post2CategoryRecord extends TActiveRecord
-{
- public $post_id;
- public $category_id;
-
- public static $_tablename='tblPost2Category'; //table name
-
- /**
- * @return TActiveRecord active record finder instance
- */
- public static function finder()
- {
- return self::getRecordFinder('Post2CategoryRecord');
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Modules/BlogErrorHandler.php b/demos/activeblog/protected/App_Modules/BlogErrorHandler.php
deleted file mode 100644
index dc8985d8..00000000
--- a/demos/activeblog/protected/App_Modules/BlogErrorHandler.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-/**
- * BlogErrorHandler class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogErrorHandler.php 1509 2006-11-25 20:51:43Z xue $
- */
-
-Prado::using('System.Exceptions.TErrorHandler');
-Prado::using('Application.Common.BlogException');
-
-/**
- * BlogErrorHandler class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogErrorHandler extends TErrorHandler
-{
- /**
- * Displays error to the client user.
- * THttpException and errors happened when the application is in <b>Debug</b>
- * mode will be displayed to the client user.
- * @param integer response status code
- * @param Exception exception instance
- */
- protected function handleExternalError($statusCode,$exception)
- {
- if($exception instanceof BlogException)
- {
- $message=$exception->getMessage();
- Prado::log($message,TLogger::ERROR,'BlogApplication');
- $message=urldecode($this->getApplication()->getSecurityManager()->hashData($message));
- $this->Response->redirect($this->Service->constructUrl('ErrorReport',array('msg'=>$message),false));
- }
- else
- parent::handleExternalError($statusCode,$exception);
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Modules/BlogUser.php b/demos/activeblog/protected/App_Modules/BlogUser.php
deleted file mode 100644
index 042ada86..00000000
--- a/demos/activeblog/protected/App_Modules/BlogUser.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?php
-/**
- * BlogUser class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogUser.php 1398 2006-09-08 19:31:03Z xue $
- */
-
-Prado::using('System.Security.TUser');
-
-/**
- * BlogUser class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogUser extends TUser
-{
- private $_id;
-
- public function getID()
- {
- return $this->_id;
- }
-
- public function setID($value)
- {
- $this->_id=$value;
- }
-
- public function getIsAdmin()
- {
- return $this->isInRole('admin');
- }
-
- public function saveToString()
- {
- $a=array($this->_id,parent::saveToString());
- return serialize($a);
- }
-
- public function loadFromString($data)
- {
- if(!empty($data))
- {
- list($id,$str)=unserialize($data);
- $this->_id=$id;
- return parent::loadFromString($str);
- }
- else
- return $this;
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Modules/BlogUserManager.php b/demos/activeblog/protected/App_Modules/BlogUserManager.php
deleted file mode 100644
index 370966ef..00000000
--- a/demos/activeblog/protected/App_Modules/BlogUserManager.php
+++ /dev/null
@@ -1,73 +0,0 @@
-<?php
-/**
- * BlogUserManager class file
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @version $Id: BlogUserManager.php 1398 2006-09-08 19:31:03Z xue $
- */
-
-Prado::using('System.Security.IUserManager');
-Prado::using('Application.Common.BlogUser');
-
-/**
- * BlogUserManager class
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2006 PradoSoft
- * @license http://www.pradosoft.com/license/
- */
-class BlogUserManager extends TModule implements IUserManager
-{
- public function getGuestName()
- {
- return 'Guest';
- }
-
- /**
- * Returns a user instance given the user name.
- * @param string user name, null if it is a guest.
- * @return TUser the user instance, null if the specified username is not in the user database.
- */
- public function getUser($username=null)
- {
- if($username===null)
- return new BlogUser($this);
- else
- {
- $username=strtolower($username);
- $db=$this->Application->getModule('data');
- if(($userRecord=$db->queryUserByName($username))!==null)
- {
- $user=new BlogUser($this);
- $user->setID($userRecord->ID);
- $user->setName($username);
- $user->setIsGuest(false);
- $user->setRoles($userRecord->Role===UserRecord::ROLE_USER?'user':'admin');
- return $user;
- }
- else
- return null;
- }
- }
-
- /**
- * Validates if the username and password are correct.
- * @param string user name
- * @param string password
- * @return boolean true if validation is successful, false otherwise.
- */
- public function validateUser($username,$password)
- {
- $db=$this->Application->getModule('data');
- if(($userRecord=$db->queryUserByName($username))!==null)
- return $userRecord->Password===md5($password) && $userRecord->Status===UserRecord::STATUS_NORMAL;
- else
- return false;
- }
-}
-
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Modules/schema.sql b/demos/activeblog/protected/App_Modules/schema.sql
deleted file mode 100644
index 9c111f0c..00000000
--- a/demos/activeblog/protected/App_Modules/schema.sql
+++ /dev/null
@@ -1,76 +0,0 @@
-CREATE TABLE tblUsers (
- id INTEGER NOT NULL PRIMARY KEY,
- name VARCHAR(128) NOT NULL UNIQUE,
- full_name VARCHAR(128) DEFAULT '',
- role INTEGER NOT NULL DEFAULT 0, /* 0: user, 1: admin */
- passwd VARCHAR(128) NOT NULL,
- vcode VARCHAR(128) DEFAULT '',
- email VARCHAR(128) NOT NULL,
- reg_time INTEGER NOT NULL,
- status INTEGER NOT NULL DEFAULT 0, /* 0: normal, 1: disabled, 2: pending approval */
- website VARCHAR(128) DEFAULT ''
-);
-
-CREATE TABLE tblPosts (
- id INTEGER NOT NULL PRIMARY KEY,
- author_id INTEGER NOT NULL,
- create_time INTEGER NOT NULL,
- modify_time INTEGER DEFAULT 0,
- title VARCHAR(256) NOT NULL,
- content TEXT NOT NULL,
- status INTEGER NOT NULL DEFAULT 0, /* 0: published, 1: draft, 2: pending approval */
- comment_count INTEGER NOT NULL DEFAULT 0
-);
-
-CREATE TABLE tblComments (
- id INTEGER NOT NULL PRIMARY KEY,
- post_id INTEGER NOT NULL,
- author_name VARCHAR(64) NOT NULL,
- author_email VARCHAR(128) NOT NULL,
- author_website VARCHAR(128) DEFAULT '',
- author_ip CHAR(16) NOT NULL,
- create_time INTEGER NOT NULL,
- status INTEGER NOT NULL DEFAULT 0, /* 0: published, 1: pending approval */
- content TEXT NOT NULL
-);
-
-CREATE TABLE tblCategories (
- id INTEGER NOT NULL PRIMARY KEY,
- name VARCHAR(128) NOT NULL UNIQUE,
- description TEXT DEFAULT '',
- post_count INTEGER NOT NULL DEFAULT 0
-);
-
-CREATE TABLE tblAttachments (
- id VARCHAR(128) NOT NULL PRIMARY KEY,
- post_id INTEGER NOT NULL,
- create_time INTEGER NOT NULL,
- file_name VARCHAR(128) NOT NULL,
- file_size INTEGER NOT NULL,
- mime_type VARCHAR(32) NOT NULL DEFAULT 'text/html',
- download_count INTEGER NOT NULL DEFAULT 0
-);
-
-CREATE TABLE tblPost2Category (
- post_id INTEGER NOT NULL,
- category_id INTEGER NOT NULL,
- PRIMARY KEY (post_id, category_id)
-);
-
-INSERT INTO tblUsers (id,name,full_name,role,status,passwd,email,reg_time,website)
- VALUES (1,'admin','Prado User',1,0,'4d688da592969d0a56b5accec3ce8554','admin@example.com',1148819681,'http://www.pradosoft.com');
-
-INSERT INTO tblPosts (id,author_id,create_time,title,content,status)
- VALUES (1,1,1148819691,'Welcome to Prado Weblog','Congratulations! You have successfully installed Prado Blog -- a PRADO-driven weblog system. A default administrator account has been created. Please login with <b>admin/prado</b> and update your password as soon as possible.',0);
-
-INSERT INTO tblCategories (name,description,post_count)
- VALUES ('Miscellaneous','This category holds posts on any topic.',1);
-
-INSERT INTO tblCategories (name,description,post_count)
- VALUES ('PRADO','Topics related with the PRADO framework.',0);
-
-INSERT INTO tblCategories (name,description,post_count)
- VALUES ('PHP','Topics related with PHP.',0);
-
-INSERT INTO tblPost2Category (post_id,category_id)
- VALUES (1,1);
diff --git a/demos/activeblog/protected/App_Pages/Home.page b/demos/activeblog/protected/App_Pages/Home.page
deleted file mode 100644
index a750c44c..00000000
--- a/demos/activeblog/protected/App_Pages/Home.page
+++ /dev/null
@@ -1,11 +0,0 @@
-<com:TContent ID="Main">
- <h1>Welcome to Prado!</h1>
-
- <ul>
- <li>Login Module</li>
- <li>Search Module</li>
- <li>Rss Feed Service</li>
- <li>Active Controls</li>
- <li>Active Record interface</li>
- </ul>
-</com:TContent> \ No newline at end of file
diff --git a/demos/activeblog/protected/App_Pages/Home.php b/demos/activeblog/protected/App_Pages/Home.php
deleted file mode 100644
index 0012e073..00000000
--- a/demos/activeblog/protected/App_Pages/Home.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-class Home extends BlogPage
-{
- public function onLoad($param)
- {
- parent::onLoad($param);
-
- // sqlite_open(dirname(__FILE__).'/../App_Data/blog.db');
-
- // $finder = UserRecord::finder();
- // $user = $finder->findByPk(1);
- // echo TVarDumper::dump($user,10,true);
- //
- // $finder = PostRecord::finder();
- // $post = $finder->findByPk(1);
- // echo TVarDumper::dump($post,10,true);
- //
- // $finder = CategoryRecord::finder();
- // $categories = $finder->findAll();
- // echo TVarDumper::dump($categories,10,true);
- //
- // $finder = Post2CategoryRecord::finder();
- // $post2category = $finder->findByPk(1,1);
- // echo TVarDumper::dump($post2category,10,true);
- }
-}
-?> \ No newline at end of file
diff --git a/demos/activeblog/protected/application.xml b/demos/activeblog/protected/application.xml
deleted file mode 100644
index ce3906d5..00000000
--- a/demos/activeblog/protected/application.xml
+++ /dev/null
@@ -1,86 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<!--<application id="activeblog" Mode="Off">-->
-<application id="activeblog" Mode="Debug">
-<!--<application id="activeblog" Mode="Normal">-->
-<!--<application id="activeblog" Mode="Performance">-->
- <paths>
- <!-- System Namespaces -->
- <using namespace="System.Util.TVarDumper" />
- <using namespace="System.Web.UI.ActiveControls.*" />
- <using namespace="System.Data.ActiveRecord.*" />
-
- <!-- Application Namespaces -->
- <using namespace="Application.App_Controls.BlogException"/>
- <using namespace="Application.App_Controls.*"/>
- <using namespace="Application.App_Modules.*"/>
- <using namespace="Application.App_Portlets.*"/>
- <using namespace="Application.App_Services.*"/>
- </paths>
-
- <module class="System.Util.TParameterModule" ParameterFile="Application.Data.Settings" />
-
- <!-- modules configured and loaded for all services -->
- <modules>
- <!-- use TUrlMapping to map URL patterns to particular requests -->
- <module id="friendly-url" class="System.Web.TUrlMapping" ConfigFile="Application.urlmaps"/>
- <module
- id="request"
- class="System.Web.THttpRequest"
- UrlFormat="Path"
- EnableCookieValidation="True"
- UrlManager="friendly-url"/>
-
- <module id="ErrorHandler" class="Application.App_Modules.BlogErrorHandler" />
-
- <!-- Custom Session Module -->
- <module
- id="session"
- class="System.Web.THttpSession"
- AutoStart="True"
- UseCustomStorage="True" />
-
- <!-- user manager module -->
-
- <!-- auth manager module -->
-
- <!-- Modules for caching -->
-<!-- <module id="SqliteCache" PrimaryCache="True" class="System.Caching.TSqliteCache"/>-->
-
- </modules>
-
- <services>
- <!-- Our main page service -->
- <service id="page" class="System.Web.Services.TPageService" BasePath="Application.App_Pages">
- <modules>
- <!-- Log module -->
- <module id="log" class="System.Util.TLogRouter">
-<!-- <route class="TBrowserLogRoute"/>-->
-<!-- <route class="TBrowserLogRoute" Categories="System.Web.UI.TPage"/>-->
- <route
- class="TFileLogRoute"
- LogFile="System.log"
- Categories="System"
- Levels="Notice,Warning,Error,Alert,Fatal"/>
- <route
- class="TFileLogRoute"
- LogFile="Application.log"
- Categories="Application"
- Levels="Info,Notice,Warning,Error,Alert,Fatal"/>
- <route
- class="TFileLogRoute"
- LogFile="BlogApplication.log"
- Categories="BlogApplication" />
- </module>
-
- <!-- Theme manager module -->
- <module id="themes" class="System.Web.UI.TThemeManager" />
-
- <!-- Data Module -->
- <module id="data" class="Application.App_Modules.BlogDataModule" />
- </modules>
-
- <pages MasterClass="Application.App_Layouts.MainLayout" Theme="Default" />
- </service>
- </services>
-</application> \ No newline at end of file
diff --git a/demos/activeblog/protected/urlmaps.xml b/demos/activeblog/protected/urlmaps.xml
deleted file mode 100644
index e0352e88..00000000
--- a/demos/activeblog/protected/urlmaps.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<urls>
- <url CaseSensitive="False" ServiceParameter="Home" pattern="Home/?"/>
-</urls>
diff --git a/demos/activeblog/themes/Default/style.css b/demos/activeblog/themes/Default/style.css
deleted file mode 100644
index be98cb9a..00000000
--- a/demos/activeblog/themes/Default/style.css
+++ /dev/null
@@ -1,18 +0,0 @@
-html,body{margin:0;padding:0}
-body{font: 76% arial,sans-serif;text-align:center}
-p{margin:0 10px 10px}
-a{display:block;color: #981793;padding:10px}
-div.header h1{height:80px;line-height:80px;margin:0;
- padding-left:10px;background: #EEE;color: #79B30B}
-div.container{text-align:left}
-div.content p{line-height:1.4}
-div.navigation{background:#B9CAFF}
-div.extra{background:#FF8539}
-div.footer{background: #333;color: #FFF}
-div.footer p{margin:0;padding:5px 10px}
-
-div.container{width:700px;margin:0 auto}
-div.content{float:left;width:500px}
-div.navigation{float:right;width:200px}
-div.extra{float:right;clear:right;width:200px}
-div.footer{clear:both;width:100%} \ No newline at end of file
diff --git a/demos/providers/index.php b/demos/providers/index.php
deleted file mode 100644
index 59c29c50..00000000
--- a/demos/providers/index.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-
-$basePath=dirname(__FILE__);
-$frameworkPath=dirname(__FILE__).'/../../framework/prado.php';
-$assetsPath=$basePath."/assets";
-$runtimePath=$basePath."/protected/runtime";
-
-if(!is_file($frameworkPath))
- die("Unable to find prado framework path $frameworkPath.");
-if(!is_writable($assetsPath))
- die("Please make sure that the directory $assetsPath is writable by Web server process.");
-if(!is_writable($runtimePath))
- die("Please make sure that the directory $runtimePath is writable by Web server process.");
-
-require_once($frameworkPath);
-
-$application=new TApplication;
-$application->run();
-
-?> \ No newline at end of file
diff --git a/demos/providers/protected/.htaccess b/demos/providers/protected/.htaccess
deleted file mode 100644
index 3418e55a..00000000
--- a/demos/providers/protected/.htaccess
+++ /dev/null
@@ -1 +0,0 @@
-deny from all \ No newline at end of file
diff --git a/demos/providers/protected/application.xml b/demos/providers/protected/application.xml
deleted file mode 100644
index 4763b2a6..00000000
--- a/demos/providers/protected/application.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-
-<application id="Providers" mode="Debug">
-
- <modules>
- <module id="FormsAuthentication"
- class="System.Web.Security.TFormsAuthenticationModule"
- defaultProvider="MembershipProvider"/>
-
- <module id="MembershipProvider"
- class="System.Configuration.TProtectedConfiguration"
- defaultProvider="SqlMembershipProvider" >
- <provider
- id="SqlMembershipProvider"
- Description="Our SQL Membership provider"
- class="System.Web.Security.TSqlMembershipProvider"
- ConnectionStringName="SqlMembershipProvider"
- Enabled="true"
- EnablePasswordReset="True"
- EnablePasswordRetrieval="True"
- MaxInvalidPasswordAttempts="5"
- MinRequiredNonAlphanumericCharacters="5"
- MinRequiredPasswordLength="5"
- PasswordAttemptWindow="5"
- PasswordStrengthRegularExpression=""
- RequiresQuestionAndAnswer="True"
- RequiresUniqueEmail="True"/>
- </module>
-
- <module id="RoleProvider"
- class="System.Configuration.TProtectedConfiguration"
- defaultProvider="SqlRoleProvider">
- <provider
- id="SqlRoleProvider"
- class="System.Web.Security.TSqlRoleProvider"
- ConnectionStringName="SqlRoleProvider"
- ApplicationName="SampleApplication"
- Enabled="true"
- CacheRolesInCookie="True"
- CookieName="PRADO"
- CookieTimeout="30"
- CookiePath="/"
- CookieRequireSSL="False"
- CookieSlidingExpiration="True"/>
- </module>
- </modules>
-</application> \ No newline at end of file
diff --git a/demos/providers/protected/pages/Home.page b/demos/providers/protected/pages/Home.page
deleted file mode 100644
index 5fb47aa3..00000000
--- a/demos/providers/protected/pages/Home.page
+++ /dev/null
@@ -1,55 +0,0 @@
-<h1>Provider Demo</h1>
-<com:TForm>
-<fieldset>
-<legend>Vertical - TextOnLeft</legend>
- <com:TValidationSummary
- HeaderText="Login Failed Because:"
- Display="None"
- ValidationGroup="LoginCtrlVerticalTextOnLeft"/>
- <com:TLogin
- ID="LoginCtrlVerticalTextOnLeft"
- Orientation="Vertical"
- TextLayout="TextOnLeft"
- MembershipProvider="SqlMembershipProvider"/>
-</fieldset>
-
-<fieldset>
-<legend>Vertical - TextOnTop</legend>
- <com:TValidationSummary
- HeaderText="Login Failed Because:"
- Display="None"
- ValidationGroup="LoginCtrlVerticalTextOnTop"/>
- <com:TLogin
- ID="LoginCtrlVerticalTextOnTop"
- Orientation="Vertical"
- TextLayout="TextOnTop"
- MembershipProvider="SqlMembershipProvider"/>
-</fieldset>
-
-<fieldset>
-<legend>Horizontal - TextOnLeft</legend>
- <com:TValidationSummary
- HeaderText="Login Failed Because:"
- Display="None"
- ValidationGroup="LoginCtrlHorizontalTextOnLeft"/>
- <com:TLogin
- ID="LoginCtrlHorizontalTextOnLeft"
- Orientation="Horizontal"
- TextLayout="TextOnLeft"
- MembershipProvider="SqlMembershipProvider"/>
-</fieldset>
-
-<fieldset>
-<legend>Horizontal - TextOnTop</legend>
- <com:TValidationSummary
- HeaderText="Login Failed Because:"
- Display="None"
- ValidationGroup="LoginCtrlHorizontalTextOnTop"/>
- <com:TLogin
- ID="LoginCtrlHorizontalTextOnTop"
- Orientation="Horizontal"
- TextLayout="TextOnTop"
- MembershipProvider="SqlMembershipProvider"/>
-</fieldset>
-
-</com:TForm> \ No newline at end of file
diff --git a/demos/providers/protected/pages/Home.php b/demos/providers/protected/pages/Home.php
deleted file mode 100644
index 0c6320e4..00000000
--- a/demos/providers/protected/pages/Home.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-class Home extends TPage
-{
- public function OnLoad($param)
- {
- Prado::using('System.Util.TVarDumper');
- Prado::using('System.Web.Security.TSqlMembershipProvider');
- Prado::using('System.Configuration.TProtectedConfiguration');
-
- // Access by provider id
- // $MembershipProvider = $this->Application->getModule('MembershipProvider')->getProvider('SqlMembershipProvider');
-
-
- /* @VAR $MembershipProvider TSqlMembershipProvider */
- // $MembershipProvider = $this->Application->getModule('MembershipProvider')->Provider;
- // echo TVarDumper::dump($MembershipProvider,10,true);
-
- /* @VAR $RoleProvider TSqlRoleProvider */
- // $RoleProvider = $this->Application->getModule('RoleProvider')->Provider;
- // echo TVarDumper::dump($RoleProvider,10,true);
-
- /* @VAR $FormsAuthentication TFormsAuthenticationModule */
- $FormsAuthentication = $this->Application->getModule('FormsAuthentication');
- // echo TVarDumper::dump($FormsAuthentication,10,true);
- }
-}
-?> \ No newline at end of file