From 91a9ed422225574b6d15811dd3838f4d11bf89b6 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Wed, 25 Sep 2002 20:29:32 +0000 Subject: [PATCH] *** empty log message *** --- htdocs/conf/conf.class.php3 | 131 +++++++++++++++++++++++++++++++ htdocs/theme/yellow/dolibarr.css | 91 +++++++++++++++++++++ 2 files changed, 222 insertions(+) create mode 100644 htdocs/conf/conf.class.php3 create mode 100644 htdocs/theme/yellow/dolibarr.css diff --git a/htdocs/conf/conf.class.php3 b/htdocs/conf/conf.class.php3 new file mode 100644 index 00000000000..53cd4075a6f --- /dev/null +++ b/htdocs/conf/conf.class.php3 @@ -0,0 +1,131 @@ + + * + * $Id$ + * $Source$ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + */ + +class Conf { + var $readonly; + var $dbi; + + Function Conf() { + + $this->theme = "dolibarr"; + + $this->liste_limit = 20; + + $this->db = new DbConf(); + + $this->propal = new PropalConf(); + + $this->facture = new FactureConf(); + + $this->fichinter = new FicheInterConf(); + + $this->webcal = new WebcalConf(); + + $this->readonly = 0; + + $this->voyage = 1 ; + + $this->years = 2001; + + $this->css = "theme/dolibarr/dolibarr.css"; + + } +} + +class PropalConf { + Function PropalConf() { + + $this->fromtoname = "Service Commercial"; + $this->fromtomail = "commercial@propal.com"; + + $this->replytoname = "Service Commercial"; + $this->replytomail = "commercial@propal.com"; + + $this->templatesdir = "/home/www/dolibarr/dolibarr/templates/propal/default"; + $this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/propal"; + /* + * Without ended slash + */ + $this->outputurl = "/document/propal"; + } +} + +class DbConf { + Function DbConf() { + $this->type = "mysql"; + $this->host = "localhost"; + $this->user = "dolibarr"; + $this->pass = ""; + $this->name = "dolibarr"; + } +} + +class WebcalConf { + Function WebcalConf() { + $this->enabled = 1; + + $this->url = "http://webcalendar.lafrere.lan/"; + + $this->db = new DbConf(); + $this->db->user = "rodo"; + $this->db->name = "webcalendar"; + + } +} + +/* + * Factures + * + */ +class FactureConf { + Function FactureConf() { + + $this->enabled = 1; + + $this->templatesdir = "/home/www/dolibarr/dolibarr/templates/facture/default"; + $this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/facture"; + /* + * Without ended slash + */ + $this->outputurl = "/document/facture"; + } +} + +/* + * Fiche d'intervention + * + */ +class FicheInterConf { + Function FicheInterConf() { + + $this->enabled = 1; + + $this->templatesdir = "/home/www/dolibarr/dolibarr/templates/fichinter/rodolphe"; + $this->outputdir = "/home/www/dolibarr/dolibarr/htdocs/document/fichinter"; + /* + * Without ended slash + */ + $this->outputurl = "/document/fichinter"; + } +} + +?> diff --git a/htdocs/theme/yellow/dolibarr.css b/htdocs/theme/yellow/dolibarr.css new file mode 100644 index 00000000000..5fb89d29da1 --- /dev/null +++ b/htdocs/theme/yellow/dolibarr.css @@ -0,0 +1,91 @@ +/* Copyright (C) 2002 Rodolphe Quiedeville + * + * $Id$ + * $Source$ + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + */ + +BODY +{ + background: #ebebe0; + font-family: Helvetica, Verdana; font-size: 12px; + text-decoration: none +} +/* + * Menu superieur + */ +.menu +{ + background: #ccccb3; + font-family: Helvetica, Verdana; font-size: 14px; font-weight: bold; + color: #000000; + text-decoration: none } + +.submenu +{ + background: #ccccb3; + font-family: Helvetica, Verdana; font-size: 14px; + color: #000000; + text-decoration: none } + + +/* + * Barre de gauche + */ + +TD.barre +{ + background: #ccccb3; + font-family: Helvetica, Verdana; font-size: 14px; + color: #000000; + text-decoration: none } + +TD.barre_select +{ + background: #ccccb3; + color: #000000 + } + + + +DIV.titre +{ + font-family: Helvetica, Verdana; font-size: 16px; font-weight: bold; + color: #666633; + text-decoration: none } +/* + * + */ +TR.liste_titre +{ + background: #999966; + font-family: Helvetica, Verdana; font-size: 14px; font-weight: bold; + text-decoration: none } + +TR.pair +{ + background: #ccccb3; + font-family: Helvetica, Verdana; font-size: 12px; + text-decoration: none } + +TR.impair +{ + background: #eeeecc; + font-family: Helvetica, Verdana; font-size: 12px; + text-decoration: none } + +