10gen / core-modules-forum

10gen forum module

core-modules-forum / edpick_rss.jxp
100644 61 lines (51 sloc) 2.059 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<% /**
* Copyright (C) 2008 10gen Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/ %>
 
<% // FIXME: Permission check, ban check? %>
<?xml version="1.0"?>
<rss version="2.0">
<%
 
 
var picks = db.forum.threads.find( { editorPick : true } );
var now = new Date();
 
response.setHeader( "Content-Type" , "text/xml"); %>
 
<channel>
   <title><%= Ext.getlist(allowModule, "forum", "forumTitle") || "" %> Forum <%= "Editor's Pick" %></title>
   <link>http://<%= request.getHeader( "Host") %>/forum/</link>
   <language>en-us</language>
   <pubDate><%= now.webFormat() %></pubDate>
   <description></description>
 
   <%
      while(picks.hasNext()) {
        thread = picks.next();
        post = thread.getFirstPost();
        %>
 
        <item>
          <title><%= RSS.clean(thread.getTitle()) %></title>
          <link><%= "http://" + request.getHeader( "Host") + "/forum/viewthread?id="+thread._id %></link>
          <pubDate><%= thread.lastPostTime.webFormat() %></pubDate>
          <author><%= post.author_name %></author>
          <source><%= "http://" + request.getHeader( "Host") + "/forum/viewthread?id="+thread._id %></source>
          <language>en-us</language>
          <date>2008-02-28T03:43:44-08:00</date>
          <description>
            Posts: <%= thread.count.toFixed(0) %>&lt;br /&gt;
            Most Recent Post on <%= thread.lastPostTime %> by <%= thread.getDescendant(thread.latestPost).author_name %>
          </description>
        </item>
        <%
      }
 
   %>
   </channel>
 
</rss>