mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 03:32:00 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@5307 201d5d3c-b55e-5fd7-737f-ddc643e51545
28 lines
1.5 KiB
HTML
28 lines
1.5 KiB
HTML
{'<?xml version="1.0" encoding="UTF-8" ?>'}
|
|
|
|
<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/">
|
|
<channel>
|
|
<title>{$info->title}</title>
|
|
<link>{$info->link}</link>
|
|
<description>{htmlspecialchars(str_replace('\'', ''',$info->description))}</description>
|
|
<language>{$info->language}</language>
|
|
<pubDate>{$info->date}</pubDate>
|
|
<totalCount>{$info->total_count}</totalCount>
|
|
<!--@foreach($document_list as $oDocument)-->
|
|
<item>
|
|
<title>{str_replace('\'', ''',$oDocument->getTitle())}</title>
|
|
<author>{str_replace('\'', ''',$oDocument->getNickName())}</author>
|
|
<link>{$oDocument->getPermanentUrl()}</link>
|
|
<!--@if($rss_config[$oDocument->get('module_srl')]=='Y')-->
|
|
<description>{htmlspecialchars(str_replace('\'', ''',$oDocument->getContent(false,false,true)))}</description>
|
|
<!--@else-->
|
|
<description>{htmlspecialchars(str_replace('\'', ''',$oDocument->getContentText(100)))}</description>
|
|
<!--@end-->
|
|
<pubDate>{$oDocument->getRegdateGM()}</pubDate>
|
|
<!--@foreach($oDocument->get('tag_list') as $tag)-->
|
|
<category>{htmlspecialchars(str_replace('\'', ''',$tag))}</category>
|
|
<!--@end-->
|
|
</item>
|
|
<!--@end-->
|
|
</channel>
|
|
</rss>
|