3 messages in org.apache.jackrabbit.usersRe: Jackrabbit utilities
FromSent OnAttachments
Scott DietrichAug 20, 2008 1:35 pm 
Alexander KlimetschekAug 22, 2008 12:06 pm 
Scott DietrichAug 25, 2008 8:04 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: Jackrabbit utilitiesActions...
From:Scott Dietrich (sco@minutestopost.com)
Date:Aug 25, 2008 8:04:54 am
List:org.apache.jackrabbit.users

Done. This is the issue: https://issues.apache.org/jira/browse/JCR-1724

Scott

On Aug 22, 2008, at 12:06 PM, Alexander Klimetschek wrote:

Cool stuff! I would think the sandbox is the perfect place for it. I suggest you create a JIRA issue at

https://issues.apache.org/jira/secure/CreateIssue!default.jspa

and upload the patch.

On Wed, Aug 20, 2008 at 10:36 PM, Scott Dietrich <sco@minutestopost.com> wrote:

I created a couple of small utilities for Jackrabbit and was wondering if other Jackrabbit users are also interested in using them. If there is interest, I wouldn't mind either setting up a Sourceforge project for them or donating them to be included in the Jackrabbit sandbox.

The first one is a DataStore implementation that uses Amazon S3 for storage. This is fairly straightforward. It is configured by adding a DataStore section to the repository.xml file, e.g.: <DataStore class="org.jcrutil.S3DataStore"> <param name="awsAccessKey" value="" /> <param name="awsSecretKey" value="" /> <param name="bucketName" value="" /> <param name="minModifiedDate" value="0" /> <param name="minRecordLength" value="0" /> </DataStore>

The second utility is a JCR based Commons VFS filesystem provider. This allows you to access a JCR repository (nt:file and nt:folder nodes) using the Commons VFS API. I've also used this with MINA FTP Server and Dctm VFS (http://dctmvfs.sourceforge.net/) to provide FTP access to a Jackrabbit repository.

The source tarball is here: http://www.minutestopost.com/ jcrutil.tar.gz

If you have any questions or comments just let me know.