OSDN Git Service

FIX: Adminクラスの各メソッドが制御を戻すよう修正
[nucleus-jp/nucleus-next.git] / skins / atom / skinbackup.xml
1 <nucleusskin>
2         <meta>
3                 <skin name="feeds/atom" />
4                 <template name="feeds/atom/modified" />
5                 <template name="feeds/atom/entries" />
6                 <info><![CDATA[Atom 1.0 weblog syndication]]></info>
7         </meta>
8
9
10         <skin name="feeds/atom" type="application/atom+xml" includeMode="normal" includePrefix="">
11                 <description>Atom 1.0 weblog syndication</description>
12                 <part name="index"><![CDATA[<?xml version="1.0" encoding="<%charset%>"?>
13
14 <feed xml:lang="en-us" xmlns="http://www.w3.org/2005/Atom">
15     <title><%blogsetting(name)%></title>
16     <id><%blogsetting(url)%>:<%blogsetting(id)%></id>
17
18     <link rel="alternate" type="text/html" href="<%blogsetting(url)%>" />
19     <link rel="self" type="application/atom+xml" href="<%blogsetting(url)%><%self%>" />
20     <generator uri="http://nucleuscms.org/"><%version%></generator>
21     <updated><%blog(feeds/atom/modified,1)%></updated>
22
23     <%blog(feeds/atom/entries,10)%>
24 </feed>]]></part>
25
26         </skin>
27
28
29         <template name="feeds/atom/modified">
30                 <description>Atom feeds: Inserts last modification date</description>
31                 <part name="ITEM"><![CDATA[<%date(utc)%>]]></part>
32
33         </template>
34
35
36         <template name="feeds/atom/entries">
37                 <description>Atom feeds: Feed items</description>
38                 <part name="ITEM"><![CDATA[<entry>
39     <title type="html"><![CDATA[<%title%>]]]]><![CDATA[></title>
40     <link rel="alternate" type="text/html" href="<%itemlink%>" />
41     <author>
42         <name><%author%></name>
43     </author>
44     <updated><%date(utc)%></updated>
45     <published><%date(iso8601)%></published>
46     <content type="html"><![CDATA[<%body%><%more%>]]]]><![CDATA[></content>
47     <id><%blogurl%>:<%blogid%>:<%itemid%></id>
48 </entry>]]></part>
49
50                 <part name="POPUP_CODE"><![CDATA[<%media%>]]></part>
51
52                 <part name="IMAGE_CODE"><![CDATA[<%image%>]]></part>
53
54                 <part name="MEDIA_CODE"><![CDATA[<%media%>]]></part>
55
56         </template>
57
58
59 </nucleusskin>