]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - lib/RssWriter2.php
Wordpress theme: put Preview and Save buttons under text area
[SourceForge/phpwiki.git] / lib / RssWriter2.php
1 <?php
2 /*
3  * Code for creating RSS 2.0
4  * Author: Reini Urban for PhpWiki
5  */
6
7 // Encoding for RSS output.
8 include_once 'lib/RssWriter.php';
9
10 /**
11  * A class for writing RSS 2.0 with xml-rpc notifier
12  *
13  * @see http://blogs.law.harvard.edu/tech/rss,
14  *      http://www.usemod.com/cgi-bin/mb.pl?ModWiki
15  * no namespace!
16  * http://sourceforge.net/mailarchive/forum.php?thread_id=4872845&forum_id=37467
17  */
18 class RssWriter2 extends RssWriter
19 {
20     function __construct()
21     {
22         parent::__construct('rss', array('version' => "2.0"));
23
24         // not used. no namespaces should be used.
25         $this->_modules = array(
26             //Standards
27             'content' => "http://purl.org/rss/1.0/modules/content/",
28             'dc' => "http://purl.org/dc/elements/1.1/",
29             'sy' => "http://purl.org/rss/1.0/modules/syndication/",
30             //Proposed
31             'wiki' => "http://purl.org/rss/1.0/modules/wiki/",
32             'ag' => "http://purl.org/rss/1.0/modules/aggregation/",
33             'annotate' => "http://purl.org/rss/1.0/modules/annotate/",
34             'audio' => "http://media.tangent.org/rss/1.0/",
35             'cp' => "http://my.theinfo.org/changed/1.0/rss/",
36             'rss091' => "http://purl.org/rss/1.0/modules/rss091/",
37             'slash' => "http://purl.org/rss/1.0/modules/slash/",
38             'taxo' => "http://purl.org/rss/1.0/modules/taxonomy/",
39             'thr' => "http://purl.org/rss/1.0/modules/threading/"
40         );
41         $this->_uris_seen = array();
42         $this->_items = array();
43     }
44
45     // Required args: (applying defaults)
46     //  'domain', 'port', 'path', 'registerProcedure', 'protocol'
47     // Optional args:
48     //  none
49     function cloud($properties)
50     {
51         // xml-rpc or soap or http-post
52         if (!isset($properties['protocol'])) $properties['protocol'] = 'xml-rpc';
53         if (!isset($properties['registerProcedure']))
54             $properties['registerProcedure'] = 'rssPleaseNotify';
55         if (!isset($properties['path'])) $properties['path'] = DATA_PATH . '/RPC2.php';
56         if (!isset($properties['port']))
57             $properties['port'] = !SERVER_PORT
58                 ? '80'
59                 : (SERVER_PROTOCOL == 'https' ? '443' : '80');
60         if (!isset($properties['domain'])) $properties['domain'] = SERVER_NAME;
61         $this->_cloud = $this->__node('cloud', $properties);
62     }
63
64     /**
65      * Write output to HTTP client.
66      */
67     function __spew()
68     {
69         header("Content-Type: application/rss+xml; charset=UTF-8");
70         echo('<' . '?xml version="1.0" encoding="UTF-8" ?' . ">\n");
71         //RSS2 really is 0.92
72         echo '<!DOCTYPE rss SYSTEM "http://my.netscape.com/publish/formats/rss-0.92.dtd">', "\n";
73         echo "<!DOCTYPE rss [<!ENTITY % HTMLlat1 PUBLIC \"-//W3C//ENTITIES Latin 1 for XHTML//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml-lat1.ent\">\n";
74         echo "              %HTMLlat1;]>\n";
75         $this->printXML();
76     }
77 }
78
79 // Local Variables:
80 // mode: php
81 // tab-width: 8
82 // c-basic-offset: 4
83 // c-hanging-comment-ender-p: nil
84 // indent-tabs-mode: nil
85 // End: