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.