Re: installation

2007-07-18 Thread Vahur Lokk
Anna Ash wrote:
> I can't figure out how to install this program.  I downloaded it and found
> it was some achieved/zipped files and got them unzipped but can't seem to
> locate an install file.  Any information would be greatly appreciated.
>
> Anna Jeanette Ash
>   
Anna,
I would bet you downloaded source files. Installing from source, though 
possible, is not for fainthearted.
The file you need (you are running Windows, right?) is 
gnucash-2.2.0-setup.exe. 

Download to desktop, doubleclick, next, next. Done

Wahur
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Compiling gnucash

2007-07-18 Thread Stephen Grant Brown
Dear Sirs/Madams,

I wish to compile gnucash on my computer.

In

http://svn.gnucash.org/repo/gnucash/trunk/packaging/win32/README

I read the following

* Download wget
from http://www.mingw.org/download.shtml -> Current -> mingwPORT -> (bin, 
wget-*)
to $DOWNLOAD_DIR

I am unable to see a bin file of mingwPORT

What am I doing worng?

Yours Sincerely Stephen Grant Brown

BEGIN:VCARD
VERSION:2.1
N:Brown;Stephen;Grant;Mr
FN:Stephen Grant Brown
ORG:Sea Sauce Home & Garden Maintainance
TITLE:Owner
TEL;WORK;VOICE:(03) 5862 2669
TEL;HOME;VOICE:(03) 5862 2669
TEL;CELL;VOICE:0400 857 651
ADR;WORK:;;3781 Goulburn Valley Highway;Numurkah;Victoria;3636;Australia
LABEL;WORK;ENCODING=QUOTED-PRINTABLE:3781 Goulburn Valley Highway=0D=0ANumurkah, Victoria 3636=0D=0AAustralia
ADR;HOME:;;3781 Goulburn Valley Highway;Numurkah;Victoria;3636;Australia
LABEL;HOME;ENCODING=QUOTED-PRINTABLE:3781 Goulburn Valley Highway=0D=0ANumurkah, Victoria 3636=0D=0AAustralia
EMAIL;PREF;INTERNET:[EMAIL PROTECTED]
REV:20070719T06Z
END:VCARD
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


SQL Backend?

2007-07-18 Thread keith
There was a thread going last year on the SQL backend. I'd be interested 
in testing/helping. I'm currently doing a lot of work in (shudder) 
Oracle, but I can install pg too. I checked out the svn, but haven't dug 
much further.

Keith
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: dogtail test suite status

2007-07-18 Thread ahmad sayed
Hi Josh, 

After sending this Email, i tried to commit some codes, and i got and error i 
notice that, i didn't do svn add to the test-dogtail, but I thing it works fine 
now.






   

Boardwalk for $500? In 2007? Ha! Play Monopoly Here and Now (it's updated for 
today's economy) at Yahoo! Games.
http://get.games.yahoo.com/proddesc?gamekey=monopolyherenow  
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: r16322 - gnucash/branches/register-rewrite/src/gnome-utils - Removed the editing_started_cb function (and related code) that set up the autocompletion and moved the code to

2007-07-18 Thread Chris Shoemaker
On Wed, Jul 18, 2007 at 03:40:25PM -0400, Jeff Green wrote:
> Author: jeff
> Date: 2007-07-18 15:40:23 -0400 (Wed, 18 Jul 2007)
> New Revision: 16322
> Trac: http://svn.gnucash.org/trac/changeset/16322
> 
> Modified:
>
> gnucash/branches/register-rewrite/src/gnome-utils/gnc-tree-view-transaction.c
> Log:
> Removed the editing_started_cb function (and related code) that set
> up the autocompletion and moved the code to
> get_editable_start_editing_cb that was already present and set as
> the callback for the "editing-started" signal.  Created the
> model_copy function to copy the data from the Description column of
> the treeview model into a liststore to use as the model for
> autocompletion (to solve the crashes caused by using the treeview
> model for autocompletion).  Added code to gtvt_edited_cb to add the
> data from new transactions to the liststore used for autocompletion.

If the solution with the ListStore turns out to be the long-term
solution, we'll have to avoid leaking it, too.  It would have to be
owned by the transaction view, since the GtkCompletion is transient.
IIRC, that means something like g_object_remove_ref() from the dispose
method.

-chris
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Register-rewrite update

2007-07-18 Thread Chris Shoemaker
On Wed, Jul 18, 2007 at 12:06:57AM -0500, Jeff Green wrote:
> I have been focusing on the crashes that were caused by adding
> autocompletion, since I realized that I couldn't adequately test any other
> functionality if I could only add one new transaction without crashing the
> program or closing and reopening the account. I spent some quality time with
> gdb and narrowed down the crashes to being caused by setting up the
> autocompletion using the real model associated with the transaction register
> treeview. So I tried making a copy of the data for the column that needs
> autocompletion (just the Description column for now) and using that for the
> autocompletion. This solved all the crashes.
> 
> Unfortunately on the first implementation, autocompletion only worked for
> the first new transaction. This was an issue with TreeViewIters and creating
> a copy of the treeview model on each "editing-started" signal. So I made a
> new function to make a copy of the completion data when the cellrenderers
> are initialized (in cdf) and then use that copy for all completions. With
> this change autocompletion worked for all new transactions, the only problem
> being that the descriptions of the new transactions were not added to the
> copy of the completion data. This can be solved by adding the new text
> entered into the cell to the copy when the "edited" signal is received. This
> is where I'm at currently.

Oh, what a pain!  I was so pleased when I saw that the first
autocomplete implementation re-used the transaction-model.  That's
just very simple, and automatically has many properties that are nice
for autocompletion, like 1) it only uses the descriptions already in
that register, and 2) it sees the newly added descriptions.

It would be such a shame if we had to do something like copy
model+insert new.  But honestly, it would probably still be simpler
than the old custom autocomplete code.

If you try again with the single model, and get stumped, don't
hesitate to send the backtrace here.

-chris

> I also noticed when looking into creating a callback or using an existing
> one for the "edited" signal (the existing callback is "gtvt_edited_cb") that
> I had unnecessarily created the "editing_started_cb" callback for the
> "editing-started" signal ("get_editable_start_editing_cb" was already being
> connected to that signal), so now I am working on integrating my code with
> the existing callbacks. Once the callbacks are integrated there should be no
> problems with autocompletion for the description field. It might also turn
> out that there is no need for the copy of the data from the treeview model,
> but that will have to wait until tomorrow. I'm running on very little sleep
> and I need to get to bed before my keyboard becomes my pillow.
> 
> Jeff
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: installation

2007-07-18 Thread Josh Sled
(This really belongs on gnucash-user, so I've CC'ed it there instead.)

"Anna Ash" <[EMAIL PROTECTED]> writes:
> I can't figure out how to install this program.  I downloaded it and found
> it was some achieved/zipped files and got them unzipped but can't seem to
> locate an install file.  Any information would be greatly appreciated.

I'm assuming you're referring to GnuCash-2.2.0.

If you're on Windows, you'll want to download and run the executable at
.

If you're on unix, you'll want to wait until your distribution/vendor offers
a pre-built package of Gnucash 2.2, and install it using your distribution's
package manager.

I'm not sure what you downloaded, since you didn't identify it at all, but if
it's the sources, then it should have an INSTALL at the top.   If you have
the sources, it's possible to compile the software yourself (on either unix
or Windows) ... more information on that can be found at
.

-- 
...jsled
http://asynchronous.org/ - a=jsled; b=asynchronous.org; echo [EMAIL PROTECTED]


pgpBFwfzQBENM.pgp
Description: PGP signature
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


installation

2007-07-18 Thread Anna Ash
I can't figure out how to install this program.  I downloaded it and found
it was some achieved/zipped files and got them unzipped but can't seem to
locate an install file.  Any information would be greatly appreciated.

Anna Jeanette Ash
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: Release Manager needed

2007-07-18 Thread Josh Sled
Derek Atkins <[EMAIL PROTECTED]> writes:
> My only caveat is:   s/make dist/make distcheck/

Whoops, yes, of course ... obviously, I don't actually do it myself well enough
to know that. :/

-- 
...jsled
http://asynchronous.org/ - a=jsled; b=asynchronous.org; echo [EMAIL PROTECTED]


pgpFhWFX92Gng.pgp
Description: PGP signature
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: startup delay

2007-07-18 Thread Herbert Thoma
Derek Atkins schrieb:
> Herbert Thoma <[EMAIL PROTECTED]> writes:
> 
>> Hi!
>>
>> Some weeks ago we changed the startup sequence: The main window
>> now only shows up after all reports are computed.
>> I have a couple of reports open, so it takes quite a while
>> until the main window shows up. I find this quite annoying.
>> Can we change this back or make it configurable?
> 
> Hmm, that's a good point..  The reason this change got made was
> because it was visually unappealing to have the window show up
> before it's fully drawn.  It winds up resizing itself multiple
> times and then relocates itself.  So the idea was to delay the
> visibility until it's done, and the splash screen would show you
> that something is happening.

The problem is that the splash screen disappears after about 10 seconds but the
main window only appears a lot later. So a solution would be to really show the
splash screen until the main window shows up (and displaying something like
"rendering report " in the status line of the splash screen).

> I dont know how hard it would be to make it configurable.  You
> can file an RFE in Bugzilla.

OK, I filed this as bug #457944.

 Herbert.

> -derek

-- 
Herbert Thoma
Head of Video Group
Multimedia Realtime Systems Department
Fraunhofer IIS
Am Wolfsmantel 33, 91058 Erlangen, Germany
Phone: +49-9131-776-323
Fax:   +49-9131-776-399
email: [EMAIL PROTECTED]
www: http://www.iis.fhg.de/
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel