Merge branch 'master' into myAutoBlog
Conflicts: 0.3/config.php 0.3/functions.php
This commit is contained in:
commit
08f163f609
11 changed files with 357 additions and 95 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
0.3/config.php
|
||||||
0.3/.versionlock
|
0.3/.versionlock
|
||||||
0.3/.xsaflock
|
0.3/.xsaflock
|
||||||
0.3/resources/rss.xml
|
0.3/resources/rss.xml
|
||||||
|
|
|
@ -24,7 +24,7 @@ libxml_disable_entity_loader(true);
|
||||||
if (file_exists(__DIR__ . '/../config.php')) {
|
if (file_exists(__DIR__ . '/../config.php')) {
|
||||||
require_once __DIR__ . '/../config.php';
|
require_once __DIR__ . '/../config.php';
|
||||||
}
|
}
|
||||||
else die("Configuration file not found.");
|
//else die("Configuration file not found.");
|
||||||
|
|
||||||
if (file_exists(__DIR__ . '/../functions.php')){
|
if (file_exists(__DIR__ . '/../functions.php')){
|
||||||
require_once __DIR__ . '/../functions.php';
|
require_once __DIR__ . '/../functions.php';
|
||||||
|
@ -723,7 +723,7 @@ echo '
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h1><a href="../../" style="font-size:0.8em;">PROJET AUTOBLOG'. (!empty($head_title) ? ' ~ '. escape($head_title) : '') .'</a></h1>
|
<h1><a href="../../" style="font-size:0.8em;">PROJET AUTOBLOG'. (strlen(HEAD_TITLE) > 0 ? ' ~ '. HEAD_TITLE : '') .'</a></h1>
|
||||||
<hr>
|
<hr>
|
||||||
<h1><a href="./">'.escape($config->site_title).'</a></h1>';
|
<h1><a href="./">'.escape($config->site_title).'</a></h1>';
|
||||||
|
|
||||||
|
|
|
@ -198,8 +198,8 @@ class FileRSSFeed extends RSSFeed {
|
||||||
foreach($merger->getFeeds(20) as $f) {
|
foreach($merger->getFeeds(20) as $f) {
|
||||||
parent::addItem($f->title,$f->link,$f->description,$f->author,$f->guid,$f->time);
|
parent::addItem($f->title,$f->link,$f->description,$f->author,$f->guid,$f->time);
|
||||||
}
|
}
|
||||||
|
|
||||||
file_put_contents( $this->filename, $this->xml->asXML() );
|
file_put_contents( $this->filename, $this->xml->asXML(), LOCK_EX );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -211,7 +211,7 @@ class AutoblogRSS extends FileRSSFeed {
|
||||||
public function addUnavailable($title, $folder, $siteurl, $rssurl) {
|
public function addUnavailable($title, $folder, $siteurl, $rssurl) {
|
||||||
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
||||||
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
||||||
$_SERVER["SERVER_NAME"].$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
||||||
|
|
||||||
parent::addItem( 'L\'autoblog "'. $title.'" est indisponible', $autobHref,
|
parent::addItem( 'L\'autoblog "'. $title.'" est indisponible', $autobHref,
|
||||||
'Autoblog: <a href="'. $autobHref .'">'.$title.'</a><br>
|
'Autoblog: <a href="'. $autobHref .'">'.$title.'</a><br>
|
||||||
|
@ -227,7 +227,7 @@ class AutoblogRSS extends FileRSSFeed {
|
||||||
public function addAvailable($title, $folder, $siteurl, $rssurl) {
|
public function addAvailable($title, $folder, $siteurl, $rssurl) {
|
||||||
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
||||||
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
||||||
$_SERVER["SERVER_NAME"].$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
||||||
|
|
||||||
parent::addItem( 'L\'autoblog "'. $title.'" est de nouveau disponible', $autobHref,
|
parent::addItem( 'L\'autoblog "'. $title.'" est de nouveau disponible', $autobHref,
|
||||||
'Autoblog : <a href="'. $autobHref .'">'.$title.'</a><br>
|
'Autoblog : <a href="'. $autobHref .'">'.$title.'</a><br>
|
||||||
|
@ -243,7 +243,7 @@ class AutoblogRSS extends FileRSSFeed {
|
||||||
public function addCodeChanged($title, $folder, $siteurl, $rssurl, $code) {
|
public function addCodeChanged($title, $folder, $siteurl, $rssurl, $code) {
|
||||||
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
||||||
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
||||||
$_SERVER["SERVER_NAME"].$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
||||||
|
|
||||||
parent::addItem( 'L\'autoblog "'. $title.'" a renvoyé un code imprévu', $autobHref,
|
parent::addItem( 'L\'autoblog "'. $title.'" a renvoyé un code imprévu', $autobHref,
|
||||||
'Code: '. $code .'<br>
|
'Code: '. $code .'<br>
|
||||||
|
@ -260,7 +260,7 @@ class AutoblogRSS extends FileRSSFeed {
|
||||||
public function addNewAutoblog($title, $folder, $siteurl, $rssurl) {
|
public function addNewAutoblog($title, $folder, $siteurl, $rssurl) {
|
||||||
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
$path = pathinfo( $_SERVER['PHP_SELF'] );
|
||||||
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
$autobHref = 'http'.(!empty($_SERVER['HTTPS'])?'s':'').'://'.
|
||||||
$_SERVER["SERVER_NAME"].$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
$_SERVER["SERVER_NAME"].':'.$_SERVER["SERVER_PORT"]. $path['dirname'].'/'.$folder;
|
||||||
|
|
||||||
parent::addItem( 'L\'autoblog "'. $title.'" a été ajouté à la ferme', $autobHref,
|
parent::addItem( 'L\'autoblog "'. $title.'" a été ajouté à la ferme', $autobHref,
|
||||||
'Autoblog : <a href="'. $autobHref .'">'.$title.'</a><br>
|
'Autoblog : <a href="'. $autobHref .'">'.$title.'</a><br>
|
||||||
|
|
|
@ -1,57 +1,46 @@
|
||||||
<?php
|
<?php
|
||||||
if(!defined('ROOT_DIR'))
|
/**
|
||||||
{
|
* config.php - User configuration file
|
||||||
define('ROOT_DIR', dirname($_SERVER['SCRIPT_FILENAME']));
|
* ---
|
||||||
}
|
* If you uncomment a setting in this file, it will override default option
|
||||||
define('LOCAL_URI', '');
|
*
|
||||||
if (!defined('AUTOBLOGS_FOLDER')) define('AUTOBLOGS_FOLDER', './autoblogs/');
|
* See how to configure your Autoblog farm at
|
||||||
if (!defined('DOC_FOLDER')) define('DOC_FOLDER', './docs/');
|
* https://github.com/mitsukarenai/Projet-Autoblog/wiki/Configuration
|
||||||
if (!defined('RESOURCES_FOLDER')) define('RESOURCES_FOLDER', './resources/');
|
**/
|
||||||
if (!defined('RSS_FILE')) define('RSS_FILE', RESOURCES_FOLDER.'rss.xml');
|
|
||||||
date_default_timezone_set('Europe/Paris');
|
// define( 'LOGO', 'icon-logo.svg' );
|
||||||
setlocale(LC_TIME, 'fr_FR.UTF-8', 'fr_FR', 'fr');
|
// 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_FULL_UPDATE', TRUE );
|
||||||
// Check new version on Github
|
|
||||||
define( 'ALLOW_CHECK_UPDATE', TRUE );
|
define( 'ALLOW_CHECK_UPDATE', TRUE );
|
||||||
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
|
|
||||||
define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE', TRUE );
|
|
||||||
// OPML Link
|
|
||||||
define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK', TRUE );
|
|
||||||
// XSAF
|
|
||||||
define( 'ALLOW_NEW_AUTOBLOGS_BY_XSAF', TRUE );
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* If you set ALLOW_NEW_AUTOBLOGS to FALSE, the following options do not matter.
|
||||||
|
**/
|
||||||
|
define( 'ALLOW_NEW_AUTOBLOGS', FALSE );
|
||||||
|
// 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 );
|
||||||
|
|
||||||
// URL to Twitterbridge API - Set FALSE to disable Twitter (default).
|
/**
|
||||||
$apitwitter = FALSE;
|
* More about TwitterBridge : https://github.com/mitsukarenai/twitterbridge
|
||||||
|
**/
|
||||||
|
// define( 'API_TWITTER', FALSE );
|
||||||
|
|
||||||
// Logo à utiliser
|
/**
|
||||||
$logo=RESOURCES_FOLDER .'icon-logo.svg';
|
* Import autoblogs from friend's autoblog farm - Add a link to the JSON export
|
||||||
|
**/
|
||||||
// Marquez ici votre propre message qui apparaîtra en bas de page.
|
$friends_autoblog_farm = array(
|
||||||
// exemple :
|
'https://raw.github.com/mitsukarenai/xsaf-bootstrap/master/3.json',
|
||||||
//$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";
|
'https://www.ecirtam.net/autoblogs/?export',
|
||||||
$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>.';
|
'https://autoblog.suumitsu.eu/?export',
|
||||||
|
'http://streisand.hoa.ro/?export'
|
||||||
$head_title = "";
|
|
||||||
|
|
||||||
/* 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',
|
|
||||||
'http://autoblog.suumitsu.eu/?export'
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// personnal option
|
|
||||||
$myOptions['enableThumbShot'] = true;
|
$myOptions['enableThumbShot'] = true;
|
||||||
$myOptions['externalThumbSdhot'] = '';
|
$myOptions['externalThumbSdhot'] = 'http://soshot.local/?key=a2b860fcd656&&s=m&url=';
|
||||||
?>
|
?>
|
|
@ -1,4 +0,0 @@
|
||||||
You can manually add files in the /docs/ directory, such as PDF, docs, images, etc.
|
|
||||||
You can also add subfolders in /docs/ for website mirroring. Be sure that your subfolder contains a file named index.html.
|
|
||||||
|
|
||||||
Delete this file to hide the 'Autres documents' block in your autoblogs homepage.
|
|
|
@ -1,6 +1,41 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* DO NOT EDIT THESE LINES
|
||||||
|
* You can override these options by setting them in config.php
|
||||||
|
**/
|
||||||
|
if(!defined('ROOT_DIR'))
|
||||||
|
{
|
||||||
|
define('ROOT_DIR', dirname($_SERVER['SCRIPT_FILENAME']));
|
||||||
|
}
|
||||||
|
define('LOCAL_URI', '');
|
||||||
|
if (!defined('AUTOBLOGS_FOLDER')) define('AUTOBLOGS_FOLDER', './autoblogs/');
|
||||||
|
if (!defined('DOC_FOLDER')) define('DOC_FOLDER', './docs/');
|
||||||
|
if (!defined('RESOURCES_FOLDER')) define('RESOURCES_FOLDER', './resources/');
|
||||||
|
if (!defined('RSS_FILE')) define('RSS_FILE', RESOURCES_FOLDER.'rss.xml');
|
||||||
|
date_default_timezone_set('Europe/Paris');
|
||||||
|
setlocale(LC_TIME, 'fr_FR.UTF-8', 'fr_FR', 'fr');
|
||||||
|
|
||||||
|
if( !defined('ALLOW_FULL_UPDATE')) define( 'ALLOW_FULL_UPDATE', TRUE );
|
||||||
|
if( !defined('ALLOW_CHECK_UPDATE')) define( 'ALLOW_CHECK_UPDATE', TRUE );
|
||||||
|
|
||||||
|
// If you set ALLOW_NEW_AUTOBLOGS to FALSE, the following options do not matter.
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS')) define( 'ALLOW_NEW_AUTOBLOGS', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_LINKS')) define( 'ALLOW_NEW_AUTOBLOGS_BY_LINKS', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_SOCIAL')) define( 'ALLOW_NEW_AUTOBLOGS_BY_SOCIAL', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_BUTTON')) define( 'ALLOW_NEW_AUTOBLOGS_BY_BUTTON', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE')) define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_FILE', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK')) define( 'ALLOW_NEW_AUTOBLOGS_BY_OPML_LINK', TRUE );
|
||||||
|
if( !defined('ALLOW_NEW_AUTOBLOGS_BY_XSAF')) define( 'ALLOW_NEW_AUTOBLOGS_BY_XSAF', TRUE );
|
||||||
|
|
||||||
|
// More about TwitterBridge : https://github.com/mitsukarenai/twitterbridge
|
||||||
|
if( !defined('API_TWITTER')) define( 'API_TWITTER', FALSE );
|
||||||
|
|
||||||
|
if( !defined('LOGO')) define( 'LOGO', 'icon-logo.svg' );
|
||||||
|
if( !defined('HEAD_TITLE')) define( 'HEAD_TITLE', '');
|
||||||
|
if( !defined('FOOTER')) 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>.');
|
||||||
|
|
||||||
|
// Functions
|
||||||
function NoProtocolSiteURL($url) {
|
function NoProtocolSiteURL($url) {
|
||||||
$protocols = array("http://", "https://");
|
$protocols = array("http://", "https://");
|
||||||
$siteurlnoproto = str_replace($protocols, "", $url);
|
$siteurlnoproto = str_replace($protocols, "", $url);
|
||||||
|
@ -47,7 +82,7 @@ function urlToFolderSlash($url) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function folderExists($url) {
|
function folderExists($url) {
|
||||||
return file_exists(urlToFolder($url)) || file_exists(urlToFolderSlash($url));
|
return file_exists(AUTOBLOGS_FOLDER . urlToFolder($url)) || file_exists(AUTOBLOGS_FOLDER . urlToFolderSlash($url));
|
||||||
}
|
}
|
||||||
|
|
||||||
function escape($str) {
|
function escape($str) {
|
||||||
|
@ -92,9 +127,14 @@ function createAutoblog($type, $sitename, $siteurl, $rssurl, $siteDesc, $error =
|
||||||
/**
|
/**
|
||||||
* RSS
|
* RSS
|
||||||
**/
|
**/
|
||||||
require_once('class_rssfeed.php');
|
try {
|
||||||
$rss = new AutoblogRSS(RSS_FILE);
|
require_once('class_rssfeed.php');
|
||||||
$rss->addNewAutoblog($sitename, $foldername, $siteurl, $rssurl);
|
$rss = new AutoblogRSS(RSS_FILE);
|
||||||
|
$rss->addNewAutoblog($sitename, $foldername, $siteurl, $rssurl);
|
||||||
|
}
|
||||||
|
catch (Exception $e) {
|
||||||
|
;
|
||||||
|
}
|
||||||
|
|
||||||
$fp = fopen($foldername .'/index.php', 'w+');
|
$fp = fopen($foldername .'/index.php', 'w+');
|
||||||
if( !fwrite($fp, "<?php require_once '../autoblog.php'; ?>") )
|
if( !fwrite($fp, "<?php require_once '../autoblog.php'; ?>") )
|
||||||
|
|
|
@ -21,22 +21,21 @@
|
||||||
define('XSAF_VERSION', 3);
|
define('XSAF_VERSION', 3);
|
||||||
define('ROOT_DIR', __DIR__);
|
define('ROOT_DIR', __DIR__);
|
||||||
|
|
||||||
|
$error = array();
|
||||||
|
$success = array();
|
||||||
|
|
||||||
if(file_exists("config.php")){
|
if(file_exists("config.php")){
|
||||||
include "config.php";
|
require_once "config.php";
|
||||||
}else{
|
}else{
|
||||||
echo "config.php not found !";
|
$error[] = "config.php not found !";
|
||||||
die;
|
|
||||||
}
|
}
|
||||||
if(file_exists("functions.php")){
|
if(file_exists("functions.php")){
|
||||||
include "functions.php";
|
require_once "functions.php";
|
||||||
}else{
|
}else{
|
||||||
echo "functions.php not found !";
|
echo "functions.php not found !";
|
||||||
die;
|
die;
|
||||||
}
|
}
|
||||||
|
|
||||||
$error = array();
|
|
||||||
$success = array();
|
|
||||||
|
|
||||||
function get_title_from_feed($url) {
|
function get_title_from_feed($url) {
|
||||||
return get_title_from_datafeed(file_get_contents($url));
|
return get_title_from_datafeed(file_get_contents($url));
|
||||||
}
|
}
|
||||||
|
@ -120,7 +119,7 @@ function create_from_opml($opml) {
|
||||||
$error = array_merge( $error, createAutoblog( $sitetype, $sitename, $siteurl, $rssurl, $siteDesc, $error ) );
|
$error = array_merge( $error, createAutoblog( $sitetype, $sitename, $siteurl, $rssurl, $siteDesc, $error ) );
|
||||||
|
|
||||||
if( empty ( $error ))
|
if( empty ( $error ))
|
||||||
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. urlToFolderSlash( $siteurl ) .'/index.php"></iframe>Autoblog "'. $sitename .'" crée avec succès. → <a target="_blank" href="'. urlToFolderSlash( $siteurl ) .'">afficher l\'autoblog</a>.';
|
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. AUTOBLOGS_FOLDER . urlToFolderSlash( $siteurl ) .'/index.php"></iframe>Autoblog "'. $sitename .'" crée avec succès. → <a target="_blank" href="'. urlToFolderSlash( $siteurl ) .'">afficher l\'autoblog</a>.';
|
||||||
}
|
}
|
||||||
catch (Exception $e) {
|
catch (Exception $e) {
|
||||||
$error[] = $e->getMessage();
|
$error[] = $e->getMessage();
|
||||||
|
@ -166,7 +165,7 @@ function versionCheck() {
|
||||||
if( !file_exists(RSS_FILE)) {
|
if( !file_exists(RSS_FILE)) {
|
||||||
require_once('class_rssfeed.php');
|
require_once('class_rssfeed.php');
|
||||||
$rss = new AutoblogRSS(RSS_FILE);
|
$rss = new AutoblogRSS(RSS_FILE);
|
||||||
$rss->create('Projet Autoblog'. ((!empty($head_title)) ? ' | '. $head_title : ''), serverUrl(true),"Projet Autoblog - RSS : Ajouts et changements de disponibilité.", serverUrl(true) . RSS_FILE);
|
$rss->create('Projet Autoblog'. ((strlen(HEAD_TITLE)>0) ? ' | '. HEAD_TITLE : ''), serverUrl(true),"Projet Autoblog - RSS : Ajouts et changements de disponibilité.", serverUrl(true) . RSS_FILE);
|
||||||
}
|
}
|
||||||
if (isset($_GET['rss'])) {
|
if (isset($_GET['rss'])) {
|
||||||
require_once('class_rssfeed.php');
|
require_once('class_rssfeed.php');
|
||||||
|
@ -350,15 +349,15 @@ if (isset($_GET['exportopml'])) // OPML
|
||||||
if (isset($_GET['sitemap']))
|
if (isset($_GET['sitemap']))
|
||||||
{
|
{
|
||||||
header('Content-Type: application/xml');
|
header('Content-Type: application/xml');
|
||||||
|
$proto=(!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?"https://":"http://";
|
||||||
echo '<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
|
echo '<?xml version="1.0" encoding="UTF-8"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">';
|
||||||
echo '<url><loc>'.'http' . (!empty($_SERVER['HTTPS']) ? 's' : '')."://{$_SERVER['HTTP_HOST']}".str_replace('?sitemap', '', $_SERVER['REQUEST_URI'])."</loc>\n";
|
echo '<url><loc>'.$proto."{$_SERVER['HTTP_HOST']}".str_replace('?sitemap', '', $_SERVER['REQUEST_URI'])."</loc>\n";
|
||||||
echo '<lastmod>'.date('c', time())."</lastmod>\n";
|
echo '<lastmod>'.date('c', time())."</lastmod>\n";
|
||||||
echo '<changefreq>daily</changefreq></url>';
|
echo '<changefreq>daily</changefreq></url>';
|
||||||
$subdirs = glob(AUTOBLOGS_FOLDER . "*");
|
$subdirs = glob(AUTOBLOGS_FOLDER . "*");
|
||||||
foreach($subdirs as $unit) {
|
foreach($subdirs as $unit) {
|
||||||
if(is_dir($unit)) {
|
if(is_dir($unit)) {
|
||||||
$unit=substr($unit, 2);
|
$unit=substr($unit, 2);
|
||||||
$proto=(!empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS'])=='on')?"https://":"http://";
|
|
||||||
echo '<url><loc>'.$proto.$_SERVER['SERVER_NAME'].substr($_SERVER['PHP_SELF'], 0, -9)."$unit/"."</loc>\n";
|
echo '<url><loc>'.$proto.$_SERVER['SERVER_NAME'].substr($_SERVER['PHP_SELF'], 0, -9)."$unit/"."</loc>\n";
|
||||||
echo '<lastmod>'.date('c', filemtime($unit))."</lastmod>\n";
|
echo '<lastmod>'.date('c', filemtime($unit))."</lastmod>\n";
|
||||||
echo '<changefreq>hourly</changefreq></url>';
|
echo '<changefreq>hourly</changefreq></url>';
|
||||||
|
@ -431,8 +430,8 @@ if(!empty($_GET['via_button']) && $_GET['number'] === '17' && ALLOW_NEW_AUTOBLOG
|
||||||
|
|
||||||
$error = array_merge( $error, createAutoblog($sitetype, $sitename, $siteurl, $rssurl, $siteDesc, $error));
|
$error = array_merge( $error, createAutoblog($sitetype, $sitename, $siteurl, $rssurl, $siteDesc, $error));
|
||||||
if( empty($error)) {
|
if( empty($error)) {
|
||||||
$form .= '<iframe width="1" height="1" frameborder="0" src="'. urlToFolderSlash($siteurl) .'/index.php"></iframe>';
|
$form .= '<iframe width="1" height="1" frameborder="0" src="'. AUTOBLOGS_FOLDER . urlToFolderSlash($siteurl) .'/index.php"></iframe>';
|
||||||
$form .= '<p><span style="color:darkgreen">Autoblog <a href="'. urlToFolderSlash($siteurl) .'">'. $sitename .'</a> ajouté avec succès.</span><br>';
|
$form .= '<p><span style="color:darkgreen">Autoblog <a href="'. AUTOBLOGS_FOLDER . urlToFolderSlash($siteurl) .'">'. $sitename .'</a> ajouté avec succès.</span><br>';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$form .= '<ul>';
|
$form .= '<ul>';
|
||||||
|
@ -491,10 +490,10 @@ if(!empty($_POST['socialaccount']) && !empty($_POST['socialinstance']) && ALLOW_
|
||||||
$socialinstance = strtolower(escape($_POST['socialinstance']));
|
$socialinstance = strtolower(escape($_POST['socialinstance']));
|
||||||
|
|
||||||
if($socialinstance === 'twitter') {
|
if($socialinstance === 'twitter') {
|
||||||
if( $apitwitter !== FALSE ) {
|
if( API_TWITTER !== FALSE ) {
|
||||||
$sitetype = 'twitter';
|
$sitetype = 'twitter';
|
||||||
$siteurl = "http://twitter.com/$socialaccount";
|
$siteurl = "http://twitter.com/$socialaccount";
|
||||||
$rssurl = $apitwitter.$socialaccount;
|
$rssurl = API_TWITTER.$socialaccount;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
$error[] = "Twitter veut mettre à mort son API ouverte. Du coup on peut plus faire ça comme ça.";
|
$error[] = "Twitter veut mettre à mort son API ouverte. Du coup on peut plus faire ça comme ça.";
|
||||||
|
@ -539,7 +538,7 @@ if(!empty($_POST['socialaccount']) && !empty($_POST['socialinstance']) && ALLOW_
|
||||||
if( empty($error) ) {
|
if( empty($error) ) {
|
||||||
$error = array_merge( $error, createAutoblog($sitetype, ucfirst($socialinstance) .' - '. $socialaccount, $siteurl, $rssurl,$siteDesc, $error));
|
$error = array_merge( $error, createAutoblog($sitetype, ucfirst($socialinstance) .' - '. $socialaccount, $siteurl, $rssurl,$siteDesc, $error));
|
||||||
if( empty($error))
|
if( empty($error))
|
||||||
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. urlToFolderSlash( $siteurl ) .'/index.php"></iframe><b style="color:darkgreen">'.ucfirst($socialinstance) .' - '. $socialaccount.' <a href="'.urlToFolderSlash( $siteurl ).'">ajouté avec succès</a>.</b>';
|
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. AUTOBLOGS_FOLDER . urlToFolderSlash( $siteurl ) .'/index.php"></iframe><b style="color:darkgreen">'.ucfirst($socialinstance) .' - '. $socialaccount.' <a href="'.urlToFolderSlash( $siteurl ).'">ajouté avec succès</a>.</b>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -571,7 +570,7 @@ if( !empty($_POST['generic']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY_L
|
||||||
$error = array_merge( $error, createAutoblog('generic', $sitename, $siteurl, $rssurl, $siteDesc, $error));
|
$error = array_merge( $error, createAutoblog('generic', $sitename, $siteurl, $rssurl, $siteDesc, $error));
|
||||||
|
|
||||||
if( empty($error))
|
if( empty($error))
|
||||||
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. urlToFolderSlash( $siteurl ) .'/index.php"></iframe><b style="color:darkgreen">Autoblog '. $sitename .' crée avec succès.</b> → <a target="_blank" href="'. AUTOBLOGS_FOLDER . urlToFolderSlash( $siteurl ) .'">afficher l\'autoblog</a>';
|
$success[] = '<iframe width="1" height="1" frameborder="0" src="'. AUTOBLOGS_FOLDER . urlToFolderSlash( $siteurl ) .'/index.php"></iframe><b style="color:darkgreen">Autoblog '. $sitename .' crée avec succès.</b> → <a target="_blank" href="'. AUTOBLOGS_FOLDER . urlToFolderSlash( $siteurl ) .'">afficher l\'autoblog</a>';
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// checking procedure
|
// checking procedure
|
||||||
|
@ -658,7 +657,7 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY
|
||||||
<html lang="en" dir="ltr">
|
<html lang="en" dir="ltr">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Projet Autoblog<?php if(!empty($head_title)) { echo " | " . escape($head_title); } ?></title>
|
<title>Projet Autoblog<?php if(strlen(HEAD_TITLE)>0) echo " | " . HEAD_TITLE; ?></title>
|
||||||
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo serverUrl(true) . RSS_FILE;?>" />
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo serverUrl(true) . RSS_FILE;?>" />
|
||||||
<link href="<?php echo RESOURCES_FOLDER; ?>autoblog.css" rel="stylesheet" type="text/css">
|
<link href="<?php echo RESOURCES_FOLDER; ?>autoblog.css" rel="stylesheet" type="text/css">
|
||||||
<?php
|
<?php
|
||||||
|
@ -668,11 +667,16 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY
|
||||||
?>
|
?>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1><a href="<?php echo serverUrl(true); ?>">PROJET AUTOBLOG<?php if(!empty($head_title)) { echo " | " . escape($head_title); } ?></a></h1>
|
<h1><a href="<?php echo serverUrl(true); ?>">
|
||||||
|
PROJET AUTOBLOG
|
||||||
|
<?php if(strlen(HEAD_TITLE)>0) echo " | " . HEAD_TITLE; ?>
|
||||||
|
</a></h1>
|
||||||
|
|
||||||
<div class="pbloc">
|
<div class="pbloc">
|
||||||
<img id="logo" src="<?php if(isset($logo)) { echo $logo; }else{ echo RESOURCES_FOLDER.'icon-logo.svg'; } ?>" alt="">
|
<?php
|
||||||
|
if (defined('LOGO'))
|
||||||
|
echo '<img id="logo" src="'. RESOURCES_FOLDER . LOGO .'" alt="">';
|
||||||
|
?>
|
||||||
<h2>Présentation</h2>
|
<h2>Présentation</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -750,7 +754,7 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY
|
||||||
<form method="POST">
|
<form method="POST">
|
||||||
<input placeholder="Identifiant du compte" type="text" name="socialaccount" id="socialaccount"><br>
|
<input placeholder="Identifiant du compte" type="text" name="socialaccount" id="socialaccount"><br>
|
||||||
<?php
|
<?php
|
||||||
if( $apitwitter !== FALSE )
|
if( API_TWITTER !== FALSE )
|
||||||
echo '<input type="radio" name="socialinstance" value="twitter">Twitter<br>';
|
echo '<input type="radio" name="socialinstance" value="twitter">Twitter<br>';
|
||||||
else echo '<s>Twitter</s><br>'; ?>
|
else echo '<s>Twitter</s><br>'; ?>
|
||||||
<input type="radio" name="socialinstance" value="identica">Identica<br>
|
<input type="radio" name="socialinstance" value="identica">Identica<br>
|
||||||
|
@ -900,7 +904,7 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY
|
||||||
<?php echo "<p>".count($autoblogs)." autoblogs hébergés</p>"; ?>
|
<?php echo "<p>".count($autoblogs)." autoblogs hébergés</p>"; ?>
|
||||||
</div>
|
</div>
|
||||||
Propulsé par <a href="https://github.com/mitsukarenai/Projet-Autoblog">Projet Autoblog 0.3</a> de <a href="https://www.suumitsu.eu/">Mitsu</a>, <a href="https://www.ecirtam.net/">Oros</a> et <a href="http://hoa.ro">Arthur Hoaro</a> (Domaine Public)
|
Propulsé par <a href="https://github.com/mitsukarenai/Projet-Autoblog">Projet Autoblog 0.3</a> de <a href="https://www.suumitsu.eu/">Mitsu</a>, <a href="https://www.ecirtam.net/">Oros</a> et <a href="http://hoa.ro">Arthur Hoaro</a> (Domaine Public)
|
||||||
<?php if(isset($HTML_footer)){ echo "<br/>".$HTML_footer; } ?>
|
<?php if(defined('FOOTER') && strlen(FOOTER)>0 ){ echo "<br/>".FOOTER; } ?>
|
||||||
<iframe width="1" height="1" style="display:none" src="xsaf3.php"></iframe>
|
<iframe width="1" height="1" style="display:none" src="xsaf3.php"></iframe>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
|
@ -12,14 +12,13 @@ a:hover {color:darkred;}
|
||||||
h1 {text-align:center;font-size:40pt;text-shadow: #ccc 0px 5px 5px;}
|
h1 {text-align:center;font-size:40pt;text-shadow: #ccc 0px 5px 5px;}
|
||||||
h2 {text-align:center;font-size: 16pt;margin:0 0 1em 0;font-style:italic;text-shadow: #ccc 0px 5px 5px; }
|
h2 {text-align:center;font-size: 16pt;margin:0 0 1em 0;font-style:italic;text-shadow: #ccc 0px 5px 5px; }
|
||||||
.pbloc {background-color:white;padding: 12px 10px 12px 10px;border:1px solid #aaa;max-width:70em;margin:1em auto;text-align:justify;box-shadow:0px 5px 7px #aaa;}
|
.pbloc {background-color:white;padding: 12px 10px 12px 10px;border:1px solid #aaa;max-width:70em;margin:1em auto;text-align:justify;box-shadow:0px 5px 7px #aaa;}
|
||||||
input {width:30em;}
|
input[type="text"]{width:20em;}
|
||||||
input[type="radio"] {width:1em;}
|
input[type="radio"] {width:1em;}
|
||||||
input[type="submit"] {width:8em;}
|
input[type="submit"] {width:8em;}
|
||||||
input[type="text"]#socialaccount, input[type="text"]#statusneturl, input[type="text"]#shaarliurl,input[type="text"].smallinput {width:20em;}
|
|
||||||
div.form {padding:0.2em;border:1px solid #fff;}
|
div.form {padding:0.2em;border:1px solid #fff;}
|
||||||
div.form:hover {background-color:#FAF4DA;border:1px dotted;}
|
div.form:hover {background-color:#FAF4DA;border:1px dotted;}
|
||||||
#contentVignette {text-align: center;}
|
#contentVignette {text-align: center;}
|
||||||
.vignette {width:20em;height:2em;display: inline-block;text-align:justify;margin:0; padding:20px;background-color:#eee;border: 1px solid #888;}
|
.vignette {width:27%;height:2em;display: inline-block;text-align:justify;margin:0; padding:20px;background-color:#eee;border: 1px solid #888;}
|
||||||
.vignette:hover {background-color:#fff;}
|
.vignette:hover {background-color:#fff;}
|
||||||
.vignette .title {font-size: 14pt;text-shadow: #ccc 0px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
|
.vignette .title {font-size: 14pt;text-shadow: #ccc 0px 5px 5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
|
||||||
.vignette .title a:hover {color:darkred; text-decoration:none;}
|
.vignette .title a:hover {color:darkred; text-decoration:none;}
|
||||||
|
@ -34,4 +33,16 @@ div.form:hover {background-color:#FAF4DA;border:1px dotted;}
|
||||||
.button{-moz-box-shadow:inset 0 1px 0 0 #d9fbbe;-webkit-box-shadow:inset 0 1px 0 0 #d9fbbe;box-shadow:inset 0 1px 0 0 #d9fbbe;background:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8e356',endColorstr='#a5cc52');background-color:#b8e356;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #83c41a;display:inline-block;color:#fff;font-family:arial;font-size:14px;font-weight:700;text-decoration:none;text-shadow:1px 1px 0 #86ae47;padding:6px 24px;}
|
.button{-moz-box-shadow:inset 0 1px 0 0 #d9fbbe;-webkit-box-shadow:inset 0 1px 0 0 #d9fbbe;box-shadow:inset 0 1px 0 0 #d9fbbe;background:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#b8e356',endColorstr='#a5cc52');background-color:#b8e356;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #83c41a;display:inline-block;color:#fff;font-family:arial;font-size:14px;font-weight:700;text-decoration:none;text-shadow:1px 1px 0 #86ae47;padding:6px 24px;}
|
||||||
.button:hover{background:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5cc52',endColorstr='#b8e356');background-color:#a5cc52;}
|
.button:hover{background:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#a5cc52',endColorstr='#b8e356');background-color:#a5cc52;}
|
||||||
.button:active{position:relative;top:1px;}
|
.button:active{position:relative;top:1px;}
|
||||||
.buttonactive{background-color:#aaa;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #83c41a;display:inline-block;color:#fff;font-family:arial;font-size:14px;font-weight:700;text-decoration:none;text-shadow:1px 1px 0 #86ae47;padding:6px 24px;}
|
.buttonactive{background-color:#aaa;-moz-border-radius:6px;-webkit-border-radius:6px;border-radius:6px;border:1px solid #83c41a;display:inline-block;color:#fff;font-family:arial;font-size:14px;font-weight:700;text-decoration:none;text-shadow:1px 1px 0 #86ae47;padding:6px 24px;}
|
||||||
|
@media screen and (max-width:1024px) {
|
||||||
|
.vignette { width: 40%; }
|
||||||
|
}
|
||||||
|
@media screen and (max-width:640px) {
|
||||||
|
h1 { font-size:20pt; }
|
||||||
|
.button, .button:hover, .button:active, .buttonactive { display: block; margin: auto; text-align:center; }
|
||||||
|
.vignette { width: 80%; }
|
||||||
|
}
|
||||||
|
@media screen and (max-width:480px) {
|
||||||
|
#logo { max-width: 250px; }
|
||||||
|
input[type="text"]{width:15em;}
|
||||||
|
}
|
|
@ -1 +1,218 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="300" height="200"><defs id="defs4" /><g transform="translate(0,-852.36218)" id="layer1"><rect width="259.5" height="82.395004" x="20.25" y="911.16467" id="rect3030" style="fill:#f2f2f2;fill-opacity:1;stroke:#000000;stroke-width:0.72559333;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /><text x="149.10121" y="936.99072" id="text3032" xml:space="preserve" style="font-size:31.44740295px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:center;line-height:125%;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;font-family:DejaVu Sans;-inkscape-font-specification:DejaVu Sans"><tspan x="149.10121" y="936.99072" id="tspan3040" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold">Never surrender</tspan><tspan x="149.10121" y="982.74823" id="tspan3044" style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;stroke:none;font-family:Arial;-inkscape-font-specification:Arial Bold">to <tspan id="tspan3046" style="font-size:38px">censorship</tspan></tspan></text></g></svg>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
version="1.1"
|
||||||
|
width="300"
|
||||||
|
height="180"
|
||||||
|
id="svg2">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
|
<metadata
|
||||||
|
id="metadata7">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
id="layer5">
|
||||||
|
<g
|
||||||
|
id="text2990-7"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 106.42552,68.920204 -1.71775,0 0,-8.910788 c 0,-0.793795 0.026,-1.968235 0.0781,-3.523323 -0.25376,0.279795 -0.64741,0.647418 -1.18095,1.102868 l -1.4347,1.180948 -0.94671,-1.200468 3.73804,-2.91821 1.46399,0 0,14.268973"
|
||||||
|
id="path3056" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.96800707,0.25092291,-0.25092291,-0.96800707,0,0)"
|
||||||
|
id="text2990-7-4"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m -83.665748,-114.1049 -1.717742,0 0,-8.91078 c -6e-6,-0.7938 0.02602,-1.96824 0.07808,-3.52333 -0.253763,0.2798 -0.647411,0.64742 -1.180947,1.10287 l -1.434706,1.18095 -0.94671,-1.20047 3.738042,-2.91821 1.463984,0 0,14.26897"
|
||||||
|
id="path3059" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.91697723,-0.39893955,0.39893955,0.91697723,0,0)"
|
||||||
|
id="text2990-7-9"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 63.170327,105.14977 -1.717742,0 0,-8.910785 c -6e-6,-0.793796 0.02602,-1.968236 0.07808,-3.523324 -0.253763,0.279796 -0.647412,0.647418 -1.180948,1.102869 l -1.434705,1.180947 -0.94671,-1.200467 3.738041,-2.91821 1.463985,0 0,14.26897"
|
||||||
|
id="path3062" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.59314555,-0.80509524,0.80509524,-0.59314555,0,0)"
|
||||||
|
id="text2990-7-5"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m -126.66057,27.239197 -1.71775,0 0,-8.910788 c 0,-0.793796 0.026,-1.968236 0.0781,-3.523324 -0.25376,0.279796 -0.64741,0.647419 -1.18095,1.102869 l -1.4347,1.180948 -0.94671,-1.200468 3.73804,-2.91821 1.46399,0 0,14.268973"
|
||||||
|
id="path3065" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.31319215,-0.94968978,0.94968978,0.31319215,0,0)"
|
||||||
|
id="text2990-7-81"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m -41.445109,113.0434 -1.717743,0 0,-8.91078 c -5e-6,-0.7938 0.02602,-1.96824 0.07808,-3.52333 -0.253763,0.2798 -0.647412,0.64742 -1.180948,1.10287 l -1.434705,1.18095 -0.946711,-1.20047 3.738042,-2.918209 1.463985,0 0,14.268969"
|
||||||
|
id="path3068" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.26611424,-0.9639415,0.9639415,-0.26611424,0,0)"
|
||||||
|
id="text2990-7-99"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m -101.83545,68.705475 -1.71774,0 0,-8.910788 c -1e-5,-0.793796 0.026,-1.968236 0.0781,-3.523324 -0.25376,0.279796 -0.64741,0.647419 -1.18095,1.102869 l -1.4347,1.180948 -0.94671,-1.200468 3.73804,-2.91821 1.46398,0 0,14.268973"
|
||||||
|
id="path3071" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.66389743,0.74782364,-0.74782364,-0.66389743,0,0)"
|
||||||
|
id="text2990-7-0"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m -10.770921,-142.41505 -1.717742,0 0,-8.91079 c -6e-6,-0.7938 0.02602,-1.96824 0.07808,-3.52333 -0.253763,0.2798 -0.647412,0.64742 -1.180948,1.10287 l -1.434705,1.18095 -0.94671,-1.20047 3.738041,-2.91821 1.463985,0 0,14.26898"
|
||||||
|
id="path3074" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.61642924,0.78741031,-0.78741031,0.61642924,0,0)"
|
||||||
|
id="text2990-7-47"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 122.52353,-67.256531 -1.71774,0 0,-8.910788 c -1e-5,-0.793795 0.026,-1.968235 0.0781,-3.523323 -0.25377,0.279796 -0.64741,0.647418 -1.18095,1.102868 l -1.43471,1.180948 -0.94671,-1.200468 3.73805,-2.918209 1.46398,0 0,14.268972"
|
||||||
|
id="path3077" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.03313105,0.99945102,-0.99945102,0.03313105,0,0)"
|
||||||
|
id="text2990-7-50"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 86.240953,-144.46338 -1.717743,0 0,-8.91079 c -5e-6,-0.79379 0.02602,-1.96823 0.07808,-3.52332 -0.253762,0.2798 -0.647411,0.64742 -1.180947,1.10287 l -1.434706,1.18095 -0.94671,-1.20047 3.738042,-2.91821 1.463985,0 0,14.26897"
|
||||||
|
id="path3080" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56201745,0.82712538,-0.82712538,0.56201745,0,0)"
|
||||||
|
id="text2990-7-6"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 141.46955,-115.26434 -1.71774,0 0,-8.91079 c -1e-5,-0.7938 0.026,-1.96824 0.0781,-3.52332 -0.25376,0.27979 -0.64741,0.64741 -1.18095,1.10286 l -1.4347,1.18095 -0.94671,-1.20047 3.73804,-2.91821 1.46398,0 0,14.26898"
|
||||||
|
id="path3083" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.41026184,0.91196777,-0.91196777,0.41026184,0,0)"
|
||||||
|
id="text2990-7-68"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 106.62199,-165.76779 -1.71774,0 0,-8.91079 c -1e-5,-0.7938 0.026,-1.96824 0.0781,-3.52332 -0.25376,0.27979 -0.64741,0.64742 -1.18094,1.10287 l -1.43471,1.18094 -0.94671,-1.20046 3.73804,-2.91821 1.46399,0 0,14.26897"
|
||||||
|
id="path3086" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.23609203,0.9717307,-0.9717307,-0.23609203,0,0)"
|
||||||
|
id="text2990-7-07"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 21.373971,-224.19429 -1.717742,0 0,-8.91079 c -6e-6,-0.79379 0.02602,-1.96823 0.07808,-3.52332 -0.253763,0.27979 -0.647412,0.64742 -1.180948,1.10287 l -1.434705,1.18094 -0.94671,-1.20046 3.738041,-2.91821 1.463985,0 0,14.26897"
|
||||||
|
id="path3089" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(0.26029759,0.96552844,-0.96552844,0.26029759,0,0)"
|
||||||
|
id="text2990-7-1"
|
||||||
|
style="font-size:19.98827362px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 109.52001,-224.81616 -1.71774,0 0,-8.91079 c -10e-6,-0.7938 0.026,-1.96824 0.0781,-3.52332 -0.25376,0.27979 -0.64741,0.64741 -1.18095,1.10286 l -1.4347,1.18095 -0.94671,-1.20046 3.73804,-2.91821 1.46398,0 0,14.26897"
|
||||||
|
id="path3092" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="layer3">
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.72542887,-0.29673984,-0.48305239,1.1809002,0,0)"
|
||||||
|
id="text2985-0-36"
|
||||||
|
style="font-size:13.06711483px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m -165.36303,43.093833 c -0.97408,0 -1.71208,-0.410474 -2.21401,-1.231422 -0.50193,-0.8252 -0.75289,-2.016212 -0.75289,-3.573039 0,-3.198713 0.98896,-4.798072 2.9669,-4.798082 0.98683,1e-5 1.73122,0.41261 2.23315,1.237803 0.50617,0.820956 0.75926,2.007714 0.75927,3.560279 -1e-5,3.202975 -0.99748,4.804461 -2.99242,4.804461 m 0,-0.988966 c 0.62528,1e-6 1.08467,-0.297752 1.37817,-0.89326 0.29349,-0.599758 0.44024,-1.573835 0.44025,-2.922235 -1e-5,-1.339884 -0.14676,-2.307581 -0.44025,-2.903095 -0.2935,-0.599752 -0.75289,-0.899632 -1.37817,-0.89964 -0.61678,8e-6 -1.06979,0.297761 -1.35903,0.89326 -0.285,0.59126 -0.42749,1.561084 -0.42749,2.909475 0,1.352653 0.14249,2.326731 0.42749,2.922235 0.28924,0.595508 0.74225,0.893261 1.35903,0.89326"
|
||||||
|
id="path3029"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.7582023,-0.19857197,-0.32324835,1.234251,0,0)"
|
||||||
|
id="text2985-0-5-3"
|
||||||
|
style="font-size:13.06711483px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m -151.53292,77.359611 c -0.97408,0 -1.71209,-0.410474 -2.21401,-1.231423 -0.50193,-0.8252 -0.75289,-2.016212 -0.75289,-3.573039 0,-3.198713 0.98896,-4.798072 2.9669,-4.798081 0.98683,9e-6 1.73121,0.41261 2.23315,1.237803 0.50617,0.820956 0.75926,2.007714 0.75927,3.560278 -1e-5,3.202976 -0.99748,4.804462 -2.99242,4.804462 m 0,-0.988966 c 0.62527,0 1.08466,-0.297753 1.37817,-0.89326 0.29349,-0.599758 0.44024,-1.573836 0.44025,-2.922236 -1e-5,-1.339884 -0.14676,-2.307581 -0.44025,-2.903094 -0.29351,-0.599752 -0.7529,-0.899632 -1.37817,-0.89964 -0.61678,8e-6 -1.06979,0.297761 -1.35903,0.893259 -0.285,0.59126 -0.42749,1.561084 -0.42749,2.909475 0,1.352654 0.14249,2.326732 0.42749,2.922236 0.28924,0.595507 0.74225,0.89326 1.35903,0.89326"
|
||||||
|
id="path3032"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.76749141,-0.15892919,-0.25871525,1.2493724,0,0)"
|
||||||
|
id="text2985-0-5-3-4"
|
||||||
|
style="font-size:13.06711483px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m -143.35433,102.91132 c -0.97409,0 -1.71209,-0.41048 -2.21401,-1.23143 -0.50193,-0.8252 -0.75289,-2.016209 -0.75289,-3.573036 0,-3.198713 0.98896,-4.798072 2.9669,-4.798082 0.98683,10e-6 1.73121,0.41261 2.23315,1.237803 0.50617,0.820956 0.75926,2.007714 0.75927,3.560279 -1e-5,3.202976 -0.99748,4.804466 -2.99242,4.804466 m 0,-0.98897 c 0.62527,0 1.08466,-0.29775 1.37817,-0.89326 0.29349,-0.59976 0.44024,-1.573836 0.44025,-2.922236 -1e-5,-1.339884 -0.14676,-2.307581 -0.44025,-2.903095 -0.29351,-0.599752 -0.7529,-0.899632 -1.37817,-0.89964 -0.61678,8e-6 -1.06979,0.297761 -1.35903,0.89326 -0.285,0.59126 -0.4275,1.561084 -0.42749,2.909475 -1e-5,1.352653 0.14249,2.326736 0.42749,2.922236 0.28924,0.59551 0.74225,0.89326 1.35903,0.89326"
|
||||||
|
id="path3035"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-0.77762174,-0.09801014,-0.15954727,1.2658632,0,0)"
|
||||||
|
id="text2985-0-5-3-3"
|
||||||
|
style="font-size:13.06711483px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m -128.43879,130.7428 c -0.97408,0 -1.71208,-0.41048 -2.21401,-1.23143 -0.50193,-0.8252 -0.75289,-2.01621 -0.75289,-3.57303 0,-3.19872 0.98896,-4.79808 2.9669,-4.79809 0.98683,1e-5 1.73122,0.41261 2.23315,1.23781 0.50617,0.82095 0.75926,2.00771 0.75927,3.56028 -1e-5,3.20297 -0.99748,4.80446 -2.99242,4.80446 m 0,-0.98897 c 0.62528,0 1.08467,-0.29775 1.37817,-0.89326 0.2935,-0.59976 0.44024,-1.57383 0.44025,-2.92223 -1e-5,-1.33989 -0.14675,-2.30759 -0.44025,-2.9031 -0.2935,-0.59975 -0.75289,-0.89963 -1.37817,-0.89964 -0.61678,1e-5 -1.06979,0.29776 -1.35903,0.89326 -0.285,0.59126 -0.42749,1.56108 -0.42749,2.90948 0,1.35265 0.14249,2.32673 0.42749,2.92223 0.28924,0.59551 0.74225,0.89326 1.35903,0.89326"
|
||||||
|
id="path3038"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.2224283,0.19806604,-0.31571913,0.76688897,0,0)"
|
||||||
|
id="text2990-7-14"
|
||||||
|
style="font-size:17.2256794px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 108.4038,118.44056 -1.48033,0 0,-7.67922 c 0,-0.68409 0.0224,-1.69621 0.0673,-3.03636 -0.21869,0.24112 -0.55793,0.55793 -1.01773,0.95044 l -1.23641,1.01772 -0.81587,-1.03455 3.22141,-2.51488 1.26164,0 0,12.29685"
|
||||||
|
id="path3041" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.2380995,-0.02589828,-0.17206885,0.81128882,0,0)"
|
||||||
|
id="text2990-7-14-7"
|
||||||
|
style="font-size:17.2256794px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 95.070558,172.14899 -1.480332,0 0,-7.67922 c -5e-6,-0.68409 0.02242,-1.69621 0.06729,-3.03637 -0.21869,0.24113 -0.557933,0.55794 -1.017728,0.95044 l -1.236414,1.01773 -0.815864,-1.03455 3.221403,-2.51488 1.261647,0 0,12.29685"
|
||||||
|
id="path3044" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(1.2383695,-0.00147106,-0.18803848,0.80773681,0,0)"
|
||||||
|
id="text2990-7-14-3"
|
||||||
|
style="font-size:17.2256794px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono">
|
||||||
|
<path
|
||||||
|
d="m 97.014077,203.21602 -1.480331,0 0,-7.67922 c -5e-6,-0.68409 0.02242,-1.69621 0.06729,-3.03637 -0.21869,0.24113 -0.557932,0.55794 -1.017728,0.95045 l -1.236413,1.01772 -0.815865,-1.03455 3.221404,-2.51488 1.261646,0 0,12.29685"
|
||||||
|
id="path3047" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="matrix(-1.2360182,0.04170273,-0.03045568,0.81007712,0,0)"
|
||||||
|
id="text2985-0-5-3-7"
|
||||||
|
style="font-size:13.94503117px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m -87.840912,107.61557 c -1.039525,0 -1.82711,-0.43805 -2.362757,-1.31415 -0.53565,-0.88064 -0.803474,-2.15167 -0.803473,-3.8131 -10e-7,-3.413614 1.055408,-5.120426 3.16623,-5.120436 1.053135,1e-5 1.847529,0.440331 2.383184,1.320964 0.540181,0.876112 0.810275,2.142602 0.810283,3.799472 -8e-6,3.41817 -1.064496,5.12725 -3.193467,5.12725 m 0,-1.05541 c 0.667287,1e-5 1.157541,-0.31775 1.470765,-0.95327 0.313213,-0.64005 0.469822,-1.67957 0.469828,-3.11857 -6e-6,-1.4299 -0.156615,-2.46261 -0.469828,-3.098135 -0.313224,-0.640046 -0.803478,-0.960073 -1.470765,-0.960082 -0.658216,9e-6 -1.141662,0.317766 -1.450338,0.953273 -0.304142,0.630984 -0.456212,1.665964 -0.456209,3.104944 -3e-6,1.44354 0.152067,2.48306 0.456209,3.11857 0.308676,0.63552 0.792122,0.95328 1.450338,0.95327"
|
||||||
|
id="path3050"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="layer4">
|
||||||
|
<g
|
||||||
|
transform="scale(1.3546944,0.73817387)"
|
||||||
|
id="text2985-04"
|
||||||
|
style="font-size:29.82770729px;font-style:normal;font-weight:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans">
|
||||||
|
<path
|
||||||
|
d="m 77.811338,118.12566 c -2.223492,0 -3.908095,-0.93697 -5.053816,-2.81091 -1.145729,-1.88365 -1.718591,-4.60232 -1.718589,-8.15602 -2e-6,-7.301552 2.257464,-10.952336 6.772405,-10.952357 2.252602,2.1e-5 3.95177,0.941846 5.097508,2.825476 1.15542,1.873961 1.733137,4.582921 1.733153,8.126881 -1.6e-5,7.31129 -2.276901,10.96693 -6.830661,10.96693 m 0,-2.25747 c 1.427292,0 2.475921,-0.67966 3.145891,-2.039 0.669945,-1.36904 1.004924,-3.59252 1.004937,-6.67046 -1.3e-5,-3.05849 -0.334992,-5.26741 -1.004937,-6.62676 -0.66997,-1.369024 -1.718599,-2.053545 -3.145891,-2.053565 -1.407891,2e-5 -2.441956,0.679687 -3.102198,2.039005 -0.650545,1.34964 -0.975814,3.56341 -0.975809,6.64132 -5e-6,3.08765 0.325264,5.31113 0.975809,6.67046 0.660242,1.35934 1.694307,2.039 3.102198,2.039"
|
||||||
|
id="path3053"
|
||||||
|
style="font-variant:normal;font-stretch:normal;font-family:Droid Sans Mono;-inkscape-font-specification:Droid Sans Mono" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 18 KiB |
|
@ -7,13 +7,17 @@ h1 {
|
||||||
margin: 0.5em;
|
margin: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#logo {
|
||||||
|
height: 145px;
|
||||||
|
}
|
||||||
|
|
||||||
.pbloc, .button, .vignette, .thumbshot img {
|
.pbloc, .button, .vignette, .thumbshot img {
|
||||||
border-radius: 0.3em;
|
border-radius: 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pbloc {
|
.pbloc {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
padding: 0.3em;
|
padding: 0.4em;
|
||||||
margin: 1.2em 0.3em;
|
margin: 1.2em 0.3em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -160,8 +160,8 @@ function xsafimport($xsafremote, $max_exec_time) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if( DEBUG ) echo '<html><body>';
|
if( DEBUG ) echo '<html><body>';
|
||||||
if( ALLOW_NEW_AUTOBLOGS and ALLOW_NEW_AUTOBLOGS_BY_XSAF && !empty($autoblog_farm) ) {
|
if( ALLOW_NEW_AUTOBLOGS and ALLOW_NEW_AUTOBLOGS_BY_XSAF && !empty($friends_autoblog_farm) ) {
|
||||||
foreach( $autoblog_farm AS $value ) {
|
foreach( $friends_autoblog_farm AS $value ) {
|
||||||
if( !empty($value) )
|
if( !empty($value) )
|
||||||
xsafimport($value, EXEC_TIME);
|
xsafimport($value, EXEC_TIME);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue