2013-02-13 11:22:51 +01:00
|
|
|
<?php
|
2013-04-10 13:08:15 +02:00
|
|
|
/**
|
2013-04-11 18:27:25 +02:00
|
|
|
* config.php - User configuration file
|
2013-04-10 13:08:15 +02:00
|
|
|
* ---
|
2013-04-11 18:27:25 +02:00
|
|
|
* If you uncomment a setting in this file, it will override default option
|
2013-04-12 17:02:04 +02:00
|
|
|
*
|
2013-04-10 13:08:15 +02:00
|
|
|
* See how to configure your Autoblog farm at
|
|
|
|
* https://github.com/mitsukarenai/Projet-Autoblog/wiki/Configuration
|
|
|
|
**/
|
2013-02-13 11:22:51 +01:00
|
|
|
|
2013-04-11 18:27:25 +02:00
|
|
|
// 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>.');
|
2013-02-13 11:22:51 +01:00
|
|
|
|
2013-03-01 12:14:46 +01:00
|
|
|
define( 'ALLOW_FULL_UPDATE', TRUE );
|
2013-03-04 16:18:58 +01:00
|
|
|
define( 'ALLOW_CHECK_UPDATE', TRUE );
|
2013-02-18 19:42:10 +01:00
|
|
|
|
2013-04-11 18:27:25 +02:00
|
|
|
/**
|
|
|
|
* If you set ALLOW_NEW_AUTOBLOGS to FALSE, the following options do not matter.
|
|
|
|
**/
|
2013-04-30 12:04:03 +02:00
|
|
|
define( 'ALLOW_NEW_AUTOBLOGS', false );
|
2013-04-11 18:27:25 +02:00
|
|
|
// 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-02-13 11:22:51 +01:00
|
|
|
|
2013-04-11 18:27:25 +02:00
|
|
|
/**
|
|
|
|
* More about TwitterBridge : https://github.com/mitsukarenai/twitterbridge
|
|
|
|
**/
|
|
|
|
// define( 'API_TWITTER', FALSE );
|
2013-03-18 12:26:01 +01:00
|
|
|
|
2013-04-11 18:27:25 +02:00
|
|
|
/**
|
|
|
|
* Import autoblogs from friend's autoblog farm - Add a link to the JSON export
|
|
|
|
**/
|
2013-04-10 13:08:15 +02:00
|
|
|
$friends_autoblog_farm = array(
|
2013-04-12 17:02:04 +02:00
|
|
|
'https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/3.json',
|
|
|
|
'https://www.ecirtam.net/autoblogs/?export',
|
|
|
|
'https://autoblog.suumitsu.eu/?export',
|
|
|
|
'http://streisand.hoa.ro/?export'
|
2013-03-18 12:26:01 +01:00
|
|
|
);
|
2013-04-08 15:25:21 +02:00
|
|
|
|
2013-04-09 15:50:00 +02:00
|
|
|
$myOptions['enableThumbShot'] = true;
|
2013-04-30 12:04:03 +02:00
|
|
|
$myOptions['externalThumbSdhot'] = 'http://soshot.knah-tsaeb.org/?key=3400affe9919&s=m&url=';
|
2013-04-12 17:02:04 +02:00
|
|
|
?>
|