Re: gnucash docs source with .svn files?

2006-06-06 Thread Bill Nottingham
Thomas Bushnell BSG ([EMAIL PROTECTED]) said: 
> Surely the .svn stuff does not belong in the gnucash-docs tarball?

When I was building from SVN, it didn't require it to build...

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


FYI

2006-06-06 Thread Thomas Bushnell BSG

gnucash-docs 1.9.0 is now in Debian.

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


gnucash docs source with .svn files?

2006-06-06 Thread Thomas Bushnell BSG

Surely the .svn stuff does not belong in the gnucash-docs tarball?

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


Re: Getting started on testing and reading documents

2006-06-06 Thread Derek Atkins

Quoting Archimedes Submerged <[EMAIL PROTECTED]>:


I have a few questions.

1.  How to build and read the svn version of concept guide?  Is the copy on
the web the same?


Pull down the gnucash-docs.   Yes, http://svn.gnucash.org/docs/guide


2.  (gnucash:16742): GLib-GObject-WARNING **: invalid cast from
`GncEmbeddedWindow' to `GncMainWindow'
I want to debug the above message.  What does the 16742 mean?


16742 is the ProcessID.  The way to solve this is to run under gdb and
run --g-fatal-warnings, which will cause an abort() at the place where
this happens.  Note, however, that there may be more warnings in
/tmp/gnucash.trace and your --g-fatal-warnings might die there instead.


3.  When I choose "since last run" under actions/scheduled transactions, I
get many transactions listed in "auto created transaction list".  Maybe this
is because the last thing I did last summer was import lots of stuff from
QIF files I made from the PDF files Citibank provides for years back
statements.  I wanted to look in the documentation to see under what
circumstances transactions get created and why am I hearing about them now?
google for "site:cvs.gnucash.org auto-created" did not find anything in the
concept guide but it did lead to code related to the subject.


QIF has nothing to do with SX.  I dont know why this is happening.


4.  Anyone know what this gdb warning means:
(gdb) attach 29355
Attaching to process 29355
warning: The current VSYSCALL page code requires an existing execuitable.
Use "add-symbol-file-from-memory" to load the VSYSCALL page by hand

In more detail:

I've started working on my gnucash files, untouched since last August.  I've
got svn revision 14341 built with enable-debug and with no -O2 so gdb
doesn't get confused.

$ PATH=/opt/gnucash/bin:$PATH PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig
make distclean
$ svn update
$ CFLAGS=-g PATH=/opt/gnucash/bin:$PATH
PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig ./configure
--enable-compile-warnings --prefix /opt/gnucash --enable-debug
$ PATH=/opt/gnucash/bin:$PATH PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig
make
# make install

I want to know how to build the latest documentation.  I'm looking at
http://wiki.gnucash.org/wiki/Concept_Guide

I ran
$ svn checkout http://svn.gnucash.org/repo/gnucash-docs/trunk gnucash-docs

and reran the build, but it didn't seem to do anything with the document
files.


Did you "make install"?


Is http://cvs.gnucash.org/docs/guide/ the latest version?


-derek

--
  Derek Atkins, SB '93 MIT EE, SM '95 MIT Media Laboratory
  Member, MIT Student Information Processing Board  (SIPB)
  URL: http://web.mit.edu/warlord/PP-ASEL-IA N1NWH
  [EMAIL PROTECTED]PGP key available

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


Re: r14317 - gnucash/trunk - Properly round values when setting the Base Value. Fixes #337505.

2006-06-06 Thread Nigel Titley

Derek Atkins wrote:

Quoting Nigel Titley <[EMAIL PROTECTED]>:


Properly round values when setting the Base Value.  Fixes #337505.
(also fix a string, but the fixed string is already translated so
shouldn't be a problem).


Many thanks for this... one less thing to worry about in my VAT
registration. Good job you found it, I was looking in completely the
wrong place. Started a rebuild and I'll be able to test shortly
(although I've no doubt you fixed it).


You're welcome.  I had time on the flight home yesterday to track it
down.  There's another business ledger bug I still need to track down,
where the query is pulling in "invalid" items.  I think QofQuery changed
so that my query is no longer "correct".   I'll try to get it done soon.

Confirmed that #337505 is fixed. It also fixed another problem that I've 
been having. I have one vendor who doesn't manage his own invoices/bills 
(he's not very commercially minded). I sell his goods via the web site 
and take 30% and pay him 70%. Everytime I sell an item for him I add an 
entry in the current month's bill at his list price * 0.7 (using the 
cell arithmetic functionality). At the end of the month I print out his 
bill for him and send him the money. I was having trouble with the odd 
one and the rounding problem was of course the issue. So this is fixed 
too. Wonderful. I'll be able to look my accountant in the face again.


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


Getting started on testing and reading documents

2006-06-06 Thread Archimedes Submerged

I have a few questions.

1.  How to build and read the svn version of concept guide?  Is the copy on
the web the same?
2.  (gnucash:16742): GLib-GObject-WARNING **: invalid cast from
`GncEmbeddedWindow' to `GncMainWindow'
I want to debug the above message.  What does the 16742 mean?
3.  When I choose "since last run" under actions/scheduled transactions, I
get many transactions listed in "auto created transaction list".  Maybe this
is because the last thing I did last summer was import lots of stuff from
QIF files I made from the PDF files Citibank provides for years back
statements.  I wanted to look in the documentation to see under what
circumstances transactions get created and why am I hearing about them now?
google for "site:cvs.gnucash.org auto-created" did not find anything in the
concept guide but it did lead to code related to the subject.
4.  Anyone know what this gdb warning means:
(gdb) attach 29355
Attaching to process 29355
warning: The current VSYSCALL page code requires an existing execuitable.
Use "add-symbol-file-from-memory" to load the VSYSCALL page by hand

In more detail:

I've started working on my gnucash files, untouched since last August.  I've
got svn revision 14341 built with enable-debug and with no -O2 so gdb
doesn't get confused.

$ PATH=/opt/gnucash/bin:$PATH PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig
make distclean
$ svn update
$ CFLAGS=-g PATH=/opt/gnucash/bin:$PATH
PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig ./configure
--enable-compile-warnings --prefix /opt/gnucash --enable-debug
$ PATH=/opt/gnucash/bin:$PATH PKG_CONFIG_PATH=/opt/gnucash/lib/pkgconfig
make
# make install

I want to know how to build the latest documentation.  I'm looking at
http://wiki.gnucash.org/wiki/Concept_Guide

I ran
$ svn checkout http://svn.gnucash.org/repo/gnucash-docs/trunk gnucash-docs

and reran the build, but it didn't seem to do anything with the document
files.

Is http://cvs.gnucash.org/docs/guide/ the latest version?
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel


Re: website syndication feed: rss -> atom

2006-06-06 Thread Josh Sled
On Thu, 2006-06-01 at 12:56 -0400, Josh Sled wrote:
> I'm planning on re-writting the current RSS 2.0 generator on
> www.gnucash.org to instead emit Atom 1.0.  I'm not sure if anyone cares

FWIW, this is up as http://www.gnucash.org/beta/atom.php . The feed
content is the entire news entry, in HTML, with no except or abstract.
The entries should link back to the top-level page, anchored
appropriately.  Please let me know of any incompatabilities with feed
readers, or anything weird you see.

-- 
...jsled
http://asynchronous.org/ - `a=jsled; b=asynchronous.org; echo [EMAIL PROTECTED]
___
gnucash-devel mailing list
gnucash-devel@gnucash.org
https://lists.gnucash.org/mailman/listinfo/gnucash-devel