Branch and backports management

2009-08-28 Thread Sébastien Launay
Hi, Now that i have write access privilege to the source code i have a few questions about how things works with commits. For commit log, i suppose that i need to provide the issue id and description for allowing JIRA to create links to SVN diffs and to ease backports. Do i need to create an JIRA

[jira] Commented: (JCR-2195) Provide possibility to import protected items using Session/Workspace import functionality

2009-08-28 Thread Tobias Bocanegra (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2195?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12748861#action_12748861 ] Tobias Bocanegra commented on JCR-2195: --- committed slightly modified version of the pat

Hudson build is back to stable: Jac krabbit-trunk » Jackrabbit Core #809

2009-08-28 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/Jackrabbit-trunk/org.apache.jackrabbit$jackrabbit-core/809/

Using session.importXml()

2009-08-28 Thread Paul Skinner
Hi all, I am using the following code snippet to import nodes into the repository. InputStream in = new FileInputStream(importFile); session.importXML("/", in, ImportUUIDBehavior.IMPORT_UUID_COLLISION_REPLACE_EXISTING); session.save(); The import file had previously been generated

[jira] Updated: (JCR-2280) Lazy initialize ItemDefinition

2009-08-28 Thread Marcel Reutegger (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Marcel Reutegger updated JCR-2280: -- Resolution: Fixed Fix Version/s: 2.0.0 Status: Resolved (was: Patch Available)

Hudson build is still unstable: Jac krabbit-trunk » Jackrabbit Core #808

2009-08-28 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/Jackrabbit-trunk/org.apache.jackrabbit$jackrabbit-core/808/

Hudson build is back to stable: Jackra bbit-trunk » Jackrabbit SPI to JCR #808

2009-08-28 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/Jackrabbit-trunk/org.apache.jackrabbit$jackrabbit-spi2jcr/808/

[jira] Created: (JCR-2286) Implement Value.toString

2009-08-28 Thread Thomas Mueller (JIRA)
Implement Value.toString Key: JCR-2286 URL: https://issues.apache.org/jira/browse/JCR-2286 Project: Jackrabbit Content Repository Issue Type: Improvement Reporter: Thomas Mueller Assignee: Tho

Re: svn commit: r808783 - /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/query/lucene/constraint/ConstraintBuilder.java

2009-08-28 Thread Thomas Müller
Hi, > Why not change the toString() method? Good idea. I will file a bug. Regards, Thomas

[jira] Commented: (JCR-2282) SQL2 parser must not infer type for UncastLiteral from static analysis

2009-08-28 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12748709#action_12748709 ] Thomas Mueller commented on JCR-2282: - Because of this change the build now fails with j

[jira] Issue Comment Edited: (JCR-2282) SQL2 parser must not infer type for UncastLiteral from static analysis

2009-08-28 Thread Thomas Mueller (JIRA)
[ https://issues.apache.org/jira/browse/JCR-2282?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12748709#action_12748709 ] Thomas Mueller edited comment on JCR-2282 at 8/28/09 12:35 AM: ---

Hudson build is still unstable: Jac krabbit-trunk » Jackrabbit Core #807

2009-08-28 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/Jackrabbit-trunk/org.apache.jackrabbit$jackrabbit-core/807/

Hudson build is still unstable: Jackra bbit-trunk » Jackrabbit SPI to JCR #807

2009-08-28 Thread Apache Hudson Server
See http://hudson.zones.apache.org/hudson/job/Jackrabbit-trunk/org.apache.jackrabbit$jackrabbit-spi2jcr/807/

Re: svn commit: r808783 - /jackrabbit/trunk/jackrabbit-core/src/main/java/org/apache/jackrabbit/core/query/lucene/constraint/ConstraintBuilder.java

2009-08-28 Thread Jukka Zitting
Hi, On Fri, Aug 28, 2009 at 9:16 AM, wrote: >                 throw new InvalidQueryException("Static value " + > -                        staticValue.toString() + " cannot be converted to a > Long"); > +                        staticValue.getString() + " cannot be converted to a > Long"); Why