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

SF.net SVN: ledger-smb:[3705] trunk



Revision: 3705
          http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=3705&view=rev
Author:   einhverfr
Date:     2011-09-16 23:34:38 +0000 (Fri, 16 Sep 2011)
Log Message:
-----------
Changes for rc2

Modified Paths:
--------------
    trunk/INSTALL
    trunk/LedgerSMB/Form.pm
    trunk/LedgerSMB.pm
    trunk/VERSION
    trunk/dists/rpm/ledgersmb.spec
    trunk/dists/source/build.sh

Modified: trunk/INSTALL
===================================================================
--- trunk/INSTALL	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/INSTALL	2011-09-16 23:34:38 UTC (rev 3705)
@@ -227,6 +227,18 @@
 case insensitive, meaning you can't create two separate company databases
 called 'Ledgersmb' and 'ledgersmb'.
 
+One way you can create databases fairly easily is by directing your web browser
+to the setup.pl script at your installed ledgersmb directory.  So if the 
+base URL is http://localhost/ledgersmb/, you can access the database setup and 
+upgrade script at http://localhost/ledgersmb/setup.pl.  This is very different
+from the approaches taken by LedgerSMB 1.2.x and earlier and SQL-Ledger, but
+rather forms a wizard to walk you through the process.
+
+An alternative method is the 'prepare-company-database.sh' script contributed by
+Erik Huelsmann.  This script can be useful in creating and populating databases
+from the command line and it offers a reference implementation written in BASH
+for how this process is done.
+
 The 'prepare-company-database.sh' script in the tools/ directory will set
 up databases to be used for LedgerSMB. The script should be run as 'root'
 because it wants to 'su' to the postgres user.  Alternatively, if you
@@ -242,7 +254,7 @@
 when invoked as the root user and from the root directory of the LedgerSMB
 sources:
 
- $ ./prepare-company-database.sh --company testinc
+ $ ./tools/prepare-company-database.sh --company testinc
 
 The script assumes your PostgreSQL server runs on 'localhost' with
 PostgreSQL's default port (5432).

Modified: trunk/LedgerSMB/Form.pm
===================================================================
--- trunk/LedgerSMB/Form.pm	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/LedgerSMB/Form.pm	2011-09-16 23:34:38 UTC (rev 3705)
@@ -150,7 +150,7 @@
     #menubar will be deprecated, replaced with below
     $self->{lynx} = 1 if ( ( defined $self->{path} ) && ( $self->{path} =~ /lynx/i ) );
 
-    $self->{version}   = "1.3.0 rc1";
+    $self->{version}   = "1.3.0 rc2";
     $self->{dbversion} = "1.3.0";
 
     bless $self, $type;

Modified: trunk/LedgerSMB.pm
===================================================================
--- trunk/LedgerSMB.pm	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/LedgerSMB.pm	2011-09-16 23:34:38 UTC (rev 3705)
@@ -220,7 +220,7 @@
 $CGI::Simple::POST_MAX = -1;
 
 package LedgerSMB;
-our $VERSION = '1.3.0 rc1';
+our $VERSION = '1.3.0 rc2';
 
 my $logger = Log::Log4perl->get_logger('LedgerSMB');
 

Modified: trunk/VERSION
===================================================================
--- trunk/VERSION	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/VERSION	2011-09-16 23:34:38 UTC (rev 3705)
@@ -1 +1 @@
-1.3.0 rc1
+1.3.0 rc2

Modified: trunk/dists/rpm/ledgersmb.spec
===================================================================
--- trunk/dists/rpm/ledgersmb.spec	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/dists/rpm/ledgersmb.spec	2011-09-16 23:34:38 UTC (rev 3705)
@@ -1,7 +1,7 @@
 # RPM spec written for and tested on CentOS 4 and CentOS 5 
 Summary: LedgerSMB - Open Source accounting software
 Name: ledgersmb
-Version: 1.3.0_rc1
+Version: 1.3.0_rc2
 Release: 1
 License: GPL
 URL: http://www.ledgersmb.org/
@@ -18,7 +18,7 @@
 Requires: perl-Error, perl-CGI-Simple
 Requires: perl-File-MimeInfo, perl-IO-stringy
 Requires: perl-MIME-Lite, perl-Class-Std >= 0.0.8
-Requires: perl-Config-Std >= 0.0.4, perl-Locale-Maketext-Lexicon >= 0.62
+Requires: perl-Locale-Maketext-Lexicon >= 0.62
 Requires: perl-IO-String
 Requires: perl-Math-BigInt-GMP
 BuildRequires: perl

Modified: trunk/dists/source/build.sh
===================================================================
--- trunk/dists/source/build.sh	2011-09-16 22:57:47 UTC (rev 3704)
+++ trunk/dists/source/build.sh	2011-09-16 23:34:38 UTC (rev 3705)
@@ -2,7 +2,7 @@
 
 # Simple script to prepare for release
 
-version="1.3.0_rc1";
+version="1.3.0_rc2";
 build_d="../release";
 
 if test -d $build_d/ledgersmb; then

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