From fd1c45c54585b020ef528586599a1fe56e9ee1f7 Mon Sep 17 00:00:00 2001
From: xue <>
Date: Tue, 30 May 2006 17:30:40 +0000
Subject: Added recent comments portlet.
---
.gitattributes | 2 ++
HISTORY | 2 +-
demos/blog/protected/Common/BlogDataModule.php | 15 ++++++++-
demos/blog/protected/Common/schema.sql | 6 ++++
demos/blog/protected/Data/Settings.xml | 1 +
demos/blog/protected/Layouts/MainLayout.tpl | 2 ++
demos/blog/protected/Pages/Admin/ConfigMan.page | 10 ++++++
demos/blog/protected/Pages/Admin/ConfigMan.php | 2 ++
demos/blog/protected/Pages/Posts/ViewPost.page | 1 +
demos/blog/protected/Portlets/CommentPortlet.php | 39 ++++++++++++++++++++++++
demos/blog/protected/Portlets/CommentPortlet.tpl | 15 +++++++++
11 files changed, 93 insertions(+), 2 deletions(-)
create mode 100644 demos/blog/protected/Portlets/CommentPortlet.php
create mode 100644 demos/blog/protected/Portlets/CommentPortlet.tpl
diff --git a/.gitattributes b/.gitattributes
index 089a43be..8bc12480 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -78,6 +78,8 @@ demos/blog/protected/Portlets/ArchivePortlet.php -text
demos/blog/protected/Portlets/ArchivePortlet.tpl -text
demos/blog/protected/Portlets/CategoryPortlet.php -text
demos/blog/protected/Portlets/CategoryPortlet.tpl -text
+demos/blog/protected/Portlets/CommentPortlet.php -text
+demos/blog/protected/Portlets/CommentPortlet.tpl -text
demos/blog/protected/Portlets/LoginPortlet.php -text
demos/blog/protected/Portlets/LoginPortlet.tpl -text
demos/blog/protected/Portlets/Portlet.php -text
diff --git a/HISTORY b/HISTORY
index 4b74b468..4478b26f 100644
--- a/HISTORY
+++ b/HISTORY
@@ -1,4 +1,4 @@
-Version 3.0.1 June 1, 2006
+Version 3.0.1 June 4, 2006
==========================
BUG: Ticket#28 - OnClick does not work with Safari/KHTML (Wei)
BUG: Ticket#37 - Changes of config files do not trigger cache update (Qiang)
diff --git a/demos/blog/protected/Common/BlogDataModule.php b/demos/blog/protected/Common/BlogDataModule.php
index a15701ab..3dc71989 100644
--- a/demos/blog/protected/Common/BlogDataModule.php
+++ b/demos/blog/protected/Common/BlogDataModule.php
@@ -341,9 +341,22 @@ class BlogDataModule extends TModule
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";
+ $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();
diff --git a/demos/blog/protected/Common/schema.sql b/demos/blog/protected/Common/schema.sql
index a93512df..9c111f0c 100644
--- a/demos/blog/protected/Common/schema.sql
+++ b/demos/blog/protected/Common/schema.sql
@@ -66,5 +66,11 @@ INSERT INTO tblPosts (id,author_id,create_time,title,content,status)
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/blog/protected/Data/Settings.xml b/demos/blog/protected/Data/Settings.xml
index b097f22f..69f55370 100644
--- a/demos/blog/protected/Data/Settings.xml
+++ b/demos/blog/protected/Data/Settings.xml
@@ -7,6 +7,7 @@
Latest comments
+ +