Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
133 lines (107 loc) · 4.05 KB

File metadata and controls

133 lines (107 loc) · 4.05 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<?php
header("Content-type: application/rss+xml");
//Edit the following lines to your preference.
//$feedname = "AcmlmBoard XD";
//$boardurl = "http://helmet.kafuka.org/nikoboard";
//$description = "The latest replies on the board.";
//</edit>
include("lib/settings.php");
function GetFullURL()
{
$pageURL = 'http';
if ($_SERVER["HTTPS"] == "on")
$pageURL .= "s";
$pageURL .= "://";
if ($_SERVER["SERVER_PORT"] != "80")
$pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
else
$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
return $pageURL;
}
$full = GetFullURL();
$boardurl = substr($full, 0, strrpos($full, "/"));
$description = $rssblurb;
$maxPosts = 20;
$postCount = 0;
//header('Content-Type: text/xml; charset=utf8', true);
include("lib/mysql.php");
include("lib/snippets.php");
include("lib/post.php");
if(isset($_GET['thread']))
{
$extraWhere = "and thread = ".(int)$_GET['thread'];
$extraUrl = "?thread=".(int)$_GET['thread'];
$tq = mysql_query("select title from threads where id = ".(int)$_GET['thread']);
if(mysql_num_rows($tq) == 0)
die("Invalid thread ID");
$tname = mysql_result($tq,0,0);
$description = "The latest replies for \"".$tname."\"";
}
else if(isset($_GET['forum']))
{
$extraWhere = "and threads.forum = ".(int)$_GET['forum'];
$extraUrl = "?forum=".(int)$_GET['forum'];
$fq = mysql_query("select title from forums where id = ".(int)$_GET['forum']);
if(mysql_num_rows($fq) == 0)
die("Invalid forum ID");
$fname = mysql_result($fq,0,0);
$description = "The latest replies for \"".$fname."\"";
//$maxPosts *= 100;
}
print "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><?php print $feedname; ?></title>
<link><?php print $boardurl; ?></link>
<description><?php print $description; ?></description>
<atom:link href="<?php print $boardurl; ?>/rss2.php<?php print $extraUrl; ?>" rel="self" type="application/rss+xml" />
<?php
$qPosts = "select ";
$qPosts .=
"posts.id, posts.thread, posts.date, posts.num, posts.deleted, posts.options, posts_text.text, posts_text.revision, users.id as uid, users.name, users.displayname, threads.forum";
$qPosts .=
" from posts left join posts_text on posts_text.pid = posts.id and posts_text.revision = posts.currentrevision left join users on users.id = posts.user left join threads on threads.id = posts.thread";
$qPosts .= " where deleted=0 ".$extraWhere." order by date desc limit 0, ".($maxPosts * 2);
$rPosts = mysql_query($qPosts) or die(mysql_error()." --- ".$qPosts);
while($post = Fetch($rPosts))
{
$qThread = "select * from threads where id=".$post['thread'];
$rThread = Query($qThread);
$thread = Fetch($rThread);
$qForum = "select * from forums where id=".$thread['forum'];
$rForum = Query($qForum);
$forum = Fetch($rForum);
if($forum['minpower'] > 0)
continue;
if(isset($_GET['forum']))
{
//$maxposts /= 100;
if($thread['forum'] != (int)$_GET['forum'])
continue;
}
$forum['title'] = htmlentities($forum['title']);
$thread['title'] = htmlentities($thread['title']);
$poster['name'] = htmlentities($poster['name']);
$poster = $post;
$poster['id'] = $post['uid'];
print "\n<item>\n";
$reply = ($post['revision'] > 0) ? "Post edited" : "New post";
print "<title>".$reply." by ".$poster['name']." (".$forum['title'].": ".$thread['title'].")</title>\n";
$text = $post['text'];
//Prechew the spoilers
$text = preg_replace("'\[spoiler\](.*?)\[/spoiler]'si","(spoiler)", $text);
$text = preg_replace("'\[spoiler=(.*?)\](.*?)\[/spoiler]'si","(spoiler)", $text);
$text = CleanUpPost($text, $poster['name'], true);
print "<link>".$boardurl."/thread.php?pid=".$post['id']."#".$post['id']."</link>\n";
print "<pubDate>".gmdate(DATE_RFC1123, $post['date'])."</pubDate>\n";
print "<description><![CDATA[".$text."]]></description>\n";
print "<guid isPermaLink=\"false\">t".$thread['id']."p".$post['id']."</guid>\n";
print "</item>\n";
$numPosts++;
if($numPosts == $maxPosts)
break;
}
?>
</channel>
</rss>
Morty Proxy This is a proxified and sanitized view of the page, visit original site.