From fc04dd79ac881c8abc239bb131a92f7bf0a406ba Mon Sep 17 00:00:00 2001 From: nojhan Date: Mon, 4 Feb 2008 14:43:15 +0000 Subject: [PATCH] damn msg changelog --- README | 1 + RELEASE | 2 ++ configuration.php | 82 ----------------------------------------------- 3 files changed, 3 insertions(+), 82 deletions(-) delete mode 100644 configuration.php diff --git a/README b/README index 776b9a7..3c8b31f 100644 --- a/README +++ b/README @@ -3,6 +3,7 @@ 1. Installation * copiez les fichiers dans le répertoire de votre choix sur le serveur +* renommez le fichier 'configuration-dist.php' en 'configuration.php' * éditez le fichier 'configuration.php' avec les valeurs de votre choix Attention, StripIt n'est testé que sur des fichiers SVG produits par le logiciel Inkscape. Il est très probable que les diff --git a/RELEASE b/RELEASE index 07e29ae..9793b40 100644 --- a/RELEASE +++ b/RELEASE @@ -1,4 +1,6 @@ SVN : +* entrées du flux RSS en ordre inverse, permet une lecture plus agréable sous les aggrégateurs ne triant pas sur la date (FireFox, par exemple) +* fichier de configuration anonymisé Version 0.3 : * texte du SVG dans l'élément ALT de la balise image diff --git a/configuration.php b/configuration.php deleted file mode 100644 index bff5d04..0000000 --- a/configuration.php +++ /dev/null @@ -1,82 +0,0 @@ - -* @license http://www.gnu.org/licenses/gpl.html GPL -* @copyright 2007 Johann Dréo -* -* @package stripit -*/ - -/** -* Configuration -*/ -class configuration -{ - - /** - * URL of the website - */ - var $url = 'http://localhost/~nojhan/stripit/trunk'; - - /** - * Title of the website - */ - var $title = 'Geekscottes'; - - /** - * Short description - * - * Is displayed as a subtitle - */ - var $description = 'Des miettes libres'; - - /** - * Default language of the interface - */ - var $language = 'fr-FR'; - - /** - * Webmaster's name - */ - var $webmaster = 'nojhan'; - - /** - * Webmaster's email - */ - var $email = 'nojhan@gmail.com'; - - /** - * Forum URL - */ - var $forum = 'http://www.nojhan.net/geekscottes/forum'; - - /** - * Additional URL - */ - var $see_also = array( - 'Bash' => 'http://bash.org', - 'BashFr' => 'http://bashfr.org', - 'LinuxFr' => 'http://linuxfr.org', - 'Gary Larson' => 'http://www.thefarside.com/', - 'Calvin et Hobbes' => 'http://www.gocomics.com/calvinandhobbes/', - 'Le Chat' => 'http://www.geluck.com', - 'XKCD' => 'http://www.xkcd.com', - 'Piled Higher and Deeper' => 'http://www.phdcomics.com', - 'Wulffmorgenthaler' => 'http://www.wulffmorgenthaler.com', - 'User friendly' => 'http://ars.userfriendly.org' - ); - - /** - * Shop URL - */ - var $shop = 'http://geekscottes.spreadshirt.net/fr/FR/Shop'; - - /** - * HTML template to use - */ - var $template_html = 'template_default.html'; -} - -?>