From danielcampos at ...45... Mon Mar 1 08:39:21 2004 From: danielcampos at ...45... (danielcampos at ...45...) Date: Mon, 1 Mar 2004 08:39:21 CET Subject: [Gambas-devel] Hey test it ! Message-ID: Well, clicking on 'My Options', and trying to save information (I tried twice), my country appears as 'Palau' instead of 'Spain'. Clicking on 'Send a Mail to the web masters' appears ' My options' again. Clicking on 'My account' appears '404 object not found' Hope it helps Daniel Campos ------------------------------------------------------------- NetCourrier, votre bureau virtuel sur Internet : Mail, Agenda, Clubs, Toolbar... Web/Wap : www.netcourrier.com T?l?phone/Fax : 08 92 69 00 21 (0,34 ? TTC/min) Minitel: 3615 NETCOURRIER (0,16 ? TTC/min) From gambas at ...1... Fri Mar 5 22:57:23 2004 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Mar 2004 22:57:23 +0100 Subject: [Gambas-devel] net 0.2.3 In-Reply-To: <1077993945.4274.4.camel@...102...> References: <1077993945.4274.4.camel@...102...> Message-ID: <200403052257.23174.gambas@...1...> On Saturday 28 February 2004 19:45, Daniel Campos wrote: > This is NET 0.2.3 and UDPServerClient revisited, as I've found some > bugs: > > > * Fixed a bug in UdpClient : segmentation fault when reading or writing > data > > * Fixed a bug in UDPServerClient example : trying to use CLOSE when > UdpClient is not active > > And as Ron said: > > * defined before in CDnsClient.c to allow > compile on FreeBSD > > > > Regards, > > Daniel Campos Thanks Daniel, I have inserted it into the main package. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Fri Mar 5 23:00:18 2004 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Mar 2004 23:00:18 +0100 Subject: [Gambas-devel] Mysql create table patch for 0.90 In-Reply-To: <001701c3fed0$6ac95d20$79874c51@...97...> References: <001701c3fed0$6ac95d20$79874c51@...97...> Message-ID: <200403052300.18316.gambas@...1...> On Sunday 29 February 2004 15:29, Nigel Gerrard wrote: > Guys, > > I have just found a problem when trying to create a mysql table with the > mysql driver released in 0.90. Attached is a patch that resolves it, to > apply change to ../gambas0.90/src/lib/db/mysql and apply the diff file: > patch main.c mysql.main.c.diff > > Then compile: make and make install. > > Nigel Thanks Nigel, Added to the source code! Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Fri Mar 5 23:01:30 2004 From: gambas at ...1... (Benoit Minisini) Date: Fri, 5 Mar 2004 23:01:30 +0100 Subject: [Gambas-devel] oopps! In-Reply-To: <1078083844.12075.1.camel@...102...> References: <1078083844.12075.1.camel@...102...> Message-ID: <200403052301.30262.gambas@...1...> On Sunday 29 February 2004 20:44, Daniel Campos wrote: > There was a bug in the previous file, this is the good one. > > Sorry, OK! -- Benoit Minisini mailto:gambas at ...1... From danielcampos at ...45... Sun Mar 7 09:51:34 2004 From: danielcampos at ...45... (Daniel Campos) Date: Sun, 07 Mar 2004 09:51:34 +0100 Subject: [Gambas-devel] Curious error (gbi) Message-ID: <1078649494.3123.4.camel@...102...> Hello: When you try to extract symbols from a non-existing library, for example you want to do : gbi gb.net but you type it wrongly: gbi gb.neto A segmentation fault happens. I've look at the code, in gbi.c, and all seems to be OK: ... lib = lt_dlopenext(path); if (!lib) error2(path, lt_dlerror()); desc = lt_dlsym(lib, LIB_CLASS); ... However, libtool does not return NULL in lt_dlopenext as it should do, as 'gb.neto' does not exists, but a handle to ..what?, so, when calling to lt_dlsym the program crashes. Currently I'm using libtool-1.4.3 from Mandrake cooker, and the previous version from Mandrake 9.2 has the same problem...is it a bug from libtool, or something I can no see? Regards, -- Daniel Campos From danielcampos at ...45... Sun Mar 7 11:28:02 2004 From: danielcampos at ...45... (Daniel Campos) Date: Sun, 07 Mar 2004 11:28:02 +0100 Subject: [Gambas-devel] About process management Message-ID: <1078655282.3123.22.camel@...102...> Hi Beno?t (and company): When executing a program using EXEC, I always find a problem: I can not recover all stdout output from the process, as usually the process is closed by gambas before all data has been read from the gambas input pipe. Try, for example "Proceso1.tar.gz", this little program makes 'ls -l' on the home directory (change it for any other with a lot of files, if you have few files at home directory). You will see in the textarea that you receive just a fragment from the ls output, all the rest is lost (the final part). I've been looking at the gbx_c_process.c file, and the final part of the output is beeing 'abandoned'. I've added a buffer in the process structure at "gbx_c_process.h" file, and I manage it in the "gbx_c_process.c" (my 'hackings' are marked between "/**/ symbols), and I've seen I can recover the final part of the output and print it in the stdout, and buffer it into the process structure. (try "Proceso1" example using these files I provide) My idea was to keep that data in the buffer, and send 'Read' events to let the user retrieve the rest of the information, extracting data from the buffer instead of the pipe when the process is already dead. However I do not understand very well the process stream, so, at this moment I just send you that patched files, I suppose you can correct this "read bug" better than me :-) If this bug is corrected, process management will be more useful for a lot of people, allowing to perform a lot of tasks using unix commands! Regards, Daniel Campos -- Daniel Campos -------------- next part -------------- A non-text attachment was scrubbed... Name: Proceso1-0.0.tar.gz Type: application/x-compressed-tar Size: 1201 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gbx_c_process.h Type: text/x-c-header Size: 1706 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gbx_c_process.c Type: text/x-c Size: 12868 bytes Desc: not available URL: From gambas at ...1... Tue Mar 9 22:07:37 2004 From: gambas at ...1... (Benoit Minisini) Date: Tue, 9 Mar 2004 22:07:37 +0100 Subject: [Gambas-devel] Curious error (gbi) In-Reply-To: <1078649494.3123.4.camel@...102...> References: <1078649494.3123.4.camel@...102...> Message-ID: <200403092207.37882.gambas@...1...> On Sunday 07 March 2004 09:51, Daniel Campos wrote: > Hello: > > When you try to extract symbols from a non-existing library, for example > you want to do : > > gbi gb.net > > but you type it wrongly: > > gbi gb.neto > > A segmentation fault happens. I've look at the code, in gbi.c, and all > seems to be OK: > > ... > lib = lt_dlopenext(path); > > if (!lib) > error2(path, lt_dlerror()); > > desc = lt_dlsym(lib, LIB_CLASS); > ... > > However, libtool does not return NULL in lt_dlopenext as it should do, > as 'gb.neto' does not exists, but a handle to ..what?, so, when calling > to lt_dlsym the program crashes. > > Currently I'm using libtool-1.4.3 from Mandrake cooker, and the previous > version from Mandrake 9.2 has the same problem...is it a bug from > libtool, or something I can no see? > > Regards, I added a test on the file existence before calling lt_dlopenext. This will fix the crash. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Tue Mar 9 22:08:31 2004 From: gambas at ...1... (Benoit Minisini) Date: Tue, 9 Mar 2004 22:08:31 +0100 Subject: [Gambas-devel] Re: [Gambas-user] Zlib and BZlib Message-ID: <200403092208.31904.gambas@...1...> On Sunday 22 February 2004 19:42, Daniel Campos wrote: > Hi all! > > These are the final versions of Zlib and BZLib components, > that allows to compress data using zlib and bzlib2 libraries. > > I've implemented the bzlib component today, and made some changes > in zlib component. > > Their interfaces are quite similar, however there are some differences: > > ZEngine has two methods to compress strings directly : > > 'DeflateString' and 'InflateString', that uses an algorithm a little > different from Gzip one. > > BZEngine provides: > > 'BzipString'and 'BuzipString' which works exatly using the same bzip2 > format. > > This is due to the capabilities of both libraries. > > To compile these libraries: > > 0) You need gambas-0.84 or newer > 1) Copy both 'zlib' and 'bzlib' folders to {gambas sources}/src/lib > 2) Copy the attached configure.in to {gambas sources} instead of the > original configure.in > 3) Type : ./reconf > 4) Type : ./configure (with your options) > 5) Go to {gambas sources}/src/lib/zlib, then 'make' and 'make install' > 6) Go to {gambas sources}/src/lib/bzlib, then 'make' and 'make install' > 7) OK, done > > Regards, Hi, Daniel, Sorry for my late answer, I'm very busy these days... I want to include the compression libraries in Gambas, but... :-) I saw that BZEngine and ZEngine have actually the same interface, even if the method names are not exactly the same. Maybe things can be unified there... I suggest the following... Be careful ;-) 1) Create a component named gb.compress with two classes: Compress and Uncompress. With the following methods: Compress.File: compress a file Compress.String: compress a string Uncompress.File: uncompress a file Uncompress.String: uncompress a string Compress.Open: creates a stream. Possibly a Compress.Type (a string) for the default library to use with the previous functions... And all the constants of course. This component creates an internal interface named GB_COMPRESS_1 with a gb.compress.h header. This interface allow registering drivers. Look in the database component, it is exactly the same design. 2) Create two driver components, gb.compress.zlib and gb.compress.bzlib that register drivers allowing Compress and Uncompress methods to call the real functions. I will modify the GB_STREAM declaration in gambas.h so that there is a place in the structure for a private pointer. This way, your bzstream_ADD and bzstream_FIND will become useless. Actually, there IS a place, I stupidely forgot to declare it (all the structure except the two first longs). Waiting for your comments, Best regards, -- Benoit Minisini mailto:gambas at ...1... ------------------------------------------------------- This SF.Net email is sponsored by: IBM Linux Tutorials Free Linux tutorial presented by Daniel Robbins, President and CEO of GenToo technologies. Learn everything from fundamentals to system administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click _______________________________________________ Gambas-user mailing list Gambas-user at lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user From gambas at ...1... Tue Mar 9 22:30:54 2004 From: gambas at ...1... (Benoit Minisini) Date: Tue, 9 Mar 2004 22:30:54 +0100 Subject: [Gambas-devel] SQLite driver In-Reply-To: <002101c3fed0$dec3ea60$79874c51@...97...> References: <002101c3fed0$dec3ea60$79874c51@...97...> Message-ID: <200403092230.54391.gambas@...1...> On Sunday 29 February 2004 15:32, Nigel Gerrard wrote: > Guys, > > Here is a first attempt at a sqlite driver. It is experimental so be > careful :-) > > You will also need to compile etc. the sqlite stuff available from > www.sqlite.org. > > Nigel Thanks Nigel, I included it. But without any testing! Regards, -- Benoit Minisini mailto:gambas at ...1... From shuveb at ...7... Fri Mar 12 08:44:36 2004 From: shuveb at ...7... (=?iso-8859-1?q?Shuveb=20Hussain?=) Date: Fri, 12 Mar 2004 07:44:36 +0000 (GMT) Subject: [Gambas-devel] compling new component Message-ID: <20040312074436.56575.qmail@...111...> Hi I am Shuveb Hussain and I live in India. I am a programmer and work for Winways Systems(www.winways.co.in). I am 23 and have been programming(Linux and Windoze) for the past 5 years. I was playing around with the example component and I found it real easy and a lot of fun to be programming components. The fun ended when I tried to write my own component in a separate directory. I just could not get it to compile. I haven't been into the autoconf stuff before. I even created the Makefile.am file as instructed in the wiki, but to no avail. I think something more is needed. Please help. What are the places/files where i need to make changes in order to get my component to compile? Regards, Shuveb p.s The component I was trying to write was an image creation/manipulation component with which gambas users can create/manipulate jpg/png images. underneath i use the gd library. please checkout www.linuxgazette.net article #91 by me for more details. ___________________________________________________________ Yahoo! Messenger - Communicate instantly..."Ping" your friends today! Download Messenger Now http://uk.messenger.yahoo.com/download/index.html From gambas at ...1... Sat Mar 13 14:46:09 2004 From: gambas at ...1... (Benoit Minisini) Date: Sat, 13 Mar 2004 14:46:09 +0100 Subject: [Gambas-devel] compling new component In-Reply-To: <20040312074436.56575.qmail@...111...> References: <20040312074436.56575.qmail@...111...> Message-ID: <200403131446.09735.gambas@...1...> On Friday 12 March 2004 08:44, Shuveb Hussain wrote: > Hi > I am Shuveb Hussain and I live in India. I am a > programmer and work for Winways > Systems(www.winways.co.in). I am 23 and have been > programming(Linux and Windoze) for the past 5 years. I > was playing around with the example component and I > found it real easy and a lot of fun to be programming > components. > The fun ended when I tried to write my own component > in a separate directory. I just could not get it to > compile. I haven't been into the autoconf stuff > before. I even created the Makefile.am file as > instructed in the wiki, but to no avail. I think > something more is needed. Please help. What are the > places/files where i need to make changes in order to > get my component to compile? > > Regards, > Shuveb > > p.s > The component I was trying to write was an image > creation/manipulation component with which gambas > users can create/manipulate jpg/png images. underneath > i use the gd library. please checkout > www.linuxgazette.net article #91 by me for more details. > Hi, Make an archive of your code in a tar.gz and post it on the mailing-list, if its size is not too important, or on a ftp/http server. This way, I could look at it and tell you what is wrong. Regards, -- Benoit Minisini mailto:gambas at ...1... From gambas at ...1... Sat Mar 13 17:28:10 2004 From: gambas at ...1... (Benoit Minisini) Date: Sat, 13 Mar 2004 17:28:10 +0100 Subject: [Gambas-devel] About process management In-Reply-To: <1078655282.3123.22.camel@...102...> References: <1078655282.3123.22.camel@...102...> Message-ID: <200403131728.10022.gambas@...1...> On Sunday 07 March 2004 11:28, Daniel Campos wrote: > Hi Beno?t (and company): > > When executing a program using EXEC, I always find a problem: > > I can not recover all stdout output from the process, as usually the > process is closed by gambas before all data has been read from the > gambas input pipe. Try, for example "Proceso1.tar.gz", this little > program makes 'ls -l' on the home directory (change it for any other > with a lot of files, if you have few files at home directory). > > You will see in the textarea that you receive just a fragment from > the ls output, all the rest is lost (the final part). > > I've been looking at the gbx_c_process.c file, and the final > part of the output is beeing 'abandoned'. I've added a buffer > in the process structure at "gbx_c_process.h" file, and I manage > it in the "gbx_c_process.c" (my 'hackings' are marked between > "/**/ symbols), and I've seen I can recover > the final part of the output and print it in the stdout, and buffer it > into the process structure. (try "Proceso1" example using these files I > provide) > > My idea was to keep that data in the buffer, and send 'Read' events > to let the user retrieve the rest of the information, extracting data > from the buffer instead of the pipe when the process is already dead. > > However I do not understand very well the process stream, so, at this > moment I just send you that patched files, I suppose you can correct > this "read bug" better than me :-) > > If this bug is corrected, process management will be more useful for > a lot of people, allowing to perform a lot of tasks using unix commands! > > Regards, > > Daniel Campos Hi, Daniel, I fixed this problem this way: when the interpreter receives the SIGCHLD signal telling him that the process died, then he raised "Read" and "Error" events until the everything is read. Note that you read process output by doing a READ #LAST,Buf,Lof(LAST). It is syntactically logic, but it does not work as Lof(LAST) does not return anything valid. Because I can't know how many bytes I can read on the process output without effectively reading them. The good way of reading process output is doing a READ #LAST,Buf,-256 (or any number you want). It reads at most 256 characters in the string. Regards, -- Benoit Minisini mailto:gambas at ...1... From mauriiiii3001 at ...112... Tue Mar 16 20:04:06 2004 From: mauriiiii3001 at ...112... (Pozzo) Date: Tue, 16 Mar 2004 20:04:06 +0100 Subject: [Gambas-devel] 0.91 Ita translations Message-ID: <40574FA6.5080805@...112...> Here them are -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: gambas-it.po URL: -------------- next part -------------- # #-#-#-#-# CConnection.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/CConnection.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# CField.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/CField.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# CIndexField.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/CIndexField.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# CServer.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/CServer.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# CTableViewEditor.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/CTableViewEditor.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FAbout.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FAbout.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FDatabase.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FDatabase.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FData.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FData.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FMain.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FMain.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FNewTable.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FNewTable.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FRequest.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FRequest.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FServer.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FServer.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FTable.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FTable.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # # #-#-#-#-# FUser.pot (PACKAGE VERSION) #-#-#-#-# # /home/evilangel/gambas-0.81/app/gambas-database-manager/FUser.class # Generated by Gambas compiler # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2002-11-01 04:27+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: FMain.class:790 msgid "-" msgstr "-" #: FMain.class:725 msgid "&?" msgstr "-" #: FAbout.class:46 FMain.class:728 msgid "About..." msgstr "Informazioni su..." #: FRequest.class:179 msgid "All files" msgstr "Tutti i files" #: FTable.class:400 msgid "Boolean" msgstr "Booleano" #: FServer.class:124 FTable.class:666 FUser.class:192 msgid "Cancel" msgstr "Cancellla" #: FMain.class:557 msgid "Cannot close database." msgstr "Non riesco a chiudere il database." #: FMain.class:185 msgid "Cannot connect to database" msgstr "Non riesco a collegarmi al database" #: FMain.class:304 msgid "Cannot connect to database '&1'" msgstr "Non riesco a collegarmi al database '&1'" #: FMain.class:87 msgid "Cannot connect to server" msgstr "Non riesco a collegarmi al server" #: CServer.class:190 msgid "Cannot create database." msgstr "Non riesco a creare il database." #: CConnection.class:221 msgid "Cannot create table '&1'." msgstr "Non riesco a creare la tabella '&1'." #: CServer.class:125 msgid "Cannot create user." msgstr "Non riesco a creare l'utente." #: CServer.class:210 msgid "Cannot delete database." msgstr "Non riesco a cancellare il database." #: CConnection.class:242 msgid "Cannot delete table '&1'." msgstr "Non riesco a cancellare la tabella '&1'." #: CServer.class:143 msgid "Cannot delete user." msgstr "Non riesco a cancellare l'utente." #: CServer.class:172 msgid "Cannot edit user." msgstr "Non riesco a modificare l'utente." #: FRequest.class:116 msgid "Cannot exec request." msgstr "Non riesco a esegure la richiesta." #: FRequest.class:188 msgid "Cannot load SQL script file." msgstr "Non riesco a caricare il file script SQL." #: FData.class:129 msgid "Cannot read table data." msgstr "Non riesco a leggere i dati della tabella." #: FMain.class:543 msgid "Cannot refresh connection." msgstr "Non riesco a aggiornare la connessione." #: FRequest.class:206 msgid "Cannot save SQL script file." msgstr "Non riesco a salvare il file script SQL." #: FTable.class:302 msgid "Cannot write table." msgstr "Non riesco a scrivere la tabella." #: FData.class:205 msgid "Cannot write table data." msgstr "Non riesco a scrivere i dati della tabella." #: FMain.class:578 msgid "&Cascade" msgstr "&Cascata" #: FMain.class:799 msgid "&Close database" msgstr "&Chiudi database" #: FMain.class:738 msgid "&Create database..." msgstr "&Crea database..." #: FDatabase.class:58 msgid "Create database" msgstr "Crea database" #: FMain.class:776 msgid "&Create table..." msgstr "&Crea tabella.." #: FNewTable.class:22 msgid "Create table" msgstr "Crea tabella" #: FMain.class:743 msgid "&Create user..." msgstr "&Crea utente..." #: FUser.class:59 msgid "Create user" msgstr "Crea utente" #: FServer.class:87 msgid "Database" msgstr "-" #: FTable.class:398 msgid "Date" msgstr "Data" #: FTable.class:66 msgid "Default value" msgstr "Valore predefinito" #: FMain.class:434 msgid "Delete" msgstr "Cancella" #: FMain.class:807 msgid "&Delete database" msgstr "Cancella &database" #: FTable.class:1088 msgid "Delete field" msgstr "Cancella campo" #: FTable.class:1152 msgid "Delete index field" msgstr "Cancella indice campo" #: FData.class:549 msgid "Delete record" msgstr "Cancella record" #: FMain.class:874 msgid "&Delete table" msgstr "&Cancella tabella" #: FMain.class:831 msgid "&Delete user" msgstr "&Cancella utente" #: FData.class:474 FTable.class:976 msgid "Do not save" msgstr "Non salvare" #: FMain.class:470 msgid "Do you really want to delete the database '&1' ?\n\nBE CAREFUL ! All your data will be lost." msgstr "Vuoi veramente cancellare il database '&1'? \n\n ATTENZIONE! Tutti i dati andranno persi." #: FMain.class:511 msgid "Do you really want to delete the table '&1' ?" msgstr "Vuoi veramente cancellare la tabella '&1' ?" #: FMain.class:434 msgid "Do you really want to delete the user '&1' ?" msgstr "Vuoi veramente cancellare l'utente '&1' ?" #: FTable.class:666 msgid "Do you really want to reload the table definition ?" msgstr "Vuoi veramente ricericare la definizione della tabella?" #: FMain.class:453 msgid "Do you really want to remove this connection ?\n\n&1" msgstr "Vuoi veramente rimuovere questa connessione ? \n\n&1" #: FMain.class:846 msgid "&Edit table..." msgstr "Modifica Tab&ella..." #: FMain.class:822 msgid "&Edit user..." msgstr "Modifica ut&ente.." #: FUser.class:48 msgid "Edit user" msgstr "Modifica utente" #: FNewTable.class:77 msgid "Enter table name :" msgstr "Inserisci il nome della tabella:" #: FRequest.class:153 msgid "Enter your request..." msgstr "Inserisci la richiesta..." #: FTable.class:87 msgid "Field" msgstr "Campo" #: FTable.class:1052 msgid "Fields" msgstr "Campi" #: FRequest.class:240 msgid "Find" msgstr "Trova" #: FTable.class:396 msgid "Float" msgstr "-" #: FAbout.class:65 FMain.class:683 msgid "Gambas Database Manager" msgstr "Gestore di Database di Gambas" #: FAbout.class:90 msgid "

Authors

\n" msgstr "

Autori

\n" #: FAbout.class:84 msgid "

Licence

\n\n

This program is FREE SOFTWARE; you can redistribute it AND/OR modify it under the terms of the GNU General Public License as published by the Free Software Foundation ; either version 1, or (at your option) any later version.

\n\n

This program is distributed in the hope that it will be useful but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

\n" msgstr "

Licenza

\n\n

Questo programma ?? SOFTWARE LIBERO; Puoi redistribuirlo E/O modificarlo secondo i termini della GNU General Public License pubblicata dalla Free Software Foundation ; La versione 1, o (a tua scelta) qualsiasi altra versione successiva.

\n\n

Questo programma ?? distribuito nella speranza che sia utile ma SENZA QUALSIASI GARANZIA; senza memmeno l'implicita garanzia di MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Leggi la GNU General Public License per maggiori dettagli.

\n" #: FServer.class:77 msgid "Host" msgstr "-" #: FData.class:375 FTable.class:544 msgid "Incorrect value." msgstr "Vaolore non valido." #: FTable.class:77 msgid "Index" msgstr "Indice" #: FTable.class:1132 msgid "Indexes" msgstr "Indici" #: FTable.class:394 msgid "Integer" msgstr "Intero" #: FTable.class:61 msgid "Length" msgstr "Lunghezza" #: FMain.class:763 msgid "mnuDatabase" msgstr "-" #: FMain.class:734 msgid "mnuServer" msgstr "-" #: FMain.class:837 msgid "mnuTable" msgstr "-" #: FMain.class:813 msgid "mnuUser" msgstr "-" #: FData.class:63 FTable.class:117 msgid "modified" msgstr "modificato" #: FData.class:570 msgid "Modify this table" msgstr "Modifica questa tabella" #: FTable.class:1072 msgid "Move field down" msgstr "Sposta gi?? il campo" #: FTable.class:1056 msgid "Move field up" msgstr "Sposta su il campo" #: FDatabase.class:142 FTable.class:51 FUser.class:160 msgid "Name" msgstr "Nome" #: FMain.class:690 msgid "&New connection..." msgstr "&Nuova connessione..." #: FServer.class:48 msgid "New connection" msgstr "Nuova connessione" #: FTable.class:1096 msgid "New field" msgstr "Nuovo campo" #: FTable.class:1136 msgid "New index" msgstr "Nuovo indice" #: FTable.class:1144 msgid "New index field" msgstr "Nuovo campo indice" #: FData.class:541 msgid "New record" msgstr "Nuovo record" #: FRequest.class:248 msgid "New request" msgstr "Nuova richiesta" #: FRequest.class:59 msgid "No records." msgstr "Nessun record." #: FMain.class:572 msgid "No window" msgstr "Nessuna finestra" #: FUser.class:186 msgid "OK" msgstr "-" #: FMain.class:860 msgid "&Open table..." msgstr "&Apri tabella..." #: FTable.class:1118 msgid "Open table" msgstr "Apri tabella" #: FServer.class:107 FUser.class:170 msgid "Password" msgstr "-" #: FAbout.class:78 msgid "

Benoît Minisini

\n
\nMain developer
\nFrench translation
\ngambas at ...1...\n
\n\n

Nigel Gerrard

\n
\nMySQL database driver
\nnigel at ...2...\n
\n\n

Wojciech Saltarski

\n
\nPolish translation
\ngambas at ...64...\nhttp://gambas.jest.o.k.pl\n
\n\n

Daniel Campos

\n
\nSpanish translation
\ndanielcampos at ...45...\n
\n\n

Marco Bauer

\n
\nGerman translation
\nelentirmo at ...51...\n
\n\n

Maurizio Pozzobon

\n
\nItalian translation
\nmauriiiii3001 at ...112...\n
\n" msgstr "

Benoît Minisini

\n
\nSviluppatore Principale
\nTraduttore in Francese
\ngambas at ...113.....1...\n
\n\n

Nigel Gerrard

\n
\nMySQL database driver
\nnigel at ...2...\n
\n\n

Wojciech Saltarski

\n
\nTraduttore in Polacco
\ngambas at ...64...\nhttp://gambas.jest.o.k.pl\n
\n\n

Daniel Campos

\n
\nTraduttore in Spagnolo
\ndanielcampos at ...114.....\n
\n\n

Marco Bauer

\n
\nTraduttore in Tedesco
\nelentirmo at ...51...\n
\n\n

Maurizio Pozzobon

\n
\nTraduttore in Italiano
\nmauriiiii3001 at ...112...\n
\n" #: FTable.class:520 msgid "Please enter a number." msgstr "Per favore inserisci un numero." #: FDatabase.class:80 msgid "Please type a database name." msgstr "Per favore digita un nome database." #: FUser.class:82 msgid "Please type a user name." msgstr "Per favore digita un nome utente" #: FServer.class:72 msgid "postgresql\nmysql\nsqlite" msgstr "-" #: FMain.class:709 msgid "&Quit" msgstr "&Esci" #: FMain.class:752 msgid "&Refresh" msgstr "&Aggiorna" #: FMain.class:700 msgid "&Refresh all" msgstr "&Aggiorna tutto" #: FTable.class:666 msgid "Reload" msgstr "Ricarica" #: FData.class:525 msgid "Reload data" msgstr "Ricarica dati" #: FTable.class:1104 msgid "Reload table" msgstr "Ricarica tabella" #: FMain.class:453 msgid "Remove" msgstr "Rimuovi" #: FMain.class:757 msgid "&Remove connection" msgstr "&Rimuovi connessione" #: FMain.class:851 msgid "&Rename table..." msgstr "&Rinomina tabella..." #: FNewTable.class:20 FTable.class:1126 msgid "Rename table" msgstr "Rinomina tabella" #: FRequest.class:231 msgid "Run" msgstr "Esegui" #: FData.class:474 FTable.class:976 msgid "Save" msgstr "Salva" #: FData.class:533 msgid "Save data" msgstr "Salva dati" #: FTable.class:1064 msgid "Save table" msgstr "Salva tabella" #: FDatabase.class:131 FUser.class:149 msgid "Server" msgstr "-" #: FMain.class:687 msgid "&Server" msgstr "-" #: FMain.class:781 msgid "&SQL request..." msgstr "Richiesta &SQL..." #: FRequest.class:38 msgid "SQL request" msgstr "Richiesta SQL" #: FRequest.class:179 msgid "SQL script files" msgstr "Files di script SQL" #: FTable.class:402 msgid "String" msgstr "Stringa" #: FMain.class:230 msgid "System tables" msgstr "Tabelle di sistema" #: CConnection.class:205 msgid "Table already exists." msgstr "La tabella gi?? esiste" #: FData.class:474 msgid "The data of table '&1' have been modified.\nDo you want to save it ?" msgstr "I dati della tabella '&1' sono stati modificati.\nVuoi salvarli?" #: FTable.class:524 msgid "The length must be greater than 1 and lower than 255." msgstr "La lunghezza deve essere superiore ad 1 e inferiore a 255." #: FTable.class:976 msgid "The table '&1' has been modified.\nDo you want to save it ?" msgstr "La tabella '&1' ?? stata modificata.\n Vuoi salvarla?" #: CTableViewEditor.class:80 msgid "This field cannot be void." msgstr "Questo campo non pu?? essere vuoto." #: FTable.class:497 msgid "This name already exists." msgstr "Questo nome gi?? esiste." #: FTable.class:1012 msgid "This table name is already in use." msgstr "Questo nome tabella gi?? esiste." #: FUser.class:181 msgid "This user is a database administrator" msgstr "Questo utente ?? un amministratore di database" #: FMain.class:581 msgid "&Tile" msgstr "&Titolo" #: FTable.class:1080 msgid "Toggle primary key" msgstr "Inverti tasto primario" #: FServer.class:66 FTable.class:56 msgid "Type" msgstr "Digita" #: FTable.class:82 msgid "Unique" msgstr "Unico" #: FTable.class:376 msgid "unlimited" msgstr "Illimitato" #: FMain.class:373 msgid "&Use encoding (&1)" msgstr "&Usa codifica ('&1')" #: FServer.class:97 msgid "User" msgstr "Utente" #: FMain.class:286 msgid "Users" msgstr "Utenti" #: FMain.class:716 msgid "&Window" msgstr "&Finestra" #: FTable.class:211 msgid "You must define a primary key." msgstr "Devi definire un tasto primario." From gambas at ...1... Tue Mar 23 23:25:52 2004 From: gambas at ...1... (Benoit Minisini) Date: Tue, 23 Mar 2004 23:25:52 +0100 Subject: [Gambas-devel] 0.91 Ita translations In-Reply-To: <40574FA6.5080805@...112...> References: <40574FA6.5080805@...112...> Message-ID: <200403232325.52174.gambas@...1...> On Tuesday 16 March 2004 20:04, Pozzo wrote: > Here them are Thanks! -- Benoit Minisini mailto:gambas at ...1... From elentirmo at ...51... Wed Mar 24 16:33:47 2004 From: elentirmo at ...51... (Marco Bauer) Date: Wed, 24 Mar 2004 16:33:47 +0100 Subject: [Gambas-devel] German translation 0.91 Message-ID: <200403241633.47498.elentirmo@...51...> Hi, here is an updated german translation for gambas 0.91. Gru? Marco Bauer -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas-database-manager-de.po Type: application/x-gettext Size: 14859 bytes Desc: not available URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: gambas-de.po Type: application/x-gettext Size: 51621 bytes Desc: not available URL: From jm at ...119... Tue Mar 30 15:43:05 2004 From: jm at ...119... (Jean-Michel POURE) Date: Tue, 30 Mar 2004 15:43:05 +0200 Subject: [Gambas-devel] Compiling under Debian unstable / KDE 3.2 Message-ID: <200403301543.14042.jm@...119...> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Dear friends, First of all, thanks for this great work. I am trying to use the latest 0.9.1 under Debian unstable: ./configure; make checking for moc... /usr/lib//../bin/moc checking for KDE 3.x component headers... /usr/include/kde/ checking for KDE 3.x component libraries... /usr/lib/ [...] make[5]: entrant dans le r?pertoire ? /home/jmpoure/projets/gambas/gambas-0.91/src/lib/qt/editor ? /usr/lib//../bin/moc qeditor.h -o moc_qeditor.cpp make[5]: /usr/lib//../bin/moc : commande introuvable In fact, /usr/bin/moc-qt3 is in my /usr/bin. If I create a symlink, it works: ln -s moc-qt3 moc But it should be fixed. By the way, where is the CVS located? I could not find any on SF.net. Cheers, Jean-Michel -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (GNU/Linux) iD8DBQFAaXltextoHHj2YFMRAmjPAKC6PaUPuMoOOk9b7O5Tnx3woWvVgQCg3DJs vi+a1MgpdYKv/0drbnq2Ec4= =cnxD -----END PGP SIGNATURE----- From olerida at ...120... Tue Mar 30 18:04:56 2004 From: olerida at ...120... (Oscar =?ISO-8859-1?Q?L=E9rida_Mons=F3?=) Date: Tue, 30 Mar 2004 18:04:56 +0200 Subject: [Gambas-devel] Compiling under Debian unstable / KDE 3.2 In-Reply-To: <200403301543.14042.jm@...119...> References: <200403301543.14042.jm@...119...> Message-ID: <1080662696.732.9.camel@...121...> Hello Jean-Michel, I am using and packaging Gambas for Debian Sid and I don't have this problem. In my debian the file "/usr/bin/moc" is a symbolic link to "/etc/alternatives/moc", and this later is a symbolic link to "/usr/bin/moc-qt3". (With default configuration, I don't touch anything) bye, and sorry my English. El mar, 30-03-2004 a las 15:43, Jean-Michel POURE escribi?: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Dear friends, > > First of all, thanks for this great work. > I am trying to use the latest 0.9.1 under Debian unstable: > > ./configure; make > > checking for moc... /usr/lib//../bin/moc > checking for KDE 3.x component headers... /usr/include/kde/ > checking for KDE 3.x component libraries... /usr/lib/ > > [...] > > make[5]: entrant dans le r?pertoire > ? /home/jmpoure/projets/gambas/gambas-0.91/src/lib/qt/editor ? > /usr/lib//../bin/moc qeditor.h -o moc_qeditor.cpp > make[5]: /usr/lib//../bin/moc : commande introuvable > > In fact, /usr/bin/moc-qt3 is in my /usr/bin. > If I create a symlink, it works: ln -s moc-qt3 moc > > But it should be fixed. By the way, where is the CVS located? > I could not find any on SF.net. > > Cheers, Jean-Michel > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.4 (GNU/Linux) > > iD8DBQFAaXltextoHHj2YFMRAmjPAKC6PaUPuMoOOk9b7O5Tnx3woWvVgQCg3DJs > vi+a1MgpdYKv/0drbnq2Ec4= > =cnxD > -----END PGP SIGNATURE----- > > > ------------------------------------------------------- > This SF.Net email is sponsored by: IBM Linux Tutorials > Free Linux tutorial presented by Daniel Robbins, President and CEO of > GenToo technologies. Learn everything from fundamentals to system > administration.http://ads.osdn.com/?ad_id70&alloc_id638&op=click > _______________________________________________ > Gambas-devel mailing list > Gambas-devel at lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/gambas-devel -- From jm at ...119... Wed Mar 31 10:01:16 2004 From: jm at ...119... (Jean-Michel POURE) Date: Wed, 31 Mar 2004 10:01:16 +0200 Subject: [Gambas-devel] Compiling under Debian unstable / KDE 3.2 In-Reply-To: <1080662696.732.9.camel@...121...> References: <200403301543.14042.jm@...119...> <1080662696.732.9.camel@...121...> Message-ID: <200403311001.16161.jm@...119...> Le mardi 30 Mars 2004 18:04, Oscar L?rida Mons? a ?crit : > In my debian the file "/usr/bin/moc" is a symbolic link to > "/etc/alternatives/moc", and this later is a symbolic link to > "/usr/bin/moc-qt3". (With default configuration, I don't touch anything) This is the point, I don't have a symbolic link from /usr/bin/moc to whatever and needed to create it by hand. It would be more straightforward for the configure script to look for moc or moc-qt3. Cheers, Jean-Michel