Changeset 993

Show
Ignore:
Timestamp:
08/18/06 10:31:44
Author:
douglm
Message:

Most of these updates provide the webdav server components with
access to a system property indicating if directory browsing is disallowed.

Needs schema change: in hsql-speak

alter table BEDEWORK_SETTINGS add column directory_browsing_disallowed char(1)

update BEDEWORK_SETTINGS set directory_browsing_disallowed='T'
or
update BEDEWORK_SETTINGS set directory_browsing_disallowed='F'

With a value of 'F' you wil be able to browse bedework directories.

Also change your own copies of democal.options.xml in the <syspars> section...

<usergroupsClass>org.bedework.calcore.hibernate.GroupsDbImpl</usergroupsClass>

</syspars>

changes to

<usergroupsClass>org.bedework.calcore.hibernate.GroupsDbImpl</usergroupsClass>

<directoryBrowsingDisallowed>@DIRECTORY-BROWSING-DISALLOWED@</directoryBrowsingDisallowed>

</syspars>

The value will be set from the properties file.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/config/configs/democal.options.xml

    r966 r993  
    6161        --> 
    6262        <usergroupsClass>org.bedework.calcore.hibernate.GroupsDbImpl</usergroupsClass> 
     63 
     64        <directoryBrowsingDisallowed>@DIRECTORY-BROWSING-DISALLOWED@</directoryBrowsingDisallowed> 
    6365      </syspars> 
    6466