Skip to content
Snippets Groups Projects
Select Git revision
  • d9e7c0d9fbbf4dcf3fc33eeccf52992cf94d7ed3
  • master default protected
2 results

examples.py

Blame
  • Forked from Brady James Garvin / unittest_and_doctest
    Source project has a limited visibility.
    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' => '',
    );