/[refeed]/trunk/out/atom.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/out/atom.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Wed Jul 5 00:27:49 2006 UTC (17 years, 10 months ago) by dpavlin
File size: 939 byte(s)
make working copy of trunk
1 <?php
2 /*----------------------------------------
3 $Id: atom.php,v 1.1 2006/02/20 16:29:02 fruminator Exp $
4 vim: ts=4 foldcolumn=4 foldmethod=marker
5
6 This file is part of Reblog: http://reblog.org
7 A derivative work of Feed On Feeds: http://feedonfeeds.com
8
9 Distributed under the Gnu Public License, see LICENSE
10
11 Copyright ©2004 Michael Frumin, Michal Migurski
12 mike@stamen.com, http://stamen.com
13 mfrumin@eyebeam.org, http://eyebeam.org
14
15 rss.php - exports public items as RSS
16 ----------------------------------------*/
17
18 $SUPPRESS_AUTH = 1;
19 ini_set("include_path", join(PATH_SEPARATOR, array(ini_get("include_path"), dirname(__FILE__).DIRECTORY_SEPARATOR.'..')));
20 require_once('init.php');
21
22 $client_controller = new RF_Client_Controller($GLOBALS['REBLOG_CONTROLLER'], $GLOBALS['REBLOG_VIEW']);
23
24 $ARGS = $_GET;
25 $ARGS['v'] = 'atom';
26 echo $client_controller->respond(REBLOG_RESPONSE_PUBLISHED_FEED, $ARGS);
27
28
29 ?>

  ViewVC Help
Powered by ViewVC 1.1.26