Re: problem with caching aggregated src

2003-12-20 Thread rufio
on Sat, 20 Dec 2003 23:55:29 +0100 Jorg Heymans <[EMAIL PROTECTED]> wrote: > >>Can you enable full debugging on core.log it's 34K so I zipped it. 1st I get dopoduszki.html which is in the TOC, then test2.html for just created test2.xml Regards, Rufio -- 010 nmap -O www.microsoft.com 001 [..]

Re: problem with caching aggregated src

2003-12-20 Thread Jorg Heymans
not sure on 2.1.x, there should be something like Make sure it's set to debug, if there is no such thing, just set all of them to DEBUG and try again. rufio wrote: on Sat, 20 Dec 2003 22:45:17 +0100 Jorg Heymans <[EMAIL PROTECTED]> wrote: Can y

Re: problem with caching aggregated src

2003-12-20 Thread rufio
on Sat, 20 Dec 2003 22:45:17 +0100 Jorg Heymans <[EMAIL PROTECTED]> wrote: > > > >>> > >>> > >>> > >>> > >>> > >>> > >>> > >>> > > > > Can you enable full debugging on core.log Sure. How? As I look at the logkit.xconf i'd say it's enabled but core.log is empty. Regards, Rufio -- 01

Newbie: DatabaseSelectAction modes?

2003-12-20 Thread Joe D. Williams
I want to authenticate users by a username and password, using DatabaseAuthenticatorAction and then pull information from the same database table that contains the authentication information. For example, a custom greeting or whatever, using columns that were not parameters from the input form. So

Re: problem with caching aggregated src

2003-12-20 Thread Jorg Heymans
Can you enable full debugging on core.log and have a look what it's saying after you requested an html page? It has quite verbose logging on whether data is retrieved from cache and why/why not, this might give us more insight. jorg

Re: problem with caching aggregated src

2003-12-20 Thread rufio
on Sat, 20 Dec 2003 21:35:52 +0100 Jorg Heymans <[EMAIL PROTECTED]> wrote: > Are you using 2.0.4? no, 2.1.2 > If you're using 2.1.x then you shouldn't be affected by this bug and > something else is wrong. Is your xpathdirectory generating correct > cachevalidity and cachekey? > > Jorg > > >

Re: problem with caching aggregated src

2003-12-20 Thread Jorg Heymans
Are you using 2.0.4? If yes have a look at thread http://marc.theaimsgroup.com/?l=xml-cocoon-users&m=107123040710707&w=2 and bug http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25481 If you're using 2.1.x then you shouldn't be affected by this bug and something else is wrong. Is your xpathdirec

problem with caching aggregated src

2003-12-20 Thread rufio
hi My page doesn't refresh when I add new file. This is part of my sitemap file (whole sitemap.xml apart from pipelines is out-of-the-box AFAIR) First i prepare table of contents from src files... ...then concatenate it with static toc file, keeping structure...

AW: AW: AW: [Woody] Binding problem for missing elements in source file

2003-12-20 Thread Markus Heussen
Many thanks to you, now everything works fine :-) But two questions I still have: 1. Is it possible to control the position where nodes will be created within a context? Sometimes this is necessary if the xml schema defines the sequence of nodes. 2. If the input of a date form field is for examp

Re: Building a Cocoon-based project as a block

2003-12-20 Thread Marc Portier
and anotherone here http://wiki.cocoondev.org/Wiki.jsp?page=YourCocoonBasedProject according to Neo in Matrix II: "the problem is choice" -marc= Jeremy Quinn wrote: On 17 Dec 2003, at 19:45, Bruce Robertson wrote: I'm in the process of upgrading a Cocoon-based project[1] from 2.0.x to 2.1.x.

Re: Modify entities into a SAX transformer

2003-12-20 Thread Marc Portier
Lionel, this is something you normally don't need to worry about. a SAXParser will detect & occurances and report them as normal '&' characters in the characters event equally the Serializer will take care of replacing unsupported characters in the output-encoding by their enitity-counterpart.

Re: AW: AW: [Woody] Binding problem for missing elements in source file

2003-12-20 Thread Marc Portier
Yo, all. answer is in the combination of using - @lenient (for surviving reads from paths that don't exist yet) - and the o.a.c.util.jxpath.DOMFactory (for creating new paths on the target XML) for some mysterious reason one of my commits messed up the auto-registry of that factory on Nodes, fi

RE: Removing extra spaces in xsl output

2003-12-20 Thread H . vanderLinden
Thanks, but that doesn't solve the problem. I checked, there is no space in the element, so it must stem from the xsl transformation. Bye, Helma > -Original Message- > From: Jorg Heymans [mailto:[EMAIL PROTECTED] > Sent: Saturday, 20 December 2003 13:01 > To: [EMAIL PROTECTED] > Subject:

Re: Removing extra spaces in xsl output

2003-12-20 Thread Jorg Heymans
http://xml.apache.org/xalan-j/xsltc/xsl_whitespace_design.html [EMAIL PROTECTED] wrote: Hi, How do I remove extra spaces around xsl:tags in the output HTML? Example: 123 345 678 is transformed with: number = -- The output should be: 123-345-678 But inste

Removing extra spaces in xsl output

2003-12-20 Thread H . vanderLinden
Hi, How do I remove extra spaces around xsl:tags in the output HTML? Example: 123 345 678 is transformed with: number = -- The output should be: 123-345-678 But instead its: 123 - 345 - 678 How do I remove the spaces around the - ? I've tried putting aro