[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [651] branches/1.2
- Subject: SF.net SVN: ledger-smb: [651] branches/1.2
- From: ..hidden..
- Date: Thu, 16 Nov 2006 21:43:37 -0800
Revision: 651
http://svn.sourceforge.net/ledger-smb/?rev=651&view=rev
Author: einhverfr
Date: 2006-11-16 21:43:36 -0800 (Thu, 16 Nov 2006)
Log Message:
-----------
Removing outdated docs
Modified Paths:
--------------
branches/1.2/BUGS
branches/1.2/dists/rpm/ledgersmb.spec
Removed Paths:
-------------
branches/1.2/README.sql-ledger
branches/1.2/SL2LS.pl
Modified: branches/1.2/BUGS
===================================================================
--- branches/1.2/BUGS 2006-11-17 05:13:22 UTC (rev 650)
+++ branches/1.2/BUGS 2006-11-17 05:43:36 UTC (rev 651)
@@ -2,18 +2,8 @@
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.
Deleted: branches/1.2/README.sql-ledger
===================================================================
--- branches/1.2/README.sql-ledger 2006-11-17 05:13:22 UTC (rev 650)
+++ branches/1.2/README.sql-ledger 2006-11-17 05:43:36 UTC (rev 651)
@@ -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.
Deleted: branches/1.2/SL2LS.pl
===================================================================
--- branches/1.2/SL2LS.pl 2006-11-17 05:13:22 UTC (rev 650)
+++ branches/1.2/SL2LS.pl 2006-11-17 05:43:36 UTC (rev 651)
@@ -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;
-}
Modified: branches/1.2/dists/rpm/ledgersmb.spec
===================================================================
--- branches/1.2/dists/rpm/ledgersmb.spec 2006-11-17 05:13:22 UTC (rev 650)
+++ branches/1.2/dists/rpm/ledgersmb.spec 2006-11-17 05:43:36 UTC (rev 651)
@@ -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
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.