[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [906] trunk
- Subject: SF.net SVN: ledger-smb: [906] trunk
- From: ..hidden..
- Date: Wed, 14 Mar 2007 21:19:31 -0700
Revision: 906
http://svn.sourceforge.net/ledger-smb/?rev=906&view=rev
Author: linuxpoet
Date: 2007-03-14 21:19:31 -0700 (Wed, 14 Mar 2007)
Log Message:
-----------
Mostly named changes to be more consistent with the project but also removed ledger-smb.conf.default as it appears replaced by LedgerSMB::Sysconfig (if I am wrong I apologize).
Also editing Sysconfig.pm and install.sh (does this need to be removed?) to address new conf files.
Modified Paths:
--------------
trunk/LedgerSMB/Sysconfig.pm
trunk/install.sh
Removed Paths:
-------------
trunk/ledger-smb-httpd.conf
trunk/ledger-smb.conf
trunk/ledger-smb.conf.default
Modified: trunk/LedgerSMB/Sysconfig.pm
===================================================================
--- trunk/LedgerSMB/Sysconfig.pm 2007-03-15 03:42:37 UTC (rev 905)
+++ trunk/LedgerSMB/Sysconfig.pm 2007-03-15 04:19:31 UTC (rev 906)
@@ -67,7 +67,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: trunk/install.sh
===================================================================
--- trunk/install.sh 2007-03-15 03:42:37 UTC (rev 905)
+++ trunk/install.sh 2007-03-15 04:19:31 UTC (rev 906)
@@ -11,6 +11,6 @@
echo "Where do we copy the ledger-smb-httpd.conf file to?"
read location
-cp ledger-smb-httpd.conf $location
+cp ledgersmb-httpd.conf $location
echo "Please restart your web server for the changes to take effect."
Deleted: trunk/ledger-smb-httpd.conf
===================================================================
--- trunk/ledger-smb-httpd.conf 2007-03-15 03:42:37 UTC (rev 905)
+++ trunk/ledger-smb-httpd.conf 2007-03-15 04:19:31 UTC (rev 906)
@@ -1,44 +0,0 @@
-
-Alias /ledger-smb WORKING_DIR/ledger-smb/
-
-<Directory WORKING_DIR/ledger-smb>
- AllowOverride All
- AddHandler cgi-script .pl
- Options ExecCGI Includes FollowSymlinks
- Order Allow,Deny
- Allow from All
- <Files ~ "\.conf$">
- Order Deny,Allow
- Deny from All
- </Files>
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/users>
- Order Deny,Allow
- Deny from All
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/bin>
- Order Deny,Allow
- Deny from All
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/utils>
- Order Deny,Allow
- Deny from All
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/spool>
- Order Deny,Allow
- Deny from All
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/templates>
- Order Deny,Allow
- Deny from All
-</Directory>
-
-<Directory WORKING_DIR/ledger-smb/LedgerSMB>
- Order Deny,Allow
- Deny from All
-</Directory>
Deleted: trunk/ledger-smb.conf
===================================================================
--- trunk/ledger-smb.conf 2007-03-15 03:42:37 UTC (rev 905)
+++ trunk/ledger-smb.conf 2007-03-15 04:19:31 UTC (rev 906)
@@ -1,20 +0,0 @@
-[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
-DBname: lsmb13
-DBhost: localhost
-DBport: 5432
-DBUserName: postgres
-DBPassword:
Deleted: trunk/ledger-smb.conf.default
===================================================================
--- trunk/ledger-smb.conf.default 2007-03-15 03:42:37 UTC (rev 905)
+++ trunk/ledger-smb.conf.default 2007-03-15 04:19:31 UTC (rev 906)
@@ -1,54 +0,0 @@
-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
-# images base directory
-images = images
-# 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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.