Jacob Lund wrote:
> Hi all!
> I have two question:
> 1: Does any of you know of a good management application to the versioning
> part of slide (Delta-v)for testing purposes?
The Delta-V part of slide isn't ready yet, the slide engine and the interfaces
to the backend are (mostly) ready
but not the WebDAV extension. When the server extension gets written, the
slide client will follow.
> 2: In the domain.xml I can use the JDBCDescriptorsStore or
> MemoryDescriptorsStore - what is this and what do I have to do in order to
> use the JDBC in stead of the memoryDescriptor.
MemoryDescriptorsStore and JDBCDescriptorsStore are implementation of a
combined LockStore, NodeStore, RevisionDescriptorsStore,
RevisionDescriptorStore and SecurityStore.
The MemoryDescriptorsStore keeps everything in memory and JDBCDescriptorsStore
stores everything in a database using JDBC.
Here is a sample JDBC configuration.
If you use the hsql database the tables are created automatic.
You want to use MSSQL7, in that case you need to the tables manually (see
website for the definition)
and change the database driver/url in domain.xml file.
Dirk
===========================================
<!-- ### JDBC Configuration ###
The following jdbc sample configuration uses the hsql Database Engine
a relational database engine written in Java, for more info:
http://hsqldb.sourceforge.net/
-->
<definition>
<store name="jdbc">
<nodestore classname="slidestore.reference.JDBCDescriptorsStore">
<parameter name="driver">org.hsqldb.jdbcDriver</parameter>
<parameter name="url">jdbc:hsqldb:slidestructure</parameter>
<parameter name="user">sa</parameter>
<parameter name="password"></parameter>
</nodestore>
<securitystore>
<reference store="nodestore" />
</securitystore>
<lockstore>
<reference store="nodestore" />
</lockstore>
<revisiondescriptorsstore>
<reference store="nodestore" />
</revisiondescriptorsstore>
<revisiondescriptorstore>
<reference store="nodestore" />
</revisiondescriptorstore>
<contentstore classname="slidestore.reference.JDBCContentStore">
<parameter name="driver">org.hsqldb.jdbcDriver</parameter>
<parameter name="url">jdbc:hsqldb:slidecontent</parameter>
<parameter name="user">sa</parameter>
<parameter name="password"></parameter>
</contentstore>
</store>
<scope match="/" store="jdbc" />
</definition>