Return-Path: Delivered-To: apmail-xml-cocoon-dev-archive@xml.apache.org Received: (qmail 72329 invoked by uid 500); 7 Aug 2001 14:52:59 -0000 Mailing-List: contact cocoon-dev-help@xml.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: cocoon-dev@xml.apache.org Delivered-To: mailing list cocoon-dev@xml.apache.org Received: (qmail 72295 invoked from network); 7 Aug 2001 14:52:59 -0000 From: Enke Michael To: cocoon-dev@xml.apache.org Message-ID: <3B700123.5A91B695@wincor-nixdorf.com> Date: Tue, 07 Aug 2001 16:54:27 +0200 Organization: Wincor Nixdorf GmbG & Co. KG X-Mailer: Mozilla 4.77 [de] (X11; U; Linux 2.4.4-4GB i686) X-Accept-Language: en MIME-Version: 1.0 Subject: esql-patch Content-Type: multipart/mixed; boundary="------------EFB071C4F44C74B42DB2DCBC" X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N --------------EFB071C4F44C74B42DB2DCBC Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, I'd like to use but for the encoding we have to catch java.io.UnsupportedEncodingException These exception is not catched yet. Because I have no access to cvs I post the patch as diff -u esql.xsl.orig esql.xsl Regards, Michael --------------EFB071C4F44C74B42DB2DCBC Content-Type: text/plain; charset=us-ascii; name="esql.xsl.diff-u" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="esql.xsl.diff-u" --- esql.xsl.orig Tue Aug 7 16:25:16 2001 +++ esql.xsl Tue Aug 7 16:23:13 2001 @@ -637,6 +637,9 @@ } catch (Exception _esql_exception__2) {} } + catch(java.io.UnsupportedEncodingException e) { + throw new RuntimeException(e.toString()); + } if (_esql_queries.empty()) { _esql_query = null; } else { --------------EFB071C4F44C74B42DB2DCBC Content-Type: text/plain; charset=us-ascii --------------------------------------------------------------------- To unsubscribe, e-mail: cocoon-dev-unsubscribe@xml.apache.org For additional commands, email: cocoon-dev-help@xml.apache.org --------------EFB071C4F44C74B42DB2DCBC--