bug-gnustep
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Bug-gnustep Digest, Vol 79, Issue 1


From: maria Luna
Subject: RE: Bug-gnustep Digest, Vol 79, Issue 1
Date: Tue, 2 Jun 2009 17:31:28 -0400



                                   www.lunapoems.com 
                     
         AUTOR:                Maria Olga Luna Naranjo       aBRIL, 4/2007
          WRITE:               Newsletters.  
          TEMA:                1. sensillez 
                                  2. sinceridad 
                                  3. sensibilidad 
                                  Comentario: Personal Parcial. 
 
 
Disculpe no puedo escribir en Ingles porque tengo problemas de down ciertos dias puedo escribir otros dias me olvido, pero prefiero escribirles en mi idioma, porque ppuedo manifestar con seguridad, lo que yo le pido es que me perdone estoy viviendo una vida insegura por cuanto la diversificacion de tantos link no se cuales son los servicios honestos, yo requiero una linea que asegure y cierre tanta gente pirata que se ha desarrollado en estos tiempos estan tomando mi trabajo intelectual haciendo incopntable dinero, ni siquiera reconocen un centavo de dolar, por eso quiero gente transparente, si usted me asegura que dara servicios que proteja mi computadora y suporte integralmente me inscribire con usted de no ser asi gracias no quiero,  tener dolor de cabeza con tanta gente que se mete a diario y escriben mentiras, el tiempo es valioso no quiero ser asediada por gente inhonesta,vaga,corrupta  descortes vacia que no sabe lo que es el honor  mi talento no es copiado ni robado ideas de nadie. son escritos dados de mi Amado "Dios"
 
Atte. Maria Olga Luna Naranjo   Junio,2 2009                   




 
> Date: Mon, 1 Jun 2009 12:00:23 -0400
> From: bug-gnustep-request@gnu.org
> Subject: Bug-gnustep Digest, Vol 79, Issue 1
> To: bug-gnustep@gnu.org
>
> Send Bug-gnustep mailing list submissions to
> bug-gnustep@gnu.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.gnu.org/mailman/listinfo/bug-gnustep
> or, via email, send a message with subject or body 'help' to
> bug-gnustep-request@gnu.org
>
> You can reach the person managing the list at
> bug-gnustep-owner@gnu.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Bug-gnustep digest..."
>
>
> Today's Topics:
>
> 1. Fix, Base, NextStep encoding table (Georg Fleischmann)
> 2. Fix, GDL2, PostgreSQLExpression (+formatValue:forAttribute:)
> (Georg Fleischmann)
> 3. Re: Fix, GDL2, PostgreSQLExpression
> (+formatValue:forAttribute:) (David Ayers)
> 4. [bug #26717] suprious alert panel when cancelling save on
> windows (Riccardo mottola)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Mon, 1 Jun 2009 12:34:58 +0800
> From: Georg Fleischmann <G.Fleischmann@vhf.de>
> Subject: Fix, Base, NextStep encoding table
> To: bug-gnustep@gnu.org
> Message-ID: <80733972-FD74-4F40-9288-69B09222F909@vhf.de>
> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
>
> here is a fix for the NextStep Encoding in GNUstep Base (1.19.1),
> which happens to be totally screwed up by missing 5 entries.
> I guess the list was originally created by converting the Unicode to
> NextStep mapping, which is missing the 5 entries also.
>
> I just added 5 dummy values to the table (0xFB plus the NextStep
> value). This makes the table sorted correctly.
>
> Best wishes,
> Georg Fleischmann
>
>
> *** Source/Additions/unicode/nextstep.h.old 2009-05-31
> 15:25:06.000000000 +0800
> --- Source/Additions/unicode/nextstep.h 2009-05-31 15:30:35.000000000
> +0800
> ***************
> *** 51,58 ****
> --- 51,61 ----
> 0x0192,
> 0x00A7,
> 0x00A4,
> + 0xFBA9,
> 0x201C,
> 0x00AB,
> + 0xFBAC,
> + 0xFBAD,
> 0xFB01,
> 0xFB02,
> 0x00AE,
> ***************
> *** 63,68 ****
> --- 66,73 ----
> 0x00A6,
> 0x00B6,
> 0x2022,
> + 0xFBB8,
> + 0xFBB9,
> 0x201D,
> 0x00BB,
> 0x2026,
>
>
>
>
>
> ------------------------------
>
> Message: 2
> Date: Mon, 1 Jun 2009 12:36:32 +0800
> From: Georg Fleischmann <G.Fleischmann@vhf.de>
> Subject: Fix, GDL2, PostgreSQLExpression (+formatValue:forAttribute:)
> To: bug-gnustep@gnu.org
> Message-ID: <BDDE0D37-0427-490B-9924-A2E841ED316C@vhf.de>
> Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed
>
>
> here is a small suggestion for GDL2 (with PostgreSQL 8.3). PostgreSQL
> is complaining about escaping the underscore "_" character.
> I removed the escaping the underscore and everything looks fine.
>
> 2009-05-29 13:51:38.772 Import[3297] PostgreSQLAdaptor: execute command:
> SELECT t0.entity_name FROM unique_key t0 WHERE t0.entity_name =
> 'serial\_number'
> WARNING: nonstandard use of escape in a string literal
> LINE 1: ...ty_name FROM unique_key t0 WHERE t0.entity_name = 'serial
> \_n...
>
>
> Best wishes,
> Georg Fleischmann
>
>
> *** EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m.old
> 2008-04-04 13:30:41.000000000 +0800
> --- EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m 2009-05-29
> 14:16:51.000000000 +0800
> ***************
> *** 343,360 ****
> {
> switch (tempString[i])
> {
> ! case '\'':
> ! [string insertString: @"'" atIndex: dif + i];
> dif++;
> break;
> case '\\':
> [string insertString: @"\\" atIndex: dif + i];
> dif++;
> break;
> ! case '_':
> ! [string insertString: @"\\" atIndex: dif + i];
> ! dif++;
> ! break;
> default:
> break;
> }
> --- 343,360 ----
> {
> switch (tempString[i])
> {
> ! case '\'':
> ! [string insertString: @"'" atIndex: dif + i];
> dif++;
> break;
> case '\\':
> [string insertString: @"\\" atIndex: dif + i];
> dif++;
> break;
> ! //case '_':
> ! // [string insertString: @"\\" atIndex: dif + i];
> ! // dif++;
> ! // break;
> default:
> break;
> }
>
>
>
>
>
> ------------------------------
>
> Message: 3
> Date: Mon, 01 Jun 2009 14:05:57 +0200
> From: David Ayers <ayers@fsfe.org>
> Subject: Re: Fix, GDL2, PostgreSQLExpression
> (+formatValue:forAttribute:)
> To: Georg Fleischmann <G.Fleischmann@vhf.de>
> Cc: bug-gnustep@gnu.org
> Message-ID: <1243857957.31873.633.camel@rosenquarz.home.intars.at>
> Content-Type: text/plain
>
> Am Montag, den 01.06.2009, 12:36 +0800 schrieb Georg Fleischmann:
> > here is a small suggestion for GDL2 (with PostgreSQL 8.3). PostgreSQL
> > is complaining about escaping the underscore "_" character.
> > I removed the escaping the underscore and everything looks fine.
> >
> > 2009-05-29 13:51:38.772 Import[3297] PostgreSQLAdaptor: execute command:
> > SELECT t0.entity_name FROM unique_key t0 WHERE t0.entity_name =
> > 'serial\_number'
> > WARNING: nonstandard use of escape in a string literal
> > LINE 1: ...ty_name FROM unique_key t0 WHERE t0.entity_name = 'serial
> > \_n...
>
> Thanks Georg!
>
> I've cleaned it up a bit and committed your patch. Let us know if you
> have any other issues.
>
> Cheers,
> David
>
>
> > *** EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m.old
> > 2008-04-04 13:30:41.000000000 +0800
> > --- EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m 2009-05-29
> > 14:16:51.000000000 +0800
> > ***************
> > *** 343,360 ****
> > {
> > switch (tempString[i])
> > {
> > ! case '\'':
> > ! [string insertString: @"'" atIndex: dif + i];
> > dif++;
> > break;
> > case '\\':
> > [string insertString: @"\\" atIndex: dif + i];
> > dif++;
> > break;
> > ! case '_':
> > ! [string insertString: @"\\" atIndex: dif + i];
> > ! dif++;
> > ! break;
> > default:
> > break;
> > }
> > --- 343,360 ----
> > {
> > switch (tempString[i])
> > {
> > ! case '\'':
> > ! [string insertString: @"'" atIndex: dif + i];
> > dif++;
> > break;
> > case '\\':
> > [string insertString: @"\\" atIndex: dif + i];
> > dif++;
> > break;
> > ! //case '_':
> > ! // [string insertString: @"\\" atIndex: dif + i];
> > ! // dif++;
> > ! // break;
> > default:
> > break;
> > }
> >
> >
> >
> > _______________________________________________
> > Bug-gnustep mailing list
> > Bug-gnustep@gnu.org
> > http://lists.gnu.org/mailman/listinfo/bug-gnustep
>
>
>
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 01 Jun 2009 14:41:53 +0000
> From: Riccardo mottola <INVALID.NOREPLY@gnu.org>
> Subject: [bug #26717] suprious alert panel when cancelling save on
> windows
> To: Riccardo mottola <rollei@tiscalinet.it>, bug-gnustep@gnu.org
> Message-ID: <20090601-144152.sv20620.91696@savannah.gnu.org>
> Content-Type: text/plain;charset=UTF-8
>
>
> URL:
> <http://savannah.gnu.org/bugs/?26717>
>
> Summary: suprious alert panel when cancelling save on
> windows
> Project: GNUstep
> Submitted by: rmottola
> Submitted on: lun 01 giu 2009 14:41:51 GMT
> Category: Gui/AppKit
> Severity: 3 - Normal
> Item Group: Bug
> Status: None
> Privacy: Public
> Assigned to: None
> Open/Closed: Open
> Discussion Lock: Any
>
> _______________________________________________________
>
> Details:
>
> When doing "Save as" in a document based application (e.g.. Ink) on Windows
> and then cancelling the save selection panel, an Alert panel will appear with
> no content.
>
>
>
>
>
> _______________________________________________________
>
> Reply to this item at:
>
> <http://savannah.gnu.org/bugs/?26717>
>
> _______________________________________________
> Messaggio inviato con/da Savannah
> http://savannah.gnu.org/
>
>
>
>
>
> ------------------------------
>
> _______________________________________________
> Bug-gnustep mailing list
> Bug-gnustep@gnu.org
> http://lists.gnu.org/mailman/listinfo/bug-gnustep
>
>
> End of Bug-gnustep Digest, Vol 79, Issue 1
> ******************************************


Hotmail® has ever-growing storage! Don’t worry about storage limits. Check it out.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]