You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by tr...@apache.org on 2015/04/02 09:13:58 UTC

svn commit: r1670829 [4/7] - in /jackrabbit/site/trunk: ./ attic/ attic/cgi-bin/ attic/content/ attic/lib/ attic/templates/ cgi-bin/ content/ lib/ src/ src/site/ src/site/markdown/ src/site/resources/ src/site/resources/css/ src/site/resources/images/ ...

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-commons.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-commons.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-commons.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-commons.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,9 @@
+Title: Jackrabbit SPI Commons
+This is the SPI Commons component of the Apache Jackrabbit project. This
+component contains a number of general-purpose classes for use with SPI
+implementations: This also includes default implementations for the various
+*Info interfaces and for those interfaces that define the internal
+representation of JCR names, paths and Item identifiers.
+
+In addition this component provides utilities used to convert JCR name and
+path Strings as well as values to their corresponding SPI representation.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-dav.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-dav.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-dav.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-dav.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,8 @@
+Title: Jackrabbit SPI to DAV
+This is the SPI2DAV component of the Apache Jackrabbit project.
+
+<a name="JackrabbitSPItoDAV-APIdocumentation"></a>
+## API documentation
+
+* [jackrabbit-spi2dav 2.2](http://jackrabbit.apache.org/api/2.2/org/apache/jackrabbit/spi2dav/package-summary.html)
+* [jackrabbit-spi2davex 2.2](http://jackrabbit.apache.org/api/2.2/org/apache/jackrabbit/spi2davex/package-summary.html)

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-jcr.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-jcr.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-jcr.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi-to-jcr.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,4 @@
+Title: Jackrabbit SPI to JCR
+This is the SPI to JCR component of the Apache Jackrabbit project. This
+component contains an implementation of the [SPI interfaces](jackrabbit-spi.html)
+ wrapping around an implementation of JCR API.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-spi.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,84 @@
+Title: Jackrabbit SPI
+This is the SPI component of the Apache Jackrabbit project. The SPI enables
+a separation between transient and persistent components of the JCR
+repository. The transient component ("repository client") is implemented on
+top of the persistent component ("repository server") as a consumer of the
+SPI and, in turn, exposes the JCR API to the application. The SPI is not
+intended to be used by the application directly.
+
+!jackrabbit-spi.jpg!
+
+<a name="JackrabbitSPI-PrimaryGoals"></a>
+### Primary Goals
+
+The Primary goals of the SPI approach are to define support for
+client-server architecture and to ease the implementation of the JCR API.
+
+*Client-Server architecture*
+
+The SPI provides a natural division between the client and server
+components of a remote JCR repository. The SPI is designed with this usage
+in mind, enabling an implementation to minimize network traffic. The SPI
+lends itself to protocol mappings to protocols like WebDAV, SOAP or others
+in a straightforward yet meaningful way.
+
+*Implementation Support*
+
+Introducing the SPI can simplify the implementation of JCR on top of an
+existing repository by reducing the task to one of implementing the SPI.
+Such an implementation might then rely on a generic transient layer (such
+as e.g. [Jackrabbit JCR to SPI](jackrabbit-jcr-to-spi.html)
+) to provide the JCR API.
+
+<a name="JackrabbitSPI-ArchitectureandDesignOverview"></a>
+### Architecture and Design Overview
+
+The specific functions exposed by the SPI are:
+* Reading from and writing to the persistent storage.
+* Authentication
+* Access control
+* Locking
+* Query
+* Versioning
+* Direct to workspace XML import
+* Storage of the central namespace registry
+* Node type management, enforcement of constraints as well as definition
+storage.
+
+Therefore SPI designs a set of interfaces and methods needed to expose the
+functionality of the persistent layer of a compliant JCR repository. The
+main interfaces of the SPI are _RepositoryService_ and _Batch_.
+
+The _RepositoryService{_}interface defines the methods used to retrieve
+information from the persistent layer. In addition it contains the methods
+that affect the persistent state of the repository.
+
+The _Batch_ is an interface to an ordered list of primitive operations
+against the persistent layer. The _Batch_ is then submitted to the
+_RepositoryService_ to make the specified sequence of changes.
+
+In addition the SPI defines interfaces for internal representations of JCR
+name, JCR nath and Item identifiers. The SPI itself only uses names and
+paths in their fully qualified.
+
+<a name="JackrabbitSPI-ExistingImplementations"></a>
+### Existing Implementations
+
+The Jackrabbit project currently provides a single SPI implementation:
+* [Jackrabbit SPI to JCR](jackrabbit-spi-to-jcr.html)
+: An implementation of the SPI interfaces wrapping an implementation of the
+JCR API such as e.g. Jackrabbit Core.
+
+Other SPI implementations can be found in the _sandbox_ folder of the
+Jackrabbit project.
+* *SPI to WebDAV*: SPI implementation on top of WebDAV connecting to a [Jackrabbit JCR Server](jackrabbit-jcr-server.html)
+.
+* *SPI-RMI*: A RMI layer.used to remote any SPI implementation. While [Jackrabbit SPI to JCR](jackrabbit-spi-to-jcr.html)
+ and _SPI to WebDAV_ really are repository implementations, the _SPI-RMI_
+is rather a 'repeater' for SPI calls using RMI.
+* *SPI Logger*: Utility implementation to log SPI usage.
+
+See the image below for a overview over existing and planned SPI
+implementations.
+
+!jackrabbit-spi-overview.gif!

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2005.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2005.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2005.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2005.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,20 @@
+Title: Jackrabbit Status April 2005
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2005/board_minutes_2005_04_27.txt)
+ of the Apache board meeting on April 27th, 2005:_
+
+http://incubator.apache.org/jackrabbit/
+http://incubator.apache.org/projects/jackrabbit.html
+
+Jackrabbit is doing well as a project and is attracting interest both
+within other Apache projects (Lenya and Graffito in particular) as well as
+from new folks in the Java community. We added two new committers, Jukka
+Zitting and Dominique Pfister, and have received sustained contributions
+from Serge Huber, Edgar Poce, Angela Schreiber, Felix Meschberger, and
+others.
+
+Jackrabbit's only problem right now is continued reliance on JCP EG private
+discussions due to the unfinished nature of the JSR 170 Content Repository
+for Java Technology API.  JSR 170 is expected to be submitted for final
+draft status in early May, after which all of the discussion can be moved
+to Apache lists. We anticipate graduating from Incubator sometime soon
+after that.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-april-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,31 @@
+Title: Jackrabbit Status April 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_04_26.txt)
+ of the Apache board meeting on April 26th, 2006:_
+
+Over the past month, Apache Jackrabbit completed its graduation from
+incubator, moved to its new home at jackrabbit.apache.org, and made our big
+1.0 release using the mirrors.
+
+* http://jackrabbit.apache.org/
+* http://www.apache.org/dist/jackrabbit/RELEASE-NOTES.txt
+
+The only thing of board interest is that we have implemented the file
+header proposed on legal-discuss last year.
+
+
+    /*
+    * Licensed to the Apache Software Foundation (ASF) under one or more
+    * contributor license agreements.  The ASF licenses this file to You
+    * under the Apache License, Version 2.0 (the "License"); you may not
+    * use this file except in compliance with the License.
+    * You may obtain a copy of the License at
+    *
+    *      http://www.apache.org/licenses/LICENSE-2.0
+    *
+    * Unless required by applicable law or agreed to in writing, software
+    * distributed under the License is distributed on an "AS IS" BASIS,
+    * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    * See the License for the specific language governing permissions and
+    * limitations under the License.
+    */
+

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,54 @@
+Title: Jackrabbit Status December 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_12_20.txt)
+ of the Apache board meeting on December 20th, 2007:_
+
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project has progressed nicely since the September
+status report. We have no board-level issues at this time.
+
+<a name="JackrabbitStatusDecember2006-Releases"></a>
+## Releases
+
+We have released two versions of Apache Jackrabbit: 1.1 in October and
+1.1.1 in December.
+
+The 1.2 release is scheduled to happen by the end of the year.
+
+<a name="JackrabbitStatusDecember2006-Community"></a>
+## Community
+
+No new committers have been added since September. One contributor was just
+elected for committership, but the process is still pending on us receiving
+the required CLAs.
+
+The number of active contributors has grown lately, and I expect to see new
+committers being elected in near future. Most notably we've seen a number
+of contributions from employees of Cognifide, a consulting company with JCR
+expertise. A CCLA has been requested.
+
+There were two short Apache Jackrabbit presentations during the ApacheCon
+US and some discussion on potential cooperation with other related Apache
+projects.
+
+<a name="JackrabbitStatusDecember2006-Development"></a>
+## Development
+
+The Jackrabbit build environment was recently upgraded to Maven 2 along
+with a restructuring of the Jackrabbit component projects.
+
+An initial clustering implementation was added to Jackrabbit core and will
+go out as a beta feature in the 1.2 release.
+
+The Jackrabbit dependencies to Apache Lucene and Apache Derby were upgraded
+to more recent versions.
+
+A number of forward-looking design discussions have occurred on the mailing
+list, often based on feedback from outside the core development group.
+
+<a name="JackrabbitStatusDecember2006-Infrastructure"></a>
+## Infrastructure
+
+We've requested a Solaris zone for setting up nightly builds and automating
+integration tests and Maven reporting.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2007.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2007.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2007.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2007.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,50 @@
+Title: Jackrabbit Status December 2007
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2007/board_minutes_2007_12_19.txt)
+ of the Apache board meeting on December 19th, 2007:_
+
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusDecember2007-Releases"></a>
+## Releases
+
+Apache Jackrabbit 1.3.3 was released in October.
+
+We are currently working on the 1.4 release. Jackrabbit 2.0, with JCR 2.0
+support, will likely be released next year.
+
+<a name="JackrabbitStatusDecember2007-Community"></a>
+## Community
+
+Martijn Hendriks and Ard Schrijvers were added as a committers and PMC
+members.
+
+The recent decision by the Apache Jakarta PMC to close the Slide project
+has brought a number of people interested in WebDAV to the Jackrabbit
+mailing lists. Most notably there is interest in extending and further
+developing the WebDAV client library in Jackrabbit. We may well end up
+working together with the new Apache HttpComponents project on this front.
+
+<a name="JackrabbitStatusDecember2007-Development"></a>
+## Development
+
+The main development focus at the moment it on the 1.4 release, but there's
+already some work towards implementing the new JCR 2.0 features being
+specified by Jsr 283.
+
+Once the 1.4 release is out we will need to decide when and how to split
+Jackrabbit into separate JCR 2.0 development and JCR 1.0 maintenance
+branches.
+
+A sandbox project was started for prototyping the Jackrabbit Next
+Generation Persistence proposal that tries to address some long term
+architectural issues in Jackrabbit.
+
+<a name="JackrabbitStatusDecember2007-Infrastructure"></a>
+## Infrastructure
+
+We have acquired a Confluence wiki space for managing our project web site
+but we have yet to migrate the web site contents.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2008.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2008.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2008.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2008.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,65 @@
+Title: Jackrabbit Status December 2008
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusDecember2008-Releases"></a>
+## Releases
+
+We released Apache Jackrabbit 1.5.0 on December 8th.
+
+We also made the following patch releases from the 1.4 branch:
+
+* jackrabbit-core 1.4.6 on October 7th
+* jackrabbit-classloader 1.4.1 on October 2nd
+* jackrabbit-jcr-server 1.4.1 on September 30th
+
+<a name="JackrabbitStatusDecember2008-Legal"></a>
+## Legal
+
+We use Google Analytics to track usage of our web site. We posted a privacy
+policy that mentions the Analytics use on our web site and continue to work
+with legal-discuss@ to resolve concerns that were raised about the use of
+Google Analytics.
+
+<a name="JackrabbitStatusDecember2008-Community"></a>
+## Community
+
+Claus Koell joined the Jackrabbit team as a committer and PMC member.
+
+The slump in community activity over late summer seems to be gone and we're
+back to normal levels of mailing list and commit activity.
+
+Based on interest to the CMIS implementation effort (see below), we have
+extended write access in our sandbox area in svn to all Apache committers.
+
+We are considering starting a "JCR Commons" subproject for managing the
+development and release of a number of our components that are not tightly
+coupled with the Jackrabbit content repository implementation. This
+subproject would keep using our existing mailing lists but would have its
+own web site (under http://jackrabbit.apache.org/commons/) and separate
+issue trackers and release cycles for each component. See
+http://markmail.org/message/qqlvlwpgi5oauak6 for more details.
+
+<a name="JackrabbitStatusDecember2008-Development"></a>
+## Development
+
+Development in trunk continues with post-1.5 features, and I expect us to
+release Jackrabbit 1.6 early next year. Jackrabbit 2.0 (and the JSR 283
+reference implementation) will probably be released later next year.
+
+A new sandbox component was started for an effort to implement the proposed
+Content Management Interoperability Services (CMIS) specification on top of
+a JCR content repository.
+
+<a name="JackrabbitStatusDecember2008-Infrastructure"></a>
+## Infrastructure
+
+We created a new Jira project (JCRCMIS) for the CMIS implementation effort
+and plan to create more assuming the JCR Commons subproject gets started.
+
+We've enabled wiki markup and the patch-available workflow in the JCRCMIS
+project. If these features work well, we will enable them also in our main
+JCR project in Jira.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2009.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2009.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2009.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2009.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,64 @@
+Title: Jackrabbit Status December 2009
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusDecember2009-Releases"></a>
+## Releases
+
+Jackrabbit 2.0 reached beta status with the following releases:
+
+* Apache Jackrabbit 2.0 alpha11 on September 23rd
+* Apache Jackrabbit 2.0 beta1 on October 30th
+* Apache Jackrabbit 2.0 beta3 on November 25th
+* Apache Jackrabbit 2.0 beta4 on December 12th
+
+We also made two releases from the old 1.4 maintenance branch:
+
+* jackrabbit-core 1.4.10 on September 15th
+* jackrabbit-core 1.4.11 on September 23rd
+
+We made two releases of the Jackrabbit parent POM:
+
+* org.apache.jackrabbit:jackrabbit:4 on September 14th
+* org.apache.jackrabbit:jackrabbit:5 on October 4th
+
+<a name="JackrabbitStatusDecember2009-Legal"></a>
+## Legal
+
+We're tracking the [LEGAL-50](https://issues.apache.org/jira/browse/LEGAL-50)
+ and [LEGAL-62|https://issues.apache.org/jira/browse/LEGAL-62]
+ issues for further comments, but currently we have no open legal action
+items.
+
+We are interested in figuring out how the new trademark policy affects our
+logo, website and releases, and what steps we need to take to meet the
+policy.
+
+<a name="JackrabbitStatusDecember2009-Community/Development"></a>
+## Community / Development
+
+Jackrabbit participated in the Content Technology track and the !NoSQL
+meetup at ApacheCon US 2009.
+
+The development branch related to database connection pooling has been
+merged back to Jackrabbit trunk and the results are included in the
+Jackrabbit 2.0 beta4 release.
+
+We've discussed with Apache Sling about taking over some !OSGi bundling
+code they've written for Jackrabbit. On the other hand there is some code
+in Jackrabbit that's only being used by Sling and that might end up being
+adopted by them. We're considering making parts of our svn tree writable by
+members of both projects to simplify such cooperation.
+
+<a name="JackrabbitStatusDecember2009-Infrastructure"></a>
+## Infrastructure
+
+We received some spam through Nabble on our dev@ list, and have asked
+Nabble to disable posts through the web interface.
+
+We reconfigured the Jackrabbit entry on Ohloh to get code statistics for
+the Git mirror at git.apache.org since the svn history seen by Ohloh didn't
+include the time when Jackrabbit was still incubating.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2010.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2010.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2010.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2010.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,44 @@
+Title: Jackrabbit Status December 2010
+Apache Jackrabbit™ is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusDecember2010-Releases"></a>
+## Releases
+
+The biggest news this quarter is the release of Jackrabbit 2.2:
+
+* Apache Jackrabbit 2.2.0 on December 14th
+
+We also made a number of smaller patch releases:
+
+* Apache Jackrabbit 2.1.3 on December 7th
+* Apache Jackrabbit 2.1.2 on October 31st
+* Apache Jackrabbit 2.0.3 on October 31st
+* Apache Jackrabbit 1.6.4 on October 12th
+
+<a name="JackrabbitStatusDecember2010-Legal/Branding"></a>
+## Legal / Branding
+
+We have updated our project branding to match the new branding guidelines
+except for a few details that still need to be discussed on trademarks@.
+
+<a name="JackrabbitStatusDecember2010-Community/Development"></a>
+## Community / Development
+
+No new committers were added in this quarter, but a few old committers have
+become active again and we're seeing good levels of activity from other
+contributors.
+
+Day Software, the employer of many Jackrabbit committers, was recently
+acquired by Adobe. We expect this acquisition to have little impact on
+their contributions to Jackrabbit.
+
+<a name="JackrabbitStatusDecember2010-Infrastructure"></a>
+## Infrastructure
+
+We are currently using a Confluence wiki for managing our project web site,
+but would like to migrate to an alternative system. The most promising
+alternatives are the new CMS or an svnpubsub-based site built with Maven.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2011.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2011.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2011.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-december-2011.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,47 @@
+Title: Jackrabbit Status December 2011
+The Apache Jackrabbit™ content repository is a fully conforming
+implementation of the Content Repository for Java™ Technology API (JCR,
+specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusDecember2011-Releases"></a>
+## Releases
+
+We made the following unstable 2.3.x releases from Jackrabbit trunk.
+
+* Apache Jackrabbit 2.3.4 on November 29th
+* Apache Jackrabbit 2.3.3 on November 15th
+* Apache Jackrabbit 2.3.2 on November 2nd
+* Apache Jackrabbit 2.3.0 on October 3rd
+
+The following patch releases were made from earlier maintenance branches:
+
+* Apache Jackrabbit 2.2.10 on November 22nd
+* Apache Jackrabbit 2.2.9 on October 3rd
+* Apache Jackrabbit 2.1.6 on October 3rd
+* Apache Jackrabbit 2.0.5 on October 3rd
+* Apache Jackrabbit 1.6.5 on October 3rd
+
+<a name="JackrabbitStatusDecember2011-Community/Development"></a>
+## Community / Development
+
+Bart van der Schans and Justin Edelson joined the Jackrabbit team as
+committers and PMC members.
+
+We adopted an even/odd versioning scheme for stable/unstable releases and
+started cutting unstable 2.3.x releases directly from trunk. A stable 2.4.0
+release and the accompanying stable 2.4 maintenance branch is planned for
+January 2012.
+
+The end of life of Jackrabbit 1.x was announced, with 1.6.5 being the last
+1.x release we plan to make.
+
+Active work on the new microkernel prototype targeting Jackrabbit 3.0
+continues.
+
+<a name="JackrabbitStatusDecember2011-Infrastructure"></a>
+## Infrastructure
+
+We started working on migrating from Confluence to the new CMS.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-january-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-january-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-january-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-january-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,15 @@
+Title: Jackrabbit Status January 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_01_18.txt)
+ of the Apache board meeting on January 18th, 2006:_
+
+Jackrabbit added four new committers to the project this quarter:
+
+* Serge Huber
+* Felix Meschberger
+* Brian Moseley
+* Angela Schreiber
+
+in recognition of their outstanding and sustained contributions to the
+project. Jukka Zitting has volunteered to be the RM for our first set of
+incubating releases. We plan to seek graduation from incubator as soon as
+we have a track record for a successful release vote.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2005.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2005.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2005.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2005.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,16 @@
+Title: Jackrabbit Status July 2005
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2005/board_minutes_2005_07_28.txt)
+ of the Apache board meeting on July 28th, 2005:_
+
+Jackrabbit has attracted public interest from many different projects, both
+open source and commercial in nature, and has over 250 people reading the
+developer list.  During the past quarter we added one new committer, Edgar
+Poce, and cleared the minimum threshold of three independent committers.
+
+The big news is that JCR, the Content Repository for Java Technology 1.0
+API, has been completed by the JSR 170 expert group and received final
+approval from the J2SE/EE executive committee at the end of May.  We are
+currently working on restructuring the Jackrabbit project directories in
+preparation of an eagerly anticipated first release candidate and passing
+the official TCK, at which point we are hoping to graduate from Incubator
+to TLP status for the 1.0 release.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-july-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,21 @@
+Title: Jackrabbit Status July 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_07_19.txt)
+ of the Apache board meeting on July 19th, 2006:_
+
+The Apache Jackrabbit project has had a relatively quiet two months since
+our last report.  We have not added any new committers and we have no board
+issues at this time.
+
+We successfully released Apache Jackrabbit 1.0.1 on June 2nd and are
+currently working on a 1.1 release.  Most of the effort has been around
+cleaning up the edge cases as more new developers send in bug reports
+related to their own application's use of the 1.0 release.  We also have
+one active SoC project working on a backup system for JCR repositories. 
+Hopefully, we'll be seeing more patches soon from developers outside the
+core committers. I would be happier if we had some new blood to nominate
+for the PMC.
+
+At some point over the next two months, I am hoping to turn over the
+Jackrabbit PMC chair position to someone else on the project. Being chair
+of two different projects is a bit too distracting and I think more people
+need to learn how to do it.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2007.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2007.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2007.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2007.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,49 @@
+Title: Jackrabbit Status June 2007
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2007/board_minutes_2007_06_20.txt)
+ of the Apache board meeting on July 20th, 2007:_
+
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusJune2007-Releases"></a>
+## Releases
+
+Apache Jackrabbit 1.3 was released in April.
+
+We are currently working on the 1.3.1 release, and initial planning for a
+1.4 release later this year and 2.0 next year has begun.
+
+<a name="JackrabbitStatusJune2007-Community"></a>
+## Community
+
+Christophe Lombart was added as a committer and PMC member.
+
+An object-content mapping tool was successfully moved from the incubating
+Graffito project into a Jackrabbit subproject.
+
+Jackrabbit received lots of attention in ApacheCon EU where we had one
+tutorial and one normal session on Jackrabbit and JCR. A Jackrabbit BOF
+session also took place, although it ended up being quite unstructured.
+
+We have two Google Summer of Code projects in progress this summer. Both
+projects have been relatively quiet so far, but hopefully we'll get them up
+to speed soon.
+
+Jacco van Weert has announced a nice JCR Controller tool on the user
+mailing list and is interested in bringing it to Jackrabbit through the
+Apache Incubator.
+
+<a name="JackrabbitStatusJune2007-Development"></a>
+## Development
+
+Jackrabbit is being actively developed on a number of fronts. Increasing
+numbers of good patches are coming in, and various technical and
+architectural issues are being actively debated on the mailing lists.
+
+The public draft of the upcoming JCR 2.0 specification will probably be
+soon released by JSR 283. We are planning to use the public draft as the
+main requirements document when implementing the changes and new features
+required to make Jackrabbit 2.0 the reference implementation of JSR 283.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2008.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2008.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2008.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2008.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,54 @@
+Title: Jackrabbit Status June 2008
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusJune2008-Releases"></a>
+## Releases
+
+Since the last report we made a number of small component releases and one
+older maintenance release. The releases were:
+
+* March 26, 2008: jackrabbit-core 1.4.2
+* April 2, 2008: jackrabbit-jcr-commons 1.4.2
+* April 9, 2008: jakcrabbit-jcr-rmi 1.4.1
+* May 8, 2008: Apache Jackrabbit 1.3.4
+* May 8, 2008: jackrabbit-core 1.4.3
+* May 9, 2008: jackrabbit-core 1.4.4
+* June 9, 2008: jackrabbit-core 1.4.5
+
+<a name="JackrabbitStatusJune2008-Legal"></a>
+## Legal
+
+The license issue noted in the previous report (external party using our
+code without proper attribution) has been resolved.
+
+We have been clarifying our LICENSE and NOTICE files based on recent
+discussions on legal-discuss@ and the incubating sling-dev@ mailing lists.
+
+<a name="JackrabbitStatusJune2008-Community"></a>
+## Community
+
+Esteban Franqueiro and Alexander Klimetschek became committers and PMC
+members of Apache Jackrabbit.
+
+Many members of our community attended ApacheCon EU and we also organized a
+free-for-everyone JCR community gathering along the conference.
+
+<a name="JackrabbitStatusJune2008-Development"></a>
+## Development
+
+We are working towards Jackrabbit 1.5 in near future and Jackrabbit 2.0
+(and the JSR 283 reference implementation) later on.
+
+<a name="JackrabbitStatusJune2008-Infrastructure"></a>
+## Infrastructure
+
+We switched to Hudson for our CI builds.
+
+We requested and got FishEye indexing for our codebase.
+
+The svn.eu.apache.org mirror is much appreciated as most of our committers
+are based in Europe.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2009.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2009.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2009.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2009.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,53 @@
+Title: Jackrabbit Status June 2009
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusJune2009-Releases"></a>
+## Releases
+
+We made the following releases from the 1.5 branch:
+
+* Apache Jackrabbit 1.5.4 on April 7th
+* Apache Jackrabbit 1.5.5 on April 28th
+* Apache Jackrabbit 1.5.6 on June 4th
+
+We also made the first alpha release of the upcoming Jackrabbit 2.0:
+
+* Apache Jackrabbit 2.0 alpha1 on June 4th
+
+<a name="JackrabbitStatusJune2009-Legal"></a>
+## Legal
+
+The current Jackrabbit trunk and the 2.0 alpha1 release have a system
+dependency to an early "for review only" version of the JCR 2.0 API jar
+from JSR 283. No major concerns were raised when this case was discussed on
+the legal-discuss@ mailing list.
+
+<a name="JackrabbitStatusJune2009-Community/Development"></a>
+## Community / Development
+
+Jackrabbit was present at the ApacheCon EU where we also organized a quite
+successful JCR meetup.
+
+The CMIS effort that started in the Jackrabbit sandbox has now become the
+Apache Chemistry project in the Incubator. The other podling with
+Jackrabbit as the sponsoring PMC, Apache Sling, is just about to graduate
+into a standalone TLP.
+
+The JCR 2.0 specification (JSR 283) is expected to become final in a few
+months, as soon as we've completed the required RI and TCK work in
+Jackrabbit trunk. We're producing source-only alpha releases of the 2.0
+codebase to give people a chance to review all the new features and to
+better track our progress.
+
+We are also planning to release Jackrabbit 1.6 as the last minor release
+from the 1.x branch that's still based on the JCR 1.0 API.
+
+<a name="JackrabbitStatusJune2009-Infrastructure"></a>
+## Infrastructure
+
+We are about to start using the Nexus installation at repository.apache.org
+for staging and deploying our releases to the Maven repository.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2010.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2010.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2010.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2010.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,57 @@
+Title: Jackrabbit Status June 2010
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusJune2010-Releases"></a>
+## Releases
+
+Jackrabbit 2.1 was released in April:
+
+* Apache Jackrabbit 2.1.0 on April 22nd
+
+We also made maintenance releases from the 1.6 and 1.4 branches:
+
+* Apache Jackrabbit 1.6.2 on June 7th
+* jackrabbit-core 1.4.12 on June 7th
+
+<a name="JackrabbitStatusJune2010-Legal"></a>
+## Legal
+
+The question in [LEGAL-50](https://issues.apache.org/jira/browse/LEGAL-50)
+ about redistribution of the standard JCR API jar has now been officially
+resolved. Thanks to the legal team for the closure on this! With LEGAL-50
+resolved, we have no open legal issues.
+
+We use RAT for automatic license header checks as a part of our normal
+Hudson CI builds, and the accuracy of our LICENSE and NOTICE files is
+manually reviewed before each release.
+
+<a name="JackrabbitStatusJune2010-Community/Development"></a>
+## Community / Development
+
+No new committers were added in this quarter. This is our third consequtive
+quarter with no new committers. It looks like we need to pay more attention
+to helping out and mentoring contributors. We have traditionally maintained
+relatively high entry criteria for new committers.
+
+Community diversity remains an issue we pay attention to, as the bulk of
+Jackrabbit development is still done by one company. In this quarter we've
+had eight people committing to Jackrabbit trunk, six of whom are employees
+of Day Software. We satisfy the criteria of at least three independent
+active committers and the community is healthy. Thus I don't see diversity
+as an immediate problem for Jackrabbit, but it's a topic we are aware of
+especially in light of the few new committers we've recently attracted.
+
+<a name="JackrabbitStatusJune2010-Infrastructure"></a>
+## Infrastructure
+
+The Confluence upgrade caused some breakage on our web site and required
+manual fixing. We are not too happy with our current Confluence auto-export
+setup, and are considering other options.
+
+Some of our Hudson builds have been failing due to generic Hudson problems.
+We're hoping that the new master server will solve these issues. We're also
+looking forward to a chance to set up a Sonar instance for Apache projects.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2011.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2011.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2011.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-june-2011.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,35 @@
+Title: Jackrabbit Status June 2011
+The Apache Jackrabbit™ content repository is a fully conforming
+implementation of the Content Repository for Java™ Technology API (JCR,
+specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusJune2011-Releases"></a>
+## Releases
+
+We made three Jackrabbit 2.1.x and 2.2.x patch releases in this quarter:
+
+* Apache Jackrabbit 2.2.7 on June 7th
+* Apache Jackrabbit 2.1.5 on June 7th
+* Apache Jackrabbit 2.2.5 on March 18th
+
+<a name="JackrabbitStatusJune2011-Legal/Branding"></a>
+## Legal / Branding
+
+No open issues.
+
+<a name="JackrabbitStatusJune2011-Community/Development"></a>
+## Community / Development
+
+Dave Brosius and Alex Parvulescu joined the Jackrabbit project as
+committers and PMC members.
+
+A new Jackrabbit 3 prototype has been started based on the proposed
+microkernel concept.
+
+<a name="JackrabbitStatusJune2011-Infrastructure"></a>
+## Infrastructure
+
+We will be migrating our web site from Confluence to the new CMS soon.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,17 @@
+Title: Jackrabbit Status March 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_03_15.txt)
+ of the Apache board meeting on March 15th, 2006:_
+
+Jackrabbit accomplished its first official incubating release with version
+0.9 of the Apache Jackrabbit reference implementation and JCR-RMI tools.
+Day Software has confirmed that the version 0.9 jars have passed the JCR
+1.0 TCK with the current exclude list.
+
+We are now getting reorganized for graduation from the Incubator to our own
+top-level project at the Apache Software Foundation. The Jackrabbit
+committers voted on March 11, 2006, to request graduation. In addition, we
+made a call to refresh the list of active committers for an accurate
+presentation to the board; Stefano Mazzocchi, Gianugo Rabellino, Tim
+Reilly, and Andrew Savory have requested emeritus status, meaning that they
+won't be listed on the initial project management committee but are welcome
+to come back if they choose to rejoin the project at a later time.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2007.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2007.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2007.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2007.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,69 @@
+Title: Jackrabbit Status March 2007
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2007/board_minutes_2007_03_28.txt)
+ of the Apache board meeting on March 28th, 2007:_
+
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusMarch2007-Releases"></a>
+## Releases
+
+We released three versions of Apache Jackrabbit; 1.2.1 in January, 1.2.2 in
+February, and 1.2.3 in March.
+
+The 1.2 release candidate needed to be cancelled and repackaged as 1.2.1
+due to a last-minute issue that was raised during the release vote. This
+prompted a discussion on release candidates and versioning, which in turn
+resulted in some improvements to our release process.
+
+We are currently working on the 1.3 release.
+
+<a name="JackrabbitStatusMarch2007-Community"></a>
+## Community
+
+Przemyslaw Pakulski was added as a committer and PMC member.
+
+The user mailing list that was launched last year has reached the activity
+level of the development list and continues steady growth. The total
+mailing list activity is now higher than ever before.
+
+One session and one tutorial on JCR/Jackrabbit have been scheduled for the
+upcoming ApacheCon EU. We are also planning to organize a Jackrabbit BOF
+during the conference.
+
+Based on the experiences from last summer, we are proposing a Google Summer
+of Code 2007 project to build a JCR demo application based on Apache
+Jackrabbit.
+
+There is interest in starting a new incubating content analysis toolkit
+project named Tika. Hopefully the project will as a side effect build more
+bridges between the Lucene and Jackrabbit communities.
+
+<a name="JackrabbitStatusMarch2007-Development"></a>
+## Development
+
+The 1.2 releases include a new beta-level clustering feature that is
+attracting much interest. Many corner cases are being ironed out based on
+feedback and bug reports from the user community, and it seems that we can
+soon declare the feature stable.
+
+The main new feature in the 1.3 release is a set of "bundle persistence
+manager" components contributed by Day. These components bring a major
+performance boost to many Jackrabbit user cases. The contributed IP has
+been cleared and is now being integrated into the Jackrabbit codebase.
+
+There have been a number of cases where users have suggested some internal
+changes to better handle specific performance and other requirements.
+Unfortunately few of such discussions have resulted in proposed patches. We
+should do better to encourage patch submissions.
+
+<a name="JackrabbitStatusMarch2007-Infrastructure"></a>
+## Infrastructure
+
+The Solaris zone we requested is now up and running. We have a Continuum
+installation doing nightly builds and continuous integration tests for all
+the Jackrabbit release components. So far we've seen zero build-breaking
+commits.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2008.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2008.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2008.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2008.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,64 @@
+Title: Jackrabbit Status March 2008
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusMarch2008-Releases"></a>
+## Releases
+
+Apache Jackrabbit 1.4 was released in January.
+
+We are considering switching to releasing individual components in a more
+frequent and fine-grained manner. So far Jackrabbit releases have contained
+new versions of all Jackrabbit components.
+
+The first component release, jackrabbit-core 1.4.1, was made in February.
+
+<a name="JackrabbitStatusMarch2008-Legal"></a>
+## Legal
+
+Apache Jackrabbit uses or bundles no cryptographic code, so there is no
+need for export control notifications.
+
+We have identified a minor license violation by an external party bundling
+Jackrabbit code without meeting all the ALv2 requirements (no NOTICE file,
+etc.). With help from the legal team, we have notified the party in
+question and expect the issue to be resolved soon.
+
+<a name="JackrabbitStatusMarch2008-Community"></a>
+## Community
+
+The Jackrabbit PMC has voted to invite Esteban Franqueiro to be a
+Jackrabbit committer and PMC member. We are waiting for the CLA to proceed
+with the committer account and other administrative bits.
+
+We are planning to have a JCR community gathering event right next to the
+ApacheCon EU next month in Amsterdam.
+
+<a name="JackrabbitStatusMarch2008-Development"></a>
+## Development
+
+The 1.4 release was well received, and with increased usage we've also seen
+many requests to make the default installation and out-of-the-box
+experience smoother for new users. We're working on addressing those needs.
+
+The ongoing work towards the JCR 2.0 reference implementation continues,
+and with major new features and changes entering the codebase we may see
+some instability of the trunk during the months ahead. On the other hand
+there's recently been much focus on improving test coverage and more test
+automation, which should help us maintain stability of the codebase.
+
+Some of our users are not yet ready to upgrade from 1.3 to 1.4, so we are
+working on the 1.3 maintenance branch to produce a 1.3.4 release with
+selected bug fixes and improvements from newer releases.
+
+<a name="JackrabbitStatusMarch2008-Infrastructure"></a>
+## Infrastructure
+
+Our web site is now managed using Confluence.
+
+We have had problems with our private Continuum installation in the
+Jackrabbit zone, and so we are currently migrating our CI builds to the
+Hudson zone.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2009.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2009.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2009.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2009.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,65 @@
+Title: Jackrabbit Status March 2009
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusMarch2009-Releases"></a>
+## Releases
+
+We made the following two releases from the 1.5 branch:
+
+* Apache Jackrabbit 1.5.2 on January 20th
+* Apache Jackrabbit 1.5.3 on February 27th
+
+The 1.5.2 release contained a fix to the security issue CVE-2009-0026
+(Cross site scripting issues in webapp). This was the first security issue
+we had received through security@, and we had some initial confusion on how
+we should react to such issues. The security team was very helpful in
+guiding us.
+
+We also made the following component releases from the older 1.4 branch:
+
+* jackrabbit-core 1.4.7 on January 20th
+* jackrabbit-core 1.4.8 on January 29th
+* jackrabbit-core 1.4.9 on March 3rd
+
+To get the JCR Commons subproject started we created and released a
+standalone Jackrabbit parent POM:
+
+* org.apache.jackrabbit:parent:2 on February 6th
+
+<a name="JackrabbitStatusMarch2009-Legal"></a>
+## Legal
+
+No issues at the moment.
+
+<a name="JackrabbitStatusMarch2009-Community/Development"></a>
+## Community / Development
+
+Michael Duerig joined the Jackrabbit team as a committer and PMC member.
+
+The JCR Commons subproject was started after related discussion and a vote.
+We are still in the process of setting up this new subproject. To respond
+to earlier feedback from the board: we decided *not* to move these
+components to Apache Commons to avoid splitting the development community.
+
+There is continuous interest in the JCR-based CMIS implementation we are
+developing in our sandbox. Florent Guillaume, who is not (yet) an Apache
+committer, is working on a related codebase in an external Mercurial
+repository under the working name "Chemistry". There are concerns over the
+development being split over different source repositories. For now we hope
+to bring all development into Apache svn and plan to manage the effort as
+organic growth within the Jackrabbit project, possibly targetting a
+subproject once the effort matures. Another option is to push the effort to
+the Incubator as a new podling.
+
+Starting with the 1.5.3 release our release notes include a section that
+acknowledges everyone who has contributed to that release. The contents of
+this section is based on the contribution report in Jira.
+
+Work in Jackrabbit trunk continues and I expect us to release Jackrabbit
+1.6.0 in a few months. After the 1.6 release we'll most likely start
+targeting Jackrabbit 2.0 for release later this year. Jackrabbit 2.0 will
+require Java 5 as the base platform.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2010.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2010.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2010.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2010.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,43 @@
+Title: Jackrabbit Status March 2010
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusMarch2010-Releases"></a>
+## Releases
+
+Jackrabbit 2.0 was released in January after all the main issues in
+previous beta releases had been fixed:
+
+* Apache Jackrabbit 2.0 beta5 on January 11th
+* Apache Jackrabbit 2.0 beta6 on January 18th
+* Apache Jackrabbit 2.0.0 on January 27th
+
+We also made one maintenance release from the 1.6 branch:
+
+* Apache Jackrabbit 1.6.1 on January 21st
+
+<a name="JackrabbitStatusMarch2010-Legal"></a>
+## Legal
+
+We have updated our NOTICE files as discussed in [LEGAL-62](https://issues.apache.org/jira/browse/LEGAL-62)
+ and [LEGAL-59|https://issues.apache.org/jira/browse/LEGAL-59]
+.
+
+<a name="JackrabbitStatusMarch2010-Community/Development"></a>
+## Community / Development
+
+No new committers were added in this quarter.
+
+With Jackrabbit 2.0 out, we've started discussing about what we want to
+achieve in Jackrabbit 3, our next major release. These design discussions
+have been pretty lively and it's good to see many voices from outside the
+core development team participating in the email threads. The first bits of
+related prototype code have already hit our sandbox area in svn.
+
+<a name="JackrabbitStatusMarch2010-Infrastructure"></a>
+## Infrastructure
+
+No open issues.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2011.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2011.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2011.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-march-2011.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,37 @@
+Title: Jackrabbit Status March 2011
+Apache Jackrabbit™ is a fully conforming implementation of the Content
+Repository for Java™ Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusMarch2011-Releases"></a>
+## Releases
+
+We made three Jackrabbit 2.2.x patch releases in this quarter:
+
+* Apache Jackrabbit 2.2.4 on February 15th
+* Apache Jackrabbit 2.2.2 on January 26th
+* Apache Jackrabbit 2.2.1 on January 11th
+
+<a name="JackrabbitStatusMarch2011-Legal/Branding"></a>
+## Legal / Branding
+
+No open issues.
+
+<a name="JackrabbitStatusMarch2011-Community/Development"></a>
+## Community / Development
+
+Our efforts to better identify key contributors and offer them
+committership are starting to bear fruit. In this quarter Berry van
+Halderen and Thomas Draier joined us as committers and PMC members, and we
+are expecting to welcome more members soon.
+
+We are happy to see Apache Chemistry reach TLP status, and contributed a
+supporting quote to the press release about their graduation.
+
+<a name="JackrabbitStatusMarch2011-Infrastructure"></a>
+## Infrastructure
+
+We have consensus on moving our web site from Confluence to the new CMS,
+but have yet to start the migration.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-may-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-may-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-may-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-may-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,17 @@
+Title: Jackrabbit Status May 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_05_24.txt)
+ of the Apache board meeting on May 24th, 2006:_
+
+The Apache Jackrabbit project has had a relatively quiet month since our
+last report.  We have no board issues at this time.
+
+The response to our 1.0 release has been very positive and the number of
+active participants on the dev list has increased substantially. Many of
+the Jackrabbit developers attended the JSR 283 face-to-face meeting in
+Basel, Switzerland, on May 2-3. The JSR 283 EG agreed that Jukka Zitting
+could publish a summary of what was being planned for future JCR API
+revisions to the public Apache lists.  Issue items and proposals for the
+JCR 1.1 and 2.0 APIs are being tracked at <https://jsr-283.dev.java.net/>. 
+All of the Jackrabbit committers are also members of the JSR 283 expert
+group.
+

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2004.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2004.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2004.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2004.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,15 @@
+Title: Jackrabbit Status October 2004
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2004/board_minutes_2004_10_20.txt)
+ of the Apache board meeting on October 20th, 2004:_
+
+
+The Jackrabbit project has completed all of the Incubator checklist items
+in terms of moving to Apache and getting the IP transfer done. With the
+help of Maven, we have a full website set up at
+
+* http://incubator.apache.org/jackrabbit/
+
+with a few link bugs due to the svn/viewcvs integration. Our big task from
+now to graduation is to get the community more involved in development,
+planning features, integrating with some of the DB projects, and scoping
+out interesting applications to build on top of the interface. 

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2005.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2005.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2005.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-october-2005.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,10 @@
+Title: Jackrabbit Status October 2005
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2005/board_minutes_2005_10_26.txt)
+ of the Apache board meeting on October 26th, 2005:_
+
+The Apache Jackrabbit podling is slowly recovering from the impact of
+finalizing JSR 170, initializing JSR 283 (the next JCR specification
+revision EG), and the summer holiday schedule.	We are in the process of
+reconfiguring our source directories for an eventual 1.0 release and Maven
+2 support.  No new committers were added this quarter, though we expect
+more to be added soon.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2006.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2006.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2006.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2006.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,28 @@
+Title: Jackrabbit Status September 2006
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2006/board_minutes_2006_09_20.txt)
+ of the Apache board meeting on September 20th, 2006:_
+
+The Apache Jackrabbit project has progressed steadily since our last status
+report. We have no board-level issues at this time.
+
+* We voted in Julian Reschke as a new committer and PMC member.
+* The Apache Jackrabbit 1.1 release is scheduled to happen at the end of
+September.
+* The recent face-lift of our web site received some attention due to the
+"customized" Apache feather logo included in the design. The issue was
+discussed within the PRC and for now we are back to using the standard
+Apache logo to link back to the foundation.
+* Day Software has contributed an initial SPI layer for the JCR API based
+on earlier work within the JSR 283 expert group. The ongoing SPI effort has
+potential to clarify and better modularize the Jackrabbit core.
+* We have discussed with the incubating Apache Graffito project on perhaps
+moving the generic object-content mapping tool they are developing into the
+Apache Jackrabbit project where the tool could enjoy a wider community of
+interested users and developers. The feedback within both projects has been
+positive.
+* Our Google Summer of Code project ended successfully with a backup tool
+that implements almost all of the planned features. The missing feature
+(restoring version histories) identified a need for structural changes
+within the Jackrabbit core and we are working on solving this issue. The
+GSoC experience also sparked a good discussion on the policies of accepting
+code changes.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2007.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2007.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2007.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2007.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,57 @@
+Title: Jackrabbit Status September 2007
+_From the [minutes](http://www.apache.org/foundation/records/minutes/2007/board_minutes_2007_09_19.txt)
+ of the Apache board meeting on September 19th, 2007:_
+
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusSeptember2007-Releases"></a>
+## Releases
+
+Apache Jackrabbit 1.3.1 was released in July.
+
+We are currently working on the 1.4 release, due out later this year.
+Jackrabbit 2.0, with JCR 2.0 support, will likely be released next year.
+
+<a name="JackrabbitStatusSeptember2007-Community"></a>
+## Community
+
+Christoph Kiehl and Thomas Müller were added as a committers and PMC
+members. Brian Moseley resigned to emeritus status.
+
+The Jackrabbit PMC decided to sponsor the new incubating Sling project.
+There is lots of community overlap and interest in seeing more open source
+tools built on top of the JCR API.
+
+Our two Google Summer of Code projects ended successfully, even though the
+amount of community interaction related to the projects was lower than
+expected. The resulting JCR example applications will be used as a part of
+Jackrabbit documentation.
+
+There will be a JCR session in ApacheCon US, and JCR training (assuming
+enough attendance) in both ApacheCon US and OS Summit Asia. The Sling
+project will also be presented.
+
+<a name="JackrabbitStatusSeptember2007-Development"></a>
+## Development
+
+We are seeing lots of development related especially to query features and
+a new storage model for binary content. There has also been interest in
+threads and locking behaviour within Jackrabbit core.
+
+We are promoting two prominent subprojects, the OCM and SPI layers, to
+release components in Jackrabbit 1.4.
+
+JSR 283 has released the public draft of the upcoming JCR 2.0
+specification, and we have started working on implementing the new new
+features. The goal is to make Jackrabbit 2.0 (or an early snapshot of the
+release) the reference implementation of JSR 283.
+
+<a name="JackrabbitStatusSeptember2007-Infrastructure"></a>
+## Infrastructure
+
+We are considering switching from MoinMoin to Confluence for our wiki and
+using Confluence to manage also our official web site.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2008.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2008.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2008.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2008.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,43 @@
+Title: Jackrabbit Status September 2008
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusSeptember2008-Releases"></a>
+## Releases
+
+No releases were made since the last report.
+
+<a name="JackrabbitStatusSeptember2008-Legal"></a>
+## Legal
+
+We use Google Analytics to track usage of our web site. We are working with
+site-dev@ and legal-discuss@ to resolve the recent concerns about how the
+site usage data can be made available equally to everyone.
+
+<a name="JackrabbitStatusSeptember2008-Community"></a>
+## Community
+
+No new committers or PMC members were added since the last report.
+
+There has been a decrease in mailing list and commit activity in the past
+quarter and we've seen some cases of issues or questions being dropped.
+This is partly because of the summer vacations but also due to a number of
+core committers having been otherwise occupied. We'll keep an eye on the
+situation and expect things to normalize soon.
+
+We will participate and present Apache Jackrabbit in the upcoming ApacheCon
+US.
+
+<a name="JackrabbitStatusSeptember2008-Development"></a>
+## Development
+
+We keep working towards Jackrabbit 1.5 in near future and Jackrabbit 2.0
+(and the JSR 283 reference implementation) later on.
+
+<a name="JackrabbitStatusSeptember2008-Infrastructure"></a>
+## Infrastructure
+
+No issues at the moment.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2009.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2009.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2009.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2009.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,72 @@
+Title: Jackrabbit Status September 2009
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusSeptember2009-Releases"></a>
+## Releases
+
+The big news this quarter is the release of Jackrabbit 1.6.0:
+
+* Apache Jackrabbit 1.6.0 on August 11th
+
+The following patch releases were made from earlier maintenance branches:
+
+* Apache Jackrabbit 1.5.7 on August 3rd
+* jackrabbit-core 1.4.10 on September 15th
+
+We made two internal releases of the Jackrabbit parent POM:
+
+* org.apache.jackrabbit:parent:3 on June 26th
+* org.apache.jackrabbit:parent:4 on September 15th
+
+We also continued releasing Jackrabbit 2.0 alphas:
+
+* Apache Jackrabbit 2.0 alpha3 on July 3rd
+* Apache Jackrabbit 2.0 alpha4 on July 14th
+* Apache Jackrabbit 2.0 alpha7 on August 10th
+* Apache Jackrabbit 2.0 alpha8 on August 18th
+* Apache Jackrabbit 2.0 alpha9 on August 26th
+
+<a name="JackrabbitStatusSeptember2009-Legal"></a>
+## Legal
+
+We have asked (see [LEGAL-50](https://issues.apache.org/jira/browse/LEGAL-50)
+) the legal team to review the terms under which we are redistributing the
+JCR API jar. The purpose of this is to complete the legal records, and this
+issue is not a blocker to our current releases.
+
+Recent legal discussions regarding the contents of the NOTICE files (see
+for example [LEGAL-62](https://issues.apache.org/jira/browse/LEGAL-62)
+) suggest that we have been including some unnecessary information in our
+NOTICEs. We will review our NOTICE files before the 2.0 release to comply
+with the consensus on legal-discuss@.
+
+<a name="JackrabbitStatusSeptember2009-Community/Development"></a>
+## Community / Development
+
+Sébastien Launay joined the Jackrabbit team as a committer and PMC member.
+
+With the 1.6 release our JCR 1.0 work has entered maintenance mode and
+we're focusing on releasing Jackrabbit 2.0 shortly after JCR 2.0 becomes
+available. We reached JCR 2.0 feature-completeness with the 2.0 alpha9
+release, and that release was also used for the JCR 2.0 RI and TCK
+candidates. The JSR 283 final approval ballot has just passed, and we
+expect the final JCR 2.0 release to follow soon.
+
+The main author of the JCROM project that implements an alternative to the
+Jackrabbit OCM (object content mapping) component contacted us about
+bringing the JCROM code to Jackrabbit and possibly merging with our
+existing OCM code.
+
+<a name="JackrabbitStatusSeptember2009-Infrastructure"></a>
+## Infrastructure
+
+We are now using the Nexus server at repository.apache.org for staging and
+deploying our releases to the central Maven repository.
+
+The monthly Google Analytics reports we set up earlier this year don't seem
+to be reaching the dev@ list anymore. To work around this we're now sharing
+the reports via svn and our web site.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2010.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2010.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2010.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2010.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,41 @@
+Title: Jackrabbit Status September 2010
+Apache Jackrabbit is a fully conforming implementation of the Content
+Repository for Java Technology API (JCR, specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusSeptember2010-Releases"></a>
+## Releases
+
+We released one Jackrabbit 2.1 patch release in August:
+
+* Apache Jackrabbit 2.1.1 on August 11th
+
+<a name="JackrabbitStatusSeptember2010-Legal"></a>
+## Legal
+
+We are aware of the new branding guidelines, but have yet to review our web
+site and other documentation for compliance.
+
+<a name="JackrabbitStatusSeptember2010-Community/Development"></a>
+## Community / Development
+
+No new committers were added in this quarter. There's been some interest on
+the user list about people getting more involved in maintaining some less
+active parts of our codebase. We're trying to encourage and mentor such
+efforts.
+
+As usual, we saw a temporary dip in mailing list and development activity
+during the Summer, but we're already back to normal. The Jackrabbit trunk
+has seen quite a few improvements especially in access control,
+thread-safety and performance, and we plan to ship these improvements in a
+Jackrabbit 2.2 release in near future.
+
+We received a vulnerability report through security@apache.org, but the
+problem turned out to be a normal bug with no security implications. 
+
+<a name="JackrabbitStatusSeptember2010-Infrastructure"></a>
+## Infrastructure
+
+The new Hudson master seems to be working better than the previous one.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2011.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2011.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2011.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-status-september-2011.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,47 @@
+Title: Jackrabbit Status September 2011
+The Apache Jackrabbit™ content repository is a fully conforming
+implementation of the Content Repository for Java™ Technology API (JCR,
+specified in JSR 170 and 283).
+
+The Apache Jackrabbit project is in good shape. We have no board-level
+issues at this time.
+
+<a name="JackrabbitStatusSeptember2011-Releases"></a>
+## Releases
+
+We made one Jackrabbit 2.2.x patch release in this quarter:
+
+* Apache Jackrabbit 2.2.8 on August 23rd
+
+<a name="JackrabbitStatusSeptember2011-Legal/Branding"></a>
+## Legal / Branding
+
+No open issues.
+
+<a name="JackrabbitStatusSeptember2011-Community/Development"></a>
+## Community / Development
+
+No new committers or PMC members were added since our last report.
+
+Apache Jackrabbit was nominated for the 2011 [Swiss Open Source Award](http://www.ossaward.ch/)
+ in the community category. We attended the award ceremony on Tuesday, Sep
+13th, and gave a short presentation about Jackrabbit, but the award went to
+another project.
+
+We are planning to cut the Jackrabbit 2.3.0 release from trunk in near
+future. To increase the rate at which latest work in the trunk gets
+released (it is already nine months since Jackrabbit 2.2), we are
+considering an odd/even versioning strategy where all odd releases like
+2.3.x are cut directly from trunk, and stable maintenance branches like
+2.4.x get created every now and then for production-ready releases.
+
+Meanwhile we will be cutting new patch releases from earlier maintenance
+branches, including the old 1.6 branch whose end of life status will be
+announced along with the last patch release. Also, active work on the new
+microkernel prototype targeting Jackrabbit 3.0 continues.
+
+<a name="JackrabbitStatusSeptember2011-Infrastructure"></a>
+## Infrastructure
+
+The planned migration from Confluence to the new CMS soon is still pending
+for action on our part.

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-team.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-team.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-team.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-team.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,443 @@
+Title: Jackrabbit Team
+Apache Jackrabbit is the result of ongoing collaboration and contributions
+of a number of people. Everyone is welcome to contribute and all
+contributions are greatly appreciated.
+
+The Jackrabbit project follows the [meritocratic principles](http://www.apache.org/foundation/how-it-works.html#meritocracy)
+ and [role-based organization|http://www.apache.org/foundation/how-it-works.html#roles]
+ of the Apache Software Foundation.
+
+<a name="JackrabbitTeam-Jackrabbitcommitters"></a>
+## Jackrabbit committers
+
+<table>
+<tr><th> Id </th><th> Name </th><th> Organization </th></tr>
+<tr><td> alexkli </td><td> Alexander Klimetschek </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> alexparvulescu </td><td> Alex Parvulescu </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> angela </td><td> Angela Schreiber </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> ard </td><td> Ard Schrijvers </td><td> [Hippo](http://www.hippo.nl/)
+ </td></tr>
+<tr><td> ckiehl </td><td> [Christoph Kiehl](mailto:christoph@sulu3000.de.html)
+ </td><td> </td></tr>
+<tr><td> ckoell </td><td> [Claus Köll](mailto:c.koell@gmail.com.html)
+ </td><td> [DVT-Daten-Verarbeitung-Tirol GmbH</td><td>http://www.dvt.at/]
+ </td></tr>
+<tr><td> clombart </td><td> Christophe Lombart </td><td> </td></tr>
+<tr><td> dpfister </td><td> Dominique Pfister </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> eaf </td><td> Esteban Franqueiro </td><td> [BEA](http://www.bea.com/)
+ </td></tr>
+<tr><td> edgarpoce </td><td> [Edgar Poce](mailto:edgarpoce@gmail.com.html)
+ </td><td> </td></tr>
+<tr><td> fielding </td><td> Roy T. Fielding </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> fmeschbe </td><td> Felix Meschberger </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> jukka </td><td> [Jukka Zitting](mailto:jukka.zitting@gmail.com.html)
+ </td><td> [Adobe</td><td>http://www.day.com/]
+ </td></tr>
+<tr><td> justin </td><td> Justin Edelson </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> martijnh </td><td> Martijn Hendriks </td><td> [GX](http://www.gx.nl/)
+ </td></tr>
+<tr><td> mduerig </td><td> Michael Dürig </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> mreutegg </td><td> Marcel Reutegger </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> ppakulski </td><td> Przemo Pakulski </td><td> [Cognifide](http://www.cognifide.com/)
+ </td></tr>
+<tr><td> ppiegaze </td><td> Peeter Piegaze </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> reschke </td><td> [Julian Reschke](mailto:julian.reschke@greenbytes.de.html)
+ </td><td> [greenbytes GmbH</td><td>http://greenbytes.de/]
+ </td></tr>
+<tr><td> schans </td><td> Bart van der Schans </td><td> [Hippo](http://www.hippo.nl/)
+ </td></tr>
+<tr><td> sebastien </td><td> Sébastien Launay </td><td> [Anyware Technologies](http://www.anyware-tech.com/)
+ </td></tr>
+<tr><td> shuber </td><td> Serge Huber </td><td> </td></tr>
+<tr><td> stefan </td><td> Stefan Guggisberg </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> sylvain </td><td> Sylvain Wallez </td><td> </td></tr>
+<tr><td> thomasm </td><td> Thomas Mueller </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> tripod </td><td> Tobias Bocanegra </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+<tr><td> uncled </td><td> David Nuescheler </td><td> [Adobe](http://www.day.com/)
+ </td></tr>
+</table>
+
+
+<a name="JackrabbitTeam-Emeritusmembers"></a>
+## Emeritus members
+
+<table>
+<tr><th> Id </th><th> Name </th><th> Organization </th></tr>
+<tr><td> asavory </td><td> Andrew Savory </td><td> </td></tr>
+<tr><td> bcm </td><td> [Brian Moseley](mailto:bcm@osafoundation.org.html)
+ </td><td> Open Source Applications Foundation (OSAF) </td></tr>
+<tr><td> gianugo </td><td> Gianugo Rabellino </td><td> </td></tr>
+<tr><td> prussell </td><td> Paul Russell </td><td> </td></tr>
+<tr><td> stefano </td><td> Stefano Mazzocchi </td><td> </td></tr>
+<tr><td> treilly </td><td> Tim Reilly </td><td> </td></tr>
+</table>
+
+
+<a name="JackrabbitTeam-Jackrabbitcontributors"></a>
+## Jackrabbit contributors
+
+The following additional people have contributed to this project through
+the way of suggestions, patches or documentation.
+
+{section}
+{column:width=25%}
+Adam Hope
+Adam Warski
+Aidan O'Loan
+Akil Ajani
+Alan Cabrera
+Al Caponi
+Alessandro Bologna
+Alessandro Cosenza
+Alexander Nesterov
+Alexander T
+Alexandre Costa Martins
+Alexandru Popescu
+Alex Lukin
+Alvaro Gonzalez
+Andreas Julius
+André Bierwolf
+Andrew Perepelytsya
+Andrey Grebnev
+Andries Demont
+Andrzej Dengusiak
+Andy Key
+Angela Cymbalak
+Anthony Ogier
+Antonio Carballo
+Arthur Meyer
+Asaf Amit
+Ate Douma
+Attila Király
+Azfar Kazmi
+Balasubramanian
+Bart van der Schans
+Benjamin Bentmann
+Berry van Halderen
+Bertrand Delacretaz
+Bertrand Lega
+Bob Wieler
+Boni Gopalan
+Borja Parés
+Brennan Spies
+Brett Porter
+Brian Ewins
+Brian Whipple
+Carlos Sanchez
+Carsten Ziegeler
+Cédric Chantepie
+Cédric Damioli
+Celina Konito
+Chandan Kumar
+Charles Brooking
+Chen Shaopeng
+Chris Meadows
+Chris Schmidt
+Christian
+Christian Schröder
+Christian Zanata
+Chris Wilkes
+Chris Wilson
+Costin Leau
+Cristian Grozea
+Dan Connelly
+Dan Diephouse
+Daniel Bloomfield Ramagem
+Daniel Naber
+Danilo Barboza
+Darren Hartford
+Davanum Srinivas
+Dave Brosius
+David Boden
+David Brown
+David B Victor
+David Garcia
+David Izatt
+David J. M. Karlsen
+David Johnson
+David Kennedy
+David McKitterick
+David Moss
+David Pitfield
+David Rauschenbach
+Denis Linine
+Dietmar Gräbner
+Dirk Feufel
+Dmitry Sapunov
+Doug Douglass
+Douglas Jose
+Duncan McIntyre
+Ed Burnette
+{column}
+{column:width=25%}
+Eduardo Andrade
+Eduardo Burgos
+Edyta Kalka
+Elangodi Kalaimani
+Eric Norman
+Eric Wout van der Steen
+Ernest Evans
+Eugene Porubaev
+Fabrice Duermael
+Fabrizio Giustina
+Felix Knecht
+Felix Röthenbacher
+Filippo Fratoni
+Florent Guillaume
+Francois Masurel
+Frank Karlstrøm
+Frank van Lankvelt
+Frederic Laugier
+Gavin Carothers
+Giota Karadimitriou
+Glaucio Scheibel
+Greg Klebus
+Greg Schueler
+Grégory Joseph
+Guido Jäkel
+Guillaume Bort
+Günther Humer
+Hector Rovira
+Hemanta Gupta
+Henryk Paluch
+Hitesh Shah
+Honwai Wong
+Iaacov Rosenberg
+Ian Boston
+Igor Vaynberg
+Jacco van Weert
+Jaka Jaksic
+Jakub Wozniakowski
+James Abley
+James Hang
+James McCarthy
+Jan Haderka
+Jan Halasa
+Jan Kuzniak
+Janne Jalkanen
+Jan Peter Stotz
+Jarle B. Hjortland
+Jason Gritman
+Jason Thrasher
+Jason Wagggoner
+Jeremi Joslin
+Jim Cross
+John Brodeur
+John Eaton
+Jonathan Nolen
+Jorge Rodríguez Pedrianes
+Joseph Chen
+Joseph Toth
+Joshua Levy
+Jozef Wagner
+Juan Jose Vazquez Delgado
+Julian Klein
+Julian Sedding
+Julio Castillo
+Ken Yue
+Kurz Wolfgang
+Lalitha Gopalakrishnan
+Lance Zechinato
+Lars Trieloff
+Leila Rizkallah
+Leslie H. Watter
+Lóránt Pintér
+Lucas Galfaso
+Lydia Balazs
+Magnus Grimsell
+Manfred Baedke
+Manuel Duran
+Marcel May
+Marcin Cenkier
+Marcin Muras
+Marcus Kaar
+Marius Ropotica
+Mark Moales
+Mark Slater
+Markus Joschko
+Mark Waschkowski
+Martin Koci
+{column}
+{column:width=25%}
+Martin Perez
+Martin Schreiber
+Martin van den Bemt
+Martin Zdila
+Masanobu Horiyama
+Massimiliano Cuccia
+Matej Knopp
+Melissa Stopponi
+M.Fatih Ozceylan
+Micah Whitacre
+Michael Aemisegger
+Michael Bletzinger
+Michael Daglian
+Michael Eppelheimer
+Michael Frericks
+Michael Korat
+Michael Marth
+Michael Mittag
+Michael Neale
+Michael Singer
+Michael Wechner
+Michael Young
+Michal Borowiecki
+Michele Meomartino
+Miguel Angel Jiménez Sampedro
+Mike Bowler
+Mike Pfaff
+Mike Roberts
+Mikolaj Rydzewski
+Miro Walker
+Moritz Rebbert
+Moshe Immerman
+Murray Armfield
+Naresh Gangapur
+Nicholas DiPiazza
+Nicholas Stuart
+Nicolas Belisle
+Nicolas Jouanin
+Nicolas Pombourcq
+Nicolas Toper
+Nimesh Muley
+Noah Vihinen
+Norbert Braeker
+Norman Sheriff
+Oleg Alexeyev
+Oleg Gusakov
+Oliver Kießler
+Oliver Lietz
+Oliver Zeigermann
+Olivier Dony
+Pablo Rios
+Paco Avila
+Padraic Hannon
+Pankaj Gupta
+Patrick Haggood
+Paul Bloch
+Paul Dennis
+Paul Gribben
+Paul Mietz Egli
+Pavel Hudyak
+Pete Kirkham
+Peter Darton
+Peter Dettman
+Philip Borlin
+Philip Cher
+Philippe Marschall
+Philipp Koch
+Philipp Salzgeber
+Piotr Przybylak
+Prakash Reddy
+Rafał Kwiecień
+Raffaele Sena
+Ragy Eleish
+Rajesh Upadhyay
+Rama Krishna
+Randy Simon
+Raphael Franchet
+Raphael Jean
+Raphael Wegmueller
+Ravindra Ramarao
+Richa Khurana
+Richard Osbaldeston
+Robert Burrell Donkin
+{column}
+{column:width=25%}
+Roberto Fonti
+Robert Sauer
+Rob Evans
+Rob Owen
+Rod MacKenzie
+Roland Kofler
+Roman Puchkovskiy
+Ross Black
+Roy Russo
+Ruchi Goel
+Rüdiger Groß-Hardt
+Ruslan Romanov
+Ruslan Spivak
+Ryan Vanderwerf
+Samba Siva Rao Kolusu
+Sandeep Warikoo
+Sandrine Raffalli
+Sandro Boehme
+Santosh Gadkari
+Sascha Sadat-Guscheh
+Savvas Triantafyllou
+Scott Cytacki
+Sean Radford
+Sebastian Gomez
+Sebastian Prehn
+Sebastian Redl
+Sébastien Deleuze
+Sébastien Migniot
+Serge Slipchenko
+Sergey Nebolsin
+Shaun Barriball
+Shinichi Tanaka
+Shrirang
+Simon Brunner
+Simon Kent
+Sivakumar Kalyanaraman
+Sridhar Raman
+Stefan Ivanov
+Stefan Rinner
+Sten Roger Sandvik
+Stephane Landelle
+Stephen More
+Steve Neo
+Sudhan Kanade
+Sven Rieckhoff
+Szymon Kuzniak
+Tako Schotanus
+Tanju Erinmez
+Ted Leung
+Thierry Lach
+Thierry Levieux
+Thierry Yge
+Thilo Goetz
+Thomas Fromm
+Thomas Scheffler
+Thomas Weber
+Tim Reilly
+Timur Evdokimov
+Tom Duffey
+Tomek Dabrowski
+Tomoharu Fujita
+Topi Westerholm
+Torgeir Veimo
+Torsten Schlabach
+Torsten Weck
+Trang Nguyen
+Tyson Norris
+Vadim L. Ivanov
+Vijai Kalyan
+Vincent Giguère
+Vinzenz Wyser
+Vladimir Bayanov
+Wade Girard
+Walter Raboch
+Wes Smoak
+William Louth
+Wolf Benz
+Xavier Coulon
+Xiaohua Lu
+Yoav Landman
+Yusuke Fujisawa
+Zhou Wu
+{column}
+{section}

Added: jackrabbit/site/trunk/src/site/markdown/jackrabbit-text-extractors.md
URL: http://svn.apache.org/viewvc/jackrabbit/site/trunk/src/site/markdown/jackrabbit-text-extractors.md?rev=1670829&view=auto
==============================================================================
--- jackrabbit/site/trunk/src/site/markdown/jackrabbit-text-extractors.md (added)
+++ jackrabbit/site/trunk/src/site/markdown/jackrabbit-text-extractors.md Thu Apr  2 07:13:56 2015
@@ -0,0 +1,48 @@
+Title: Jackrabbit Text Extractors
+This is the Text Extractors component of the Apache Jackrabbit project.
+This component contains extractor classes that allow Jackrabbit to extract
+text content from binary properties for full text indexing.
+
+<a name="JackrabbitTextExtractors-Supporteddocumentformats"></a>
+### Supported document formats
+
+The following document formats and MIME types are currently supported:
+
+* Microsoft Word (org.apache.jackrabbit.extractor.MsWordTextExtractor)
+ o application/vnd.ms-word
+ o application/msword
+* Microsoft Excel (org.apache.jackrabbit.extractor.MsExcelTextExtractor)
+ o application/vnd.ms-excel
+* Microsoft PowerPoint
+(org.apache.jackrabbit.extractor.MsPowerPointTextExtractor)
+ o application/vnd.ms-powerpoint
+ o application/mspowerpoint
+* Portable Document Format (PDF)
+(org.apache.jackrabbit.extractor.PdfTextExtractor)
+ o application/pdf
+* OpenOffice.org (org.apache.jackrabbit.extractor.OpenOfficeTextExtractor)
+ o application/vnd.oasis.opendocument.database
+ o application/vnd.oasis.opendocument.formula
+ o application/vnd.oasis.opendocument.graphics
+ o application/vnd.oasis.opendocument.presentation
+ o application/vnd.oasis.opendocument.spreadsheet
+ o application/vnd.oasis.opendocument.text
+* Rich Text Format (RTF) (org.apache.jackrabbit.extractor.RTFTextExtractor)
+ o application/rtf
+* HyperText Markup Language (HTML)
+(org.apache.jackrabbit.extractor.HTMLTextExtractor)
+ o text/html
+* Extensible Markup Language (XML)
+(org.apache.jackrabbit.extractor.XMLTextExtractor)
+ o text/xml
+
+<a name="JackrabbitTextExtractors-Usingthetextextractors"></a>
+### Using the text extractors
+
+To use these text extractors with the Jackrabbit Core:
+
+1. add the jackrabbit-text-extractors jar file and the dependencies defined
+in the Maven POM in the Jackrabbit classpath, and
+1. add the fully qualified class names listed above in the
+"textFilterClasses" parameter of the "SearchIndex" configuration element of
+a Jackrabbit workspace configuration file (workspace.xml).