Changeset 52810 in spip-zone
- Timestamp:
- Oct 7, 2011, 9:26:06 AM (9 years ago)
- Location:
- _plugins_/gravatar
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/gravatar/balise/gravatar.php
r36741 r52810 1 1 <?php 2 /** 3 * 4 * Gravatar : Globally Recognized AVATAR 5 * 6 * @package plugins 7 * @subpackage gravatar 8 * 9 * @author Thomas Beaumanoir, Clever Age <http://www.clever-age.com> 10 * @copyright Copyright (c) 2006 11 * @license GNU/GPL 12 * 13 * Revisee 2010 C.Morin pour passage en balise statique qui permet l'application de filtrer 14 * et la mise en cache 15 * 16 * @version $Id$ 17 **/ 2 /** 3 * 4 * Gravatar : Globally Recognized AVATAR 5 * 6 * @package plugins 7 * @subpackage gravatar 8 * 9 * @author Thomas Beaumanoir, Clever Age <http://www.clever-age.com> 10 * @copyright Copyright (c) 2006 11 * @license GNU/GPL 12 * 13 * Revisee 2010 C.Morin pour passage en balise statique qui permet l'application de filtrer 14 * et la mise en cache 15 * 16 * @version $Id$ 17 **/ 18 19 if (!defined("_ECRIRE_INC_VERSION")) return; 18 20 19 21 /** -
_plugins_/gravatar/balise/logo_auteur.php
r36741 r52810 14 14 **/ 15 15 16 if (!defined("_ECRIRE_INC_VERSION")) return; 17 16 18 /** 17 19 * On regarde s'il y a un logo, sinon un gravatar, et on renvoie le tout. -
_plugins_/gravatar/gravatar_pipelines.php
r47736 r52810 14 14 **/ 15 15 16 if (!defined("_ECRIRE_INC_VERSION")) return; 16 17 17 18 /** -
_plugins_/gravatar/inc/gravatar.php
r47736 r52810 13 13 * @version $Id$ 14 14 **/ 15 16 if (!defined("_ECRIRE_INC_VERSION")) return; 15 17 16 18 /** -
_plugins_/gravatar/lang/gravatar_de.php
r47736 r52810 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/gravatar/lang/gravatar_en.php
r47736 r52810 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/gravatar/lang/gravatar_fr.php
r47736 r52810 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( -
_plugins_/gravatar/lang/gravatar_it.php
r47736 r52810 2 2 3 3 // This is a SPIP language file -- Ceci est un fichier langue de SPIP 4 if (!defined("_ECRIRE_INC_VERSION")) return; 4 5 5 6 $GLOBALS[$GLOBALS['idx_lang']] = array( … … 13 14 'label_image_defaut' => 'immagine standard', 14 15 'explication_image_defaut' => 'Per coloro che non hanno Gravatar, usa:', 15 'label_image_defaut_404' => 'Non c\' èimmagine',16 'label_image_defaut_404' => 'Non c\'� immagine', 16 17 'label_image_defaut_png' => '<tt>images/gravatar.png</tt>', 17 18 'label_image_defaut_gravatar' => 'Logo di Gravatar',
Note: See TracChangeset
for help on using the changeset viewer.