2013-02-13 11:22:51 +01:00
< ? php
if ( ! defined ( 'ROOT_DIR' ))
{
define ( 'ROOT_DIR' , dirname ( $_SERVER [ 'SCRIPT_FILENAME' ]));
}
define ( 'LOCAL_URI' , '' );
date_default_timezone_set ( 'Europe/Paris' );
setlocale ( LC_TIME , 'fr_FR.UTF-8' , 'fr_FR' , 'fr' );
2013-03-01 12:14:46 +01:00
define ( 'ALLOW_FULL_UPDATE' , TRUE );
2013-03-04 16:18:58 +01:00
// Check new version on Github
define ( 'ALLOW_CHECK_UPDATE' , TRUE );
2013-02-18 19:42:10 +01:00
define ( 'ALLOW_NEW_AUTOBLOGS' , TRUE );
// If you set ALLOW_NEW_AUTOBLOGS to FALSE, the following options do not matter.
// Generic RSS
define ( 'ALLOW_NEW_AUTOBLOGS_BY_LINKS' , TRUE );
// Twitter, Identica, Statusnet, Shaarli
define ( 'ALLOW_NEW_AUTOBLOGS_BY_SOCIAL' , TRUE );
// Bookmark button
define ( 'ALLOW_NEW_AUTOBLOGS_BY_BUTTON' , TRUE );
// OPML file
2013-03-01 12:14:46 +01:00
define ( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE' , TRUE );
// OPML Link
define ( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK' , TRUE );
2013-03-02 12:10:31 +01:00
// XSAF
define ( 'ALLOW_NEW_AUTOBLOGS_BY_XSAF' , TRUE );
2013-02-18 19:42:10 +01:00
2013-02-13 11:22:51 +01:00
2013-03-04 11:19:21 +01:00
// URL to Twitter's feed API
$apitwitter = 'http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=' ;
2013-02-13 11:22:51 +01:00
// Logo à utiliser
2013-02-18 22:15:15 +01:00
$logo = " ./icon-logo.svg " ;
2013-02-13 11:22:51 +01:00
// Marquez ici votre propre message qui apparaîtra en bas de page.
// exemple :
2013-02-18 19:42:10 +01:00
//$HTML_footer="<br/><a href='http://datalove.me/'>Love data</a><br/>Data is essential<br/>Data must flow<br/>Data must be used<br/>Data is neither good nor bad<br/>There is no illegal data<br/>Data is free<br/>Data can not be owned<br/>No man, machine or system shall interrupt the flow of data<br/>Locking data is a crime against datanity";
2013-02-18 22:15:15 +01:00
$HTML_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-02-18 22:15:15 +01:00
$head_title = " " ;
2013-03-18 12:26:01 +01:00
/* And now , the XSAF links to be imported , with maximal execusion time for import in second !
You should add only trusted sources . */
$autoblog_farm = array (
'https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/3.json' /* ,
'https://www.ecirtam.net/autoblogs/?export' ,
'https://autoblog.suumitsu.eu/?export' , */
);
2013-02-13 11:22:51 +01:00
?>