1 43 package net.jforum.util.rss; 44 45 import java.util.List ; 46 47 import net.jforum.util.preferences.ConfigKeys; 48 import net.jforum.util.preferences.SystemGlobals; 49 import net.jforum.view.forum.common.ViewCommon; 50 51 public class RecentTopicsRSS extends TopicRSS 52 { 53 public RecentTopicsRSS(String title, String description, List topics) 54 { 55 super.topics = topics; 56 this.forumLink = ViewCommon.getForumLink(); 57 58 this.rss = new RSS(title, description, SystemGlobals.getValue(ConfigKeys.ENCODING), 59 this.forumLink + "recentTopics/" 60 + SystemGlobals.getValue(ConfigKeys.SERVLET_EXTENSION)); 61 62 super.prepareRSS(); 63 } 64 } 65 | Popular Tags |