Select Git revision
examples.py
Forked from
Brady James Garvin / unittest_and_doctest
Source project has a limited visibility.
-
Brady James Garvin authoredBrady James Garvin authored
configsample.inc.php 308 B
<?php
function autoload($class)
{
$class = str_replace(array('_', '\\'), '/', $class);
include $class . '.php';
}
spl_autoload_register('autoload');
set_include_path(__DIR__ . '/src' );
$config = array(
'proxyUrl' => 'http://www.getrave.com/rss/unl/channel1',
'recentTimeframe' => '',
);