From chintanraoh at ...176... Mon Jan 1 03:22:29 2007 From: chintanraoh at ...176... (chintan rao) Date: Mon, 1 Jan 2007 07:52:29 +0530 Subject: [Gambas-devel] gb.options Message-ID: Hi, I really want to know weather this okay or should i make it better.Please reply your opnion about this. Should i send the component to the devel list? This is my first contribution of any kind to Open Source. Therefore i dont know much about formalities etc. Please try to reply soon. (Any reply will do) Thanking you Chintan Rao H -------------- next part -------------- An HTML attachment was scrubbed... URL: From chintanraoh at ...176... Mon Jan 1 05:12:13 2007 From: chintanraoh at ...176... (chintan rao) Date: Mon, 1 Jan 2007 09:42:13 +0530 Subject: [Gambas-devel] Gambas-devel Digest, Vol 7, Issue 7 In-Reply-To: References: Message-ID: > > > > > > > > > ---------- Forwarded message ---------- > From: "chintan rao" > To: gambas-devel at lists.sourceforge.net > Date: Sat, 30 Dec 2006 16:30:46 +0530 > Subject: [Gambas-devel] gb.options > Hi > > I have made a component using getopt function > > here is the GB_DESC > GB_DECLARE("GetOptions", sizeof(COPTIONS)), > > GB_METHOD ( "_new", NULL, COPTIONS_new, > "(Options)s[(Argument)String[];]" ), > GB_METHOD ( "_free", NULL, COPTIONS_free, NULL ), > GB_METHOD ( "_get" ,"v",COPTIONS_get,"(Option)s" ), > GB_METHOD ( "NextOption","s",COPTIONS_next,NULL ), > GB_METHOD ( "OptionArgument","s",COPTIONS_opt_arg,NULL ), > GB_METHOD ( "RestOfArgs","String[]",COPTIONS_rest,NULL ), > GB_METHOD ( "GetErrorOption","s",COPTIONS_invalid,NULL ), > GB_METHOD ( "GetArgument","String[]",COPTIONS_getarg,"(Option)s"), > > GB_PROPERTY_READ ("CommandLineArgs","String[]",COPTIONS_cmdline), > > I have made it non-static which i think is right(hopefully). > > NextOption works like getopt function. > OptionArgument is optarg. > GetErrorOption is optopt. > RestOfArgs gives the remaining arguments after running getopt. NextOption is NextValidOption _get function does not follow getopt template > for example > > DIM opt AS NEW GetOptions("h:elo") if argument not specify assumes agument > as command line options > > Options["h"] -> returns the last argument associated with 'h' if any > othewise returns 0 > Options["e"] -> returns 1 if the 'e' option is specified, and 0 > otherwise. > Options["z"] -> returns 0 Options should be opt here opt.GetArgument("h") returns all the arguments assosiated with 'h' > > opt.CommandLineArgs returns the command line options > > Example 1(getopt style) > > ' Gambas module file > > PUBLIC SUB Main() > > DIM opt AS NEW GetOptions(":h:elo") > DIM c AS String > PRINT "command line args:\"" & opt.CommandLineArgs.Join(" ") & "\"" > > c = opt.NextValidOption() > PRINT opt.OptionArgument() > > IF c = "" > BREAK > ENDIF > SELECT CASE c > CASE "h" > PRINT "option h" & " the corresponding argument is\"" & > opt.OptionArgument() & "\"" > CASE "e" > PRINT "option e" > CASE "l" > PRINT "option l" > CASE "o" > PRINT "option o" > CASE "?" > PRINT "error parsing the arguments" > PRINT "invalid option " & opt.GetErrorOption() > CASE ":" > PRINT "error parsing the arguments" > PRINT "no arguments to option " & opt.GetErrorOption() > END SELECT > WEND Made mistake forget while statement !!!! I am sorry for the trouble. ' Gambas module file PUBLIC SUB Main() DIM opt AS NEW GetOptions(":h:elo") DIM c AS String PRINT "command line args:\"" & opt.CommandLineArgs.Join(" ") & "\"" WHILE 1 c = opt.NextValidOption() ' PRINT opt.OptionArgument() ' PRINT "all options are here " & opt.GetAllOptions().Join(" ") IF c = "" THEN BREAK SELECT CASE c CASE "h" PRINT "option h" & " the corresponding argument is\"" & opt.OptionArgument() & "\"" CASE "e" PRINT "option e" CASE "l" PRINT "option l" CASE "o" PRINT "option o" CASE "?" PRINT "error parsing the arguments" PRINT "invalid option " & opt.GetErrorOption() CASE ":" PRINT "error parsing the arguments" PRINT "no arguments to option " & opt.GetErrorOption() END SELECT WEND IF opt.RestOfArgs().Count <> 0 PRINT "Rest of the arguments are \"" & opt.RestOfArgs().Join(" ") & "\"" ENDIF END IF opt.RestOfArgs().Count <> 0 > PRINT "Rest of the arguments are \"" & opt.RestOfArgs().Join(" ") & > "\"" > ENDIF > > END > > Example 2 (using "_get") > > ' Gambas module file > > PUBLIC SUB Main() > DIM opt AS NEW GetOptions("hevo:") > > IF opt["?"] = 1 > PRINT "error parsing the arguments" > ENDIF > > IF opt["h"] = 1 > PRINT "Help" > ENDIF > > IF opt["e"] = 1 > PRINT "Execute" > ENDIF > > IF opt["v"] = 1 > PRINT "Verbose" > ENDIF > > IF opt["o"] <> 1 AND opt["o"] <> 0 > PRINT "Ouput to " & opt["o"] > ENDIF > > END > > I wonder should i return all the valid options found as a String[] all at > once > > Hoping this interface is alright > If there should be a static interface i think it should be for command > line arguments in particular Sorry for all the trouble!!!! Hoping not to repeat next time. Again is this is interface okay??I mean is it upto Gambas cool standards?? Chintan Rao H OPEN at ...549... ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Gambas-devel mailing list Gambas-devel at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-devel -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas at ...1... Wed Jan 3 23:06:06 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 3 Jan 2007 23:06:06 +0100 Subject: [Gambas-devel] Can't checkout tree on Win32 -- Invalid filename In-Reply-To: References: Message-ID: <200701032306.06280.gambas@...1...> On Tuesday 12 December 2006 03:31, Brandon Bergren wrote: > Hi. It's been a while ;) > > I was checking out the SVN tree today in preperation for taking another > shot at compiling on Windows. > > I couldn't finish the checkout. There's a file 2.0/trunk/help/help/help?en > in the tree. Windows can't handle files with a ? in the file name, and I > can't seem to force my client to ignore it (Probabaly something to do with > the checkout being incomplete still) > > Would it be possible to rename or remove that file? > > Thanks, > > Brandon Bergren (That crazy disappearing Windows porter guy ;) I replaced all '?' and ':' characters in help file names by the '+' character, so now you should be able to check out on Windows... Regards, -- Benoit Minisini From bdragon at ...185... Thu Jan 4 01:19:09 2007 From: bdragon at ...185... (Brandon Bergren) Date: Wed, 3 Jan 2007 18:19:09 -0600 (Central Standard Time) Subject: [Gambas-devel] Can't checkout tree on Win32 -- Invalid filename In-Reply-To: <200701032306.06280.gambas@...1...> References: <200701032306.06280.gambas@...1...> Message-ID: On Wed, 3 Jan 2007, Benoit Minisini wrote: > On Tuesday 12 December 2006 03:31, Brandon Bergren wrote: >> Hi. It's been a while ;) >> >> I was checking out the SVN tree today in preperation for taking another >> shot at compiling on Windows. >> >> I couldn't finish the checkout. There's a file 2.0/trunk/help/help/help?en >> in the tree. Windows can't handle files with a ? in the file name, and I >> can't seem to force my client to ignore it (Probabaly something to do with >> the checkout being incomplete still) >> >> Would it be possible to rename or remove that file? >> >> Thanks, >> >> Brandon Bergren (That crazy disappearing Windows porter guy ;) > > I replaced all '?' and ':' characters in help file names by the '+' character, > so now you should be able to check out on Windows... > > Regards, > > Ok, excellent! :) --Brandon -- >From the mailer of |_|0|_| B R A N D O N B E R G R E N |_|_|0| T e c h n i c a l |0|0|0| G e n e r a l i s t ( C S ) From gambas at ...1... Sun Jan 7 10:01:13 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 7 Jan 2007 10:01:13 +0100 Subject: [Gambas-devel] gb.options In-Reply-To: References: Message-ID: <200701071001.13901.gambas@...1...> On Monday 01 January 2007 03:22, chintan rao wrote: > Hi, > I really want to know weather this okay or should i make it > better.Please reply your opnion about this. > > Should i send the component to the devel list? > This is my first contribution of any kind to Open Source. > Therefore i dont know much about formalities etc. > > Please try to reply soon. (Any reply will do) > Thanking you > Chintan Rao H Can you send me the last version of your component, so that I insert it into the SVN repository? Of course, if you know how to use subversion, I can grant you an access to the repository so that you can do it yourself. Regards, -- Benoit Minisini From chintanraoh at ...176... Mon Jan 8 02:37:49 2007 From: chintanraoh at ...176... (chintan rao) Date: Mon, 8 Jan 2007 07:07:49 +0530 Subject: [Gambas-devel] gb.options In-Reply-To: <200701071001.13901.gambas@...1...> References: <200701071001.13901.gambas@...1...> Message-ID: On 1/7/07, Benoit Minisini wrote: > > On Monday 01 January 2007 03:22, chintan rao wrote: > > Hi, > > I really want to know weather this okay or should i make it > > better.Please reply your opnion about this. > > > > Should i send the component to the devel list? > > This is my first contribution of any kind to Open Source. > > Therefore i dont know much about formalities etc. > > > > Please try to reply soon. (Any reply will do) > > Thanking you > > Chintan Rao H > > Can you send me the last version of your component, so that I insert it > into > the SVN repository? Will send it soon. Of course, if you know how to use subversion, I can grant you an access to > the > repository so that you can do it yourself. Sorry, I don't know how to use svn. . Regards, > -- > Benoit Minisini Yours sincerely Chintan Rao H -------------- next part -------------- An HTML attachment was scrubbed... URL: From chintanraoh at ...176... Mon Jan 8 16:58:22 2007 From: chintanraoh at ...176... (chintan rao) Date: Mon, 8 Jan 2007 21:28:22 +0530 Subject: [Gambas-devel] gb.options In-Reply-To: References: <200701071001.13901.gambas@...1...> Message-ID: Hello On 1/8/07, chintan rao wrote: > > > > On 1/7/07, Benoit Minisini wrote: > > > > Can you send me the last version of your component, so that I insert it > > into > > the SVN repository? > > > Will send it soon. > > Of course, if you know how to use subversion, I can grant you an access to > > the > > repository so that you can do it yourself. > > > Sorry, I don't know how to use svn. . > > Regards, > > -- > > Benoit Minisini > > > Yours sincerely > Chintan Rao H Attached is the component gb.options I hope the component works fine If it does not please tell me i will be glad to correct. myself. Yours sincerely Chintan Rao H -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gb.options.tar.bz2 Type: application/x-bzip2 Size: 391426 bytes Desc: not available URL: From chintanraoh at ...176... Wed Jan 10 13:01:53 2007 From: chintanraoh at ...176... (chintan rao) Date: Wed, 10 Jan 2007 17:31:53 +0530 Subject: [Gambas-devel] gb.options In-Reply-To: References: <200701071001.13901.gambas@...1...> Message-ID: Hi On 1/8/07, chintan rao wrote: > > Hello > > > On 1/8/07, chintan rao wrote: > > > > > > > > On 1/7/07, Benoit Minisini < gambas at ...1...> wrote: > > > Can you send me the last version of your component, so that I insert it into > > > the SVN repository? > > > > > > Will send it soon. > > > > > Of course, if you know how to use subversion, I can grant you an access to the > > > repository so that you can do it yourself. > > > > > > Sorry, I don't know how to use svn. . > > > > > Regards, > > > -- > > > Benoit Minisini > > > > Yours sincerely > > Chintan Rao H > > > Attached is the component gb.optionsI hope the component works fine > If it does not please tell me i will be glad to correct. myself. > > > Yours sincerely > Chintan Rao H This is a better way to post it i suppose . please download it from http://chintan-rao-h.tripod.com/gb.options.tar.bz2 . Your sincerely Chintan Rao H From gambas at ...1... Wed Jan 17 14:28:54 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 17 Jan 2007 14:28:54 +0100 Subject: [Gambas-devel] Changes in Sourceforge subversion infrastructure Message-ID: <200701171428.55094.gambas@...1...> Hi, Sourceforge has changed its subversion infrastructure, and you should update your local svn checkout this way: $ cd $ svn switch --relocate https://svn.sourceforge.net/svnroot/gambas/2.0/trunk https://gambas.svn.sourceforge.net/svnroot/gambas/2.0/trunk 'gambas.svn.sourceforget.net' must be used now instead of just 'svn.sourceforge.net'. Regards, -- Benoit Minisini From Karl.Reinl at ...16... Mon Jan 22 00:15:13 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Mon, 22 Jan 2007 00:15:13 +0100 Subject: [Gambas-devel] Component for universally unique identifier (UUID) Message-ID: <200701220015.13874.Karl.Reinl@...16...> Salut Beno?t, I made a gambas Component who return an ?universally unique identifier (UUID) In the attachment you find the sources and also the help for Wiki. The Component was made with gambas2-1.9.20 They still work well on gambas2-1.9.47 There is no check for needed lib's. I would like to see them checked in into the svn tree. Amicalment Charlie -------------- next part -------------- A non-text attachment was scrubbed... Name: gb.uuidgen-0.0.1.tar.gz Type: application/x-tgz Size: 4086 bytes Desc: not available URL: From Karl.Reinl at ...16... Tue Jan 23 23:31:12 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Tue, 23 Jan 2007 23:31:12 +0100 Subject: [Gambas-devel] Gambas2 Roadmap from July 3 Message-ID: <1169591472.5404.11.camel@...548...> Salut Benoit, I read again the gambas2 roadmap from July 2006. If you find the time for, I'm interested in your view about that roadmap today. And, do you see fundamental changes from now, to a final release? Amicalment Charlie From gambas at ...1... Wed Jan 24 17:49:42 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Jan 2007 17:49:42 +0100 Subject: [Gambas-devel] Component for universally unique identifier (UUID) In-Reply-To: <200701220015.13874.Karl.Reinl@...16...> References: <200701220015.13874.Karl.Reinl@...16...> Message-ID: <200701241749.43043.gambas@...1...> On Monday 22 January 2007 00:15, Charlie Reinl wrote: > Salut Beno?t, > > I made a gambas Component who return an ?universally unique identifier > (UUID) In the attachment you find the sources and also the help for Wiki. > > The Component was made with gambas2-1.9.20 > They still work well on gambas2-1.9.47 > > There is no check for needed lib's. > > I would like to see them checked in into the svn tree. > > Amicalment > Charlie Why do you want to create a component that just do: SHELL "uuidgen" TO uuid ? -- Benoit Minisini From gambas at ...1... Wed Jan 24 19:19:36 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 24 Jan 2007 19:19:36 +0100 Subject: [Gambas-devel] Gambas2 Roadmap from July 3 In-Reply-To: <1169591472.5404.11.camel@...548...> References: <1169591472.5404.11.camel@...548...> Message-ID: <200701241919.36731.gambas@...1...> On Tuesday 23 January 2007 23:31, Charlie Reinl wrote: > Salut Benoit, > > I read again the gambas2 roadmap from July 2006. > > If you find the time for, I'm interested in your view about that roadmap > today. > > And, do you see fundamental changes from now, to a final release? > > Amicalment > Charlie > Here is a list of mandatory tasks before the final release: * Make the package maker in the IDE. * Finish the GUI widgets (for example, DateBox and TimeBox must be redone). * Wait to see if Daniel Campos can make the gb.gtk component have the same features as the gb.qt component. * Move the Stock class in its own component, make it common to all GUI components (gb.qt, gb.qte & gb.gtk), and put inside a default set of icons so that nobody has warning messages and missing icons. * Check the state of gb.sdl & gb.opengl with Laurent Carlier to see if it has a final state. And fixing all the bugs that will appear during this period of course! There are other tasks that are not mandatory, like: * Making a usable gb.report component * Remove the "printing to a printer" support from the Printer class. This is no a lot of things to do actually, but I have the head in the theater at the moment, and I'm currently developing a Gambas web application for my job: a form editor fully customizable, that use Google Maps and Google Earth. So I don't have a lot of time at the moment for big tasks like making the package maker. This is a problem! Regards, -- Benoit Minisini From Karl.Reinl at ...16... Wed Jan 24 20:11:56 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Wed, 24 Jan 2007 20:11:56 +0100 Subject: [Gambas-devel] Component for universally unique identifier (UUID) In-Reply-To: <200701241749.43043.gambas@...1...> References: <200701220015.13874.Karl.Reinl@...16...> <200701241749.43043.gambas@...1...> Message-ID: <1169665916.5962.6.camel@...548...> Am Mittwoch, den 24.01.2007, 17:49 +0100 schrieb Benoit Minisini: > On Monday 22 January 2007 00:15, Charlie Reinl wrote: > > Salut Beno?t, > > > > I made a gambas Component who return an universally unique identifier > > (UUID) In the attachment you find the sources and also the help for Wiki. > > > > The Component was made with gambas2-1.9.20 > > They still work well on gambas2-1.9.47 > > > > There is no check for needed lib's. > > > > I would like to see them checked in into the svn tree. > > > > Amicalment > > Charlie > > Why do you want to create a component that just do: > > SHELL "uuidgen" TO uuid ? > Salut, 1. I can't write it in C. 2. I need it often and in nearly all projects. 3. And with a component I can use it in every project. But you can tell me, how and where I can make local components, so there is no need to get it into the main-tree ! Till now I always have to look, and add it in ../comp/src/order when I update gambas2. Amicalment Charlie From Karl.Reinl at ...16... Wed Jan 24 21:21:31 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Wed, 24 Jan 2007 21:21:31 +0100 Subject: [Gambas-devel] Gambas2 Roadmap from July 3 In-Reply-To: <200701241919.36731.gambas@...1...> References: <1169591472.5404.11.camel@...548...> <200701241919.36731.gambas@...1...> Message-ID: <1169670092.5962.20.camel@...548...> Am Mittwoch, den 24.01.2007, 19:19 +0100 schrieb Benoit Minisini: > On Tuesday 23 January 2007 23:31, Charlie Reinl wrote: > > Salut Benoit, > > > > I read again the gambas2 roadmap from July 2006. > > > > If you find the time for, I'm interested in your view about that roadmap > > today. > > > > And, do you see fundamental changes from now, to a final release? > > > > Amicalment > > Charlie > > > > Here is a list of mandatory tasks before the final release: > > * Make the package maker in the IDE. > > * Finish the GUI widgets (for example, DateBox and TimeBox must be redone). > > * Wait to see if Daniel Campos can make the gb.gtk component have the same > features as the gb.qt component. > > * Move the Stock class in its own component, make it common to all GUI > components (gb.qt, gb.qte & gb.gtk), and put inside a default set of icons so > that nobody has warning messages and missing icons. > > * Check the state of gb.sdl & gb.opengl with Laurent Carlier to see if it has > a final state. > > And fixing all the bugs that will appear during this period of course! > > There are other tasks that are not mandatory, like: > > * Making a usable gb.report component > > * Remove the "printing to a printer" support from the Printer class. > > This is no a lot of things to do actually, but I have the head in the theater > at the moment, and I'm currently developing a Gambas web application for my > job: a form editor fully customizable, that use Google Maps and Google Earth. > > So I don't have a lot of time at the moment for big tasks like making the > package maker. This is a problem! > > Regards, > Salut, thanks for your quick answer. So I will start to see gambas2 for me as stable, what means I will move my gambas1 projects to gambas2. Hope for gambas, you have more time to finish this release (and start next). Hope for you, to spend as much as you can at your theater joy. Thanks again. Amicalment Charlie From ronstk at ...124... Thu Jan 25 03:44:23 2007 From: ronstk at ...124... (ron) Date: Thu, 25 Jan 2007 03:44:23 +0100 Subject: [Gambas-devel] =?utf-8?q?Component_for_universally_unique_identif?= =?utf-8?q?ier_=28UUID=29?= In-Reply-To: <1169665916.5962.6.camel@...548...> References: <200701220015.13874.Karl.Reinl@...16...> <200701241749.43043.gambas@...1...> <1169665916.5962.6.camel@...548...> Message-ID: <200701250344.23915.ronstk@...124...> On Wednesday 24 January 2007 20:11, Charlie Reinl wrote: > Am Mittwoch, den 24.01.2007, 17:49 +0100 schrieb Benoit Minisini: > > On Monday 22 January 2007 00:15, Charlie Reinl wrote: > > > Salut Beno?t, > > > > > > I made a gambas Component who return an universally unique identifier > > > (UUID) In the attachment you find the sources and also the help for > > > Wiki. > > > > > > The Component was made with gambas2-1.9.20 > > > They still work well on gambas2-1.9.47 > > > > > > There is no check for needed lib's. > > > > > > I would like to see them checked in into the svn tree. > > > > > > Amicalment > > > Charlie > > > > Why do you want to create a component that just do: > > > > SHELL "uuidgen" TO uuid ? > > Salut, > > 1. I can't write it in C. > 2. I need it often and in nearly all projects. > 3. And with a component I can use it in every project. > > But you can tell me, how and where I can make local components, so there > is no need to get it into the main-tree ! > > Till now I always have to look, and add it in ../comp/src/order when I > update gambas2. > > Amicalment > Charlie > > Hmm, Hi Charlie. I use a.t.m. kubuntu and enter 'uuidgen' is a program installed at my box. I did not requested for it, it may be a program from somethng else, for install. > > SHELL "uuidgen" TO uuid ? this should work regarding Benoit and at the shell prompt it does on my box :). Was again a long time on Tteneriffe, looks my second home:) Ron From henrik at ...254... Sun Jan 28 12:32:36 2007 From: henrik at ...254... (Henrik Pihl) Date: Sun, 28 Jan 2007 13:32:36 +0200 Subject: [Gambas-devel] HTML module? Message-ID: <45BC89D4.2040006@...254...> Hi, Is it me or there isn't currently no HTML module for dealing lot of tags? Just wanted to experiment on creating a HTML->XML(TV) converter for few TV channels over here, a parsing module is a must for this kind of HTML mess :) (bonus question: is anyone at it or do I have the privilege of creating it?) From Karl.Reinl at ...16... Sun Jan 28 20:11:47 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Sun, 28 Jan 2007 20:11:47 +0100 Subject: [Gambas-devel] new svn Revision 209 Message-ID: <200701282011.47389.Karl.Reinl@...16...> Salut, checked out 209 ( had no mail since 206) while needed to refresh the IDE. 209 reports an Error ? Units Installing gb.web... Compiling gb.report... /opt/gambas2/gambas2-svn/comp/src/gb.report/ReportControl.class:110: Unknown identifier: Units Installing gb.report... Amicalment Charlie From henrik at ...254... Sun Jan 28 22:20:22 2007 From: henrik at ...254... (Henrik Pihl) Date: Sun, 28 Jan 2007 23:20:22 +0200 Subject: [Gambas-devel] Translations Message-ID: <45BD1396.7070202@...254...> Seems that the translations part is missing "Estonian (Estonia)" :) From gambas.fr at ...176... Sun Jan 28 22:51:51 2007 From: gambas.fr at ...176... (Fabien Bodard) Date: Sun, 28 Jan 2007 22:51:51 +0100 Subject: [Gambas-devel] new svn Revision 209 In-Reply-To: <200701282011.47389.Karl.Reinl@...16...> References: <200701282011.47389.Karl.Reinl@...16...> Message-ID: <6324a42a0701281351t3b1f6c23p74934ea54a6acf94@...178...> 2007/1/28, Charlie Reinl : > > Salut, > > checked out 209 ( had no mail since 206) while needed to refresh the IDE. > > 209 reports an Error ? Units > > Installing gb.web... > Compiling gb.report... > /opt/gambas2/gambas2-svn/comp/src/gb.report/ReportControl.class:110: > Unknown > identifier: Units > Installing gb.report... > > Amicalment > Charlie > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > corrected :) Sorry for this convenient i'm a beginner with svn :) Regards, Fabien Bodard -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas.fr at ...176... Sun Jan 28 22:54:24 2007 From: gambas.fr at ...176... (Fabien Bodard) Date: Sun, 28 Jan 2007 22:54:24 +0100 Subject: [Gambas-devel] New SVN REVISION 210 Message-ID: <6324a42a0701281354v4763a9bw9e4c084caac92f22@...178...> that's all :) -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas at ...1... Sun Jan 28 23:05:27 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 28 Jan 2007 23:05:27 +0100 Subject: [Gambas-devel] =?utf-8?q?Component_for_universally_unique_identif?= =?utf-8?q?ier_=28UUID=29?= In-Reply-To: <1169665916.5962.6.camel@...548...> References: <200701220015.13874.Karl.Reinl@...16...> <200701241749.43043.gambas@...1...> <1169665916.5962.6.camel@...548...> Message-ID: <200701282305.27273.gambas@...1...> On Wednesday 24 January 2007 20:11, Charlie Reinl wrote: > Am Mittwoch, den 24.01.2007, 17:49 +0100 schrieb Benoit Minisini: > > On Monday 22 January 2007 00:15, Charlie Reinl wrote: > > > Salut Beno?t, > > > > > > I made a gambas Component who return an universally unique identifier > > > (UUID) In the attachment you find the sources and also the help for > > > Wiki. > > > > > > The Component was made with gambas2-1.9.20 > > > They still work well on gambas2-1.9.47 > > > > > > There is no check for needed lib's. > > > > > > I would like to see them checked in into the svn tree. > > > > > > Amicalment > > > Charlie > > > > Why do you want to create a component that just do: > > > > SHELL "uuidgen" TO uuid ? > > Salut, > > 1. I can't write it in C. > 2. I need it often and in nearly all projects. > 3. And with a component I can use it in every project. > > But you can tell me, how and where I can make local components, so there > is no need to get it into the main-tree ! > > Till now I always have to look, and add it in ../comp/src/order when I > update gambas2. > > Amicalment > Charlie > The problem is that making a component just for doing one line of code is too heavy! I plan to make a 'gb.desktop' component in the future based on the Portland project. This component will include many desktop-agnostic functions (creating an icon, running a browser, a e-mail client...). Maybe your function could be put in this component? -- Benoit Minisini From gambas at ...1... Sun Jan 28 23:10:19 2007 From: gambas at ...1... (Benoit Minisini) Date: Sun, 28 Jan 2007 23:10:19 +0100 Subject: [Gambas-devel] New SVN REVISION 210 In-Reply-To: <6324a42a0701281354v4763a9bw9e4c084caac92f22@...178...> References: <6324a42a0701281354v4763a9bw9e4c084caac92f22@...178...> Message-ID: <200701282310.19636.gambas@...1...> On Sunday 28 January 2007 22:54, Fabien Bodard wrote: > that's all :) Your sourceforge address has been added to the commit mailing-list, so everybody will be warned now when you do a commit. Regards, -- Benoit Minisini From gambas.fr at ...176... Sun Jan 28 23:13:41 2007 From: gambas.fr at ...176... (Fabien Bodard) Date: Sun, 28 Jan 2007 23:13:41 +0100 Subject: [Gambas-devel] New SVN REVISION 210 In-Reply-To: <200701282310.19636.gambas@...1...> References: <6324a42a0701281354v4763a9bw9e4c084caac92f22@...178...> <200701282310.19636.gambas@...1...> Message-ID: <6324a42a0701281413v50441965ta708f5cdc57d75e@...178...> ok thank you :) 2007/1/28, Benoit Minisini : > > On Sunday 28 January 2007 22:54, Fabien Bodard wrote: > > that's all :) > > Your sourceforge address has been added to the commit mailing-list, so > everybody will be warned now when you do a commit. > > Regards, > > -- > Benoit Minisini > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Karl.Reinl at ...16... Mon Jan 29 00:04:19 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Mon, 29 Jan 2007 00:04:19 +0100 Subject: [Gambas-devel] Component for universally unique identifier (UUID) In-Reply-To: <200701282305.27273.gambas@...1...> References: <200701220015.13874.Karl.Reinl@...16...> <200701241749.43043.gambas@...1...> <1169665916.5962.6.camel@...548...> <200701282305.27273.gambas@...1...> Message-ID: <1170025459.5401.2.camel@...548...> Am Sonntag, den 28.01.2007, 23:05 +0100 schrieb Benoit Minisini: > On Wednesday 24 January 2007 20:11, Charlie Reinl wrote: > > Am Mittwoch, den 24.01.2007, 17:49 +0100 schrieb Benoit Minisini: > > > On Monday 22 January 2007 00:15, Charlie Reinl wrote: > > > > Salut Beno?t, > > > > > > > > I made a gambas Component who return an universally unique identifier > > > > (UUID) In the attachment you find the sources and also the help for > > > > Wiki. > > > > > > > > The Component was made with gambas2-1.9.20 > > > > They still work well on gambas2-1.9.47 > > > > > > > > There is no check for needed lib's. > > > > > > > > I would like to see them checked in into the svn tree. > > > > > > > > Amicalment > > > > Charlie > > > > > > Why do you want to create a component that just do: > > > > > > SHELL "uuidgen" TO uuid ? > > > > Salut, > > > > 1. I can't write it in C. > > 2. I need it often and in nearly all projects. > > 3. And with a component I can use it in every project. > > > > But you can tell me, how and where I can make local components, so there > > is no need to get it into the main-tree ! > > > > Till now I always have to look, and add it in ../comp/src/order when I > > update gambas2. > > > > Amicalment > > Charlie > > > > The problem is that making a component just for doing one line of code is too > heavy! > > I plan to make a 'gb.desktop' component in the future based on the Portland > project. This component will include many desktop-agnostic functions > (creating an icon, running a browser, a e-mail client...). > > Maybe your function could be put in this component? > Salut Benoit, that should be ok. But is there a way to build components which are token up to the next version ? Amicalment Charlie From Karl.Reinl at ...16... Mon Jan 29 00:22:11 2007 From: Karl.Reinl at ...16... (Charlie Reinl) Date: Mon, 29 Jan 2007 00:22:11 +0100 Subject: [Gambas-devel] new svn Revision 209 In-Reply-To: <6324a42a0701281351t3b1f6c23p74934ea54a6acf94@...178...> References: <200701282011.47389.Karl.Reinl@...16...> <6324a42a0701281351t3b1f6c23p74934ea54a6acf94@...178...> Message-ID: <1170026531.5401.6.camel@...548...> Am Sonntag, den 28.01.2007, 22:51 +0100 schrieb Fabien Bodard: > > > 2007/1/28, Charlie Reinl : > Salut, > > checked out 209 ( had no mail since 206) while needed to > refresh the IDE. > > 209 reports an Error ? Units > > Installing gb.web... > Compiling gb.report... > /opt/gambas2/gambas2-svn/comp/src/gb.report/ReportControl.class:110: Unknown > identifier: Units > Installing gb.report... > > Amicalment > Charlie > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance > to share your > opinions on IT & business topics through brief surveys - and > earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > corrected :) > > Sorry for this convenient i'm a beginner with svn :) > > Regards, > Fabien Bodard Salut Fabien, nice project, I'M very interessed in, some hints to use would be nice Amicalment Charlie From gambas.fr at ...176... Mon Jan 29 07:50:21 2007 From: gambas.fr at ...176... (Fabien Bodard) Date: Mon, 29 Jan 2007 07:50:21 +0100 Subject: [Gambas-devel] new svn Revision 209 In-Reply-To: <1170026531.5401.6.camel@...548...> References: <200701282011.47389.Karl.Reinl@...16...> <6324a42a0701281351t3b1f6c23p74934ea54a6acf94@...178...> <1170026531.5401.6.camel@...548...> Message-ID: <6324a42a0701282250l6999cda9ofd9cb8842c0c5941@...178...> > > > Salut Fabien, > > nice project, I'M very interessed in, some hints to use would be nice witch hints ? Amicalment > Charlie > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share > your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel > -------------- next part -------------- An HTML attachment was scrubbed... URL: From gambas at ...1... Wed Jan 31 17:37:50 2007 From: gambas at ...1... (Benoit Minisini) Date: Wed, 31 Jan 2007 17:37:50 +0100 Subject: [Gambas-devel] Translations In-Reply-To: <45BD1396.7070202@...254...> References: <45BD1396.7070202@...254...> Message-ID: <200701311737.50516.gambas@...1...> On Sunday 28 January 2007 22:20, Henrik Pihl wrote: > Seems that the translations part is missing "Estonian (Estonia)" :) > OK, I add it. -- Benoit Minisini