2013-04-30 13:05:49 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* config.php.example - User configuration file
|
|
|
|
* ---
|
|
|
|
* 1. Rename this file to config.php.
|
|
|
|
* 2. Uncomment settings in this file, it will override default option
|
|
|
|
*
|
|
|
|
* See how to configure your Autoblog farm at
|
|
|
|
* https://github.com/mitsukarenai/Projet-Autoblog/wiki/Configuration
|
|
|
|
**/
|
|
|
|
|
|
|
|
// define( 'LOGO', 'icon-logo.svg' );
|
|
|
|
// define( 'HEAD_TITLE', '');
|
|
|
|
// define( 'FOOTER', 'D\'après les premières versions de <a href="http://sebsauvage.net">SebSauvage</a> et <a href="http://bohwaz.net/">Bohwaz</a>.');
|
|
|
|
|
|
|
|
// define( 'ALLOW_FULL_UPDATE', TRUE );
|
|
|
|
// define( 'ALLOW_CHECK_UPDATE', TRUE );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If you set ALLOW_NEW_AUTOBLOGS to FALSE, the following options do not matter.
|
|
|
|
**/
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_LINKS', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_SOCIAL', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_BUTTON', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK', TRUE );
|
|
|
|
// define( 'ALLOW_NEW_AUTOBLOGS_BY_XSAF', TRUE );
|
|
|
|
|
|
|
|
/**
|
2013-08-14 11:55:13 +02:00
|
|
|
* TwitterBridge: https://github.com/mitsukarenai/twitterbridge
|
|
|
|
* twitter2feed : https://github.com/mitsukarenai/twitter2feed
|
|
|
|
* rss-bridge : https://github.com/sebsauvage/rss-bridge
|
|
|
|
* replace LOCAL with:
|
|
|
|
- the twitterbridge request URL (example: 'http://www.some.website/twitterbridge/?u=' )
|
|
|
|
- or the rss-bridge request URL (example: 'http://www.some.website/rss-bridge/?action=display&bridge=TwitterBridge&format=AtomFormat&u=' )
|
|
|
|
- or leave LOCAL to use the included twitter2feed.php.
|
2013-07-01 19:25:30 +02:00
|
|
|
* set to FALSE if you want to fully disable Twitter support
|
2013-04-30 13:05:49 +02:00
|
|
|
**/
|
2013-07-01 19:44:29 +02:00
|
|
|
// define( 'API_TWITTER', 'LOCAL' );
|
2013-04-30 13:05:49 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Import autoblogs from friend's autoblog farm - Add a link to the JSON export
|
|
|
|
**/
|
|
|
|
$friends_autoblog_farm = array(
|
|
|
|
'https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/3.json',
|
|
|
|
// 'https://www.ecirtam.net/autoblogs/?export',
|
2013-07-11 13:04:17 +02:00
|
|
|
// 'http://autoblog.suumitsu.eu/?export',
|
2013-04-30 13:05:49 +02:00
|
|
|
// 'http://streisand.hoa.ro/?export',
|
|
|
|
);
|
|
|
|
?>
|