[fpc-devel] In Lazarus fpweb action procedure names no longer include the action name

2010-02-15 Thread ABorka
When creating a web application, for example CGI Application in Lazarus, and adding an action to the web module, the automatically generated procedure name only contains a number and not the given action name. For example, creating an action with a name ABC will generate a OnRequest procedure

Re: [fpc-devel] In Lazarus fpweb action procedure names no longer include the action name

2010-02-15 Thread Mattias Gaertner
On Sun, 14 Feb 2010 12:52:16 -0800 ABorka fpc-de...@aborka.com wrote: When creating a web application, for example CGI Application in Lazarus, and adding an action to the web module, the automatically generated procedure name only contains a number and not the given action name. For

Re: [fpc-devel] Re: GetHeapStatus.TotalAllocated

2010-02-15 Thread Nikolai Zhubr
14.02.2010 6:04, Seth Grover: As for the negative numbers (possible overflow) from the heap status, I logged a bug on that, with an example program, quite some time ago. http://bugs.freepascal.org/view.php?id=14315 Ah, so negative numbers are in bugtracker already, ok. But still I think the

[fpc-devel] Bug Tracker Wiki server is down

2010-02-15 Thread Graeme Geldenhuys
Hi, Could somebody give the server hosting the Bug Tracker Wiki a kick in the butt. It's not responding. I can access any other websites, so it's not my internet connection. Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal

Re: [fpc-devel] fpc 14894 svn does not compile

2010-02-15 Thread Tomas Hajny
On Sat, February 13, 2010 22:16, Marco van de Voort wrote: In our previous episode, Jonas Maebe said: Thanks Jonas, using 2.4.0 for the 1st compile worked. I guess I shouldn't wait months before recompiling the latest SVN :) Even if you subsequently recompile every new svn revision it may

[fpc-devel] fpdoc listing supported Interfaces in class docs

2010-02-15 Thread Graeme Geldenhuys
Hi, Is there a parameter or something in fpdoc that can output in the generated help the supported interfaces of a class? For example: Something like the output generated by JavaDoc in the section All Implemented Interfaces http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Container.html I

Re: [fpc-devel] fpdoc listing supported Interfaces in class docs

2010-02-15 Thread Michael Van Canneyt
On Mon, 15 Feb 2010, Graeme Geldenhuys wrote: Hi, Is there a parameter or something in fpdoc that can output in the generated help the supported interfaces of a class? For example: Something like the output generated by JavaDoc in the section All Implemented Interfaces

Re: [fpc-devel] fpdoc listing supported Interfaces in class docs

2010-02-15 Thread Graeme Geldenhuys
Michael Van Canneyt wrote: It is not supported, please create a feature request. Thank you. Reported in Mantis as #15774. http://bugs.freepascal.org/view.php?id=15774 Regards, - Graeme - -- fpGUI Toolkit - a cross-platform GUI toolkit using Free Pascal

Re: [fpc-devel] In Lazarus fpweb action procedure names no longer include the action name

2010-02-15 Thread Joost van der Sluis
On Sun, 2010-02-14 at 12:52 -0800, ABorka wrote: When creating a web application, for example CGI Application in Lazarus, and adding an action to the web module, the automatically generated procedure name only contains a number and not the given action name. If memory serves, this has

[fpc-devel] TCustomApplication.Log(?)

2010-02-15 Thread Joost van der Sluis
Hi all, I want to add (abstract) logging functionality to TCustomApplication. I see three options: One: Add a public TEventLog property to TCustomApplication. Then deratives of TCustumApplication can return a TEventLog or a derivate of it. I can leave the TEventLog property nil for

Re: [fpc-devel] TCustomApplication.Log(?)

2010-02-15 Thread Michael Van Canneyt
On Mon, 15 Feb 2010, Joost van der Sluis wrote: Hi all, I want to add (abstract) logging functionality to TCustomApplication. I see three options: One: Add a public TEventLog property to TCustomApplication. Then deratives of TCustumApplication can return a TEventLog or a derivate of it. I

[fpc-devel] Questions about TEventLog

2010-02-15 Thread Graeme Geldenhuys
Hi, I use logging a lot. It is my primary method of debugging FPC-based code. 99% of the time I use the logging features of tiOPF project. I have never used TEventLog, but took a quick look last night after I read Joost's message about Application.Log(). Here are some questions: 1) I see