Re: [Ovillo] validar en html 4.01 transitional!

2008-06-06 Por tema Hugo A. Valencia
Hola,


Me permito pegarles lo que dice la especificación del W3C
en relación con las entidades de caracteres :

--

5.3.2 Referencias a entidades de caracteres

Para que los autores tengan una manera más intuitiva de referirse a
caracteres del conjunto de caracteres del documento, HTML ofrece un
conjunto de referencias a entidades de caracteres. Las referencias a
entidades de caracteres utilizan nombres simbólicos para que los
autores no tengan que recordar posiciones de código. Por ejemplo, la
referencia a la entidad de caracteres å se refiere a la letra
minúscula "a" con un anillo ("ring") encima; "å" es más fácil de
recordar que å.

HTML 4 no define una referencia a entidades de caracteres para cada
carácter del conjunto de caracteres del documento. Por ejemplo, no hay
referencia a entidades de caracteres para la letra mayúscula cirílica
"I". Consulte la lista completa de referencias de caracteres definidas
en HTML 4.

Las referencias a entidades de caracteres sí distinguen entre
mayúsculas y minúsculas. Así, Å se refiere a un carácter
diferente (A mayúscula con anillo) que å (a minúscula con
anillo).

Hay cuatro referencias a entidades de caracteres que merecen mención
especial, ya que se usan frecuentemente para transformar ciertos
caracteres especiales en secuencias de escape:

* "<" representa el signo <.
* ">" representa el signo >.
* "&" representa el signo &.
* "" representa el signo ".

Los autores que quieran poner el carácter "<" en el texto deberían
usar "<" (ASCII decimal 60) para evitar la posible confusión con el
comienzo de una etiqueta (delimitador de apertura de etiqueta
inicial). Análogamente, los autores deberían usar ">" (ASCII
decimal 62) en el texto en lugar de ">" para evitar problemas con
agentes de usuario antiguos que lo interpretan incorrectamente como el
final de una etiqueta (delimitador de cierre de una etiqueta) cuando
aparece dentro de valores de atributos entrecomillados.

Los autores deberían usar "&" (ASCII decimal 38) en lugar de "&"
para evitar la confusión con el comienzo de una referencia de
caracteres (delimitador de apertura de una referencia a entidades).
Los autores deberían usar también "&" en valores de atributos, ya
que las referencias de caracteres están permitidas dentro de valores
de atributos CDATA.

Algunos autores usan la referencia a entidades de caracteres """
para codificar las comillas dobles ("), ya que este carácter puede
utilizarse para delimitar los valores de los atributos.
5.4 Caracteres no representables

Un agente de usuario puede no ser capaz de representar correctamente
todos los caracteres de un documento, por ejemplo, porque el agente de
usuario carezca de una fuente apropiada, porque un carácter tenga un
valor que no pueda expresarse con la codificación de caracteres
interna del agente de usuario, etc.

Al haber tantas cosas diferentes que pueden hacerse en estos casos,
este documento no prescribe ningún comportamiento por defecto.
Dependiendo de la implementación, los caracteres no representables
pueden también ser tratados por el sistema de presentación subyacente
y no por la propia aplicación. En ausencia de un comportamiento más
sofisticado, por ejemplo a medida de las necesidades de un script o
lenguaje particular, recomendamos el siguiente comportamiento a los
agentes de usuario:

   1. Adoptar un mecanismo claramente visible, pero no molesto, para
alertar al usuario sobre los recursos ausentes.
   2. Si los caracteres no disponibles se presentan usando su
representación numérica, usar la forma hexadecimal (no la decimal), ya
que ésta es la forma utilizada en los estándares de conjuntos de
caracteres.

-- 




Saludos.

Hugo.


2008/6/5, Raúl Antonio Marino <[EMAIL PROTECTED]>:
> Hola, q tal???
>
>  Tengo el siguiente error, querria saber c?mo validarlo!
>
>  Line 9, Column 562: cannot generate system identifier for general entity 
> "nuevo_ano".
>
>  ?n:none" 
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
>  ?
>
>  An entity reference was found in the document, but there is no reference by 
> that name defined. Often this is caused by misspelling the reference name, 
> unencoded ampersands, or by leaving off the trailing semicolon (;). The most 
> common cause of this error is unencoded ampersands in URLs as described by 
> the WDG in "Ampersands in URLs".
>
>  Entity references start with an ampersand (&) and end with a semicolon (;). 
> If you want to use a literal ampersand in your document you must encode it as 
> "&" (even inside URLs!). Be careful to end entity references with a 
> semicolon or your entity reference may get interpreted in connection with the 
> following text. Also keep in mind that named entity references are 
> case-sensitive; &Aelig; and æ are different characters.
>
>  If this error appears in some markup generated by PHP's session handling 
> code, this article has explanations and solutions to your problem.
>
>  Note that in most documents, errors related to entity references wil

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-06 Por tema Tei
Explicado de otra manera.

El HTML antiguo hacia trampas.  Veia  & y lo entendia como un caracter
&, en lugar del principio de una entidad. Para poder hacer trampas, se
tenia que ler varias veces el html, y asi saber que si & va seguido de
gt, es entidad >, pero si viene seguido de nuevo_ano, no es entidad.
. El HTML antiguo es como un tonto que tiene que leerse varias veces
un texto antes de empezar a entenderlo.  Y nosotros queremos que el
navegador entienda y renderize el html lo antes posible.

El HTML moderno sigue unas reglas mas extrictas que eliminan esta
ambiguedad. Si ven una &, naturalmente va a ser el principio de una
entidad, por ejemplo & que es la forma de escribir el caracter &,
cuando queremos escribir el caracter & y no otra cosa.

Nosotros queremos que los navegadores modernos usen HTML moderno
porque se renderizan las cosas mas rapidas y habra menos errores. Para
ello hay que acostumbrarse a escribir las cosas sin ambiguedad, y por
ejemplo una URL ha de venir URLcodeada.

Validar un HTML es sacar a la luz estos problemas. Los navegadores y
aplicaciones web puede que no saquen a la luz estos problemas porque
muchos de ellos estan escritos para esconder los problemas debajo de
la alfombra. Ultimamente la alfombra abulta bastante.


2008/6/6 Cristian Wilgenhoff <[EMAIL PROTECTED]>:
> En el enlace que pusiste en tu pagina web, desde la parte del html busca
> esta linea:
>
>  href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
>
> Y cámbiala por esta:
>
>  href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
>
> Fíjate las diferencias y te vas a dar cuento lo que te remarcaban los
> muchachos.
>
> Lo que quiere decir esto es que tenes que usar una codificación unicode para
> representar el caracter &, otro ejemplo es que los espacios se codifican
> como %2.
>
> Saludos, Cristian.
>
> 2008/6/5 Ignacio Ricci <[EMAIL PROTECTED]>:
>
>> Pone la línea entera, esta cortada.
>>
>> 2008/6/5 Raúl Antonio Marino <[EMAIL PROTECTED]>:
>>
>> > me dicen literalmente q debo poner el mi ejemplo??
>> > gracias
>> > - Original Message -
>> > From: Javier Trejo [mailto:[EMAIL PROTECTED]
>> > To: ovillo@lists.ovillo.org
>> > Sent: Thu, 5 Jun 2008 13:30:12 -0300
>> > Subject: Re: [Ovillo] validar en html 4.01 transitional!
>> >
>> > Lo que te est?n diciendo es que cambies el & por la entidad
>> correspondiente
>> > &
>> > Si no sabes lo que son las entidades te dejo esta web para que veas
>> > http://www.bib.uc3m.es/~nogales/EJS/entidad.html<http://www.bib.uc3m.es/%7Enogales/EJS/entidad.html>
>> <http://www.bib.uc3m.es/%7Enogales/EJS/entidad.html>
>> >
>> > saludos,
>> >
>> > Javier Trejo.
>> > www.cominteractiva.com.ar
>> >
>> > 2008/6/5 Ra?l Antonio Marino <[EMAIL PROTECTED]>:
>> >
>> > > No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
>> > > explicar mejor te agradeceria
>> > >
>> > >
>> > > - Original Message -
>> > > From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
>> > > To: ovillo@lists.ovillo.org
>> > > Sent: Thu, 05 Jun 2008 17:16:34 +0200
>> > > Subject: Re: [Ovillo] validar en html 4.01 transitional!
>> > >
>> > > Pon:
>> > > agenda.php?nuevo_mes=7&nuevo_ano=2008
>> > >
>> > > En lugar de:
>> > > agenda.php?nuevo_mes=7&nuevo_ano=2008
>> > >
>> > >
>> > > Ra?l Antonio Marino escribi?:
>> > > > Hola, q tal???
>> > > >
>> > > > Tengo el siguiente error, querria saber c?mo validarlo!
>> > > >
>> > > > Line 9, Column 562: cannot generate system identifier for general
>> > entity
>> > > "nuevo_ano".
>> > > >
>> > > > ?n:none"
>> > > href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>> > > >
>> > > > ?
>> > > >
>> > > > An entity reference was found in the document, but there is no
>> > reference
>> > > by that name defined. Often this is caused by misspelling the reference
>> > > name, unencoded ampersands, or by leaving off the trailing semicolon
>> (;).
>> > > The most common cause of this error is unencoded ampersands in URLs as
>> > > described by the WDG in "Ampersands in URL

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Cristian Wilgenhoff
En el enlace que pusiste en tu pagina web, desde la parte del html busca
esta linea:

>>

Y cámbiala por esta:

>>

Fíjate las diferencias y te vas a dar cuento lo que te remarcaban los
muchachos.

Lo que quiere decir esto es que tenes que usar una codificación unicode para
representar el caracter &, otro ejemplo es que los espacios se codifican
como %2.

Saludos, Cristian.

2008/6/5 Ignacio Ricci <[EMAIL PROTECTED]>:

> Pone la línea entera, esta cortada.
>
> 2008/6/5 Raúl Antonio Marino <[EMAIL PROTECTED]>:
>
> > me dicen literalmente q debo poner el mi ejemplo??
> > gracias
> > - Original Message -
> > From: Javier Trejo [mailto:[EMAIL PROTECTED]
> > To: ovillo@lists.ovillo.org
> > Sent: Thu, 5 Jun 2008 13:30:12 -0300
> > Subject: Re: [Ovillo] validar en html 4.01 transitional!
> >
> > Lo que te est?n diciendo es que cambies el & por la entidad
> correspondiente
> > &
> > Si no sabes lo que son las entidades te dejo esta web para que veas
> > http://www.bib.uc3m.es/~nogales/EJS/entidad.html<http://www.bib.uc3m.es/%7Enogales/EJS/entidad.html>
> <http://www.bib.uc3m.es/%7Enogales/EJS/entidad.html>
> >
> > saludos,
> >
> > Javier Trejo.
> > www.cominteractiva.com.ar
> >
> > 2008/6/5 Ra?l Antonio Marino <[EMAIL PROTECTED]>:
> >
> > > No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> > > explicar mejor te agradeceria
> > >
> > >
> > > - Original Message -
> > > From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> > > To: ovillo@lists.ovillo.org
> > > Sent: Thu, 05 Jun 2008 17:16:34 +0200
> > > Subject: Re: [Ovillo] validar en html 4.01 transitional!
> > >
> > > Pon:
> > > agenda.php?nuevo_mes=7&nuevo_ano=2008
> > >
> > > En lugar de:
> > > agenda.php?nuevo_mes=7&nuevo_ano=2008
> > >
> > >
> > > Ra?l Antonio Marino escribi?:
> > > > Hola, q tal???
> > > >
> > > > Tengo el siguiente error, querria saber c?mo validarlo!
> > > >
> > > > Line 9, Column 562: cannot generate system identifier for general
> > entity
> > > "nuevo_ano".
> > > >
> > > > ?n:none"
> > > href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> > > >
> > > > ?
> > > >
> > > > An entity reference was found in the document, but there is no
> > reference
> > > by that name defined. Often this is caused by misspelling the reference
> > > name, unencoded ampersands, or by leaving off the trailing semicolon
> (;).
> > > The most common cause of this error is unencoded ampersands in URLs as
> > > described by the WDG in "Ampersands in URLs".
> > > >
> > > > Entity references start with an ampersand (&) and end with a
> semicolon
> > > (;). If you want to use a literal ampersand in your document you must
> > encode
> > > it as "&" (even inside URLs!). Be careful to end entity references
> > with
> > > a semicolon or your entity reference may get interpreted in connection
> > with
> > > the following text. Also keep in mind that named entity references are
> > > case-sensitive; &Aelig; and æ are different characters.
> > > >
> > > > If this error appears in some markup generated by PHP's session
> > handling
> > > code, this article has explanations and solutions to your problem.
> > > >
> > > > Note that in most documents, errors related to entity references will
> > > trigger up to 5 separate messages from the Validator. Usually these
> will
> > all
> > > disappear when the original problem is fixed.
> > > >
> > > > Gracias
> > > >
> > > >
> > > >
> > 
> > > >
> > > > ___
> > > > Lista de distribuci?n Ovillo
> > > > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > > > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> > > http://lists.ovillo.org/mailman/listinfo/ovillo
> > > ___
> > > Lista de distribuci?n Ovillo
> > > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > > Puedes modificar tus datos o desuscribirte en la siguiente

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Ignacio Ricci
Pone la línea entera, esta cortada.

2008/6/5 Raúl Antonio Marino <[EMAIL PROTECTED]>:

> me dicen literalmente q debo poner el mi ejemplo??
> gracias
> - Original Message -
> From: Javier Trejo [mailto:[EMAIL PROTECTED]
> To: ovillo@lists.ovillo.org
> Sent: Thu, 5 Jun 2008 13:30:12 -0300
> Subject: Re: [Ovillo] validar en html 4.01 transitional!
>
> Lo que te est?n diciendo es que cambies el & por la entidad correspondiente
> &
> Si no sabes lo que son las entidades te dejo esta web para que veas
> http://www.bib.uc3m.es/~nogales/EJS/entidad.html<http://www.bib.uc3m.es/%7Enogales/EJS/entidad.html>
>
> saludos,
>
> Javier Trejo.
> www.cominteractiva.com.ar
>
> 2008/6/5 Ra?l Antonio Marino <[EMAIL PROTECTED]>:
>
> > No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> > explicar mejor te agradeceria
> >
> >
> > - Original Message -
> > From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> > To: ovillo@lists.ovillo.org
> > Sent: Thu, 05 Jun 2008 17:16:34 +0200
> > Subject: Re: [Ovillo] validar en html 4.01 transitional!
> >
> > Pon:
> > agenda.php?nuevo_mes=7&nuevo_ano=2008
> >
> > En lugar de:
> > agenda.php?nuevo_mes=7&nuevo_ano=2008
> >
> >
> > Ra?l Antonio Marino escribi?:
> > > Hola, q tal???
> > >
> > > Tengo el siguiente error, querria saber c?mo validarlo!
> > >
> > > Line 9, Column 562: cannot generate system identifier for general
> entity
> > "nuevo_ano".
> > >
> > > ?n:none"
> > href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> > >
> > > ?
> > >
> > > An entity reference was found in the document, but there is no
> reference
> > by that name defined. Often this is caused by misspelling the reference
> > name, unencoded ampersands, or by leaving off the trailing semicolon (;).
> > The most common cause of this error is unencoded ampersands in URLs as
> > described by the WDG in "Ampersands in URLs".
> > >
> > > Entity references start with an ampersand (&) and end with a semicolon
> > (;). If you want to use a literal ampersand in your document you must
> encode
> > it as "&" (even inside URLs!). Be careful to end entity references
> with
> > a semicolon or your entity reference may get interpreted in connection
> with
> > the following text. Also keep in mind that named entity references are
> > case-sensitive; &Aelig; and æ are different characters.
> > >
> > > If this error appears in some markup generated by PHP's session
> handling
> > code, this article has explanations and solutions to your problem.
> > >
> > > Note that in most documents, errors related to entity references will
> > trigger up to 5 separate messages from the Validator. Usually these will
> all
> > disappear when the original problem is fixed.
> > >
> > > Gracias
> > >
> > >
> > >
> 
> > >
> > > ___
> > > Lista de distribuci?n Ovillo
> > > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> > http://lists.ovillo.org/mailman/listinfo/ovillo
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> > http://lists.ovillo.org/mailman/listinfo/ovillo
> >
> >
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> > http://lists.ovillo.org/mailman/listinfo/ovillo
> >
>
>
>
> --
> Javier Trejo
> 
> Tel: 15-6485-7734
> MSN: [EMAIL PROTECTED]
> Skype: javier.trejo
> Mail: [EMAIL PROTECTED]
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> ___
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>



-- 
↓۝ Ignacio Ricci
www.ignacioricci.com
___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Raúl Antonio Marino
me dicen literalmente q debo poner el mi ejemplo??
gracias
- Original Message -
From: Javier Trejo [mailto:[EMAIL PROTECTED]
To: ovillo@lists.ovillo.org
Sent: Thu, 5 Jun 2008 13:30:12 -0300
Subject: Re: [Ovillo] validar en html 4.01 transitional!

Lo que te est?n diciendo es que cambies el & por la entidad correspondiente
&
Si no sabes lo que son las entidades te dejo esta web para que veas
http://www.bib.uc3m.es/~nogales/EJS/entidad.html

saludos,

Javier Trejo.
www.cominteractiva.com.ar

2008/6/5 Ra?l Antonio Marino <[EMAIL PROTECTED]>:

> No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> explicar mejor te agradeceria
>
>
> - Original Message -
> From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> To: ovillo@lists.ovillo.org
> Sent: Thu, 05 Jun 2008 17:16:34 +0200
> Subject: Re: [Ovillo] validar en html 4.01 transitional!
>
> Pon:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
> En lugar de:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
>
> Ra?l Antonio Marino escribi?:
> > Hola, q tal???
> >
> > Tengo el siguiente error, querria saber c?mo validarlo!
> >
> > Line 9, Column 562: cannot generate system identifier for general entity
> "nuevo_ano".
> >
> > ?n:none"
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> >
> > ?
> >
> > An entity reference was found in the document, but there is no reference
> by that name defined. Often this is caused by misspelling the reference
> name, unencoded ampersands, or by leaving off the trailing semicolon (;).
> The most common cause of this error is unencoded ampersands in URLs as
> described by the WDG in "Ampersands in URLs".
> >
> > Entity references start with an ampersand (&) and end with a semicolon
> (;). If you want to use a literal ampersand in your document you must encode
> it as "&" (even inside URLs!). Be careful to end entity references with
> a semicolon or your entity reference may get interpreted in connection with
> the following text. Also keep in mind that named entity references are
> case-sensitive; &Aelig; and æ are different characters.
> >
> > If this error appears in some markup generated by PHP's session handling
> code, this article has explanations and solutions to your problem.
> >
> > Note that in most documents, errors related to entity references will
> trigger up to 5 separate messages from the Validator. Usually these will all
> disappear when the original problem is fixed.
> >
> > Gracias
> >
> >
> > 
> >
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>



--
Javier Trejo

Tel: 15-6485-7734
MSN: [EMAIL PROTECTED]
Skype: javier.trejo
Mail: [EMAIL PROTECTED]
___
Lista de distribuci?n Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente direcci?n: 
http://lists.ovillo.org/mailman/listinfo/ovillo

___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Javier Trejo
Lo que te están diciendo es que cambies el & por la entidad correspondiente
&
Si no sabes lo que son las entidades te dejo esta web para que veas
http://www.bib.uc3m.es/~nogales/EJS/entidad.html

saludos,

Javier Trejo.
www.cominteractiva.com.ar

2008/6/5 Raúl Antonio Marino <[EMAIL PROTECTED]>:

> No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> explicar mejor te agradeceria
>
>
> - Original Message -
> From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> To: ovillo@lists.ovillo.org
> Sent: Thu, 05 Jun 2008 17:16:34 +0200
> Subject: Re: [Ovillo] validar en html 4.01 transitional!
>
> Pon:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
> En lugar de:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
>
> Ra?l Antonio Marino escribi?:
> > Hola, q tal???
> >
> > Tengo el siguiente error, querria saber c?mo validarlo!
> >
> > Line 9, Column 562: cannot generate system identifier for general entity
> "nuevo_ano".
> >
> > ?n:none"
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> >
> > ?
> >
> > An entity reference was found in the document, but there is no reference
> by that name defined. Often this is caused by misspelling the reference
> name, unencoded ampersands, or by leaving off the trailing semicolon (;).
> The most common cause of this error is unencoded ampersands in URLs as
> described by the WDG in "Ampersands in URLs".
> >
> > Entity references start with an ampersand (&) and end with a semicolon
> (;). If you want to use a literal ampersand in your document you must encode
> it as "&" (even inside URLs!). Be careful to end entity references with
> a semicolon or your entity reference may get interpreted in connection with
> the following text. Also keep in mind that named entity references are
> case-sensitive; &Aelig; and æ are different characters.
> >
> > If this error appears in some markup generated by PHP's session handling
> code, this article has explanations and solutions to your problem.
> >
> > Note that in most documents, errors related to entity references will
> trigger up to 5 separate messages from the Validator. Usually these will all
> disappear when the original problem is fixed.
> >
> > Gracias
> >
> >
> > 
> >
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> ___
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>



-- 
Javier Trejo

Tel: 15-6485-7734
MSN: [EMAIL PROTECTED]
Skype: javier.trejo
Mail: [EMAIL PROTECTED]
___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo


Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Raúl Antonio Marino
GRACIAS!!!

Pero me sigue sin funcionar, nose q pasa


- Original Message -
From: Alex Lillo [mailto:[EMAIL PROTECTED]
To: ovillo@lists.ovillo.org
Sent: Thu, 5 Jun 2008 17:55:53 +0200
Subject: Re: [Ovillo] validar en html 4.01 transitional!

Es diferente, f?jate:

agenda.php?nuevo_mes=7&nuevo_ano=2008
agenda.php?nuevo_mes=7&nuevo_ano=2008

El ampersan est? codificado como & , que es como de debe escribir
siempre.


On Thu, Jun 5, 2008 at 5:51 PM, Ra?l Antonio Marino <
[EMAIL PROTECTED]> wrote:

> No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> explicar mejor te agradeceria
>
>
> - Original Message -
> From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> To: ovillo@lists.ovillo.org
> Sent: Thu, 05 Jun 2008 17:16:34 +0200
> Subject: Re: [Ovillo] validar en html 4.01 transitional!
>
> Pon:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
> En lugar de:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
>
> Ra?l Antonio Marino escribi?:
> > Hola, q tal???
> >
> > Tengo el siguiente error, querria saber c?mo validarlo!
> >
> > Line 9, Column 562: cannot generate system identifier for general entity
> "nuevo_ano".
> >
> > ?n:none"
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> >
> > ?
> >
> > An entity reference was found in the document, but there is no reference
> by that name defined. Often this is caused by misspelling the reference
> name, unencoded ampersands, or by leaving off the trailing semicolon (;).
> The most common cause of this error is unencoded ampersands in URLs as
> described by the WDG in "Ampersands in URLs".
> >
> > Entity references start with an ampersand (&) and end with a semicolon
> (;). If you want to use a literal ampersand in your document you must encode
> it as "&" (even inside URLs!). Be careful to end entity references with
> a semicolon or your entity reference may get interpreted in connection with
> the following text. Also keep in mind that named entity references are
> case-sensitive; &Aelig; and æ are different characters.
> >
> > If this error appears in some markup generated by PHP's session handling
> code, this article has explanations and solutions to your problem.
> >
> > Note that in most documents, errors related to entity references will
> trigger up to 5 separate messages from the Validator. Usually these will all
> disappear when the original problem is fixed.
> >
> > Gracias
> >
> >
> > 
> >
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>



--
Alex Lillo
www.nordic-design.net
___
Lista de distribuci?n Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente direcci?n: 
http://lists.ovillo.org/mailman/listinfo/ovillo

___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Alex Lillo
Es diferente, fíjate:

agenda.php?nuevo_mes=7&nuevo_ano=2008
agenda.php?nuevo_mes=7&nuevo_ano=2008

El ampersan está codificado como & , que es como de debe escribir
siempre.


On Thu, Jun 5, 2008 at 5:51 PM, Raúl Antonio Marino <
[EMAIL PROTECTED]> wrote:

> No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes
> explicar mejor te agradeceria
>
>
> - Original Message -
> From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
> To: ovillo@lists.ovillo.org
> Sent: Thu, 05 Jun 2008 17:16:34 +0200
> Subject: Re: [Ovillo] validar en html 4.01 transitional!
>
> Pon:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
> En lugar de:
> agenda.php?nuevo_mes=7&nuevo_ano=2008
>
>
> Ra?l Antonio Marino escribi?:
> > Hola, q tal???
> >
> > Tengo el siguiente error, querria saber c?mo validarlo!
> >
> > Line 9, Column 562: cannot generate system identifier for general entity
> "nuevo_ano".
> >
> > ?n:none"
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>> >
> > ?
> >
> > An entity reference was found in the document, but there is no reference
> by that name defined. Often this is caused by misspelling the reference
> name, unencoded ampersands, or by leaving off the trailing semicolon (;).
> The most common cause of this error is unencoded ampersands in URLs as
> described by the WDG in "Ampersands in URLs".
> >
> > Entity references start with an ampersand (&) and end with a semicolon
> (;). If you want to use a literal ampersand in your document you must encode
> it as "&" (even inside URLs!). Be careful to end entity references with
> a semicolon or your entity reference may get interpreted in connection with
> the following text. Also keep in mind that named entity references are
> case-sensitive; &Aelig; and æ are different characters.
> >
> > If this error appears in some markup generated by PHP's session handling
> code, this article has explanations and solutions to your problem.
> >
> > Note that in most documents, errors related to entity references will
> trigger up to 5 separate messages from the Validator. Usually these will all
> disappear when the original problem is fixed.
> >
> > Gracias
> >
> >
> > 
> >
> > ___
> > Lista de distribuci?n Ovillo
> > Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> > Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
>
> ___
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>



-- 
Alex Lillo
www.nordic-design.net
___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo


Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Raúl Antonio Marino
No entiendo, me estas diciendo q ponga lo mismo juancitoo!! Si me podes 
explicar mejor te agradeceria


- Original Message -
From: Juan Miguel Imaz [mailto:[EMAIL PROTECTED]
To: ovillo@lists.ovillo.org
Sent: Thu, 05 Jun 2008 17:16:34 +0200
Subject: Re: [Ovillo] validar en html 4.01 transitional!

Pon:
agenda.php?nuevo_mes=7&nuevo_ano=2008

En lugar de:
agenda.php?nuevo_mes=7&nuevo_ano=2008


Ra?l Antonio Marino escribi?:
> Hola, q tal???
>
> Tengo el siguiente error, querria saber c?mo validarlo!
>
> Line 9, Column 562: cannot generate system identifier for general entity 
> "nuevo_ano".
>
> ?n:none" href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
> ?
>
> An entity reference was found in the document, but there is no reference by 
> that name defined. Often this is caused by misspelling the reference name, 
> unencoded ampersands, or by leaving off the trailing semicolon (;). The most 
> common cause of this error is unencoded ampersands in URLs as described by 
> the WDG in "Ampersands in URLs".
>
> Entity references start with an ampersand (&) and end with a semicolon (;). 
> If you want to use a literal ampersand in your document you must encode it as 
> "&" (even inside URLs!). Be careful to end entity references with a 
> semicolon or your entity reference may get interpreted in connection with the 
> following text. Also keep in mind that named entity references are 
> case-sensitive; &Aelig; and æ are different characters.
>
> If this error appears in some markup generated by PHP's session handling 
> code, this article has explanations and solutions to your problem.
>
> Note that in most documents, errors related to entity references will trigger 
> up to 5 separate messages from the Validator. Usually these will all 
> disappear when the original problem is fixed.
>
> Gracias
>
>
> 
>
> ___
> Lista de distribuci?n Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente direcci?n: 
> http://lists.ovillo.org/mailman/listinfo/ovillo
___
Lista de distribuci?n Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente direcci?n: 
http://lists.ovillo.org/mailman/listinfo/ovillo

___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo

Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Juan Miguel Imaz
Pon:
agenda.php?nuevo_mes=7&nuevo_ano=2008

En lugar de:
agenda.php?nuevo_mes=7&nuevo_ano=2008


Raúl Antonio Marino escribió:
> Hola, q tal???
>
> Tengo el siguiente error, querria saber c?mo validarlo!
>
> Line 9, Column 562: cannot generate system identifier for general entity 
> "nuevo_ano".
>
> ?n:none" href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
> ?
>
> An entity reference was found in the document, but there is no reference by 
> that name defined. Often this is caused by misspelling the reference name, 
> unencoded ampersands, or by leaving off the trailing semicolon (;). The most 
> common cause of this error is unencoded ampersands in URLs as described by 
> the WDG in "Ampersands in URLs".
>
> Entity references start with an ampersand (&) and end with a semicolon (;). 
> If you want to use a literal ampersand in your document you must encode it as 
> "&" (even inside URLs!). Be careful to end entity references with a 
> semicolon or your entity reference may get interpreted in connection with the 
> following text. Also keep in mind that named entity references are 
> case-sensitive; &Aelig; and æ are different characters.
>
> If this error appears in some markup generated by PHP's session handling 
> code, this article has explanations and solutions to your problem.
>
> Note that in most documents, errors related to entity references will trigger 
> up to 5 separate messages from the Validator. Usually these will all 
> disappear when the original problem is fixed.
>
> Gracias
>
>   
> 
>
> ___
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
> http://lists.ovillo.org/mailman/listinfo/ovillo
___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo


Re: [Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Alex Lillo
Hola Raúl,

Sustituye el & por un &

"If you want to use a literal ampersand in your document you must encode it
as "&" (even inside URLs!)."


-- 
Alex Lillo
www.nordic-design.net



On Thu, Jun 5, 2008 at 5:10 PM, Raúl Antonio Marino <
[EMAIL PROTECTED]> wrote:

> Hola, q tal???
>
> Tengo el siguiente error, querria saber c?mo validarlo!
>
> Line 9, Column 562: cannot generate system identifier for general entity
> "nuevo_ano".
>
> ?n:none"
> href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>
> ?
>
> An entity reference was found in the document, but there is no reference by
> that name defined. Often this is caused by misspelling the reference name,
> unencoded ampersands, or by leaving off the trailing semicolon (;). The most
> common cause of this error is unencoded ampersands in URLs as described by
> the WDG in "Ampersands in URLs".
>
> Entity references start with an ampersand (&) and end with a semicolon (;).
> If you want to use a literal ampersand in your document you must encode it
> as "&" (even inside URLs!). Be careful to end entity references with a
> semicolon or your entity reference may get interpreted in connection with
> the following text. Also keep in mind that named entity references are
> case-sensitive; &Aelig; and æ are different characters.
>
> If this error appears in some markup generated by PHP's session handling
> code, this article has explanations and solutions to your problem.
>
> Note that in most documents, errors related to entity references will
> trigger up to 5 separate messages from the Validator. Usually these will all
> disappear when the original problem is fixed.
>
> Gracias
>
>
> ___
> Lista de distribución Ovillo
> Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
> Puedes modificar tus datos o desuscribirte en la siguiente dirección:
> http://lists.ovillo.org/mailman/listinfo/ovillo
>
___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo


[Ovillo] validar en html 4.01 transitional!

2008-06-05 Por tema Raúl Antonio Marino
Hola, q tal???

Tengo el siguiente error, querria saber c?mo validarlo!

Line 9, Column 562: cannot generate system identifier for general entity 
"nuevo_ano".

?n:none" href="agenda.php?nuevo_mes=7&nuevo_ano=2008">>>___
Lista de distribución Ovillo
Para escribir a la lista, envia un correo a Ovillo@lists.ovillo.org
Puedes modificar tus datos o desuscribirte en la siguiente dirección: 
http://lists.ovillo.org/mailman/listinfo/ovillo