sortie de la fabrique
41
action/supprimer_blocklog.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
/**
|
||||
* Utilisation de l'action supprimer pour l'objet blocklog
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Action
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Action pour supprimer un·e blocklog
|
||||
*
|
||||
* Vérifier l'autorisation avant d'appeler l'action.
|
||||
*
|
||||
* @param null|int $arg
|
||||
* Identifiant à supprimer.
|
||||
* En absence de id utilise l'argument de l'action sécurisée.
|
||||
**/
|
||||
function action_supprimer_blocklog_dist($arg=null) {
|
||||
if (is_null($arg)){
|
||||
$securiser_action = charger_fonction('securiser_action', 'inc');
|
||||
$arg = $securiser_action();
|
||||
}
|
||||
$arg = intval($arg);
|
||||
|
||||
// cas suppression
|
||||
if ($arg) {
|
||||
sql_delete('spip_blocklogs', 'id_blocklog=' . sql_quote($arg));
|
||||
}
|
||||
else {
|
||||
spip_log("action_supprimer_blocklog_dist $arg pas compris");
|
||||
}
|
||||
}
|
97
base/blocklog.php
Normal file
|
@ -0,0 +1,97 @@
|
|||
<?php
|
||||
/**
|
||||
* Déclarations relatives à la base de données
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Pipelines
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Déclaration des alias de tables et filtres automatiques de champs
|
||||
*
|
||||
* @pipeline declarer_tables_interfaces
|
||||
* @param array $interfaces
|
||||
* Déclarations d'interface pour le compilateur
|
||||
* @return array
|
||||
* Déclarations d'interface pour le compilateur
|
||||
*/
|
||||
function blocklog_declarer_tables_interfaces($interfaces) {
|
||||
|
||||
$interfaces['table_des_tables']['blocklogs'] = 'blocklogs';
|
||||
|
||||
return $interfaces;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Déclaration des objets éditoriaux
|
||||
*
|
||||
* @pipeline declarer_tables_objets_sql
|
||||
* @param array $tables
|
||||
* Description des tables
|
||||
* @return array
|
||||
* Description complétée des tables
|
||||
*/
|
||||
function blocklog_declarer_tables_objets_sql($tables) {
|
||||
|
||||
$tables['spip_blocklogs'] = array(
|
||||
'type' => 'blocklog',
|
||||
'principale' => 'oui',
|
||||
'field'=> array(
|
||||
'id_blocklog' => 'bigint(21) NOT NULL',
|
||||
'num' => 'bigint(21) NOT NULL DEFAULT 0',
|
||||
'blockchaine' => 'text NOT NULL DEFAULT ""',
|
||||
'chaine' => 'text NOT NULL DEFAULT ""',
|
||||
'maj' => 'TIMESTAMP'
|
||||
),
|
||||
'key' => array(
|
||||
'PRIMARY KEY' => 'id_blocklog',
|
||||
),
|
||||
'titre' => '"" AS titre, "" AS lang',
|
||||
#'date' => '',
|
||||
'champs_editables' => array('num', 'blockchaine', 'chaine'),
|
||||
'champs_versionnes' => array('num', 'blockchaine', 'chaine'),
|
||||
'rechercher_champs' => array(),
|
||||
'tables_jointures' => array('spip_blocklogs_liens'),
|
||||
|
||||
|
||||
);
|
||||
|
||||
return $tables;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Déclaration des tables secondaires (liaisons)
|
||||
*
|
||||
* @pipeline declarer_tables_auxiliaires
|
||||
* @param array $tables
|
||||
* Description des tables
|
||||
* @return array
|
||||
* Description complétée des tables
|
||||
*/
|
||||
function blocklog_declarer_tables_auxiliaires($tables) {
|
||||
|
||||
$tables['spip_blocklogs_liens'] = array(
|
||||
'field' => array(
|
||||
'id_blocklog' => 'bigint(21) DEFAULT "0" NOT NULL',
|
||||
'id_objet' => 'bigint(21) DEFAULT "0" NOT NULL',
|
||||
'objet' => 'VARCHAR(25) DEFAULT "" NOT NULL',
|
||||
'vu' => 'VARCHAR(6) DEFAULT "non" NOT NULL',
|
||||
),
|
||||
'key' => array(
|
||||
'PRIMARY KEY' => 'id_blocklog,id_objet,objet',
|
||||
'KEY id_blocklog' => 'id_blocklog',
|
||||
)
|
||||
);
|
||||
|
||||
return $tables;
|
||||
}
|
58
blocklog_administrations.php
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?php
|
||||
/**
|
||||
* Fichier gérant l'installation et désinstallation du plugin Block Log
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Installation
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Fonction d'installation et de mise à jour du plugin Block Log.
|
||||
*
|
||||
* @param string $nom_meta_base_version
|
||||
* Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP
|
||||
* @param string $version_cible
|
||||
* Version du schéma de données dans ce plugin (déclaré dans paquet.xml)
|
||||
* @return void
|
||||
**/
|
||||
function blocklog_upgrade($nom_meta_base_version, $version_cible) {
|
||||
$maj = array();
|
||||
|
||||
$maj['create'] = array(array('maj_tables', array('spip_blocklogs', 'spip_blocklogs_liens')));
|
||||
|
||||
include_spip('base/upgrade');
|
||||
maj_plugin($nom_meta_base_version, $version_cible, $maj);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Fonction de désinstallation du plugin Block Log.
|
||||
*
|
||||
* @param string $nom_meta_base_version
|
||||
* Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP
|
||||
* @return void
|
||||
**/
|
||||
function blocklog_vider_tables($nom_meta_base_version) {
|
||||
|
||||
sql_drop_table('spip_blocklogs');
|
||||
sql_drop_table('spip_blocklogs_liens');
|
||||
|
||||
# Nettoyer les liens courants (le génie optimiser_base_disparus se chargera de nettoyer toutes les tables de liens)
|
||||
sql_delete('spip_documents_liens', sql_in('objet', array('blocklog')));
|
||||
sql_delete('spip_mots_liens', sql_in('objet', array('blocklog')));
|
||||
sql_delete('spip_auteurs_liens', sql_in('objet', array('blocklog')));
|
||||
# Nettoyer les versionnages et forums
|
||||
sql_delete('spip_versions', sql_in('objet', array('blocklog')));
|
||||
sql_delete('spip_versions_fragments', sql_in('objet', array('blocklog')));
|
||||
sql_delete('spip_forum', sql_in('objet', array('blocklog')));
|
||||
|
||||
effacer_meta($nom_meta_base_version);
|
||||
}
|
100
blocklog_autorisations.php
Normal file
|
@ -0,0 +1,100 @@
|
|||
<?php
|
||||
/**
|
||||
* Définit les autorisations du plugin Block Log
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Autorisations
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Fonction d'appel pour le pipeline
|
||||
* @pipeline autoriser */
|
||||
function blocklog_autoriser() {
|
||||
}
|
||||
|
||||
|
||||
// -----------------
|
||||
// Objet blocklogs
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Autorisation de créer (blocklog)
|
||||
*
|
||||
* @param string $faire Action demandée
|
||||
* @param string $type Type d'objet sur lequel appliquer l'action
|
||||
* @param int $id Identifiant de l'objet
|
||||
* @param array $qui Description de l'auteur demandant l'autorisation
|
||||
* @param array $opt Options de cette autorisation
|
||||
* @return bool true s'il a le droit, false sinon
|
||||
**/
|
||||
function autoriser_blocklog_creer_dist($faire, $type, $id, $qui, $opt) {
|
||||
return in_array($qui['statut'], array('0minirezo', '1comite'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Autorisation de voir (blocklog)
|
||||
*
|
||||
* @param string $faire Action demandée
|
||||
* @param string $type Type d'objet sur lequel appliquer l'action
|
||||
* @param int $id Identifiant de l'objet
|
||||
* @param array $qui Description de l'auteur demandant l'autorisation
|
||||
* @param array $opt Options de cette autorisation
|
||||
* @return bool true s'il a le droit, false sinon
|
||||
**/
|
||||
function autoriser_blocklog_voir_dist($faire, $type, $id, $qui, $opt) {
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Autorisation de modifier (blocklog)
|
||||
*
|
||||
* @param string $faire Action demandée
|
||||
* @param string $type Type d'objet sur lequel appliquer l'action
|
||||
* @param int $id Identifiant de l'objet
|
||||
* @param array $qui Description de l'auteur demandant l'autorisation
|
||||
* @param array $opt Options de cette autorisation
|
||||
* @return bool true s'il a le droit, false sinon
|
||||
**/
|
||||
function autoriser_blocklog_modifier_dist($faire, $type, $id, $qui, $opt) {
|
||||
return in_array($qui['statut'], array('0minirezo', '1comite'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Autorisation de supprimer (blocklog)
|
||||
*
|
||||
* @param string $faire Action demandée
|
||||
* @param string $type Type d'objet sur lequel appliquer l'action
|
||||
* @param int $id Identifiant de l'objet
|
||||
* @param array $qui Description de l'auteur demandant l'autorisation
|
||||
* @param array $opt Options de cette autorisation
|
||||
* @return bool true s'il a le droit, false sinon
|
||||
**/
|
||||
function autoriser_blocklog_supprimer_dist($faire, $type, $id, $qui, $opt) {
|
||||
return $qui['statut'] == '0minirezo' and !$qui['restreint'];
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Autorisation de lier/délier l'élément (blocklogs)
|
||||
*
|
||||
* @param string $faire Action demandée
|
||||
* @param string $type Type d'objet sur lequel appliquer l'action
|
||||
* @param int $id Identifiant de l'objet
|
||||
* @param array $qui Description de l'auteur demandant l'autorisation
|
||||
* @param array $opt Options de cette autorisation
|
||||
* @return bool true s'il a le droit, false sinon
|
||||
**/
|
||||
function autoriser_associerblocklogs_dist($faire, $type, $id, $qui, $opt) {
|
||||
return $qui['statut'] == '0minirezo' and !$qui['restreint'];
|
||||
}
|
14
blocklog_fonctions.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* Fonctions utiles au plugin Block Log
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Fonctions
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
14
blocklog_options.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
/**
|
||||
* Options au chargement du plugin Block Log
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Options
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
35
blocklog_pipelines.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
/**
|
||||
* Utilisations de pipelines par Block Log
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Pipelines
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Optimiser la base de données
|
||||
*
|
||||
* Supprime les liens orphelins de l'objet vers quelqu'un et de quelqu'un vers l'objet.
|
||||
*
|
||||
* @pipeline optimiser_base_disparus
|
||||
* @param array $flux Données du pipeline
|
||||
* @return array Données du pipeline
|
||||
*/
|
||||
function blocklog_optimiser_base_disparus($flux) {
|
||||
|
||||
include_spip('action/editer_liens');
|
||||
$flux['data'] += objet_optimiser_liens(array('blocklog'=>'*'), '*');
|
||||
|
||||
return $flux;
|
||||
}
|
222
fabrique_blocklog.php
Normal file
16
formulaires/configurer_blocklog.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<div class="formulaire_spip formulaire_configurer formulaire_#FORM">
|
||||
|
||||
<h3 class="titrem"><:blocklog:cfg_titre_parametrages:></h3>
|
||||
|
||||
[<p class="reponse_formulaire reponse_formulaire_ok">(#ENV*{message_ok})</p>]
|
||||
[<p class="reponse_formulaire reponse_formulaire_erreur">(#ENV*{message_erreur})</p>]
|
||||
|
||||
<form method="post" action="#ENV{action}">
|
||||
<div>
|
||||
#ACTION_FORMULAIRE
|
||||
|
||||
<input type="hidden" name="_meta_casier" value="blocklog" />
|
||||
<p class="boutons"><span class="image_loading"> </span><input type="submit" class="submit" value="<:bouton_enregistrer:>" /></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
17
formulaires/editer_blocklog.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<div class='formulaire_spip formulaire_editer formulaire_#FORM formulaire_#FORM-#ENV{id_blocklog,nouveau}'>
|
||||
[<p class="reponse_formulaire reponse_formulaire_ok">(#ENV**{message_ok})</p>]
|
||||
[<p class="reponse_formulaire reponse_formulaire_erreur">(#ENV*{message_erreur})</p>]
|
||||
|
||||
[(#ENV{editable})
|
||||
<form method="post" action="#ENV{action}"><div>
|
||||
#ACTION_FORMULAIRE
|
||||
<input type="hidden" name="id_blocklog" value="#ENV{id_blocklog}" />
|
||||
<div class="editer-groupe">
|
||||
|
||||
</div>
|
||||
[(#REM) ajouter les saisies supplementaires : extra et autre, a cet endroit ]
|
||||
<!--extra-->
|
||||
<p class="boutons"><input type="submit" class="submit" value="<:bouton_enregistrer:>" /></p>
|
||||
</div></form>
|
||||
]
|
||||
</div>
|
124
formulaires/editer_blocklog.php
Normal file
|
@ -0,0 +1,124 @@
|
|||
<?php
|
||||
/**
|
||||
* Gestion du formulaire de d'édition de blocklog
|
||||
*
|
||||
* @plugin Block Log
|
||||
* @copyright 2019
|
||||
* @author tofulm
|
||||
* @licence GNU/GPL
|
||||
* @package SPIP\Blocklog\Formulaires
|
||||
*/
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
include_spip('inc/actions');
|
||||
include_spip('inc/editer');
|
||||
|
||||
|
||||
/**
|
||||
* Identifier le formulaire en faisant abstraction des paramètres qui ne représentent pas l'objet edité
|
||||
*
|
||||
* @param int|string $id_blocklog
|
||||
* Identifiant du blocklog. 'new' pour un nouveau blocklog.
|
||||
* @param string $retour
|
||||
* URL de redirection après le traitement
|
||||
* @param int $lier_trad
|
||||
* Identifiant éventuel d'un blocklog source d'une traduction
|
||||
* @param string $config_fonc
|
||||
* Nom de la fonction ajoutant des configurations particulières au formulaire
|
||||
* @param array $row
|
||||
* Valeurs de la ligne SQL du blocklog, si connu
|
||||
* @param string $hidden
|
||||
* Contenu HTML ajouté en même temps que les champs cachés du formulaire.
|
||||
* @return string
|
||||
* Hash du formulaire
|
||||
*/
|
||||
function formulaires_editer_blocklog_identifier_dist($id_blocklog = 'new', $retour = '', $lier_trad = 0, $config_fonc = '', $row = array(), $hidden = '') {
|
||||
return serialize(array(intval($id_blocklog)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Chargement du formulaire d'édition de blocklog
|
||||
*
|
||||
* Déclarer les champs postés et y intégrer les valeurs par défaut
|
||||
*
|
||||
* @uses formulaires_editer_objet_charger()
|
||||
*
|
||||
* @param int|string $id_blocklog
|
||||
* Identifiant du blocklog. 'new' pour un nouveau blocklog.
|
||||
* @param string $retour
|
||||
* URL de redirection après le traitement
|
||||
* @param int $lier_trad
|
||||
* Identifiant éventuel d'un blocklog source d'une traduction
|
||||
* @param string $config_fonc
|
||||
* Nom de la fonction ajoutant des configurations particulières au formulaire
|
||||
* @param array $row
|
||||
* Valeurs de la ligne SQL du blocklog, si connu
|
||||
* @param string $hidden
|
||||
* Contenu HTML ajouté en même temps que les champs cachés du formulaire.
|
||||
* @return array
|
||||
* Environnement du formulaire
|
||||
*/
|
||||
function formulaires_editer_blocklog_charger_dist($id_blocklog = 'new', $retour = '', $lier_trad = 0, $config_fonc = '', $row = array(), $hidden = '') {
|
||||
$valeurs = formulaires_editer_objet_charger('blocklog', $id_blocklog, '', $lier_trad, $retour, $config_fonc, $row, $hidden);
|
||||
return $valeurs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vérifications du formulaire d'édition de blocklog
|
||||
*
|
||||
* Vérifier les champs postés et signaler d'éventuelles erreurs
|
||||
*
|
||||
* @uses formulaires_editer_objet_verifier()
|
||||
*
|
||||
* @param int|string $id_blocklog
|
||||
* Identifiant du blocklog. 'new' pour un nouveau blocklog.
|
||||
* @param string $retour
|
||||
* URL de redirection après le traitement
|
||||
* @param int $lier_trad
|
||||
* Identifiant éventuel d'un blocklog source d'une traduction
|
||||
* @param string $config_fonc
|
||||
* Nom de la fonction ajoutant des configurations particulières au formulaire
|
||||
* @param array $row
|
||||
* Valeurs de la ligne SQL du blocklog, si connu
|
||||
* @param string $hidden
|
||||
* Contenu HTML ajouté en même temps que les champs cachés du formulaire.
|
||||
* @return array
|
||||
* Tableau des erreurs
|
||||
*/
|
||||
function formulaires_editer_blocklog_verifier_dist($id_blocklog = 'new', $retour = '', $lier_trad = 0, $config_fonc = '', $row = array(), $hidden = '') {
|
||||
$erreurs = array();
|
||||
|
||||
$erreurs = formulaires_editer_objet_verifier('blocklog', $id_blocklog);
|
||||
|
||||
return $erreurs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Traitement du formulaire d'édition de blocklog
|
||||
*
|
||||
* Traiter les champs postés
|
||||
*
|
||||
* @uses formulaires_editer_objet_traiter()
|
||||
*
|
||||
* @param int|string $id_blocklog
|
||||
* Identifiant du blocklog. 'new' pour un nouveau blocklog.
|
||||
* @param string $retour
|
||||
* URL de redirection après le traitement
|
||||
* @param int $lier_trad
|
||||
* Identifiant éventuel d'un blocklog source d'une traduction
|
||||
* @param string $config_fonc
|
||||
* Nom de la fonction ajoutant des configurations particulières au formulaire
|
||||
* @param array $row
|
||||
* Valeurs de la ligne SQL du blocklog, si connu
|
||||
* @param string $hidden
|
||||
* Contenu HTML ajouté en même temps que les champs cachés du formulaire.
|
||||
* @return array
|
||||
* Retours des traitements
|
||||
*/
|
||||
function formulaires_editer_blocklog_traiter_dist($id_blocklog = 'new', $retour = '', $lier_trad = 0, $config_fonc = '', $row = array(), $hidden = '') {
|
||||
$retours = formulaires_editer_objet_traiter('blocklog', $id_blocklog, '', $lier_trad, $retour, $config_fonc, $row, $hidden);
|
||||
return $retours;
|
||||
}
|
46
lang/blocklog_fr.php
Normal file
|
@ -0,0 +1,46 @@
|
|||
<?php
|
||||
// This is a SPIP language file -- Ceci est un fichier langue de SPIP
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
$GLOBALS[$GLOBALS['idx_lang']] = array(
|
||||
|
||||
// A
|
||||
'ajouter_lien_blocklog' => 'Ajouter ce blocklog',
|
||||
|
||||
// C
|
||||
'champ_blockchaine_label' => 'blockchaine',
|
||||
'champ_chaine_label' => 'chaine',
|
||||
'champ_num_label' => 'num',
|
||||
'confirmer_supprimer_blocklog' => 'Confirmez-vous la suppression de cet blocklog ?',
|
||||
|
||||
// I
|
||||
'icone_creer_blocklog' => 'Créer un blocklog',
|
||||
'icone_modifier_blocklog' => 'Modifier ce blocklog',
|
||||
'info_1_blocklog' => 'Un blocklog',
|
||||
'info_aucun_blocklog' => 'Aucun blocklog',
|
||||
'info_blocklogs_auteur' => 'Les blocklogs de cet auteur',
|
||||
'info_nb_blocklogs' => '@nb@ blocklogs',
|
||||
|
||||
// R
|
||||
'retirer_lien_blocklog' => 'Retirer ce blocklog',
|
||||
'retirer_tous_liens_blocklogs' => 'Retirer tous les blocklogs',
|
||||
|
||||
// S
|
||||
'supprimer_blocklog' => 'Supprimer cet blocklog',
|
||||
|
||||
// T
|
||||
'texte_ajouter_blocklog' => 'Ajouter un blocklog',
|
||||
'texte_changer_statut_blocklog' => 'Ce blocklog est :',
|
||||
'texte_creer_associer_blocklog' => 'Créer et associer un blocklog',
|
||||
'texte_definir_comme_traduction_blocklog' => 'Ce blocklog est une traduction du blocklog numéro :',
|
||||
'titre_blocklog' => 'Blocklog',
|
||||
'titre_blocklogs' => 'Blocklogs',
|
||||
'titre_blocklogs_rubrique' => 'Blocklogs de la rubrique',
|
||||
'titre_langue_blocklog' => 'Langue de ce blocklog',
|
||||
'titre_logo_blocklog' => 'Logo de ce blocklog',
|
||||
'titre_objets_lies_blocklog' => 'Liés à ce blocklog',
|
||||
);
|
14
lang/paquet-blocklog_fr.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
// This is a SPIP language file -- Ceci est un fichier langue de SPIP
|
||||
|
||||
if (!defined('_ECRIRE_INC_VERSION')) {
|
||||
return;
|
||||
}
|
||||
|
||||
$GLOBALS[$GLOBALS['idx_lang']] = array(
|
||||
|
||||
// B
|
||||
'blocklog_description' => '',
|
||||
'blocklog_nom' => 'Block Log',
|
||||
'blocklog_slogan' => '',
|
||||
);
|
32
paquet.xml
Normal file
|
@ -0,0 +1,32 @@
|
|||
<paquet
|
||||
prefix="blocklog"
|
||||
categorie="outil"
|
||||
version="1.0.0"
|
||||
etat="dev"
|
||||
compatibilite="[3.2.0;3.3.*]"
|
||||
logo="prive/themes/spip/images/blocklog-64.png"
|
||||
documentation=""
|
||||
schema="1.0.0"
|
||||
>
|
||||
<!--
|
||||
Paquet généré le 2019-12-17 16:57:34
|
||||
-->
|
||||
|
||||
<nom>Block Log</nom>
|
||||
|
||||
|
||||
<auteur lien='https://gamuza.fr'>tofulm</auteur>
|
||||
<credit lien="https://gamuza.fr">Logo : tofulm</credit>
|
||||
|
||||
<licence>GNU/GPL</licence>
|
||||
<necessite nom="saisies" compatibilite="[3.23.2;]" />
|
||||
|
||||
|
||||
<pipeline nom="autoriser" inclure="blocklog_autorisations.php" />
|
||||
|
||||
<pipeline nom="declarer_tables_objets_sql" inclure="base/blocklog.php" />
|
||||
<pipeline nom="declarer_tables_interfaces" inclure="base/blocklog.php" />
|
||||
<pipeline nom="declarer_tables_auxiliaires" inclure="base/blocklog.php" />
|
||||
<pipeline nom="optimiser_base_disparus" inclure="blocklog_pipelines.php" />
|
||||
|
||||
</paquet>
|
17
prive/objets/contenu/blocklog.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<BOUCLE_blocklog(BLOCKLOGS){id_blocklog}>
|
||||
[<div class="champ contenu_num[ (#NUM*|strlen|?{'',vide})]">
|
||||
<div class="label"><:blocklog:champ_num_label:> : </div>
|
||||
<span dir="#LANG_DIR" class="#EDIT{num} num">(#NUM)</span>
|
||||
</div>]
|
||||
|
||||
[<div class="champ contenu_blockchaine[ (#BLOCKCHAINE*|strlen|?{'',vide})]">
|
||||
<div class="label"><:blocklog:champ_blockchaine_label:> : </div>
|
||||
<span dir="#LANG_DIR" class="#EDIT{blockchaine} blockchaine">(#BLOCKCHAINE)</span>
|
||||
</div>]
|
||||
|
||||
[<div class="champ contenu_chaine[ (#CHAINE*|strlen|?{'',vide})]">
|
||||
<div class="label"><:blocklog:champ_chaine_label:> : </div>
|
||||
<span dir="#LANG_DIR" class="#EDIT{chaine} chaine">(#CHAINE)</span>
|
||||
</div>]
|
||||
|
||||
</BOUCLE_blocklog>
|
16
prive/objets/infos/blocklog.html
Normal file
|
@ -0,0 +1,16 @@
|
|||
<BOUCLE_blocklog(BLOCKLOGS){id_blocklog=#ENV{id}}>
|
||||
<div class="infos">
|
||||
[(#SET{texte_objet,<:blocklog:titre_blocklog:>})]
|
||||
<div class="numero"><:titre_cadre_numero_objet{objet=#GET{texte_objet}}:><p>#ID_BLOCKLOG</p></div>
|
||||
|
||||
<div class='nb_elements'><!--nb_elements--></div>
|
||||
|
||||
[(#AUTORISER{supprimer, blocklog, #ID_BLOCKLOG}|oui)
|
||||
[(#BOUTON_ACTION{
|
||||
[(#CHEMIN_IMAGE{blocklog-del-24.png}|balise_img{<:blocklog:supprimer_blocklog:>}|concat{' ',#VAL{<:blocklog:supprimer_blocklog:>}|wrap{<b>}}|trim)],
|
||||
#URL_ACTION_AUTEUR{supprimer_blocklog, #ID_BLOCKLOG, #URL_ECRIRE{blocklogs}},
|
||||
icone s24 horizontale danger blocklog-del-24, <:blocklog:confirmer_supprimer_blocklog:>})]
|
||||
]
|
||||
|
||||
</div>
|
||||
</BOUCLE_blocklog>
|
33
prive/objets/liste/blocklogs.html
Normal file
|
@ -0,0 +1,33 @@
|
|||
[(#SET{defaut_tri,#ARRAY{
|
||||
id_blocklog,1,
|
||||
points,-1
|
||||
}})]<B_liste_blocklogs>
|
||||
#ANCRE_PAGINATION
|
||||
<div class="liste-objets blocklogs">
|
||||
<table class="spip liste">
|
||||
[<caption><strong class="caption">(#ENV*{titre,#GRAND_TOTAL|singulier_ou_pluriel{blocklog:info_1_blocklog,blocklog:info_nb_blocklogs}})</strong></caption>]
|
||||
<thead>
|
||||
<tr class="first_row">
|
||||
<th class="picto" scope="col"></th>
|
||||
<th class="" scope="col">[(#TRI{,<:blocklog:champ__label:>,ajax})]</th>
|
||||
<th class="id" scope="col">[(#TRI{id_blocklog,<:info_numero_abbreviation:>,ajax})]</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<BOUCLE_liste_blocklogs(BLOCKLOGS){id_mot?}{id_auteur?}{where?}{recherche?}{tri #ENV{par,num },#GET{defaut_tri}}{par }{pagination #ENV{nb,10}}>
|
||||
<tr class="[(#COMPTEUR_BOUCLE|alterner{row_odd,row_even})]">
|
||||
<td class="picto">[(#CHEMIN_IMAGE{blocklog-16.png}|balise_img)]</td>
|
||||
<td class=" principale">[(#LOGO_BLOCKLOG|image_reduire{20,26})]<a href="[(#ID_BLOCKLOG|generer_url_entite{blocklog})]" title="<:info_numero_abbreviation|attribut_html:> #ID_BLOCKLOG">[(#RANG). ]#</a></td>
|
||||
<td class="id">[(#AUTORISER{modifier,blocklog,#ID_BLOCKLOG}|?{
|
||||
<a href="[(#URL_ECRIRE{blocklog_edit,id_blocklog=#ID_BLOCKLOG})]">#ID_BLOCKLOG</a>,
|
||||
#ID_BLOCKLOG
|
||||
})]</td>
|
||||
</tr>
|
||||
</BOUCLE_liste_blocklogs>
|
||||
</tbody>
|
||||
</table>
|
||||
[<p class="pagination">(#PAGINATION{prive})</p>]
|
||||
</div>
|
||||
</B_liste_blocklogs>[
|
||||
<div class="liste-objets blocklogs caption-wrap"><strong class="caption">(#ENV*{sinon,''})</strong></div>
|
||||
]<//B_liste_blocklogs>
|
7
prive/squelettes/contenu/configurer_blocklog.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
[(#AUTORISER{configurer,_blocklog}|sinon_interdire_acces)]
|
||||
|
||||
<h1 class="grostitre"><:blocklog:titre_page_configurer_blocklog:></h1>
|
||||
|
||||
<div class="ajax">
|
||||
#FORMULAIRE_CONFIGURER_BLOCKLOG
|
||||
</div>
|
95
prive/themes/spip/images/blocklog-12.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="12" height="15" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-128.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="128" height="152" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-16.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="16" height="19" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-24.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="24" height="29" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-32.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="32" height="38" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-64.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="64" height="76" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |
95
prive/themes/spip/images/blocklog-new-16.png
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?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" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" x="0px" y="0px" viewBox="0 0 228.64425 270" enable-background="new 0 0 40 40" xml:space="preserve" id="svg26" sodipodi:docname="blocklog.svg" width="16" height="19" inkscape:version="0.92.4 5da689c313, 2019-01-14"><rect x="0" y="0" width="228.64425" height="270" fill="#cccccc"/><metadata
|
||||
id="metadata32"><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><defs
|
||||
id="defs30"><style
|
||||
id="style890"
|
||||
type="text/css">
|
||||
|
||||
.fil0 {fill:black}
|
||||
.fil1 {fill:black;fill-rule:nonzero}
|
||||
|
||||
</style></defs><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1788"
|
||||
inkscape:window-height="1416"
|
||||
id="namedview28"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.8023192"
|
||||
inkscape:cx="-165.02581"
|
||||
inkscape:cy="304.57911"
|
||||
inkscape:window-x="768"
|
||||
inkscape:window-y="20"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg26" /><line
|
||||
id="line894"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="13.999998"
|
||||
x1="91.000008"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><line
|
||||
id="line896"
|
||||
y2="124"
|
||||
x2="96.000008"
|
||||
y1="10.999998"
|
||||
x1="130"
|
||||
class="fil0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:evenodd;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path898"
|
||||
d="m 147,2 54,54 c 1,1 2,3 2,6 v 25.187289 c 0,0 0,21.330401 0,31.995591 0,36.06103 0,86.19904 0,108.18308 0,21.98404 0,23.72118 0,23.72118 V 262 c 0,4 -4,8 -8,8 H 8 c -4,0 -8,-4 -8,-8 V 8 C 0,4 4,0 8,0 h 133 c 3,0 5,1 6,2 z m 4,32 v 31 h 31 z m 32,51 h -44 c -4,0 -8,-3 -8,-8 V 20 H 20 v 230 h 163 c 0,0 0,-1.78596 0,-23.7357 0,-21.94974 0,-107.96275 0,-107.96275 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
sodipodi:nodetypes="ssscszcsssssssscccccsscccczcc" /><rect
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.61780108"
|
||||
id="rect949"
|
||||
width="25.117863"
|
||||
height="113.91171"
|
||||
x="180.08925"
|
||||
y="116.09824" /><g
|
||||
id="g953"
|
||||
transform="matrix(1.1664754,0,0,1.1843586,255.09751,95.991429)"><path
|
||||
d="M -30.567888,61.618747 V 45.337642 c 0,-12.719613 -10.17569,-23.404087 -23.404087,-23.404087 -12.719613,0 -23.404088,10.684474 -23.404088,23.404087 v 16.281105 c -4.070276,5.087845 -6.105414,11.193259 -6.105414,17.298673 0,3.052708 2.543922,5.087846 5.087845,5.087846 3.052707,0 5.087845,-2.035138 5.087845,-5.087846 0,-4.57906 1.526353,-9.158121 4.579061,-12.210828 3.561491,-4.070276 8.649336,-6.614199 14.245966,-6.614199 5.087845,0 10.17569,2.035138 14.245967,6.105415 0,0.508784 0.508784,0.508784 0.508784,1.017569 2.543923,3.561491 4.070276,7.631767 4.070276,12.210828 0,4.579061 -1.526353,9.158121 -4.57906,12.210828 -6.105415,7.122984 -17.807459,8.649337 -25.439226,3.052707 -2.543923,-1.526353 -5.59663,-1.017569 -7.122984,1.01757 -1.526353,2.035138 -1.017569,5.59663 1.017569,7.12298 5.087846,3.56149 11.19326,5.59663 17.298674,5.59663 8.649337,0 16.789889,-3.56149 21.877734,-10.175688 4.579061,-5.087845 7.122984,-12.210828 7.122984,-19.333812 1.017569,-6.105414 -1.01757,-12.210828 -5.087846,-17.298673 z m -36.1237,-8.649337 v -8.140552 c 0,-7.122983 6.105414,-13.228398 13.228397,-13.228398 7.122983,0 13.228398,6.105415 13.228398,13.228398 v 8.140552 c -4.070277,-2.035138 -8.649337,-3.052707 -13.228398,-3.052707 -5.087845,0 -9.158121,1.017569 -13.228397,3.052707 z"
|
||||
id="path6"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke:#ff0000;stroke-width:5.08784533" /><path
|
||||
d="m -54.387204,83.667682 c -1.621993,0 -2.703322,-0.518631 -3.78465,-1.555893 -1.081329,-1.037262 -1.621993,-2.074524 -1.621993,-3.630418 0,-1.555893 0.540664,-2.593155 1.621993,-3.630417 2.162657,-2.074524 5.947307,-2.074524 7.569299,0 1.081329,1.037262 1.621993,2.074524 1.621993,3.630417 0,1.555894 -0.540664,2.593156 -1.621993,3.630418 -0.540664,1.037262 -2.162657,1.555893 -3.784649,1.555893 z"
|
||||
id="path10"
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#ff0000;stroke-width:5.29533052" /></g><path
|
||||
id="path900-3"
|
||||
d="M 38.239845,131.05679 H 141.23984 c 11,0 11,15.01445 0,15.01445 H 38.239845 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><path
|
||||
id="path900-3-5"
|
||||
d="M 39.040775,178.25947 H 142.04077 c 11,0 11,15.01445 0,15.01445 H 39.040775 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
class="fil1"
|
||||
inkscape:connector-curvature="0"
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision" /><g
|
||||
id="g1009"
|
||||
transform="translate(-6)"><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42,107.89849 h 103 c 11,0 11,15.01445 0,15.01445 H 42 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 42.23985,155.05679 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 42.23985 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6" /><path
|
||||
style="clip-rule:evenodd;fill:#000000;fill-rule:nonzero;stroke-width:0.8664425;image-rendering:optimizeQuality;shape-rendering:geometricPrecision;text-rendering:geometricPrecision"
|
||||
inkscape:connector-curvature="0"
|
||||
class="fil1"
|
||||
d="m 43.04078,202.25947 h 102.99999 c 11,0 11,15.01445 0,15.01445 H 43.04078 c -11,0 -11,-15.01445 0,-15.01445 z"
|
||||
id="path900-3-6-3" /></g></svg>
|
After Width: | Height: | Size: 7 KiB |