Re: How to configure the location of external services in the sitemap

2005-12-13 Thread Ross Gardler
Fred Vos wrote: At work we are working on a Cocoon application that uses http requests in generators. The base URLs in these requests differ for each instance of our application. We don't want people to edit the sitemap to change URLs of these external services, everytime the sitemap changes.

Re: Does cocoon support Word .doc as output format

2005-11-25 Thread Ross Gardler
Antonio Gallardo wrote: If rtf is not desired, another option is to generate for OpenDocument format and from there to doc. This solution is not implemented in cocoon. I guess is not dificult to do. I've got a generator that converts from word to OOo. You could create a transformer that used

Re: DITA and Cocoon

2005-10-15 Thread Ross Gardler
Bertrand Delacretaz wrote: Le 15 oct. 05, à 17:21, J.D. Williams a écrit : I use DITA and Cocoon for my own Web site as a way of exploring both. I'd be interested in discussing a possible collaboration offline... Note that it doesn't have to be off-list, discussions about DITA wouldn't be

Re: Pipeline Question

2005-10-14 Thread Ross Gardler
[EMAIL PROTECTED] wrote: Is there a way to tell Cocoon to use a pipeline only if a wildcard is NOT of a special value? I want the fist pipeline beeing matched only if the first wildcard is NOT Print. Is this possible? How? You could use the regular expression matcher. See

Re: Xforming into anything readable by MS Word

2005-09-19 Thread Ross Gardler
Gerry Kaplan wrote: My application requires that the user be able to import into MS Word. Currently, I am producing PDF by way of XSLFO. Is there a way to generate, using the same XSLFO template, a MS Word document? PDF works good, but the customer needs to be able to merge the generated report

Reloading a form after a time period

2005-09-11 Thread Ross Gardler
I have a Cocoon form that shows live test result data from a sensor connected via ethernet. Currently the user refreshes the form manually by clicking a submit action button, which prompts the flowscript to determines whether the test has completed (send a new page) or whether the form should

Re: Reloading a form after a time period

2005-09-11 Thread Ross Gardler
Jason Johnston wrote: Mark Lundquist wrote: On Sep 11, 2005, at 4:42 PM, Jason Johnston wrote: You'll proabably also need to build the URL of the refresh to include the continuation id, and the name of the refresh button as a request parameter. Not if it's the resource you're already

Re: Existing Cocoon IDE

2005-08-06 Thread Ross Gardler
Oleg Konovalov wrote: Has anybody tried it ? Is it ready for use in production ? Crashes ? It's 0.1.0 release. It has bugs but it is usable and the bugs I have discovered are easy to workaround. As I mentioned before, my 2 most serous requirements are: - Visual Editing of XSL forms (XHTML);

Re: Existing Cocoon IDE

2005-08-05 Thread Ross Gardler
Oleg Konovalov wrote: I am looking for an existing Cocoon/XSLT/Java IDE or Eclipse plug-in. You have amazing timing. The Lepido project announced its first milestone release earlier today. See http://www.eclipse.org/lepido/ Ross

Re: Nice HTML to Text serializer?

2005-07-24 Thread Ross Gardler
Jochen Kuhnle wrote: Hi, is there a Serializer that can serialize HTML code to nicely formatted ascii text, e.g. doing line breaks, replacing ols and uls with 1. item or * item, etc.? If not, does anybody know a component that does this, that I can use to write a Serializer? In Forrest

XPathDirectoryGenerator gives Runtime exception

2005-07-14 Thread Ross Gardler
I'm using the XPathDirectoryGenerator and I am having a little trouble with it giving a RuntimeException (partial stack trace at end of this mail). The strange thing is that if I use save the output of the XPathGenerator in a file it works. My sitemap has: map:match

Re: Graphs in Cocoon based upon database

2005-06-27 Thread Ross Gardler
Yves Vindevogel wrote: this looks promissing, i will give it a quick try my needs are indeed very simple, a couple of bars and a couple of lines on a chart There is also a plugin for Apache Forrest (Cocoon based) that utilises JCharts. You would be able to easily reuse the code in there

Re: Graphs in Cocoon based upon database

2005-06-27 Thread Ross Gardler
Yves Vindevogel wrote: Hi Ross, I'm certainly willing to take a look at it. I will eventually chose one (forrest, fins, ) I have another possibility outside cocoon, and that is using the R language on my postgres database. For now, I would like to go with Cocoon, if it is fast enough,

Re: Graphs in Cocoon based upon database

2005-06-27 Thread Ross Gardler
Yves Vindevogel wrote: On 27 Jun 2005, at 14:04, Ross Gardler wrote: Yves Vindevogel wrote: Hi Ross, I'm certainly willing to take a look at it. I will eventually chose one (forrest, fins, ) I have another possibility outside cocoon, and that is using

Re: Graphs in Cocoon based upon database

2005-06-27 Thread Ross Gardler
Yves Vindevogel wrote: Well, I've written my own XSL files to render my content, based on my descriptions. if i want to use Forrest, I need to rewrite all my XML files. No you don't. But this is besides the point: You asked about a way of generating Charts from RDBMS data in a Cocoon

Re: [Slightly OT] Cocoon-integrable Wiki

2005-06-16 Thread Ross Gardler
Nacho Jimenez wrote: Hi I'm planning to integrate a wiki in a cocoon application. I've been googling arround, and looking at the different implementations out there, but I'm wondering which wiki engine would be the most easy to integrate with cocoon, that is, be able to get the contents into a

setting a different location for xconf

2005-01-19 Thread Ross Gardler
When running Cocoon as a Servlet I need to be able to set the location of cocoon.xconf to something other than WEB-INF/cocoon.xconf. Is this possible? Ross -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.300 / Virus Database: 265.7.0 - Release Date:

Re: setting a different location for xconf

2005-01-19 Thread Ross Gardler
Martinson, Theresa wrote: Check out this initialization parameter in your web.xml. I haven't tried this, but I'm guessing you can configure it to be whatever you want. init-param param-nameconfigurations/param-name param-value/WEB-INF/cocoon.xconf/param-value /init-param Sorry