diff options
author | Damien Lallement <dams@mageia.org> | 2012-08-13 10:45:23 +0000 |
---|---|---|
committer | Damien Lallement <dams@mageia.org> | 2012-08-13 10:45:23 +0000 |
commit | ff32e499745367b816d10f25e63ff3328214c32f (patch) | |
tree | 238d19398f5951d69d32c8ed9a460f5193446981 /common/atom.php | |
parent | 5bed2fb79d7b554dd90d2eb58422cfa649aebe08 (diff) | |
download | planet-ff32e499745367b816d10f25e63ff3328214c32f.tar planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.gz planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.bz2 planet-ff32e499745367b816d10f25e63ff3328214c32f.tar.xz planet-ff32e499745367b816d10f25e63ff3328214c32f.zip |
- Import moonmoon
- Create repo per langs
Diffstat (limited to 'common/atom.php')
-rw-r--r-- | common/atom.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/common/atom.php b/common/atom.php new file mode 100644 index 0000000..5122158 --- /dev/null +++ b/common/atom.php @@ -0,0 +1,41 @@ +<?php +include_once(dirname(__FILE__).'/app/app.php'); +include_once(dirname(__FILE__).'/app/lib/Cache.php'); + +if ($Planet->loadOpml(dirname(__FILE__).'/custom/people.opml') == 0) exit; + +$Planet->loadFeeds(); +$items = $Planet->getItems(); +$limit = $PlanetConfig->getMaxDisplay(); +$count = 0; + +header('Content-Type: application/atom+xml; charset=UTF-8'); +echo '<?xml version="1.0" encoding="UTF-8" ?>'; +?> +<feed xmlns="http://www.w3.org/2005/Atom"> + <title><?=htmlspecialchars($PlanetConfig->getName())?></title> + <subtitle><?=htmlspecialchars($PlanetConfig->getName())?></subtitle> + <id><?=$PlanetConfig->getUrl()?></id> + <link rel="self" type="application/atom+xml" href="<?=$PlanetConfig->getUrl()?>atom.php" /> + <link rel="alternate" type="text/html" href="<?=$PlanetConfig->getUrl()?>" /> + <updated><?=date("Y-m-d\TH:i:s\Z")?></updated> + <author><name><?=htmlspecialchars($PlanetConfig->getName())?></name></author> + +<?php $count = 0; ?> +<?php foreach ($items as $item): ?> + + <entry> + <title type="html"><?=htmlspecialchars($item->get_feed()->getName())?> : <?=htmlspecialchars($item->get_title())?></title> + <id><?=htmlspecialchars($item->get_permalink())?></id> + <link rel="alternate" href="<?=htmlspecialchars($item->get_permalink())?>"/> + <published><?=$item->get_date('Y-m-d\\TH:i:s+00:00')?></published> + <updated><?=$item->get_date('Y-m-d\\TH:i:s+00:00')?></updated> + <author><name><?=($item->get_author() ? $item->get_author()->get_name() : 'anonymous')?></name></author> + + <content type="html"><![CDATA[<?=$item->get_content()?>]]></content> + </entry> + +<?php if (++$count == $limit) break; ?> +<?php endforeach; ?> + +</feed> |