fulltext search contraint on child nodes

2006-10-19 Thread JavaJ
Is there a way to put a fulltext search constraint on the child node of the node you're searching for? For example, I have a nodetype A which has child nodes of nodetype B. I want to do a search that returns all nodes of type A that contain a child node B with the word foo in any of its

Re: Restoring a node after move

2006-10-17 Thread JavaJ
so the name of a node is not part of its own state but the state of its parent? Tobias Bocanegra wrote: you would need to restore /a/b/c/d since a move modifies the state of the parent(s). regards, toby On 10/17/06, JavaJ [EMAIL PROTECTED] wrote: Say you have a Node F at: /A/B/D/F

Restoring a node after move

2006-10-16 Thread JavaJ
Say you have a Node F at: /A/B/D/F with version 1.0, then you decide to move it to /A/B/D/E (basically renaming it to E) and version it 1.1. What happens if you restore the Node to version 1.0? Will it's name be F or E? -- View this message in context:

Re: Jackrabbit UI Tool

2006-09-12 Thread JavaJ
Torgeir Veimo wrote: On 24 Aug 2006, at 00:30, JavaJ wrote: Is there some kind of tool available that will allow you to inspect and traverse your repository through a UI, like inspect nodes, properties, node types? Are you looking for desktop or HTML based? -- Torgeir

Checking out a node

2006-08-25 Thread JavaJ
So according to the javadoc, when you check out a node using Node.checkout(), the isCheckedOut property of that node changes to true and all of its non-versionable child nodes become writeable. These changes are persisted immediately. I assume this means that the changes are propagated across

Re: More questions about versioning

2006-08-17 Thread JavaJ
Thanks! I read through the spec some more and it takes more sense now... One more question: Let's say you had a versionable NodeA (v1.2) with a versionable child node NodeB (v1.0), with attribute onParentVersion=COPY. You checkout NodeB and add a new non-versionable node NodeC

Re: Question about versioning

2006-08-16 Thread JavaJ
as the prior version of NodeA, then the declaration of NodeB in the NodeTypeDefinition for NodeA should contain COPY. HTH and if I'm wrong or anyone has pointers to good docs PLEASE enlighten me. Doug On 8/15/06, JavaJ [EMAIL PROTECTED] wrote: I have a question about versioning

Re: Question about versioning

2006-08-16 Thread JavaJ
I have a couple of other questions about versioning: 1) Is there a way to rollback to a previous version? I know that there is a restore function, but from the spec, it looks like it just copies the state of the versioned node into the node object. What I'm interested in is being able to

More questions about versioning

2006-08-16 Thread JavaJ
I have a couple of other questions about versioning: 1) Is there a way to rollback to a previous version? I know that there is a restore function, but from the spec, it looks like it just copies the state of the versioned node into the node object. What I'm interested in is being able to

loading custom nodetypes

2006-08-03 Thread JavaJ
Is there a way to tell Jackrabbit to automatically load custom nodetypes from CND file on startup? It seems to work with putting custom_nodetypes.xml in the nodetypes directory, but I can't get it to work with a cnd file. Do you have to load it manually? -- View this message in context:

Jackrabbit war on Tomcat

2006-08-02 Thread JavaJ
Anyone else have trouble deploying the jackrabbit-server-1.0.1.war on Tomcat 5.0.28, using JDK 1.5? The initial error that I get when I tried to deploy the war was: javax.xml.transform.TransformerFactoryConfigurationError: Provider org.apache.xalan.processor.TransformerFactoryImpl not found