[jira] Updated: (JCR-2379) BindVariable not registered in JCR-SQL2 CONTAINS

2009-11-04 Thread Marcel Reutegger (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated JCR-2379: -- Component/s: (was: query) jackrabbit-spi-commons This is a bug in the spi-co

[jira] Commented: (JCR-2368) can't insert new record : no space found in the device

2009-11-04 Thread premkumar (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12773415#action_12773415 ] premkumar commented on JCR-2368: sorry for the delayed reply. Here is the error log. And atta

[jira] Updated: (JCR-2368) can't insert new record : no space found in the device

2009-11-04 Thread premkumar (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] premkumar updated JCR-2368: --- Attachment: repository.xml > can't insert new record : no space found in the device > -

[jira] Resolved: (JCR-2379) BindVariable not registered in JCR-SQL2 CONTAINS

2009-11-04 Thread Marcel Reutegger (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2379?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger resolved JCR-2379. --- Resolution: Fixed Fix Version/s: 2.0.0 Fixed in revision: 832676 > BindVariable not reg

[jira] Commented: (JCR-2368) can't insert new record : no space found in the device

2009-11-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2368?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12773425#action_12773425 ] Thomas Mueller commented on JCR-2368: - I documented the problem at http://wiki.apache.org

[jira] Commented: (JCR-2369) Problem importing node with binary property in a repository configured with datastore

2009-11-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2369?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12773434#action_12773434 ] Thomas Mueller commented on JCR-2369: - I have committed the bugfix in the 1.6 branch. T

[jira] Updated: (JCR-2369) Problem importing node with binary property in a repository configured with datastore

2009-11-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller updated JCR-2369: Component/s: jackrabbit-core Priority: Minor (was: Major) Fix Version/s: 1.6.1 > Prob

[jira] Resolved: (JCR-2369) Problem importing node with binary property in a repository configured with datastore

2009-11-04 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2369?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Thomas Mueller resolved JCR-2369. - Resolution: Fixed > Problem importing node with binary property in a repository configured with >

Re: [jira] Created: (JCR-2369) Problem importing node with binary property in a repository configured with datastore

2009-11-04 Thread Subbarao
Hi I am using jackrabbit 1.4 over JBoss server(Version 4.0.5) and trying to migrate to 1.6. I have the below files in my JBoss deploy folder related to Jackrabbit. jcr-ds.xml jackrabbit-jca-1.4.rar jackrabbit-jcr-rmi-1.4.1.jar and i also have "jcr-1.0.jar" in JBoss lib directory. Please give me

Unicode, NFC,NFD and node names

2009-11-04 Thread Grégory Joseph
Hi list, Given the following code, import java.text.Normalizer; ... final Session session = ... final Repository rep = session.getRepository(); System.out.println(rep.getDescriptor("jcr.repository.name") + " " + rep.getDescriptor("jcr.repository.version")); f

Re: Unicode, NFC,NFD and node names

2009-11-04 Thread Grégory Joseph
fwiw, the following solves the simple problem shown by my previous example: private Session wrap(final SessionImpl origSession) throws RepositoryException { final WorkspaceImpl workspace = (WorkspaceImpl) origSession.getWorkspace(); final RepositoryImpl rep = (Repository

Re: Unicode, NFC,NFD and node names

2009-11-04 Thread Tobias Bocanegra
hi, i don't think this should be the job of the repository to do normalization of the paths. likewise a good filesystem (a case sensitive one :-) does no normalization of it's paths neither. regards, toby 2009/11/4 Grégory Joseph : > fwiw, the following solves the simple problem shown by my previ