[jira] Subscription: open issues

2007-09-02 Thread jira
Issue Subscription
Filter: open issues (178 issues)
Open Issues for Apache Jackrabbit
Subscriber: jackrabbitdev


Key Summary
JCR-1104JSR 283 support
https://issues.apache.org/jira/browse/JCR-1104
JCR-1102bad test assumptions in SQLJoinTest
https://issues.apache.org/jira/browse/JCR-1102
JCR-1100Support for dynamic mixins
https://issues.apache.org/jira/browse/JCR-1100
JCR-1099jcr2spi NodeEntryImpl.getPath() blows stack due to getIndex() 
calling itself
https://issues.apache.org/jira/browse/JCR-1099
JCR-1098(more) spurious nodes in parsed SQL query tree
https://issues.apache.org/jira/browse/JCR-1098
JCR-1097Move the XASession interface to jackrabbit-api
https://issues.apache.org/jira/browse/JCR-1097
JCR-1094TCK assumes that repository does not automatically add mixins on 
node creation
https://issues.apache.org/jira/browse/JCR-1094
JCR-1089Xpath query parser accepts /a | /b and treats it as /a/b
https://issues.apache.org/jira/browse/JCR-1089
JCR-1087Maintain the cluster revision table
https://issues.apache.org/jira/browse/JCR-1087
JCR-1086JCR2SPI: Workspace.getImportHandler creates a handler which doesn't 
work properly under JDK 1.4.
https://issues.apache.org/jira/browse/JCR-1086
JCR-1084Maintan a stable ordering of properties in xml export
https://issues.apache.org/jira/browse/JCR-1084
JCR-1080Change lucene indexing to a 1:1 mapping for properties instead of 
current 1:* mapping
https://issues.apache.org/jira/browse/JCR-1080
JCR-1079Extend the IndexingConfiguration to allow configuration of 
reuseable analyzers
https://issues.apache.org/jira/browse/JCR-1079
JCR-1077Changelog not persisted during two phase commit in prepare phase 
https://issues.apache.org/jira/browse/JCR-1077
JCR-1075Error with predicate in query with multiple jcr:deref()
https://issues.apache.org/jira/browse/JCR-1075
JCR-1073Add getTotalSize() to QueryResults
https://issues.apache.org/jira/browse/JCR-1073
JCR-1070Promotion of SPI from Contrib
https://issues.apache.org/jira/browse/JCR-1070
JCR-1067Referenced beans in an object graph should be persisted by the ocm 
automatically
https://issues.apache.org/jira/browse/JCR-1067
JCR-1064Optimize queries that check for the existence of a property
https://issues.apache.org/jira/browse/JCR-1064
JCR-1062Add performance debug messages for queries
https://issues.apache.org/jira/browse/JCR-1062
JCR-1060New workspaces created in 1 cluster node are not automatically 
available in other cluster nodes
https://issues.apache.org/jira/browse/JCR-1060
JCR-1059Would like to have a default configuration for 
indexing_configuration.xml in the repository.xml 
https://issues.apache.org/jira/browse/JCR-1059
JCR-1052JCR valid names  not allowed in Xpath xml sintax
https://issues.apache.org/jira/browse/JCR-1052
JCR-1050Remove synchronization from JNDI data sources
https://issues.apache.org/jira/browse/JCR-1050
JCR-1048JNDIDatabaseFileSystem was not woring in tomcat webapp
https://issues.apache.org/jira/browse/JCR-1048
JCR-1047Update link for javadocs from 1.0 to 1.3
https://issues.apache.org/jira/browse/JCR-1047
JCR-1046Non-versionable children of a versionable node should not be 
updated when a merge fails
https://issues.apache.org/jira/browse/JCR-1046
JCR-1043Package names for spring project do not match update ocm packages
https://issues.apache.org/jira/browse/JCR-1043
JCR-1035Jackrabbit JCA - The client can bypass the managed connection and 
get the underlying JCR Session
https://issues.apache.org/jira/browse/JCR-1035
JCR-1026Add a FileSystem to 
org.apache.jackrabbit.core.query.lucene.SearchIndex
https://issues.apache.org/jira/browse/JCR-1026
JCR-1019Import/Add  the namespaces used in the mapping descriptors 
https://issues.apache.org/jira/browse/JCR-1019
JCR-1013Connection.setAutoCommit(...) fails if connection is managed for 
JNDIDatabasePersistenceManager
https://issues.apache.org/jira/browse/JCR-1013
JCR-1012JCR2SPI: Optimization for Item.refresh and Session.refresh
https://issues.apache.org/jira/browse/JCR-1012
JCR-1011JCR2SPI: add configurable cache for Item instances (ItemManager)
https://issues.apache.org/jira/browse/JCR-1011
JCR-1005More Fine grained Permission Flags
https://issues.apache.org/jira/browse/JCR-1005
JCR-1002QueryManager does not throw exception if property name contains a 
space
https://issues.apache.org/jira/browse/JCR-1002
JCR-996 Name and Path interfaces in SPI

[jira] Created: (JCR-1105) Log at debug level rather that warn in ItemStateMap

2007-09-02 Thread Florent Guillaume (JIRA)
Log at debug level rather that warn in ItemStateMap
---

 Key: JCR-1105
 URL: https://issues.apache.org/jira/browse/JCR-1105
 Project: Jackrabbit
  Issue Type: Improvement
  Components: core
Affects Versions: 1.3.1
Reporter: Florent Guillaume
Priority: Trivial


Please change org.apache.jackrabbit.core.state.ItemStateMap#put to log at DEBUG 
level rather that WARN. 

15:48:42,751 [main] WARN  ItemStateMap : overwriting map entry 
710c8476-e12d-9fcb-4556-0e02a7240bbf

(Such warnings don't mean anything to people analyzing application logs.)

--- 
jackrabbit-core/src/main/java/org/apache/jackrabbit/core/state/ItemStateMap.java
(revision 571983)
+++ 
jackrabbit-core/src/main/java/org/apache/jackrabbit/core/state/ItemStateMap.java
(working copy)
@@ -79,7 +79,7 @@
 public void put(ItemState state) {
 ItemId id = state.getId();
 if (map.containsKey(id)) {
-log.warn(overwriting map entry  + id);
+log.debug(overwriting map entry  + id);
 }
 map.put(id, state);
 }



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



Re: [VOTE] Approve the Sling project for incubation

2007-09-02 Thread Jukka Zitting
Hi,

On 8/27/07, Jukka Zitting [EMAIL PROTECTED] wrote:
 As described in [3], I'd like to call the Jackrabbit PMC to vote on
 sponsoring the Sling project and approving it for incubation. The vote
 is open for the next 72 hours and only votes from the Jackrabbit PMC
 members are binding. The vote passes if the majority of binding votes
 is positive.

The vote passes with 10 +1 votes (all binding) and no -1 votes.

+1 Jukka Zitting
+1 Edgar Poce
+1 Christophe Lombart
+1 Felix Meschberger
+1 Christoph Kiehl
+1 Marcel Reutegger
+1 Tobias Bocanegra
+1 Roy Fielding
+1 David Nuescheler
+1 Thomas Mueller

Thanks for voting! I'll ask the Incubator PMC to acknowledge the
result (as described in [1]) so we can get started with the podling.

[1] 
http://incubator.apache.org/incubation/Incubation_Policy.html#Entry+to+Incubation

BR,

Jukka Zitting


BR,

Jukka Zittnig