qsos-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qsos-commits] qsos/apps/o3s config.php


From: Raphaël Semeteys
Subject: [Qsos-commits] qsos/apps/o3s config.php
Date: Sun, 17 May 2009 22:00:44 +0000

CVSROOT:        /sources/qsos
Module name:    qsos
Changes by:     Raphaël Semeteys <rsemeteys>    09/05/17 22:00:42

Modified files:
        apps/o3s       : config.php 

Log message:
        Locale management is modified

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qsos/apps/o3s/config.php?cvsroot=qsos&r1=1.2&r2=1.3

Patches:
Index: config.php
===================================================================
RCS file: /sources/qsos/qsos/apps/o3s/config.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -b -r1.2 -r1.3
--- config.php  8 Jul 2007 23:21:09 -0000       1.2
+++ config.php  17 May 2009 22:00:42 -0000      1.3
@@ -1,6 +1,6 @@
 <?php
 /*
-**  Copyright (C) 2007 Atos Origin 
+**  Copyright (C) 2007-2009 Atos Origin 
 **
 **  Author: Raphael Semeteys <address@hidden>
 **
@@ -23,16 +23,15 @@
 ** config.php: configuration file
 **
 */
-
 //Local and web paths to QSOS sheets and templates
-$sheet = "../sheets";
-$sheet_web = "http://qsos/sheets";;
-$template = "../templates";
-$template_web = "http://qsos/templates";;
+$sheet = "sheets";
+$sheet_web = "http://localhost:88/o3s/sheets";;
+$template = "template";
+$template_web = "http://localhost:88/o3s/template";;
 $delim = "/";
 
 //Path to jpgraph library (for PNG graphs)
-$jpgraph_path = "/home/raph/qsos/web/o3s/libs/jpgraph-2.2/src/";
+$jpgraph_path = "libs/jpgraph-2.1.3/src/";
 
 //Temp directory, with trailing slash
 $temp = "/tmp/";
@@ -43,7 +42,12 @@
 //Skin to use (CSS are stored in skins/ subdirectory)
 $skin = "default";
 
-//Locale to use (locale files are stored i, locales/ subdirectory)
-$lang = "fr-FR";
-$locale = "fr";
+//Locale to use (locale files are stored in locales/ subdirectory)
+$default_lang = "fr"; //Default locale
+$supported_lang = array('fr', 'en'); //Supported locale
+
+$db_host = "localhost";
+$db_user = "qsos";
+$db_pwd = "qsos";
+$db_db = "qsos";
 ?>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]