Re: Feature suggestion: display account numbers in register and account selection popup

2011-08-27 Thread Florian Haas
On 08/26/2011 09:21 AM, Christian Stimming wrote: Am Donnerstag, 25. August 2011 schrieb Florian Haas: Thanks anyway for the start. As this is probably something that won't be worked on immediately, I suggest it should be filed as a bugzilla enhancement request, and your patches can go

Re: Feature suggestion: display account numbers in register and account selection popup

2011-08-27 Thread Florian Haas
On 08/27/2011 12:29 AM, Yawar Amin wrote: Hi Florian, On 2011-08-24, at 08:32, Florian Haas wrote: […] Now, while GnuCash does allow for accounts to be assigned a number, those numbers are not available to actually be selected in the register when making an entry. That complicates

Re: Feature suggestion: display account numbers in register and account selection popup

2011-08-25 Thread Florian Haas
On 08/25/2011 09:56 AM, Christian Stimming wrote: Hi Florian, Am Mittwoch, 24. August 2011 schrieb Florian Haas: Thus, my suggestion is to add an option to display account numbers in the register and account selection dialog. Then, if said option is checked, the account selection dropdown

Feature suggestion: display account numbers in register and account selection popup

2011-08-24 Thread Florian Haas
Hi everyone, please allow me to make a humble feature suggestion. A bit of background: in Austria where I live, most companies use an account hierarchy scheme which is hierarchically numbered, typically in 4-digit numbers. The numbering scheme is nationally standardized. I know a similar system

[PATCH 1/2] schema: add the show_account_numbers preference

2011-08-24 Thread Florian Haas
From: Florian Haas f.g.h...@gmx.net --- src/gnome/schemas/apps_gnucash_general.schemas.in | 18 ++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/gnome/schemas/apps_gnucash_general.schemas.in b/src/gnome/schemas/apps_gnucash_general.schemas.in index

[PATCH 2/2] UI: add the show_account_numbers option to the preferences dialog

2011-08-24 Thread Florian Haas
From: Florian Haas f.g.h...@gmx.net --- src/gnome-utils/glade/preferences.glade | 26 +- 1 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/gnome-utils/glade/preferences.glade b/src/gnome-utils/glade/preferences.glade index bb6fbb0..c68bb4f 100644

Re: [PATCH 0/3] A couple of stylesheets to aid account hierarchy development

2011-08-23 Thread Florian Haas
Hi Geert, On 08/23/2011 11:22 AM, Geert Janssens wrote: On maandag 22 augustus 2011, Florian Haas wrote: Any takers? Cheers, Florian Hi Florian, Thank you for your patches. I quickly looked at your xslt files and I'd be happy to include your contribution into GnuCash. There's just

Re: [PATCH 0/3] A couple of stylesheets to aid account hierarchy development

2011-08-23 Thread Florian Haas
Hi Geert, On 08/23/2011 11:49 AM, Geert Janssens wrote: How do you want the license info? Comment in the XSLT itself? If so I'll be happy to send an updated patch set. That would be the best solution. You will find examples of a copyright notice in the other source files. You'll have to

[GIT PULL] Re: [PATCH 0/3] A couple of stylesheets to aid account hierarchy development

2011-08-23 Thread Florian Haas
, Florian Florian Haas (4): contrib: add an XSLT style sheet to create an account list contrib: add a style sheet to create an account hierarchy template from a GnuCash file contrib: update/add README files for style sheets contrib: add license information for style sheets

Re: Correct svn commit message ?

2011-08-23 Thread Florian Haas
Geert, On 08/23/2011 02:10 PM, Geert Janssens wrote: Is this possible with our svn setup ? A accidentally committed a couple of patches by Florian Haas without mentioning him as patch author in the commit message. No need to mess with that as far as I'm concerned (though I appreciate

Re: Correct svn commit message ?

2011-08-23 Thread Florian Haas
On 08/23/2011 03:08 PM, Geert Janssens wrote: No need to mess with that as far as I'm concerned (though I appreciate the concern). Cheers, Florian Thanks, I'll pay more attention next time. On the other hand, I can tell you using git pull to apply patches is a lot more fun than

Re: [PATCH 0/3] A couple of stylesheets to aid account hierarchy development

2011-08-22 Thread Florian Haas
On 08/16/2011 09:13 PM, Florian Haas wrote: Hello everyone, been a happy GnuCash user for years; thanks for giving me (and countless others) an enormously useful piece of software. This is my first submitted contribution, albeit a really humble one. The two XSLTs contained in the patch

[PATCH 0/3] A couple of stylesheets to aid account hierarchy development

2011-08-16 Thread Florian Haas
Hello everyone, been a happy GnuCash user for years; thanks for giving me (and countless others) an enormously useful piece of software. This is my first submitted contribution, albeit a really humble one. The two XSLTs contained in the patch set are meant to aid the development of new account

[PATCH 1/3] contrib: add an XSLT style sheet to create an account list

2011-08-16 Thread Florian Haas
Add a simple XSLT style sheet that takes an (uncompressed) GnuCash file or template, and generates a comma-separated list of account numbers, names, and types. --- contrib/xslt/acctlist.xsl | 41 + 1 files changed, 41 insertions(+), 0 deletions(-) create

[PATCH 2/3] contrib: add a style sheet to create an account hierarchy template from a GnuCash file

2011-08-16 Thread Florian Haas
Add an XSLT style sheet that takes an existing (uncompressed) GnuCash file and creates an account hierarchy template from it. Takes parameters for the account hierarchy name, short, and long description. --- contrib/xslt/gnc2xea.xsl | 73 ++ 1 files

[PATCH 3/3] contrib: update/add README files for style sheets

2011-08-16 Thread Florian Haas
--- contrib/README |7 + contrib/xslt/README | 71 +++ 2 files changed, 78 insertions(+), 0 deletions(-) create mode 100644 contrib/xslt/README diff --git a/contrib/README b/contrib/README index b66ffae..860fd9f 100644 ---