Ed,

The alternate, for readability would be:

         String s =
"         <one>" +
"             <two>three</two>" +
"             <two>three</two>" +
"         </one>";

or a variation!

The lang spec says - no embedded line terminators, unfortunately for your
original!

Perry

-----Original Message-----
From: Ed Jenkins [mailto:[EMAIL PROTECTED]]
Sent: Friday, 15 March 2002 10:22
To: [EMAIL PROTECTED]
Subject: RE: Pizza


I tried that.  I put the xml all on one line (without \n) and it compiled.  
But I liked having it split up because it was readable.

Ed

---

From: "Faulkner, Perry" <[EMAIL PROTECTED]>
Reply-To: [EMAIL PROTECTED]
To: "'[EMAIL PROTECTED]'" <[EMAIL PROTECTED]>
Subject: RE: Pizza
Date: Fri, 15 Mar 2002 09:55:26 +1100

Hi Ed,

Will

     String s = "<one>\n<two>three</two>\n<two>three</two>\n</one>";

solve the problem?

Perry

-----Original Message-----
From: Ed Jenkins [mailto:[EMAIL PROTECTED]]
Sent: Friday, 15 March 2002 9:20
To: [EMAIL PROTECTED]
Subject: Pizza


Yesterday, we upgraded to Cocoon 2.0.2dev.  In that version, in
cocoon.xconf, the default compiler was switched from Javac to Pizza.

Pizza is reporting some compilation errors in my XSP files that were OK when

compiled with Javac.  Also, I believe the JLS would not consider this to be
an error.

Here is a small example of the code:

<xsp:logic>
     private void setSomething()
     {
         String s =
         "
         <one>
             <two>three</two>
             <two>three</two>
         </one>
         ";
         request.getSession().setAttribute("something", s);
     }
</xsp:logic>

Here are the errors I'm getting:

Line 106, column 13:  unclosed character literal
Line 106, column 12:  illegal start of expression
Line 139, column 14:  unclosed character literal

When I change it to this, the errors go away:

String s = "";

I think it doesn't like it when a string literal is split up into multiple
lines.  What's up with that?

I see that Pizza is made by SourceForge.  Who should I contact there to ask
about this?  www.sf.net is currently down.

Ed


_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.


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

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

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

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





_________________________________________________________________
Join the world's largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


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

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

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

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

Reply via email to