Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Jørn Erik Mørne
Den 18. sep. 2014 17:16, skrev Benoît Minisini: Le 17/09/2014 10:12, Jørn Erik Mørne a écrit : Den 17. sep. 2014 03:41, skrev Benoît Minisini: Le 16/09/2014 17:19, Jørn Erik Mørne a écrit : It really doesn't matter what project you use, as all of them fail the same way. I had Manjaro on two

Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Charlie Reinl
Am Freitag, den 19.09.2014, 08:51 +0200 schrieb Jørn Erik Mørne: Den 18. sep. 2014 17:16, skrev Benoît Minisini: Le 17/09/2014 10:12, Jørn Erik Mørne a écrit : Den 17. sep. 2014 03:41, skrev Benoît Minisini: Le 16/09/2014 17:19, Jørn Erik Mørne a écrit : It really doesn't matter what

Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Tobias Boege
On Fri, 19 Sep 2014, J??rn Erik M??rne wrote: Den 18. sep. 2014 17:16, skrev Beno??t Minisini: Le 17/09/2014 10:12, J??rn Erik M??rne a ??crit : Den 17. sep. 2014 03:41, skrev Beno??t Minisini: Le 16/09/2014 17:19, J??rn Erik M??rne a ??crit : It really doesn't matter what project you

Re: [Gambas-user] Locating a function's source code?

2014-09-19 Thread Tobias Boege
On Fri, 19 Sep 2014, T Lee Davidson wrote: I have registered an account on the Wiki and now need to get a handle on the wiki syntax, so ... so look at [0] first :-) On 09/18/2014 01:57 PM, Tobias Boege wrote: Everything you find under /lang in the documentation belongs to the

Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Jussi Lahtinen
Like others have already said, it seems to be permission problem. Maybe by using sudo in wrong place..? I suggest to delete your source folder and checkout again. Should be the easiest way. Jussi On Fri, Sep 19, 2014 at 9:51 AM, Jørn Erik Mørne ep...@joernerik.com wrote: Den 18. sep. 2014

[Gambas-user] Translation of Gambas

2014-09-19 Thread Alain Baudrez
I've noticed some translation errors in the Dutch implementation of Gambas 3. Where can I find the po or or the pot-files so that those errors can be corrected? A.J. -- Slashdot TV. Video for Nerds. Stuff that

Re: [Gambas-user] Translation of Gambas

2014-09-19 Thread Benoît Minisini
Le 19/09/2014 16:14, Alain Baudrez a écrit : I've noticed some translation errors in the Dutch implementation of Gambas 3. Where can I find the po or or the pot-files so that those errors can be corrected? A.J. You can translate the IDE directly from the IDE, as it is a Gambas project.

Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Jørn Erik Mørne
Salut Jørn Erik, Hei på deg Charlie :) what I see is Permission denied seams to be a Permission problem. No, these say Permission denied (a lot!). Something with your source tree is not OK anymore. Did you build as root last time? The first two lines also suggest that you moved the tree

[Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before the function/method) I have this exported class named Update. When typing Update in an application using the

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Tobias Boege
On Fri, 19 Sep 2014, Willy Raets wrote: Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before the function/method) I have this exported class named Update.

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Benoît Minisini
Le 19/09/2014 22:30, Tobias Boege a écrit : On Fri, 19 Sep 2014, Willy Raets wrote: Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before the function/method)

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
On vr, 2014-09-19 at 22:30 +0200, Tobias Boege wrote: On Fri, 19 Sep 2014, Willy Raets wrote: Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before the

Re: [Gambas-user] Make installation package fails on Manjaro

2014-09-19 Thread Jussi Lahtinen
Go to the source folder and run ls -a -l. Jussi On Fri, Sep 19, 2014 at 5:53 PM, Jørn Erik Mørne ep...@joernerik.com wrote: Salut Jørn Erik, Hei på deg Charlie :) what I see is Permission denied seams to be a Permission problem. No, these say Permission denied (a lot!). Something with

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
On za, 2014-09-20 at 00:09 +0200, Benoît Minisini wrote: Le 19/09/2014 22:30, Tobias Boege a écrit : On Fri, 19 Sep 2014, Willy Raets wrote: Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread John Leake
Indeed. I removed the constraint where a class without dynamic variable is not instanciable. But I don't know why I suddenly found that useful... I am also dabbling with source comments and auto generated help wrt modules in general and singleton objects. Would the SVN commit history shine

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Benoît Minisini
Le 19/09/2014 22:24, Willy Raets a écrit : Hi all, I have this Gambas library. I have made sure classes have their description (using ''' at the beginning) and public functions/methods have their description (using '' just before the function/method) I have this exported class named

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Benoît Minisini
Le 20/09/2014 01:02, Benoît Minisini a écrit : Can you send your project? Normally the sentence This class is creatable is not display if you don't have a _new public method. Regards, Sorry, it is displayed when the help comes from the source code! I fix that... -- Benoît Minisini

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
On za, 2014-09-20 at 01:12 +0200, Benoît Minisini wrote: Le 20/09/2014 01:05, Benoît Minisini a écrit : Le 20/09/2014 01:02, Benoît Minisini a écrit : Can you send your project? Normally the sentence This class is creatable is not display if you don't have a _new public method.

Re: [Gambas-user] Class info contradicts by Gambas added class info

2014-09-19 Thread Willy Raets
On za, 2014-09-20 at 00:19 +0100, John Leake wrote: Thank you. Should the documentation in the wiki also be updated to reflect this new behaviour ? I don't think so as the fix should make Gambas confirm the documentation :) Modules normally don't have the _new public method. As a matter of