> From: Christian Haul [mailto:[EMAIL PROTECTED]]
> 
> On 26.Jun.2002 -- 09:51 AM, Volker Schneider wrote:
> > Dear colleagues,
> >
> > I have a problem using the xsp:element tag with i18n.
> >
> > I have this pipeline (the catalog works fine):
> >
> > <map:match pattern="RX">
> >   <map:generate type="serverpages" src="../xsp/rx.xsp"/>
> >   <map:transform type="i18n"/>
> >   <map:serialize type="xml"/>
> > </map:match>
> >
> > and my xsp:
> >
> > <?xml version="1.0" encoding="UTF-8"?>
> >
> > <xsp:page xmlns:xsp="http://apache.org/xsp";
> >           xmlns:xsp-session="http://apache.org/xsp/session/2.0";
> >           create-session="true">
> >
> > <service xmlns:i18n="http://apache.org/cocoon/i18n/2.0";>
> >
> >   <!-- (1) -->
> >   <input_city id="startcity" label="xy" i18n:attr="label"/>
> >
> >   <!-- (2) -->
> >   <xsp:element name="input_city">
> >     <xsp:attribute name="id">startcity</xsp:attribute>
> >     <xsp:attribute name="label">xy</xsp:attribute>
> >     <xsp:attribute name="i18n:attr">label</xsp:attribute>
> >   </xsp:element>
> > </service>
> > </xsp:page>
> >
> > The result is, that (1) works fine, but (2) does not!!!
> 
> It might help to include prefix and uri for the namespace
> 
>    <xsp:element name="input_city">
>        <xsp:attribute name="id">startcity</xsp:attribute>
>      <xsp:attribute name="label">xy</xsp:attribute>
>      <xsp:attribute name="attr" prefix="i18n"
> uri="http://apache.org/cocoon/i18n/2.0";>label</xsp:attribute>
>    </xsp:element>
> 
> But I'm just guessing...

It is not guessing, you are completely right: you must specify
prefix/namespace.

I'm almost sure that there is RTFM or article somewhere about it...


Vadim


---------------------------------------------------------------------
Please check that your question  has not already been answered in the
FAQ before posting.     <http://xml.apache.org/cocoon/faq/index.html>

To unsubscribe, e-mail:     <[EMAIL PROTECTED]>
For additional commands, e-mail:   <[EMAIL PROTECTED]>

Reply via email to