diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-17 05:43:36 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-11-17 05:43:36 +0000 |
commit | 49bc4af1b75ed950a0e8dd6dabb9299890d1e5fb (patch) | |
tree | 2a20d6c98149015e9194342dca5a362f5ce601c5 | |
parent | 14a0859a4abada7595e24a7b3158cb13e7676aaa (diff) |
Removing outdated docs
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/branches/1.2@651 4979c152-3d1c-0410-bac9-87ea11338e46
-rw-r--r-- | BUGS | 18 | ||||
-rw-r--r-- | README.sql-ledger | 15 | ||||
-rwxr-xr-x | SL2LS.pl | 43 | ||||
-rw-r--r-- | dists/rpm/ledgersmb.spec | 4 |
4 files changed, 6 insertions, 74 deletions
@@ -2,18 +2,8 @@ Known issues in LedgerSMB 1.2, Beta 1: Installation/upgrade is not automated yet. -Changes since last Beta: +A few known issues with the documentation: +CLI API docs don't mention cookie handling +Need better documentation on role of UTF-8 -Currencies not showing up on orders and invoices - -Internal server error on login screen when can't connect to db. - -A couple of dataset creation issues. - -A few documentation fixes - -Updates RPM Spec file - -Better error handling in Admin.pl - -Database scripts now run as transactions. +Also intermediate rounding causes issues with discounts because the rounding is applied to 2 decimal places to the unit rather than the extended price. diff --git a/README.sql-ledger b/README.sql-ledger deleted file mode 100644 index c29d8410..00000000 --- a/README.sql-ledger +++ /dev/null @@ -1,15 +0,0 @@ -README for SQL-Ledger Users -=============================== - -LedgerSMB is largely a drop-in replacement for SQL-Ledger. The initial release -includes a number of security and data integrity improvements, and future -versions will likely add new features as well. - -To convert an existing SQL-Ledger installation to LedgerSMB, copy the files from -the tarball over your existing SQL-Ledger directory and run the SL2LS.pl script. -This script will rename some files, delete others, and pretty soon you will have -a working LedgerSMB installation. - -The database will be updated on first login. - -You will also want to migrate your configuration by running the SL2LS.pl script included in this directory. diff --git a/SL2LS.pl b/SL2LS.pl deleted file mode 100755 index 3a92b88a..00000000 --- a/SL2LS.pl +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/perl - -# http://www.ledgersmb.org/ -# -# Simple script. Right now, all that needs to be done is that the SL directory -# needs to be deleted and the sql-ledger.conf needs to be renamed. - -$filedie = "To install manually:\n" . - " Rename the sql-ledger.conf to ledger-smb.conf\n". - " Delete the SL directory (optional but HIGHLY recommended)\n"; -open (SL, "< sql-ledger.conf") || die ( - "Could not open sql-ledger.conf: $! \n\n $filedie"); -open (LS, "> ledger-smb.conf") || die ( - "Could not open ledger-smb.conf: $! \n $filedie"); - -while ($line = <SL>){ - print LS $line; -} - -unlink "sql-ledger.conf"; - -#TODO: Move/Delete the SL directory - -&recursive_unlink("SL"); - -sub recursive_unlink { - ($dir) = shift @_; - print "Recursively deleting $dir\n"; - opendir (DIR, $dir); - while ($file = readdir DIR){ - if ($file !~ /^\.+$/){ - $file = "$dir/$file"; - if (-f $file){ - unlink $file; - } elsif (-d $file){ - &recursive_unlink("$file"); - } - } - } - closedir(DIR); - print "Removing $dir\n"; - rmdir $dir; -} diff --git a/dists/rpm/ledgersmb.spec b/dists/rpm/ledgersmb.spec index 2ea6095f..8a6a9718 100644 --- a/dists/rpm/ledgersmb.spec +++ b/dists/rpm/ledgersmb.spec @@ -1,12 +1,12 @@ # RPM spec written for and tested on Fedora Core 6 Summary: LedgerSMB - Open Source accounting software Name: ledger-smb -Version: svn +Version: 1.2.0b2 Release: 1 License: GPL URL: http://www.ledgersmb.org/ Group: Applications/Productivity -Source0: http://prdownloads.sourceforge.net/ledger-smb/%{name}-%{version}.tar.gz +Source0: %{name}-%{version}.tar.gz Source1: Class-Std-v0.0.8.tar.gz Source2: Config-Std-v0.0.4.tar.gz Source3: Locale-Maketext-Lexicon-0.62.tar.gz |