]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
change app name and rationalized set up
authorericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 9 Apr 2008 08:16:58 +0000 (08:16 +0000)
committerericdane <ericdane@b3834d28-1941-0410-a4f8-b48e95affb8f>
Wed, 9 Apr 2008 08:16:58 +0000 (08:16 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@97 b3834d28-1941-0410-a4f8-b48e95affb8f

config.inc.php.example

index a965c7342e203c1e157bd8dcc64cec9421215612..0627f9d7f45356324d9be07691f043c5f6a95e43 100644 (file)
@@ -1,46 +1,38 @@
 <?php
-######################################################################
-# SCUTTLE: Online social bookmarks manager
-######################################################################
-# Copyright (C) 2005 - 2006 Scuttle project
-# http://sourceforge.net/projects/scuttle/
-# http://scuttle.org/
+# SemanticScuttle - Web social bookmarking 
+# Copyright (C) 2005 - 2006 SemanticScuttle project
+# http://sourceforge.net/projects/semanticscuttle/
 #
+# Configuration Main File
 # This module is to configure the main options for your site
 #
 # 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.
-######################################################################
 
-######################################################################
-# Database Configuration
-#
-# dbtype:   Database driver - mysql, mysqli, mysql4, oracle, postgres,
-#                             sqlite, db2, firebird, mssql, mssq-odbc
-# dbhost:   Database hostname
-# dbport:   Database port
-# dbuser:   Database username
-# dbpass:   Database password
-# dbname:   Database name
-######################################################################
 
+#### Database Configuration ####
+# dbtype:   Database driver {mysql, mysqli, mysql4, oracle, postgres, sqlite, db2, firebird, mssql, mssq-odbc}
 $dbtype = 'mysql4';
+# dbhost:   Database hostname
 $dbhost = '127.0.0.1';
+# dbport:   Database port
 $dbport = '3306';
+# dbuser:   Database username
 $dbuser = 'username';
+# dbpass:   Database password
 $dbpass = 'password';
+# dbname:   Database name
 $dbname = 'scuttle';
 
-######################################################################
-# You have finished configuring the database!
+#### System Configuration ####
 # ONLY EDIT THE INFORMATION BELOW IF YOU KNOW WHAT YOU ARE DOING.
-######################################################################
-# System Configuration
-#
 # sitename:         The name of this site.
+$sitename           = 'SemanticScuttle';
 # welcomeMessage:   The welcome message (or tagline) of this site
-# locale:           The locale used.
+$welcomeMessage     = 'More than tags...';
+# locale:           The locale used (list ./locales : de_DE  en_GB  fr_FR  it_IT  lt_LT nl_NL  zh_CN dk_DK  es_ES  hi_IN  ja_JP  pt_BR)
+$locale             = 'en_GB';
 # top_include:      The header file.
 # bottom_include:   The footer file.
 # shortdate:        The format of short dates.
@@ -96,12 +88,7 @@ $dbname = 'scuttle';
 # sizeSearchHistory : the number of users' searches that are saved
 #                      10 [Default]
 #                      -1 Unlimited
-#
-######################################################################
 
-$sitename           = 'SemanticScuttle';
-$welcomeMessage     = 'More than tags...';
-$locale             = 'en_GB'; # in list ./locales : de_DE  en_GB  fr_FR  it_IT  lt_LT nl_NL  zh_CN dk_DK  es_ES  hi_IN  ja_JP  pt_BR
 $top_include        = 'top.inc.php';
 $bottom_include     = 'bottom.inc.php';
 $shortdate          = 'd-m-Y';