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

SF.net SVN: ledger-smb: [952] branches/1.2



Revision: 952
          http://svn.sourceforge.net/ledger-smb/?rev=952&view=rev
Author:   tetragon
Date:     2007-03-19 20:07:30 -0700 (Mon, 19 Mar 2007)

Log Message:
-----------
Renaming ledger-smb.conf to ledgersmb.conf

Modified Paths:
--------------
    branches/1.2/LedgerSMB/Sysconfig.pm
    branches/1.2/dists/source/build.sh
    branches/1.2/sql/Pg-central.sql

Added Paths:
-----------
    branches/1.2/ledgersmb.conf
    branches/1.2/ledgersmb.conf.default

Modified: branches/1.2/LedgerSMB/Sysconfig.pm
===================================================================
--- branches/1.2/LedgerSMB/Sysconfig.pm	2007-03-20 02:53:22 UTC (rev 951)
+++ branches/1.2/LedgerSMB/Sysconfig.pm	2007-03-20 03:07:30 UTC (rev 952)
@@ -1,6 +1,6 @@
 #  This is the new configuration file for LedgerSMB.  Eventually all system 
 # configuration directives will go here,  This will probably not fully replace
-# the ledger-smb.conf until 1.3, however.
+# the ledgersmb.conf until 1.3, however.
 
 package LedgerSMB::Sysconfig;
 
@@ -62,7 +62,7 @@
 	     );
 
 my %config;
-read_config('ledger-smb.conf' => %config) or die;
+read_config('ledgersmb.conf' => %config) or die;
 
 $logging = $config{''}{logging} if $config{''}{logging};
 $check_max_invoices = $config{''}{check_max_invoices} if

Modified: branches/1.2/dists/source/build.sh
===================================================================
--- branches/1.2/dists/source/build.sh	2007-03-20 02:53:22 UTC (rev 951)
+++ branches/1.2/dists/source/build.sh	2007-03-20 03:07:30 UTC (rev 952)
@@ -25,5 +25,6 @@
 pwd
 find -name '*.svn' -exec rm -rf '{}' ';'
 rm ledger-smb.conf
+rm ledgersmb.conf
 cd ..
 tar -zcvf ledger-smb-$version.tar.gz ledger-smb

Added: branches/1.2/ledgersmb.conf
===================================================================
--- branches/1.2/ledgersmb.conf	                        (rev 0)
+++ branches/1.2/ledgersmb.conf	2007-03-20 03:07:30 UTC (rev 952)
@@ -0,0 +1,18 @@
+[environment]
+# if the server can't find gzip, latex, dvips or pdflatex, append the path
+PATH: /usr/local/bin
+PATH: /usr/local/pgsql/bin
+
+# on mac os X using Fink's Perl libs, add the path
+#PERL5LIB: /sw/lib/perl5
+
+#################################
+# Global database parameters
+#################################
+# These parameters *must* be set correctly for LedgerSMB >= 1.2 to work
+#
+[globaldb]
+##uncomment below and set to correct values
+DBConnect: dbi:Pg:dbname=lsmb13;host=localhost;port=5432
+DBUserName: postgres
+DBPassword: test 

Added: branches/1.2/ledgersmb.conf.default
===================================================================
--- branches/1.2/ledgersmb.conf.default	                        (rev 0)
+++ branches/1.2/ledgersmb.conf.default	2007-03-20 03:07:30 UTC (rev 952)
@@ -0,0 +1,52 @@
+session  : DB
+logging  : 0
+
+# Set language for login and admin pages
+language : 
+
+# If you have LaTeX installed, set to 1
+latex : 1
+
+# Maximum number of invoices that can be printed on a cheque
+check_max_invoices : 5
+
+[environment]
+# If the server can't find applications, append to the path
+PATH: /usr/local/pgsql/bin
+PATH: /usr/local/bin
+
+# If on Mac OS X using Fink's Perl libs, append to the path
+#PERL5LIB = /sw/lib/perl5
+
+[paths]
+# spool directory for batch printing
+spool      = spool
+# path to user configuration files
+userspath  = users
+# templates base directory
+templates  = templates
+# member file
+memberfile = users/members
+localepath = locale/po
+
+[programs]
+# program to use for file compression
+gzip       = gzip -S .gz
+
+[mail]
+### How to send mail.  The sendmail command is used unless smtphost is set.
+sendmail   = /usr/bin/sendmail -t
+# smtphost = 127.0.0.1
+# smtptimeout = 60
+
+[printers]
+# Available printers
+Laser      = lpr -Plaser
+Epson      = lpr -PEpson
+
+[globaldb]
+# These paramaters *must* be set correctly
+# for LedgerSMB >= 1.2 to work
+DBConnect  = dbi:Pg:dbname=ledgersmb;host=localhost;port=5432
+DBUserName   = ledgersmb
+DBPassword   = set me to correct password

Modified: branches/1.2/sql/Pg-central.sql
===================================================================
--- branches/1.2/sql/Pg-central.sql	2007-03-20 02:53:22 UTC (rev 951)
+++ branches/1.2/sql/Pg-central.sql	2007-03-20 03:07:30 UTC (rev 952)
@@ -1,7 +1,7 @@
 begin;
 -- Central DB structure
 -- This is the central database stuff which is used across all datasets
--- in the ledger-smb.conf it is called 'ledgersmb' by default, but obviously
+-- in the ledgersmb.conf it is called 'ledgersmb' by default, but obviously
 -- can be named anything.
 
 -- USERS stuff --


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.