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: [email protected]
> Subject: Bug-gnustep Digest, Vol 79, Issue 1
> To: [email protected]
>
> Send Bug-gnustep mailing list submissions to
> [email protected]
>
> 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
> [email protected]
>
> You can reach the person managing the list at
> [email protected]
>
> 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 <[email protected]>
> Subject: Fix, Base, NextStep encoding table
> To: [email protected]
> Message-ID: <[email protected]>
> 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 <[email protected]>
> Subject: Fix, GDL2, PostgreSQLExpression (+formatValue:forAttribute:)
> To: [email protected]
> Message-ID: <[email protected]>
> 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 <[email protected]>
> Subject: Re: Fix, GDL2, PostgreSQLExpression
> (+formatValue:forAttribute:)
> To: Georg Fleischmann <[email protected]>
> Cc: [email protected]
> Message-ID: <[email protected]>
> 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
> > [email protected]
> > http://lists.gnu.org/mailman/listinfo/bug-gnustep
>
>
>
>
>
> ------------------------------
>
> Message: 4
> Date: Mon, 01 Jun 2009 14:41:53 +0000
> From: Riccardo mottola <[email protected]>
> Subject: [bug #26717] suprious alert panel when cancelling save on
> windows
> To: Riccardo mottola <[email protected]>, [email protected]
> Message-ID: <[email protected]>
> 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
> [email protected]
> 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.
http://windowslive.com/Tutorial/Hotmail/Storage?ocid=TXT_TAGLM_WL_HM_Tutorial_Storage_062009_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep