Re: Howto use a generated stylesheet

2003-07-01 Thread Upayavira
Check out: http://wiki.cocoondev.org/Wiki.jsp?page=MetaStylesheets Regards, Upayavira On 1 Jul 2003 at 16:06, Olivier GUCKERT wrote: Olivier Billard a écrit : Hi all ! I'm trying to use a generated stylesheet for an xsl transformer and I get this error

RE: Howto use a generated stylesheet

2003-07-01 Thread Upayavira
On 1 Jul 2003 at 9:19, Orson Davis wrote: The stylesheet must be available before the pipeline is setup. The setup, configure and compose methods for each component in a pipeline is called before the startdocument method is called. In the case of the

RE: Howto use a generated stylesheet

2003-07-01 Thread Upayavira
I'd finished writing it!) Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: svgz to jpeg ?

2003-06-28 Thread Upayavira
Just use the svg2jpg serializer. That's it. Regards, Upayavira On 27 Jun 2003 at 22:26, rob wrote: Hi, does anyone know if it is possible to serialize a compressed svg file (svgz) to jpeg ? Thanks, Rob Gregory

Re: svgz to jpeg ?

2003-06-28 Thread Upayavira
). Both should extract your zipped SVG ready for converting to JPG. Hope that helps. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cocoon live site?

2003-06-27 Thread Upayavira
A quick look at their HTTP headers reports Cocoon 2.0.4. Upayavira On 27 Jun 2003 at 10:26, Darren Petrie wrote: Not sure but I think this redesigned site is running Cocoon. http://www.ctg.albany.edu They mention Cocoon in their well written XML:A New Web Site Architecture http

Re: Compilation of XSP on IDE only

2003-06-27 Thread Upayavira
XSPs. I've never used it, nor heard of anyone using it. I've no idea whether it works. But it is there. Regards, Upayavira Joerg Nitin wrote: Hi, Is there any way to compile all xsp file of a site and get the error results? just after amking changes in the XSP. thanks Nitin

Re: Cocoon to csv not excel

2003-06-27 Thread Upayavira
Using XSLT with the text serializer should do it. Just wrap your CSV content with a single node which will be ignored by the text serializer: root 1,bill 2,sid 3,sue /root and map:match pattern=xx map:generate ... map:transform... map:serialize type=text/ /map:match Regards, Upayavira

RE: Cocoon to csv not excel

2003-06-27 Thread Upayavira
On 27 Jun 2003 at 9:55, Tim Bachta wrote: So can I use an xsl to create the node? I have a xsp that creates an xml file that I don't want to change. Yup. Use XSLT to transform your source XML into a CSV file wrapped by a single node, then pass it to the text serializer. Regards, Upayavira

RE: Cocoon to csv not excel

2003-06-27 Thread Upayavira
On 27 Jun 2003 at 9:55, Tim Bachta wrote: So can I use an xsl to create the node? I have a xsp that creates an xml file that I don't want to change. Yup. Use XSLT to transform your source XML into a CSV file wrapped by a single node, then pass it to the text serializer. Regards, Upayavira

Re: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Upayavira
I've never tried bonebreaker, but if you've mounted it onto your root sitemap, then try accessing it via http://localhost:8080/cocoon/bonebreaker/ i.e. with a slash at the end. The mount probably mounts bonebreaker/ rather than just bonebreaker. Regards, Upayavira On 27 Jun 2003 at 17:09

Re: AW: Invalid processing instruction name (saxon:warning) with the bonebreaker example

2003-06-27 Thread Upayavira
Check all of the files that are used to generate that page exist in the right places. Have you put bonebreaker into a subfolder of the folder containing your main sitemap? I can't guarantee to be so quick next time - time to head home now... Regards, Upayavira On 27 Jun 2003 at 17:21, Sliman

Re: ASP generator

2003-06-25 Thread Upayavira
Just use either the HTML or the file (xml) generator, depending upon the output of the ASP page. I've done this, and it is pretty trivial. Regards, Upayavira On 25 Jun 2003 at 11:11, [EMAIL PROTECTED] wrote: Hello, Is there a way to read a dynamic HTML page generated by a Microsoft ASP

Re: A tranformer for sxw files

2003-06-24 Thread Upayavira
Check out: http://wiki.cocoondev.org/Wiki.jsp?page=OpenOfficeGeneration On 24 Jun 2003 at 10:50, Denis Svishchev wrote: Hi! Is there a transformer for StarOffice sxw files? I want to use a StarOffice document in sxw format as a source and show its content as html or pdf. Thanks in

Re: Problem installing cocoon 2.0.4 on Tomcat 4.1.18

2003-06-24 Thread Upayavira
into Cocoon. You can switch it off if you want, but there is no reason to do so at first. Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Pass parameter to a transformer

2003-06-23 Thread Upayavira
Why don't you use the src attribute to pass in the XML file, much as any other transformer? Then you'd have a lot of transformers available to look at for code samples. Regards, Upayavira On 23 Jun 2003 at 16:25, Anna Afonchenko wrote: Hi all. I have written my own transformer, that gets

Re: Upgrading Java

2003-06-20 Thread Upayavira
have 'too much' trouble with it). Regards, Upayavira On 20 Jun 2003 at 8:13, Derek Hohls wrote: I am wanting to upgrade my Java version from 1.3 to 1.4 in order to keep pace with new software that needs it - however, I have the '1.3 compatible' version of Cocoon installed. Are then any

Re: Table of contents

2003-06-20 Thread Upayavira
find it, it would be your best approach. If you need more explanation, please let me know. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Exception when using copy-of

2003-06-20 Thread Upayavira
new. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: pipeline dependencies

2003-06-20 Thread Upayavira
of the SourceWritingTransformer. Thanks Upayavira. I think with the current implementation that is the only possible way of doing it. Although it's not efficient (you dont actually want to aggregate), it serves the purpose. Another way you can do it is read your original content from disc, then transform

Re: pipeline dependencies

2003-06-20 Thread Upayavira
will need to do so soon. So, when you say you tried it and it doesn't work, what doesn't work? What happens? Also, what version of Cocoon are you using? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: mounting, but with shared sitemap?

2003-06-20 Thread Upayavira
to catch those situations where the URL doesn't match a valid skin. Make sense? Does this do what you want? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: pipeline dependencies

2003-06-19 Thread Upayavira
if the source of that pipeline has changed. Then, if necessary, you can ignore the aggregated output from pipeline B, but it is just there to enforce the dependency. All depends upon the caching of the SourceWritingTransformer. I may well be off track here... Regards, Upayavira

Re: get request attribute in sitemap

2003-06-17 Thread Upayavira
' in your sitemap like this: map:transform src=xsl/foo.xsl map:parameter name=name value={request-param:name}/ /map:transform So, Peter will be passed to the transform as a parameter. Is this what you're after? Upayavira On 17 Jun 2003 at 3:36, Hill Karimov wrote: Hi all, Is possible

Re: OOo and ZipArchive serializer

2003-06-16 Thread Upayavira
with a small sample for the ZipArchiveSerializer. The sample takes three files from the hello-world sample and returns a hello.zip file. AFAIK there's no example atm. The hello_zip.xml file should be put in src/webapp/samples/hello-world/content/. I've just committed your patch. Thanks. Upayavira

Re: Writing to filesystem

2003-06-16 Thread Upayavira
Hi, What is the best way to write the output of a Transformer (in a pipeline) into a file (e.g. /resources/bla.xml) on the filesystem? Check out the SourceWritingTransformer. Regards, Upayavira - To unsubscribe, e-mail

Re: OOo and ZipArchive serializer

2003-06-12 Thread Upayavira
The following section of this message contains a file attachment prepared for transmission using the Internet MIME message format. If you are using Pegasus Mail, or any another MIME-compliant system, you should be able to save it or view it from within your mailer. If you cannot, please ask your

Re: OOo and ZipArchive serializer

2003-06-12 Thread Upayavira
the changes, marked by +) into the code for the ZipSerializer and rebuild Cocoon. Do you think you can handle that? If it works, I'll apply it to the latest CVS. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED

Persistent Cookies

2003-06-12 Thread Upayavira
this? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Persistent Cookies

2003-06-12 Thread Upayavira
this? Er. Um. I've just seen that an int in Java is 32 bits, not 16, which means that, instead of lasting for a matter of days (or should it be hours), a cookie can be set to last for up to 68 years. I suspect that should be long enough for me :-) Oops. Upayavira

Re: OOo and ZipArchive serializer

2003-06-12 Thread Upayavira
Let me know what version of Cocoon you're using and I'll try to send a correct patch. Upayavira On 12 Jun 2003 at 19:49, Georges Roux wrote: Sorry, the patch fail I think, it's better to wait some time a next version, to have a Zip serializer more efficient. patch ZipSerializer.patch

Re: OOo

2003-06-11 Thread Upayavira
Georges, Sounds great! Well done! Now, would you be willing to write this up for the benefit of others on the Cocoon wiki? If you go to: http://wiki.cocoondev.org/Edit.jsp?page=OpenOfficeSerialization You can create a page there. That would be really helpful. Regards, Upayavira On 11 Jun

RE: conditions in xsl

2003-06-11 Thread Upayavira
=.. .. passwordxsl:value-of select=normalize-space($password)//password ... But this is more of an XSLT question than a Cocoon one: perhaps you should be checking these things out on the Mulbery XSLT list. Regards, Upayavira

Re: Gif image

2003-06-10 Thread Upayavira
is matched by a matcher in your pipeline. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cocoon: presentation tier + J2EE EJB business tier --- a

2003-06-09 Thread Upayavira
do the rest of you think? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [patched livesites.xml] Re: CVS livesites.xml - what is couldn't

2003-06-09 Thread Upayavira
. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: Can't seem to load Firebird driver

2003-06-06 Thread Upayavira
time ago, but gave up. So I've now got something to try at some future point. Thanks for that. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Please take care a virus is near of us!

2003-06-06 Thread Upayavira
Dear All, Take care of the mail from Upayavira [EMAIL PROTECTED] with the subject : Re: commandline executes matching pipeline three times and an 038-001_DataDictionary.xls.exe file attached! As you can see from the above, this email was not sent by me. My email address is [EMAIL PROTECTED

Using cookies

2003-06-05 Thread Upayavira
that this should be easy with Cocoon - a combination of an Action to set the cookie and an input module to read it. I'm quite prepared to use flow if that'll help. But I can't find anything to point me in the right direction. Any pointers anyone? Regards, Upayavira

Re: commandline executes matching pipeline three times

2003-06-05 Thread Upayavira
2.1, as it now can write directly to modifiable sources. Therefore, if you had an FTP source, you could generate a page and have the CLI send it straight to your FTP server. Thanks again ! You're welcome! Upayavira

Re: Using cookies

2003-06-05 Thread Upayavira
there is a cookie logikcheet in xsp Thanks. I'll look into that. but i dont know if they are online information (examples) somewhere Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

Re: commandline executes matching pipeline three times

2003-06-05 Thread Upayavira
* once for getting page contents /snip And check out the CLI in 2.1. Much improved, and can be configured to only generate pages once. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: CLI problems (ComponentSelector, cocoon protocol)

2003-06-04 Thread Upayavira
welcome. Upayavira The following problems occur: - The ComponentSelector does not find default components (could not find component for hint []). If I add type attributes to all component references in the sitemap, everything is fine. - The cocoon: protocol does not work properly

Re: Newbie: writing XML files with Cocoon

2003-06-04 Thread Upayavira
and Moz6, and flow behind the scenes. Hope that helps (and doesn't cause too much 'I can't find it' frustration). Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: How to debug COCOON with ECLIPSE and TOMCAT?

2003-06-04 Thread Upayavira
Haven't done it yet myself, but have you read the Wiki page for Cocoon 2.1? http://wiki.cocoondev.org/Wiki.jsp?page=LoadInEclipse Regards, Upayavira On 4 Jun 2003 at 10:51, Lionel Crine wrote: Sorry I'm lost : Whould you like me to send the configuration for eclipse to work with cocoon

Re: CLI problems (ComponentSelector, cocoon protocol)

2003-06-03 Thread Upayavira
as to what you can do with a page once you've generated it. If you're interested in this, let me know and I'll tell you when I've committed it. I'd appreciate some help testing it! (FYI, I've certainly had the cocoon: protocol working on sites I've got). Regards, Upayavira The following problems

Re: Jscript in xml pages. Disaperas after file generation

2003-05-30 Thread Upayavira
in lt; and gt; in your resultant HTML. Instead, wrap the entire Javascript area, including !-- in an XML CDATA tag (sorry, can't remember syntax). Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: SourceWrite error :|

2003-04-05 Thread Upayavira
? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: map:redirect-to problem with source-write

2003-04-05 Thread Upayavira
transformer, so you don't need to specify it. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: SourceWrite error :|

2003-04-05 Thread Upayavira
files everytime we wanted to check if he was merging the files lolol But incredibly it is really working :) So, we're thinking that in the end, cocoon isn't to bad as we thought... It is rather good, actually! Thanks once again You're welcome. Upayavira

Re: SourceWrite error :|

2003-04-04 Thread Upayavira
to a source that is writable. If you wish to write to a file, try either src=pubmed/repository/my.xml or src=file:/path/to/context/pubmed/repository/my.xml This should work as file: is writable. Regards, Upayavira

Re: SourceWrite error :|

2003-04-04 Thread Upayavira
Try adding overwrite=true into the source:write node. Not sure if that is it, but it is worth a try. Upayavira On 4 Apr 2003 at 16:53, João César wrote: Hi, first of all thanks for your prompt answer :) I've just changed to source:write src=repository/my.xml and the error still remains

Re: SourceWrite error :|

2003-04-04 Thread Upayavira
other transformer to write to a file? I've had it working, so it is possible. I used the sample that was as a part of Cocoon 2.0.4. Have you tried moving the file out of the way and having another go? Upayavira

Re: SourceWrite error :|

2003-04-04 Thread Upayavira
: this is a WriteableSource -- protocol class=org.apache.cocoon.components.source.FileSourceFactory name=file/ /source-handler That being missing could cause the problem. Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: TEI and cocoon

2003-04-04 Thread Upayavira
://wiki.cocoondev.org/Wiki.jsp?page=XSLT. It's not that it won't work, more that you shouldn't be using it for certain functionality. Therefore, if it is in an existing stylesheet, you might well find it works anyway. Can you say more about what the problems are that you're having? Upayavira

Re: SourceWrite error :|

2003-04-04 Thread Upayavira
it ? In 2.1, you can use insert. In 2.0.4, you'll need use XSLT to merge the data and then write the whole file back to disc. Make sense? Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Sample PDF

2003-04-04 Thread Upayavira
and try again. HTH. Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: 2.1 dev - CVS whats the new steps to build

2003-03-31 Thread Upayavira
updating. You should now be using cocoon-2.1 instead of xml-cocoon2. This changed a number of weeks ago, in recognition of the fact that Cocoon is now an Apache project in its own right. Regards, Upayavira - To unsubscribe, e-mail

Re: problems with Forrest

2003-03-31 Thread Upayavira
To Whom It May Concern: I am trying to setup Forrest on my MacOSX box using jboss and tomcat. Is anyone on this list familiar with Forrest? There may be people here, but you're best of asking on the forrest-dev list. Regards, Upayavira

Re: CLI output file names

2003-03-27 Thread Upayavira
=CommandLine for more info. The best way to handle filenames is to simply make the URI a valid filename, e.g. userguide.pdf, if you want to use the CLI. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Are Continuations Expensive?

2003-03-27 Thread Upayavira
of a stack that is different from others is stored, not the whole stack each time. Also, variables are shared between continuations, again reducing memory usage. I'm not saying that this makes them inexpensive - just that memory usage does appear to have been thought about. Upayavira

Re: convert from asp online form to something under cocoon

2003-03-26 Thread Upayavira
logicsheet. Anyone know how to use Cocoon to send an email? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Cocoon-based Database Administration

2003-03-26 Thread Upayavira
questions (and probably give you more - such as should I really be using 2.1...). Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Problems with Cocoon 2.1 dev (CVS)

2003-03-20 Thread Upayavira
! Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Lucene index building

2003-03-19 Thread Upayavira
in my site, probably wouldn't have fixed it anyway. I've just uploaded it onto my test server, and it works a treat! Thanks for that. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: WritableSource output Cocoon 2.0.4

2003-03-18 Thread Upayavira
The sourceWritingTransformer in 2.1 is quite different to the one in 2.0.4. I don't know whether it is 'back-compatible', Unfortunately it is not back compatible. Are you aware why not? Upayavira - To unsubscribe, e

Re: WritableSource output Cocoon 2.0.4

2003-03-17 Thread Upayavira
SourceWritingTransformer stage, to return HTML for the user. Have I understood you correctly? Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: WritableSource output Cocoon 2.0.4

2003-03-17 Thread Upayavira
SourceWritingTransformer to do what you want. Hope that doesn't cause too many headaches! Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Creating a MenuGenerator based on DirectoryGenerator

2003-03-15 Thread Upayavira
final URL. When linking to a page, you use the page's ID. A couple of input modules and a transformer then translate that ID into the proper URL. Hope this helps. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Creating a MenuGenerator based on DirectoryGenerator

2003-03-15 Thread Upayavira
, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Generator for OpenOffice, think I got it

2003-03-14 Thread Upayavira
On 14 Mar 2003 at 12:45, Yves Vindevogel wrote: snip good stuff/ Would you be willing to make a Wiki page out of this? Go to: wiki.cocoondev.org. That would help a lot of people in the future. Oh, and well done!! Regards, Upayavira

RE: Generator for OpenOffice

2003-03-13 Thread Upayavira
in the cocoon.xconf, you'll find an entry for an entity-resolver. The catalog file is probably in $COCOON- ROOT/resources/entity/catalog. Load that up, and see if you can edit it to map the DTD to the DTD file. I've never used it, but it is worth trying for this. Regards, Upayavira

Re: Generator for OpenOffice

2003-03-13 Thread Upayavira
posted. Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: best Java for RedHat?

2003-03-13 Thread Upayavira
want to know. Hope life's treating you well! Regards, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Generator for OpenOffice

2003-03-12 Thread Upayavira
I've taken your suggestion and implemented an example: http://wiki.cocoondev.org/Wiki.jsp?page=JarProtocolExample Great! Could be useful! Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: Generator for OpenOffice

2003-03-11 Thread Upayavira
that the jar: protocol, built into the JDK, can read Zip files. So check out the accessing files with jar: in the JDK and let us know where you get to! Hope this helps. Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED

Re: Zip File Generator

2003-03-07 Thread Upayavira
, Upayavira - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: big ESQL performance problem

2003-03-04 Thread Upayavira
it is worth trying accessing your database JDBC with Java, without Cocoon in the picture. Then you can work out whether it is Cocoon or JDBC that is causing you a problem. I had to do this recently, so I used some code in the O'Reilly Java Examples in a Nutshell book. Regards, Upayavira

Re: Generate XSL with XSP?

2003-03-03 Thread Upayavira
Robert, xsl:include href=include-basepath.xsl/ Is it as simple as changing this line to: xsl:include href=cocoon:/include-basepath.xsl/ to allow the include to call an internal pipeline? Regards, Upayavira

Re: Mounting Sub-Sitemap from outside cocoon-dir...

2003-02-25 Thread Upayavira
Joerg, There shouldn't be any problem with that as far as I can see. Here's a snippet from my root sitemap: map:match pattern=dl/** map:mount check-reload=yes src=file:/c:/mydocs/web/dharma life/ uri-prefix=dl reload-method=synchron/ /map:match Regards, Upayavira Hi! For better

Re: Cheap Cocoon Hosting

2003-02-24 Thread Upayavira
aoindustries.com come recommended. They host cocoondev.org. positiveinternet.com in the UK host servlets on their Z-account, which means that they _should_ be able to host Cocoon. Regards, Upayavira I went to the Cocoon website and it gives a list of hosting providers that will support

Re: CmdLine not honouring web.xml parameters?

2003-02-21 Thread Upayavira
solution, you can specify the dburl, driver, user and password using esql:driver, esql:dburl, esql:username and esql:password within your esql:connection. This will avoid the reference in web.xml. It looses your connection pooling, but it should work. Hope that helps. Regards, Upayavira

Re: XPath problems in Cocoon?

2003-02-20 Thread Upayavira
into XML (file/save on your browser). Then try using that XML in XML spy. Does it still work? The HTML generator does convert badly formatted HTML into correct HTML, so it can slightly change the structure of the document (it is based upon JTidy, which exists for that purpose). Regards, Upayavira

Re: Firebird with Cocoon

2003-02-19 Thread Upayavira
=FGETimetables/ /map:transform map:serialize type=xml/ /map:match Any further hints would be greatly appreciated. Regards, Upayavira - Please check that your question has not already been answered in the FAQ

Re: hosting

2003-02-19 Thread Upayavira
Cocoon. I like what I see of their service, and, if I was to consider shared hosting in the UK, I'd seriously consider doing it with them. Regards, Upayavira - Please check that your question has not already been answered

Re: AW: Firebird with Cocoon

2003-02-19 Thread Upayavira
\test.log (The system cannot find the path specified) after some time ago having put the log4j jar into the lib folder. Any idea where it is looking for the log\test.log file? Then it might be able to tell me more about what it is doing. Thanks for all of your help. Regards, Upayavira

Re: AW: Firebird with Cocoon

2003-02-19 Thread Upayavira
Brian, I've finally got Firebird working, by switching from the SQLTransformer to the ESQL logicsheet. What a relief! Can you send me the patch for the SQLTransformer? I'll see if that's part of it. Thanks for your help. Regards, Upayavira

Re: cocoon-reload parameter

2003-02-18 Thread Upayavira
see what you are trying to do? Thanks, Upayavira - 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

Re: CLI

2003-02-18 Thread Upayavira
Darren, I have often wondered why the CLI isn't a standard part of the binary distribution. I have posted a message to the dev list to ask if there is a reason why it isn't there, and if not to offer at least have a go at creating the necessary scripts. Regards, Upayavira CLI doesn't work out

Firebird with Cocoon

2003-02-18 Thread Upayavira
a connection string of the sort: jdbc:firebirdsql://localhost:3050//c:/desktop/database.gdb A connection test from IBConsole tells me that I'm using WI-V6.2.794 Firebird 1.0. Any pointers? Thanks, Upayavira - Please check that your

Re: CLI

2003-02-17 Thread Upayavira
If you want details on using the command line interface, check out the Wiki page: http://wiki.cocoondev.org/Wiki.jsp?page=CommandLine It is mostly there and should get you going. If you have any problems with it, let me know and I'll see if I can help you through. Regards, Upayavira Hello

Re: CLI

2003-02-17 Thread Upayavira
If you want details on using the command line interface, check out the Wiki page: http://wiki.cocoondev.org/Wiki.jsp?page=CommandLine It is mostly there and should get you going. If you have any problems with it, let me know and I'll see if I can help you through. Regards, Upayavira Hello

Re: CLI

2003-02-17 Thread Upayavira
If you want details on using the command line interface, check out the Wiki page: http://wiki.cocoondev.org/Wiki.jsp?page=CommandLine It is mostly there and should get you going. If you have any problems with it, let me know and I'll see if I can help you through. Regards, Upayavira Hello

Re: CLI

2003-02-17 Thread Upayavira
If you want details on using the command line interface, check out the Wiki page: http://wiki.cocoondev.org/Wiki.jsp?page=CommandLine It is mostly there and should get you going. If you have any problems with it, let me know and I'll see if I can help you through. Regards, Upayavira Hello

Re: [Jetty] Quicker startup

2003-02-17 Thread Upayavira
The following section of this message contains a file attachment prepared for transmission using the Internet MIME message format. If you are using Pegasus Mail, or any another MIME-compliant system, you should be able to save it or view it from within your mailer. If you cannot, please ask your

Re: [Jetty] Quicker startup

2003-02-17 Thread Upayavira
Tony, If you're using Windows, you can use the batch file I've attached. Otherwise, you can try Pier's Unix script at: http://marc.theaimsgroup.com/?l=xml-cocoon-devm=104337896731869w=2 Hope that helps. This assumes tthat you're trying to run 2.1, which has Jetty included. Regards, Upayavira

Cocoon on a Zaurus PDA

2003-02-14 Thread Upayavira
to make it run or have a Cocoon setup ready made? Thanks in advance. Regards, Upayavira - Please check that your question has not already been answered in the FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

Re: Call a css into an xsl

2003-02-10 Thread Upayavira
pipeline. Hope that helps. Regards, Upayavira Here is what i wrote : xsl:template match=content html head /head link rel=stylesheet type=text/css href=style.css/ body h1 align=centerDEMO/h1 xsl:apply-templates/ /body /html /xsl:template ... I think

Re: Error

2003-02-04 Thread Upayavira
file:/C:/jakarta-tomcat-5.0/jakarta-tomcat-5.0/webapps/cocoon/workshop, or file://C:/jakarta-tomcat-5. ?! More to the point, do you really want to have two occurances of jakarta-tomcat-5.0 in your path to your stylesheet? Regards, Upayavira

RE: cocoon struts together

2003-02-03 Thread Upayavira
. If you want to use this, let me know and I may be able to send you a patch. Regards, Upayavira - Please check that your question has not already been answered in the FAQ before posting. http://xml.apache.org/cocoon/faq

  1   2   >