<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>《jforum安装及简介》的评论</title>
	<atom:link href="http://www.zhblog.net/archives/590.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhblog.net/archives/590.html</link>
	<description>专注网站建设，博客优化，转载别人，写出自己</description>
	<lastBuildDate>Sat, 17 Apr 2010 17:04:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>作者：zz&#8211;一个新手web程序员的技术与生活 &#187; Blog Archive &#187; jforum二次开发总结（大改小改）</title>
		<link>http://www.zhblog.net/archives/590.html/comment-page-1#comment-12</link>
		<dc:creator>zz&#8211;一个新手web程序员的技术与生活 &#187; Blog Archive &#187; jforum二次开发总结（大改小改）</dc:creator>
		<pubDate>Tue, 03 Nov 2009 02:53:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.h205.cn/?p=590#comment-12</guid>
		<description>[...] 由于项目中需要用到jforum的二次开发，下面把处理的过程总结一下： 1 修改首页forum_list，想把首页改造成类似于门户形式的，首页需要显示板块列表，新入用户，活跃用户排行，以及最新帖子列表 和公告等等 新入用户排行 由于用的是freemarker的模板，这个可以直接通过修改模板文件，所在的模板文件即可， 在forum_list 增加 &lt;#list users as user&gt; 只需改为 &lt;#list users?sort_by(”registrationDate”) as user &gt;可以实现 也可直接修改SQL语句也行，因为web-infconfigdatabasegenericgeneric_queries.sql 将58-59行 “order by username” 改成 “order by user_id desc” 还需要完成用户头像的显示，这个问题的解决直接找到根源 修改SQL语句 在select后面加上，头像这个属性就行了。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 由于项目中需要用到jforum的二次开发，下面把处理的过程总结一下： 1 修改首页forum_list，想把首页改造成类似于门户形式的，首页需要显示板块列表，新入用户，活跃用户排行，以及最新帖子列表 和公告等等 新入用户排行 由于用的是freemarker的模板，这个可以直接通过修改模板文件，所在的模板文件即可， 在forum_list 增加 &lt;#list users as user&gt; 只需改为 &lt;#list users?sort_by(”registrationDate”) as user &gt;可以实现 也可直接修改SQL语句也行，因为web-infconfigdatabasegenericgeneric_queries.sql 将58-59行 “order by username” 改成 “order by user_id desc” 还需要完成用户头像的显示，这个问题的解决直接找到根源 修改SQL语句 在select后面加上，头像这个属性就行了。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>作者：jforum二次开发总结（大改小改） &#124; 阿正博客&#124;阿正的资源聚合地</title>
		<link>http://www.zhblog.net/archives/590.html/comment-page-1#comment-11</link>
		<dc:creator>jforum二次开发总结（大改小改） &#124; 阿正博客&#124;阿正的资源聚合地</dc:creator>
		<pubDate>Sat, 31 Oct 2009 06:49:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.h205.cn/?p=590#comment-11</guid>
		<description>[...] 由于项目中需要用到jforum的二次开发，下面把处理的过程总结一下： 1 修改首页forum_list，想把首页改造成类似于门户形式的，首页需要显示板块列表，新入用户，活跃用户排行，以及最新帖子列表 和公告等等  新入用户排行 由于用的是freemarker的模板，这个可以直接通过修改模板文件，所在的模板文件即可， 在forum_list 增加 &lt;#list users as user&gt; 只需改为 &lt;#list users?sort_by(&#8221;registrationDate&#8221;) as user &gt;可以实现 也可直接修改SQL语句也行，因为web-infconfigdatabasegenericgeneric_queries.sql 将58-59行 &#8220;order by username&#8221; 改成 &#8220;order by user_id desc&#8221; 还需要完成用户头像的显示，这个问题的解决直接找到根源 修改SQL语句 在select后面加上，头像这个属性就行了。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 由于项目中需要用到jforum的二次开发，下面把处理的过程总结一下： 1 修改首页forum_list，想把首页改造成类似于门户形式的，首页需要显示板块列表，新入用户，活跃用户排行，以及最新帖子列表 和公告等等  新入用户排行 由于用的是freemarker的模板，这个可以直接通过修改模板文件，所在的模板文件即可， 在forum_list 增加 &lt;#list users as user&gt; 只需改为 &lt;#list users?sort_by(&#8221;registrationDate&#8221;) as user &gt;可以实现 也可直接修改SQL语句也行，因为web-infconfigdatabasegenericgeneric_queries.sql 将58-59行 &#8220;order by username&#8221; 改成 &#8220;order by user_id desc&#8221; 还需要完成用户头像的显示，这个问题的解决直接找到根源 修改SQL语句 在select后面加上，头像这个属性就行了。 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

