Re: into problem

2003-06-30 Thread Christian Haul
On 29.Jun.2003 -- 09:50 PM, C Bram Dit Saint Amand wrote: > This is an extract from "request_attributes.xsl", a logicsheet which is > called by "some_page.xsp" > > > name="webaction"/> > $webaction-value most likely contains some XSP or Java code at the time the logicsheet is applied -

Link Hosting: RimuHosting

2003-06-30 Thread Peter B
Hi.  I'd appreciate a listing on your hosting page (http://cocoon.apache.org/2.1/link/hosting.html).  Thanks!   Regards, Peter http://rimuhosting.com     RimuHosting - Java Hosting Specialists - They will install the latest Cocoon version by request

Re: XSP+SVG in cocoon-2.0.4

2003-06-30 Thread Derek Hohls
Gautam Look at: http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=105550804911211&w=2 The use of SVG is well described in a set of sample code. Derek >>> [EMAIL PROTECTED] 30/06/2003 01:59:30 >>> hi there, I want to display an SVG image along side the web page content on the users browser

[summary] reading xml from pipeline into a flow script

2003-06-30 Thread Simon Price
Jonathan's suggestion worked, so I thought I'd summarize the solution back to the list as a demo javascript flow script. function demo() { print getXML("http://localhost:8080/cocoon/mypipeline.xml";); } function getXML(urlStr) { // // return output of a pipeline as an xml

Re: reading xml from pipeline into a flow script

2003-06-30 Thread Frank Taffelt
you can use this snippet: function getString(src) { try { var is = cocoon.environment.resolveURI(src).getInputStream(); return Packages.org.apache.cocoon.components.language.markup.xsp.XSPUtil.getContent s(is); } catch(ex) { print("ex:" + ex); } retur

RE: reading xml from pipeline into a flow script

2003-06-30 Thread Reinhard Pötz
This will work but not with the upcoming Flow Object Model. You won't have access to the environment any more. If you are interested in the FOM you find a reference here: http://wiki.cocoondev.org/Wiki.jsp?page=FOM (be aware that this is a working document and may change!!!) So currently the easi

problems with a real mobile phone

2003-06-30 Thread binge21
Hi.. I'm trying to access my cocoon application on my computer with a real mobile device (a panasonic GD67 GPRS) but I'm always getting 'unsupported content type'. With emulators it all worked properly but now I'm getting this problem on a real mobile. I'm using custom generators to create XML and

AW: problems with a real mobile phone

2003-06-30 Thread Marco Rolappe
ho, if you haven't setup a serializer for wml (specifying the doctype, etc.), then you should do so. that would look something like: ... -//WAPFORUM//DTD WML 1.1//EN http://www.wapforum.org/DTD/wml_1.1.xml ISO-8859-1 ... > -Ursprün

Using Saxon transformer together with Xalan and XSLTC

2003-06-30 Thread Peter Velychko
Hi, I try to use Saxon 7.6 together with Xalan There is the following warning in the logs when I try to place saxon.jar to WEB-INF/lib: Date: Mon Jun 30 14:01:53 EEST 2003 (1056970913164) Thread: PoolThread-4 Message #: 1 Level: WARN NDC: Catego

Re: Using Saxon transformer together with Xalan and XSLTC

2003-06-30 Thread Peter Velychko
Hi, PV> I try to use Saxon 7.6 together with Xalan PV> There is the following warning in the logs when I try to place PV> saxon.jar to WEB-INF/lib: PV> Date: Mon Jun 30 14:01:53 EEST 2003 (1056970913164) PV> Thread: PoolThread-4 PV> Message #: 1 PV> Level: WARN PV>

Re: about Xindice

2003-06-30 Thread Yury Mikhienko
On Sun, 29 Jun 2003 22:00:20 +0200 "Josema Alonso" <[EMAIL PROTECTED]> wrote: > Hi, Yury. > > It could be due to a number of reasons. It could depend on JDK version > you're using, if you're using DOM or SAX, the XPath expression you're using, > if you're validating data or not...or even a bug...

XMLFORM and Cirilic encoding

2003-06-30 Thread Galia Angelova
Hello,   I have a problem with Cirilic encoding when working with xmlforms. Everything is ok exept when I submit a cirilic text in a textbox:   I write: Ãàëÿ and on the server it appears like: Галя   In select or labels the text appears as cirilic. But in textboxes and textareas  - not.   Any i

Re: XMLFORM and Cirilic encoding

2003-06-30 Thread Peter Velychko
Hello Galia, Try to set the form encoding. It is in the "web.xml" file: form-encoding utf-8 Simply incomment it for cocoon 2.1. GA> Hello, GA> I have a problem with Cirilic encoding when working with xmlforms. Everything is ok exept when I submit a cirilic text in a textb

Re: XMLFORM and Cirilic encoding

2003-06-30 Thread Galia Angelova
Thank you Peter! It works perfect! :-)Peter Velychko <[EMAIL PROTECTED]> wrote: Hello Galia,Try to set the form encoding. It is in the "web.xml" file:form-encodingutf-8Simply incomment it for cocoon 2.1.GA> Hello,GA> I have a problem with Cirilic encoding when working with xmlforms. Everything is

Re: reading xml from pipeline into a flow script

2003-06-30 Thread Simon Price
Thanks. I was glad of any solution at midnight on saturday, but I'll watch to see how the fom evolves as you advise. Thanks. Simon Reinhard Pötz wrote: This will work but not with the upcoming Flow Object Model. You won't have access to the environment any more. If you are interested in the FOM

Re: XSP+SVG in cocoon-2.0.4

2003-06-30 Thread Gautam Ganguly
hi Derek Thanks a lot for your help...and to the one who put those scripts It was a real help to me!! regards Gautam >>> [EMAIL PROTECTED] 06/30/03 02:41AM >>> Gautam Look at: http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=105550804911211&w=2 The use of SVG is well described in a set

Refactoring Flow/XMLForms example

2003-06-30 Thread whump
I'm continuing to play with Flow and in particular, XMLForms: Today I decided to refactor the flow-driven feedback wizard in the samples: http://localhost:8080/cocoon/samples/xmlform/flow In particular, I wanted to get rid of the inlined validation function definitions in the calls to Xform.

Woody textareas?

2003-06-30 Thread Luke Penca
Are textareas implemented in Woody yet? I cannot find anything in the (oh so sparse) documentation. Furthermore, has anyone used Woody extensively yet? (I know, I know, it's alpha at this point but I need some serious forms handling.) Should I be considering Xforms instead? Who got some exp

Re: Woody textareas?

2003-06-30 Thread Steven Noels
On 30/06/2003 18:58 Luke Penca wrote: Are textareas implemented in Woody yet? I cannot find anything in the (oh so sparse) documentation. Have you checked with http://wiki.cocoondev.org/Wiki.jsp?page=Woody ? It's not fully up to date, but that & tracking CVS commit messages might help you alread

Re: Woody textareas?

2003-06-30 Thread Simon Price
Cocoon's form handling is (imho) it's weakest area at present although it is rapidly improving with the interplay between flow and xmlform. Unless your app is simple, I'd recommend not wasting time on the simple form validator and db actions. "Pure" xmlforms where you end up writing java code f

Contribution: MultiPartPostAction & FilePartGenerator

2003-06-30 Thread Simmerman, Eric
Hello all, As per the Cocoon contribution guidelines, I've made some Cocoon extensions source code available for download at: http://www.tempeststrings.com/cocoon/index.html. There are two files that meet the guidelines for contribution to the Cocoon code base: org.apache.cocoon.acting.Mult

Re: Using Saxon transformer together with Xalan and XSLTC

2003-06-30 Thread J.Pietschmann
Peter Velychko wrote: So there is duplicating "xmlns" attributes in XML generated by Xalan. Could it be that the AElfred parser from the saxon jar kicks in? IT is known to report namespace attributes differently than Xerces which may cause hickups in some Xalan versions (unfortunately, this is a da

RE: Woody textareas?

2003-06-30 Thread Nathaniel Alfred
> -Original Message- > From: Simon Price [mailto:[EMAIL PROTECTED] > Sent: Montag, 30. Juni 2003 20:04 ... > Cocoon's form handling is (imho) it's weakest area at present > although > it is rapidly improving with the interplay between flow and xmlform. ... > Simon > > Luke Penca wrote: >

Link Livesites: http://www.ctg.albany.edu

2003-06-30 Thread Joerg Heinicke
We had it already on the list last week, here is the official announcement. I have added the link in the CVS. Joerg Original Message Subject: RE: Contact Us Form Date: Mon, 30 Jun 2003 09:41:18 -0400 From: Jim Costello <[EMAIL PROTECTED]> To: '[EMAIL PROTECTED]' <[EMAIL PROTEC

where is the sitemap dtd?

2003-06-30 Thread Stefan Kostopoulos
Can anybody point me to a location where I can download the Document Type Definition (DTD) for the cocoon sitemap. I don't know, maybe I am just blind, but I could't find it anywhere. Regards, Stefan - To unsubscribe, e-mail: [E

Re: Refactoring Flow/XMLForms example

2003-06-30 Thread whump
Further experiment and was able to answer my question: On Monday, June 30, 2003, at 09:54 AM, [EMAIL PROTECTED] wrote: I'm continuing to play with Flow and in particular, XMLForms: Today I decided to refactor the flow-driven feedback wizard in the samples: http://localhost:8080/cocoon/samples

Re: AW: problems with a real mobile phone

2003-06-30 Thread binge21
Thanks for your help...I was setting up the serializer wrongly for the wml..was using the wrong encoding..your snippet worked perfectly.. Regards Pierre > ho, > > if you haven't setup a serializer for wml (specifying the doctype, etc.), > then you should do so. > > that would look something lik

including a static XML file in the return from my sql call?

2003-06-30 Thread Paul Tomsic
I'm trying to import a static XML file into the results of my SQL call. Here's my sitemap.xmap block: and inside render-logic5

RE: Contribution: MultiPartPostAction & FilePartGenerator

2003-06-30 Thread Geoff Howard
Thank you for this work and your interest in contributing. I hope this is the first of many. Here are my thoughts after a quick look: The MultiPartPostAction seems unnecessary. What do you gain by placing a copy of the uploaded file which is already in the ObjectModel under the Request object d

RE: Contribution: MultiPartPostAction & FilePartGenerator

2003-06-30 Thread Reinhard Pötz
Eric, Please use Bugzilla (http://nagoya.apache.org) to provide your enhancements otherwise I fear that they will be overlooked. Additionally I cc'ed cocoon-dev. Without looking at your sources and examples: What does your generator provide what http://cocoon.apache.org/2.1/userdocs/generators/s

Re: Link Livesites: http://www.ctg.albany.edu

2003-06-30 Thread Derek Hohls
Joerg I was browsing the white paper referred to; in http://www.ctg.albany.edu/publications/reports/xml?chapter=9 it mentions that XML files are "connected" to XSL files by placing links to the stylesheets at the top of the XML files. It then goes on to say: "This significantly simplifies conten

Re: Woody textareas?

2003-06-30 Thread Marc Portier
Nathaniel Alfred wrote: -Original Message- From: Simon Price [mailto:[EMAIL PROTECTED] Sent: Montag, 30. Juni 2003 20:04 ... Cocoon's form handling is (imho) it's weakest area at present although it is rapidly improving with the interplay between flow and xmlform. ... Simon Luke Penc

Re: Link Livesites: http://www.ctg.albany.edu

2003-06-30 Thread Joerg Heinicke
Hello Derek, yes, that's obviously misleading. But I'm not related to this page. After the mention on this list last week I only asked them to be listed on Cocoon's Livesites page and Jim Costello sent me this mail below. I added the link in the CVS and forwarded this mail, especially because o