- <?php
- /**
- * This file contains settings for RSS feeds.
- *
- * @author Mauricio Diaz <madd0@users.sourceforge.net>
- * @copyright 2004 (c) Mauricio Diaz Orlich
- * @license http://www.gnu.org/licenses/gpl.html GNU General Public License
- * @version 0.3RC2
- *
- * @package amazOOP
- * @subpackage Configuration
- */
-
- /**
- * For security, only this file should be included in your scripts.
- * @access private
- */
- defined('_AMAZOOP') or die( 'Direct Access to this location is not allowed.' );
-
- /**
- * This array holds basic information to be used in the RSS feed generated by {@link AmazonQuery}.
- * More information on these values will be available soon.
- * @global array $_AMAZOOP_RSS
- */
- $_AMAZOOP_RSS = array( 'xmlSchema' => 'http://www.madd0.com/rss2m.xsd',
- 'generator' => 'amazOOP v0.3 (http://amazoop.sourceforge.net)',
- 'docs' => 'http://backend.userland.com/rss',
- 'link' => 'http://www.madd0.com/',
- 'copyright' => 'The content provided in this feed may be copyrighted.',
- 'managingEditor' => 'madd0@madd0.com',
- 'webMaster' => 'madd0@madd0.com',
- 'author' => 'madd0@madd0.com',
- 'imageURL' => 'http://www.madd0.com/images/madd0/madd0_logo_88x31.gif',
- 'imageWidth' => '88',
- 'imageHeight' => '31',
- 'imageLink' => 'http://www.madd0.com',
- 'imageTitle' => 'The Madd0 Mall',
- 'title' => 'the madd0 mall - ',
- 'description' => '',
- );
- ?>