/[refeed]/trunk/includes.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/includes.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2 - (show annotations)
Wed Jul 5 00:27:49 2006 UTC (17 years, 9 months ago) by dpavlin
File size: 1765 byte(s)
make working copy of trunk
1 <?php
2 // vim: ts=4 foldcolumn=4 foldmethod=marker
3 /**
4 * All the necessary incude_path settings and include/require_once() for reFeed
5 *
6 * This file is part of Reblog,
7 * a derivative work of Feed On Feeds.
8 *
9 * Distributed under the Gnu Public License.
10 *
11 * @package Refeed
12 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 * @author Michal Migurski <mike@stamen.com>
14 * @author Michael Frumin <mfrumin@eyebeam.org>
15 * @copyright ©2004 Michael Frumin, Michal Migurski
16 * @link http://reblog.org Reblog
17 * @link http://feedonfeeds.com Feed On Feeds
18 * @version $Revision: 1.3 $
19 *
20 */
21
22 // Various helpful include paths
23 ini_set("include_path",
24 join(PATH_SEPARATOR,
25 array(dirname(__FILE__),
26 realpath(join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), 'library', 'PEAR'))),
27 realpath(join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), 'library', 'Smarty'))),
28 realpath(join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), 'library', 'magpierss'))),
29 realpath(join(DIRECTORY_SEPARATOR, array(dirname(__FILE__), 'library', 'RF'))),
30 ini_get("include_path"))));
31
32 require_once('config.php');
33
34 require_once('Utility.functions.php');
35
36 require_once('Controller.class.php');
37 require_once('User.class.php');
38 require_once('Feed.class.php');
39 require_once('Item.class.php');
40 require_once('Page.class.php');
41 require_once('InputController.class.php');
42 require_once('ClientController.class.php');
43 require_once('UserdataController.class.php');
44 require_once('InstallController.class.php');
45
46 require_once("DB.php");
47
48 require_once('rss_utils.inc');
49
50 ?>

  ViewVC Help
Powered by ViewVC 1.1.26