summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/index.php b/index.php
new file mode 100644
index 0000000..de2dc26
--- /dev/null
+++ b/index.php
@@ -0,0 +1,24 @@
+<?php
+// @version $Header: /cvsroot/bitweaver/_bit_feed/index.php,v 1.1 2009/09/04 18:13:29 spiderr Exp $
+
+// +----------------------------------------------------------------------+
+// | Copyright (c) 2004, bitweaver.org
+// +----------------------------------------------------------------------+
+// | All Rights Reserved. See copyright.txt for details and a complete list of authors.
+// | Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
+// |
+// | For comments, please use phpdocu.sourceforge.net documentation standards!!!
+// | -> see http://phpdocu.sourceforge.net/
+// +----------------------------------------------------------------------+
+// | Authors: spider <spider@steelsun.com>
+// +----------------------------------------------------------------------+
+
+require_once( '../bit_setup_inc.php' );
+require_once( FEED_PKG_PATH.'feed_lib.php' );
+
+$listHash['max_records'] = 100;
+$actions = feed_get_actions( $listHash );
+vd( $actions );
+$gBitSmarty->assign( 'actions', $actions);
+
+$gBitSystem->display( 'bitpackage:feed/master_feed.tpl', FEED_PKG_NAME );