You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@lenya.apache.org by Tom Ed White <to...@barq.itsco.com> on 2004/10/20 13:16:32 UTC

Garbage character

Hello all,

I've been having trouble with a garbage character - latin1 194 - getting
generated in certain locations. It's showing up in the default publication
on the site administration page, on the static "Authoring," "Archive," and
"Trash" links in the site tree - but not in the dynamically generated
links. Also on the schedule setup page.

I've been tracing how these pages are generated, and was hoping that I
would find the error in an xsl stylesheet somewhere, but it looks like the
character is coming from somewhere else. I think it has something to do
with i18n conversion, but so far I'm stumped. It might be coming from the
<i18n:text> tag, or perhaps from the tree generating javascript code in
webapps/lenya/lenya/resources/javascript

I'm using Firefox 0.8 with the "Western" encoding set.

This is the first time I've been totally stumped with lenya. So far, I've
had success setting it up as an xml editing/management environment for
internal technical documentation for my company.

Thanks,
Tom Ed White



---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Andreas Hartmann <an...@apache.org>.
Tom Ed White wrote:
> Hello all,
> 
> I've been having trouble with a garbage character - latin1 194 - getting
> generated in certain locations. It's showing up in the default publication
> on the site administration page, on the static "Authoring," "Archive," and
> "Trash" links in the site tree - but not in the dynamically generated
> links. Also on the schedule setup page.

Sounds like an encoding problem ...
Would you mind attaching a screenshot?

Thanks,
-- Andreas


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by "Gregor J. Rothfuss" <gr...@apache.org>.
Tom Ed White wrote:
> I changed the serializer in the top level sitemap.xmap
> to look like this:
> 
>     <map:serializer name="html" logger="sitemap.serializer.html"
> mime-type="text/html; charset=utf-8" pool-grow="4" pool-max="32"
> pool-min="4" src="org.apache.cocoon.serialization.HTMLSerializer">
>       <doctype-public>-//W3C//DTD HTML 4.01 Transitional//EN</doctype-public>
>       <doctype-system>http://www.w3.org/TR/html4/loose.dtd</doctype-system>
>       <buffer-size>1024</buffer-size>
>       <encoding>UTF-8</encoding>
>     </map:serializer>
> 
> adding the "charset=utf-8" to the mime-type attribute.
> This did change the meta tag for the generated page; here's
> an exerpt:

the standard serializer does not send the encoding along iirc. you can 
check in mozilla "view page info"

you may want to use the serializer from the serializers block in cocoon 
2.1.5


-- 
Gregor J. Rothfuss
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://wyona.com                          http://lenya.apache.org
gregor.rothfuss@wyona.com                       gregor@apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Julian <ce...@yahoo.com>.
Well make sure that the original file was saved with
the proper encoding.  I am not clear on the specifics
of Lenya so I am not sure how the menu is created.  I
know when I had the problem, I had to remove the
characters and save the file to the backend after
altering the database encoding.  I am sorry, but
that's the best I can offer.

-Julian

=====
Live simply so others may simply live. 
 
-Ghandi 
 
Pluralitas non est ponenda sine neccesitate.
"Entities should not be multiplied unneccesarily" 
 
-William of Occam





		
__________________________________
Do you Yahoo!?
Yahoo! Mail Address AutoComplete - You start. We finish.
http://promotions.yahoo.com/new_mail 

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Tom Ed White <to...@barq.itsco.com>.
I changed the serializer in the top level sitemap.xmap
to look like this:

    <map:serializer name="html" logger="sitemap.serializer.html"
mime-type="text/html; charset=utf-8" pool-grow="4" pool-max="32"
pool-min="4" src="org.apache.cocoon.serialization.HTMLSerializer">
      <doctype-public>-//W3C//DTD HTML 4.01 Transitional//EN</doctype-public>
      <doctype-system>http://www.w3.org/TR/html4/loose.dtd</doctype-system>
      <buffer-size>1024</buffer-size>
      <encoding>UTF-8</encoding>
    </map:serializer>

adding the "charset=utf-8" to the mime-type attribute.
This did change the meta tag for the generated page; here's
an exerpt:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">

But the funky character is still displaying. I've attached a screen
shot.

I took a look at

http://wiki.apache.org/cocoon/RequestParameterEncoding

and also cocoon bug 26997, and it seems that this maybe is
an issue that relates to that bug.

Tom Ed

> "A" with accent circumflex...I had a similar problem
> with an XML editor I wrote myself.  My problem was due
> to incorrectly altering encoding schemes without
> explicit conversion.  I would suggest traversing all
> paths from where the xml originates and is then stored
> to.  The most likely culprit is a lack of consistent
> encoding somewhere.  The browser generally displays
> characters as ISO-8859-1 as well as POSTs information
> this way.  You can actually configure Cocoon to set
> the browser's mime type
> (http://wiki.apache.org/cocoon/RequestParameterEncoding)
> by setting http headers and/or you can insert meta
> tags  (not fool-proof).  Finally Cocoon is also
> capable of automatically converting forms from the
> 8859-1 encoding to UTF-8.  My encoding problem ended
> up being in the database encoding and sitemap.  I set
> the problem serializer's mime-type to UTF-8 in the
> sitemap so XML is sent to the javascript/browser as
> such (as mentioned in the wiki article):
>
>   <map:serializer name="html"
>    mime-type="text/html;charset=utf-8"
>
> The browser then posted a textarea with the xml in it
> and I retrieved it in my action code without further
> conversion...twas already UTF-8.  I tried to steer
> away from having the user to change browser settings.
> Hope my ramblings make sense ;) and thanks to the guys
> at irc.freenode #cocoon for their help on this last
> week!
>
> hth, Julian
>
> --- Tom Ed White <to...@barq.itsco.com> wrote:
>
>> Yes it is that same character - an A with a hat.
>> Latin 194.
>>
>> I'm away from the Lenya installation today, but
>> tomorrow I'll see if I can
>> try to eliminate the problem by making utf-8 the
>> default encoding on my
>> Firefox browser.
>>
>> Yesterday I tried switching the encoding after the
>> page was loaded -
>> perhaps  it will help if utf-8 is the default.
>>
>> Tom Ed
>>
>> > Could that be related to one of these bugs?
>> >
>> > Task Log History displays strange characters: 'Â'
>> >
>>
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29210
>> >
>> > Inserting unwanted characters while editing
>> >
>>
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29319
>> >
>> > Andreas
>> >
>> > ----- Original Message -----
>> > From: "Tom Ed White" <to...@barq.itsco.com>
>> > To: <le...@cocoon.apache.org>
>> > Sent: Wednesday, October 20, 2004 1:16 PM
>> > Subject: Garbage character
>> >
>> >
>> >> Hello all,
>> >>
>> >> I've been having trouble with a garbage character
>> - latin1 194 - getting
>> >> generated in certain locations. It's showing up
>> in the default
>> >> publication
>> >> on the site administration page, on the static
>> "Authoring," "Archive,"
>> >> and
>> >> "Trash" links in the site tree - but not in the
>> dynamically generated
>> >> links. Also on the schedule setup page.
>> >>
>> >> I've been tracing how these pages are generated,
>> and was hoping that I
>> >> would find the error in an xsl stylesheet
>> somewhere, but it looks like
>> >> the
>> >> character is coming from somewhere else. I think
>> it has something to do
>> >> with i18n conversion, but so far I'm stumped. It
>> might be coming from
>> >> the
>> >> <i18n:text> tag, or perhaps from the tree
>> generating javascript code in
>> >> webapps/lenya/lenya/resources/javascript
>> >>
>> >> I'm using Firefox 0.8 with the "Western" encoding
>> set.
>> >>
>> >> This is the first time I've been totally stumped
>> with lenya. So far,
>> >> I've
>> >> had success setting it up as an xml
>> editing/management environment for
>> >> internal technical documentation for my company.
>> >>
>> >> Thanks,
>> >> Tom Ed White
>> >>
>> >>
>> >>
>> >>
>>
> ---------------------------------------------------------------------
>> >> To unsubscribe, e-mail:
>> lenya-user-unsubscribe@cocoon.apache.org
>> >> For additional commands, e-mail:
>> lenya-user-help@cocoon.apache.org
>> >>
>> >>
>> >
>> >
>> >
>>
> ---------------------------------------------------------------------
>> > To unsubscribe, e-mail:
>> lenya-user-unsubscribe@cocoon.apache.org
>> > For additional commands, e-mail:
>> lenya-user-help@cocoon.apache.org
>> >
>> >
>>
>>
>>
> ---------------------------------------------------------------------
>> To unsubscribe, e-mail:
>> lenya-user-unsubscribe@cocoon.apache.org
>> For additional commands, e-mail:
>> lenya-user-help@cocoon.apache.org
>>
>>
>
> =====
> Live simply so others may simply live.
>
> -Ghandi
>
> Pluralitas non est ponenda sine neccesitate.
> "Entities should not be multiplied unneccesarily"
>
> -William of Occam
>
>
>
>
>
>
> _______________________________
> Do you Yahoo!?
> Declare Yourself - Register online to vote today!
> http://vote.yahoo.com
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>
>

Re: Garbage character

Posted by Julian <ce...@yahoo.com>.
"A" with accent circumflex...I had a similar problem
with an XML editor I wrote myself.  My problem was due
to incorrectly altering encoding schemes without
explicit conversion.  I would suggest traversing all
paths from where the xml originates and is then stored
to.  The most likely culprit is a lack of consistent
encoding somewhere.  The browser generally displays
characters as ISO-8859-1 as well as POSTs information
this way.  You can actually configure Cocoon to set
the browser's mime type
(http://wiki.apache.org/cocoon/RequestParameterEncoding)
by setting http headers and/or you can insert meta
tags  (not fool-proof).  Finally Cocoon is also
capable of automatically converting forms from the
8859-1 encoding to UTF-8.  My encoding problem ended
up being in the database encoding and sitemap.  I set
the problem serializer's mime-type to UTF-8 in the
sitemap so XML is sent to the javascript/browser as
such (as mentioned in the wiki article):

  <map:serializer name="html" 
   mime-type="text/html;charset=utf-8"

The browser then posted a textarea with the xml in it
and I retrieved it in my action code without further
conversion...twas already UTF-8.  I tried to steer
away from having the user to change browser settings. 
Hope my ramblings make sense ;) and thanks to the guys
at irc.freenode #cocoon for their help on this last
week!

hth, Julian

--- Tom Ed White <to...@barq.itsco.com> wrote:

> Yes it is that same character - an A with a hat.
> Latin 194.
> 
> I'm away from the Lenya installation today, but
> tomorrow I'll see if I can
> try to eliminate the problem by making utf-8 the
> default encoding on my
> Firefox browser.
> 
> Yesterday I tried switching the encoding after the
> page was loaded -
> perhaps  it will help if utf-8 is the default.
> 
> Tom Ed
> 
> > Could that be related to one of these bugs?
> >
> > Task Log History displays strange characters: '�'
> >
>
http://issues.apache.org/bugzilla/show_bug.cgi?id=29210
> >
> > Inserting unwanted characters while editing
> >
>
http://issues.apache.org/bugzilla/show_bug.cgi?id=29319
> >
> > Andreas
> >
> > ----- Original Message -----
> > From: "Tom Ed White" <to...@barq.itsco.com>
> > To: <le...@cocoon.apache.org>
> > Sent: Wednesday, October 20, 2004 1:16 PM
> > Subject: Garbage character
> >
> >
> >> Hello all,
> >>
> >> I've been having trouble with a garbage character
> - latin1 194 - getting
> >> generated in certain locations. It's showing up
> in the default
> >> publication
> >> on the site administration page, on the static
> "Authoring," "Archive,"
> >> and
> >> "Trash" links in the site tree - but not in the
> dynamically generated
> >> links. Also on the schedule setup page.
> >>
> >> I've been tracing how these pages are generated,
> and was hoping that I
> >> would find the error in an xsl stylesheet
> somewhere, but it looks like
> >> the
> >> character is coming from somewhere else. I think
> it has something to do
> >> with i18n conversion, but so far I'm stumped. It
> might be coming from
> >> the
> >> <i18n:text> tag, or perhaps from the tree
> generating javascript code in
> >> webapps/lenya/lenya/resources/javascript
> >>
> >> I'm using Firefox 0.8 with the "Western" encoding
> set.
> >>
> >> This is the first time I've been totally stumped
> with lenya. So far,
> >> I've
> >> had success setting it up as an xml
> editing/management environment for
> >> internal technical documentation for my company.
> >>
> >> Thanks,
> >> Tom Ed White
> >>
> >>
> >>
> >>
>
---------------------------------------------------------------------
> >> To unsubscribe, e-mail:
> lenya-user-unsubscribe@cocoon.apache.org
> >> For additional commands, e-mail:
> lenya-user-help@cocoon.apache.org
> >>
> >>
> >
> >
> >
>
---------------------------------------------------------------------
> > To unsubscribe, e-mail:
> lenya-user-unsubscribe@cocoon.apache.org
> > For additional commands, e-mail:
> lenya-user-help@cocoon.apache.org
> >
> >
> 
> 
>
---------------------------------------------------------------------
> To unsubscribe, e-mail:
> lenya-user-unsubscribe@cocoon.apache.org
> For additional commands, e-mail:
> lenya-user-help@cocoon.apache.org
> 
> 

=====
Live simply so others may simply live. 
 
-Ghandi 
 
Pluralitas non est ponenda sine neccesitate.
"Entities should not be multiplied unneccesarily" 
 
-William of Occam





		
_______________________________
Do you Yahoo!?
Declare Yourself - Register online to vote today!
http://vote.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Tom Ed White <to...@barq.itsco.com>.
Yes it is that same character - an A with a hat. Latin 194.

I'm away from the Lenya installation today, but tomorrow I'll see if I can
try to eliminate the problem by making utf-8 the default encoding on my
Firefox browser.

Yesterday I tried switching the encoding after the page was loaded -
perhaps  it will help if utf-8 is the default.

Tom Ed

> Could that be related to one of these bugs?
>
> Task Log History displays strange characters: 'Â'
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29210
>
> Inserting unwanted characters while editing
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29319
>
> Andreas
>
> ----- Original Message -----
> From: "Tom Ed White" <to...@barq.itsco.com>
> To: <le...@cocoon.apache.org>
> Sent: Wednesday, October 20, 2004 1:16 PM
> Subject: Garbage character
>
>
>> Hello all,
>>
>> I've been having trouble with a garbage character - latin1 194 - getting
>> generated in certain locations. It's showing up in the default
>> publication
>> on the site administration page, on the static "Authoring," "Archive,"
>> and
>> "Trash" links in the site tree - but not in the dynamically generated
>> links. Also on the schedule setup page.
>>
>> I've been tracing how these pages are generated, and was hoping that I
>> would find the error in an xsl stylesheet somewhere, but it looks like
>> the
>> character is coming from somewhere else. I think it has something to do
>> with i18n conversion, but so far I'm stumped. It might be coming from
>> the
>> <i18n:text> tag, or perhaps from the tree generating javascript code in
>> webapps/lenya/lenya/resources/javascript
>>
>> I'm using Firefox 0.8 with the "Western" encoding set.
>>
>> This is the first time I've been totally stumped with lenya. So far,
>> I've
>> had success setting it up as an xml editing/management environment for
>> internal technical documentation for my company.
>>
>> Thanks,
>> Tom Ed White
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
>> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Andreas Kuckartz <A....@ping.de>.
Could that be related to one of these bugs?

Task Log History displays strange characters: 'Â'
http://issues.apache.org/bugzilla/show_bug.cgi?id=29210

Inserting unwanted characters while editing
http://issues.apache.org/bugzilla/show_bug.cgi?id=29319

Andreas

----- Original Message -----
From: "Tom Ed White" <to...@barq.itsco.com>
To: <le...@cocoon.apache.org>
Sent: Wednesday, October 20, 2004 1:16 PM
Subject: Garbage character


> Hello all,
>
> I've been having trouble with a garbage character - latin1 194 - getting
> generated in certain locations. It's showing up in the default publication
> on the site administration page, on the static "Authoring," "Archive," and
> "Trash" links in the site tree - but not in the dynamically generated
> links. Also on the schedule setup page.
>
> I've been tracing how these pages are generated, and was hoping that I
> would find the error in an xsl stylesheet somewhere, but it looks like the
> character is coming from somewhere else. I think it has something to do
> with i18n conversion, but so far I'm stumped. It might be coming from the
> <i18n:text> tag, or perhaps from the tree generating javascript code in
> webapps/lenya/lenya/resources/javascript
>
> I'm using Firefox 0.8 with the "Western" encoding set.
>
> This is the first time I've been totally stumped with lenya. So far, I've
> had success setting it up as an xml editing/management environment for
> internal technical documentation for my company.
>
> Thanks,
> Tom Ed White
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Rolf Kulemann <ro...@apache.org>.
On Wed, 2004-10-20 at 13:16, Tom Ed White wrote:
> Hello all,
> 
> I've been having trouble with a garbage character - latin1 194 - getting
> generated in certain locations. It's showing up in the default publication
> on the site administration page, on the static "Authoring," "Archive," and
> "Trash" links in the site tree - but not in the dynamically generated
> links. Also on the schedule setup page.
> 
> I've been tracing how these pages are generated, and was hoping that I
> would find the error in an xsl stylesheet somewhere, but it looks like the
> character is coming from somewhere else. I think it has something to do
> with i18n conversion, but so far I'm stumped. It might be coming from the
> <i18n:text> tag, or perhaps from the tree generating javascript code in
> webapps/lenya/lenya/resources/javascript

I remember there is some i18n stuff in javascript to. Maybe that is the
problem. I have never experienced that behaviour.

-- 
Rolf Kulemann


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org


Re: Garbage character

Posted by Paul Friedman <pf...@quoininc.com>.
Hello Thomas,

We ran into this issue a while back and were able to fix it by setting the 
mime-type of our serializer to 'utf-8'.
(e.g. mime-type="text/html; charset=utf-8")

Note that we already had the encoding node of the serializer already set,
<encoding>UTF-8</encoding>
but we had also to set the charset param of the mime-type explicitly.

pax et bonum. p.

 > Comiotto Thomas wrote:
> Hi list
> 
> Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox 1.0) 
> on Debian stable I am also facing the garbage chars  issue reported by 
> Tom some weeks ago.
> 
> I couldn't find anything on how to fix in the list archives and guess I 
> checked every available Lenya/Tomcat encoding option I know of but that 
> didn't help either.
> 
> Did anyone of you manage to resolve this?
> 
> Best regards
> Thomas


---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by "Gregor J. Rothfuss" <gr...@apache.org>.
Comiotto Thomas wrote:
> Hi list
> 
> Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox 1.0) 
> on Debian stable I am also facing the garbage chars  issue reported by 
> Tom some weeks ago.
> 
> I couldn't find anything on how to fix in the list archives and guess I 
> checked every available Lenya/Tomcat encoding option I know of but that 
> didn't help either.
> 
> Did anyone of you manage to resolve this?

can you cross-check against lenya trunk? i believe we finally fixed all 
UTF-8 issues on the trunk. there was recently a vote about the new 
serializers, but they are only applied on the trunk.

-- 
Gregor J. Rothfuss
COO, Wyona       Content Management Solutions    http://wyona.com
Apache Lenya                              http://lenya.apache.org
gregor.rothfuss@wyona.com                       gregor@apache.org

---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by Tom Ed White <to...@barq.itsco.com>.
Hi Thomas,

I fixed the problem by getting the latest 1.2.x lenya via svn, and
updating tomcat and cocoon to the latest stable versions.

I believe that the problem had nothing to do with lenya; it's probably a
tomcat/cocoon compatibility issue.

Regards,
Tom Ed



> Hi Andreas
>
> Already checked Bugzilla of course -
>
>
>> I am not sure, but Bugzilla might be your friend:
>>
>> Task Log History displays strange characters: 'Â'
>> http://issues.apache.org/bugzilla/show_bug.cgi?id=29210
>
> "Seems to be fixed" - 1.2 and/or 1.4?
>
>> Inserting unwanted characters while editing
>> http://issues.apache.org/bugzilla/show_bug.cgi?id=29319
>>
>
> Think this one's a different issue related to forms encoding.
>
>
>> Special characters (äüöß) become ? in title field for assets
>> http://issues.apache.org/bugzilla/show_bug.cgi?id=32605
>>
>
> This one too.
>
>
> Thanks
> Thomas
>
>
>
>> Cheers,
>> Andreas
>>
>> ----- Original Message -----
>> From: "Comiotto Thomas" <th...@unicom.unizh.ch>
>> To: "Lenya Users List" <le...@cocoon.apache.org>
>> Sent: Friday, December 10, 2004 12:38 PM
>> Subject: Re: Garbage character
>>
>>
>>> Hi list
>>>
>>> Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox
>>> 1.0)
>>> on Debian stable I am also facing the garbage chars  issue reported by
>>> Tom some weeks ago.
>>>
>>> I couldn't find anything on how to fix in the list archives and guess
>>> I
>>> checked every available Lenya/Tomcat encoding option I know of but
>>> that
>>> didn't help either.
>>>
>>> Did anyone of you manage to resolve this?
>>>
>>> Best regards
>>> Thomas
>>>
>>>
>>>> I've been having trouble with a garbage character - latin1 194 -
>>>> getting
>>>> generated in certain locations. It's showing up in the default
>>>> publication
>>>> on the site administration page, on the static "Authoring,"
>>>> "Archive,"
>>>> and
>>>> "Trash" links in the site tree - but not in the dynamically generated
>>>> links. Also on the schedule setup page.
>>>>
>>>> I've been tracing how these pages are generated, and was hoping that
>>>> I
>>>> would find the error in an xsl stylesheet somewhere, but it looks
>>>> like
>>>> the
>>>> character is coming from somewhere else. I think it has something to
>>>> do
>>>> with i18n conversion, but so far I'm stumped. It might be coming from
>>>> the
>>>> <i18n:text> tag, or perhaps from the tree generating javascript code
>>>> in
>>>> webapps/lenya/lenya/resources/javascript
>>>>
>>>> I'm using Firefox 0.8 with the "Western" encoding set.
>>>>
>>>> This is the first time I've been totally stumped with lenya. So far,
>>>> I've
>>>> had success setting it up as an xml editing/management environment
>>>> for
>>>> internal technical documentation for my company.
>>>>
>>>> Thanks,
>>>> Tom Ed White
>>>>
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
>>>> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
>>> For additional commands, e-mail:           user-help@lenya.apache.org
>>> Apache Lenya Project                          http://lenya.apache.org
>>>
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
>> For additional commands, e-mail:           user-help@lenya.apache.org
>> Apache Lenya Project                          http://lenya.apache.org
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
> For additional commands, e-mail:           user-help@lenya.apache.org
> Apache Lenya Project                          http://lenya.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by Comiotto Thomas <th...@unicom.unizh.ch>.
Hi Andreas

Already checked Bugzilla of course -


> I am not sure, but Bugzilla might be your friend:
>
> Task Log History displays strange characters: 'Â'
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29210

"Seems to be fixed" - 1.2 and/or 1.4?

> Inserting unwanted characters while editing
> http://issues.apache.org/bugzilla/show_bug.cgi?id=29319
>

Think this one's a different issue related to forms encoding.


> Special characters (äüöß) become ? in title field for assets
> http://issues.apache.org/bugzilla/show_bug.cgi?id=32605
>

This one too.


Thanks
Thomas



> Cheers,
> Andreas
>
> ----- Original Message -----
> From: "Comiotto Thomas" <th...@unicom.unizh.ch>
> To: "Lenya Users List" <le...@cocoon.apache.org>
> Sent: Friday, December 10, 2004 12:38 PM
> Subject: Re: Garbage character
>
>
>> Hi list
>>
>> Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox 
>> 1.0)
>> on Debian stable I am also facing the garbage chars  issue reported by
>> Tom some weeks ago.
>>
>> I couldn't find anything on how to fix in the list archives and guess 
>> I
>> checked every available Lenya/Tomcat encoding option I know of but 
>> that
>> didn't help either.
>>
>> Did anyone of you manage to resolve this?
>>
>> Best regards
>> Thomas
>>
>>
>>> I've been having trouble with a garbage character - latin1 194 -
>>> getting
>>> generated in certain locations. It's showing up in the default
>>> publication
>>> on the site administration page, on the static "Authoring," 
>>> "Archive,"
>>> and
>>> "Trash" links in the site tree - but not in the dynamically generated
>>> links. Also on the schedule setup page.
>>>
>>> I've been tracing how these pages are generated, and was hoping that 
>>> I
>>> would find the error in an xsl stylesheet somewhere, but it looks 
>>> like
>>> the
>>> character is coming from somewhere else. I think it has something to 
>>> do
>>> with i18n conversion, but so far I'm stumped. It might be coming from
>>> the
>>> <i18n:text> tag, or perhaps from the tree generating javascript code 
>>> in
>>> webapps/lenya/lenya/resources/javascript
>>>
>>> I'm using Firefox 0.8 with the "Western" encoding set.
>>>
>>> This is the first time I've been totally stumped with lenya. So far,
>>> I've
>>> had success setting it up as an xml editing/management environment 
>>> for
>>> internal technical documentation for my company.
>>>
>>> Thanks,
>>> Tom Ed White
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
>>> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
>> For additional commands, e-mail:           user-help@lenya.apache.org
>> Apache Lenya Project                          http://lenya.apache.org
>>
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
> For additional commands, e-mail:           user-help@lenya.apache.org
> Apache Lenya Project                          http://lenya.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by Andreas Kuckartz <A....@ping.de>.
I am not sure, but Bugzilla might be your friend:

Task Log History displays strange characters: 'Â'
http://issues.apache.org/bugzilla/show_bug.cgi?id=29210

Inserting unwanted characters while editing
http://issues.apache.org/bugzilla/show_bug.cgi?id=29319

Special characters (äüöß) become ? in title field for assets
http://issues.apache.org/bugzilla/show_bug.cgi?id=32605

Cheers,
Andreas

----- Original Message -----
From: "Comiotto Thomas" <th...@unicom.unizh.ch>
To: "Lenya Users List" <le...@cocoon.apache.org>
Sent: Friday, December 10, 2004 12:38 PM
Subject: Re: Garbage character


> Hi list
>
> Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox 1.0)
> on Debian stable I am also facing the garbage chars  issue reported by
> Tom some weeks ago.
>
> I couldn't find anything on how to fix in the list archives and guess I
> checked every available Lenya/Tomcat encoding option I know of but that
> didn't help either.
>
> Did anyone of you manage to resolve this?
>
> Best regards
> Thomas
>
>
> > I've been having trouble with a garbage character - latin1 194 -
> > getting
> > generated in certain locations. It's showing up in the default
> > publication
> > on the site administration page, on the static "Authoring," "Archive,"
> > and
> > "Trash" links in the site tree - but not in the dynamically generated
> > links. Also on the schedule setup page.
> >
> > I've been tracing how these pages are generated, and was hoping that I
> > would find the error in an xsl stylesheet somewhere, but it looks like
> > the
> > character is coming from somewhere else. I think it has something to do
> > with i18n conversion, but so far I'm stumped. It might be coming from
> > the
> > <i18n:text> tag, or perhaps from the tree generating javascript code in
> > webapps/lenya/lenya/resources/javascript
> >
> > I'm using Firefox 0.8 with the "Western" encoding set.
> >
> > This is the first time I've been totally stumped with lenya. So far,
> > I've
> > had success setting it up as an xml editing/management environment for
> > internal technical documentation for my company.
> >
> > Thanks,
> > Tom Ed White
> >
> >
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
> > For additional commands, e-mail: lenya-user-help@cocoon.apache.org
> >
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
> For additional commands, e-mail:           user-help@lenya.apache.org
> Apache Lenya Project                          http://lenya.apache.org
>
>


---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by Comiotto Thomas <th...@unicom.unizh.ch>.
Hi list

Running Lenya 1.2.X (Cocoon 2.1.6, Tomcat 5.0.28 - Client: Firefox 1.0) 
on Debian stable I am also facing the garbage chars  issue reported by 
Tom some weeks ago.

I couldn't find anything on how to fix in the list archives and guess I 
checked every available Lenya/Tomcat encoding option I know of but that 
didn't help either.

Did anyone of you manage to resolve this?

Best regards
Thomas


> I've been having trouble with a garbage character - latin1 194 - 
> getting
> generated in certain locations. It's showing up in the default 
> publication
> on the site administration page, on the static "Authoring," "Archive," 
> and
> "Trash" links in the site tree - but not in the dynamically generated
> links. Also on the schedule setup page.
>
> I've been tracing how these pages are generated, and was hoping that I
> would find the error in an xsl stylesheet somewhere, but it looks like 
> the
> character is coming from somewhere else. I think it has something to do
> with i18n conversion, but so far I'm stumped. It might be coming from 
> the
> <i18n:text> tag, or perhaps from the tree generating javascript code in
> webapps/lenya/lenya/resources/javascript
>
> I'm using Firefox 0.8 with the "Western" encoding set.
>
> This is the first time I've been totally stumped with lenya. So far, 
> I've
> had success setting it up as an xml editing/management environment for
> internal technical documentation for my company.
>
> Thanks,
> Tom Ed White
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
> For additional commands, e-mail: lenya-user-help@cocoon.apache.org
>


---------------------------------------------------------------------
To unsubscribe, e-mail:             user-unsubscribe@lenya.apache.org
For additional commands, e-mail:           user-help@lenya.apache.org
Apache Lenya Project                          http://lenya.apache.org


Re: Garbage character

Posted by Rolf Kulemann <ro...@apache.org>.
On Wed, 2004-10-20 at 13:16, Tom Ed White wrote:
> Hello all,
> 
> I've been having trouble with a garbage character - latin1 194 - getting
> generated in certain locations. It's showing up in the default publication
> on the site administration page, on the static "Authoring," "Archive," and
> "Trash" links in the site tree - but not in the dynamically generated
> links. Also on the schedule setup page.

I forgot; Maybe you can file a bugzilla entry (so that I do not forget
about it) and I will try reproduce it.

Bugzilla link:

http://nagoya.apache.org/bugzilla/enter_bug.cgi

-- 
Rolf Kulemann


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-user-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-user-help@cocoon.apache.org