source: products/SimpleBlog/branches/plone-2.0.5-Blogging-APIs/skins/SimpleBlog/tbresult.dtml

Last change on this file was 1, checked in by myroslav, 19 years ago

Building directory structure

File size: 1020 bytes
Line 
1<dtml-comment>
2##############################################################################
3trackbackResult.dtml
4
5Trackback result code
6
7Copyright (c) 2003-2004 Atsushi Shibata All Rights Reserved.
8
9        date validation by tomster(http://tomster.org/blog/28) Thanks a lot :-).
10##############################################################################
11</dtml-comment><dtml-call "RESPONSE.setHeader('content-type', 'text/xml')"><?xml version="1.0" encoding="<dtml-var management_page_charset>"?>
12<response>
13<error><dtml-var error_code></error><dtml-if message>
14<message><dtml-var message></message></dtml-if><dtml-if mode_rss>
15<rss version="0.91">
16<channel>
17<title><dtml-var title></title>
18<link><dtml-var blogurl>/<dtml-var id></link>
19<description><dtml-var excerpt_flat></description>
20<dtml-in trackback_list>
21<item>
22<title><dtml-var title></title>
23<link><dtml-var url></link>
24<description><dtml-var excerpt></description>
25</item>
26</dtml-in>
27</channel>
28</rss>
29</dtml-if></response>
30
31
32
Note: See TracBrowser for help on using the repository browser.