opencms-system.dtd

来自「找了很久才找到到源代码」· DTD 代码 · 共 536 行 · 第 1/2 页

DTD
536
字号
--><!ELEMENT runtimeproperties (param*)><!--# Configuration to set the class name of the runtime info factory and system info.--><!ELEMENT runtimeclasses (runtimeinfo)><!ELEMENT runtimeinfo EMPTY><!ATTLIST runtimeinfo class CDATA #REQUIRED><!--# Default user/group names:# These names can not be changed after the initial OpenCms setup# Provides access to the names of the OpenCms default users and groups. --><!ELEMENT defaultusers (user-admin, user-guest, user-export, user-deletedresource?, group-administrators, group-projectmanagers, group-users, group-guests)><!ELEMENT user-admin (#PCDATA)><!ELEMENT user-guest (#PCDATA)><!ELEMENT user-export (#PCDATA)><!ELEMENT user-deletedresource (#PCDATA)><!ELEMENT group-administrators (#PCDATA)><!ELEMENT group-projectmanagers (#PCDATA)><!ELEMENT group-users (#PCDATA)><!ELEMENT group-guests (#PCDATA)><!--## Default encoding to use for generating HTTP responses.# It is recommended to change this only in special environments.# The default is "UTF-8", but in case you require only western european# char support you can e.g. change this to "ISO-8859-1".--><!ELEMENT defaultcontentencoding (#PCDATA)><!--## MemoryMonitor configuration--><!ELEMENT memorymonitor (maxusagepercent, log-interval, email-interval?, warning-interval, email-sender?, email-receiver?)><!ATTLIST memorymonitor class CDATA ""><!ELEMENT maxusagepercent (#PCDATA)><!ELEMENT log-interval (#PCDATA)><!ELEMENT email-interval (#PCDATA)><!ELEMENT warning-interval (#PCDATA)><!ELEMENT email-sender (#PCDATA)><!ELEMENT email-receiver (receiver+)><!ELEMENT receiver (#PCDATA)><!--## FlexCache configuration--><!ELEMENT flexcache (cache-enabled, cache-offline, maxcachebytes, avgcachebytes, maxentrybytes, maxkeys)><!--# Enable or disable the FlexCache here with the "cache-enabled" node.# In case you disable the FlexCache, you do not need to bother # about the settings of the other Flex cache values.--><!ELEMENT cache-enabled (#PCDATA)><!--# In a development environment, we recommend to set the value of # the "cache-offline" node to "true" so that you can test out the caching# behaviour of the application without publishing.# In a production environment you should set "cache-offline" node # to "false".--><!ELEMENT cache-offline (#PCDATA)><!--# Sizing parameters for the cached "entries" (ie. pages) in the FlexCache. # The amount of server memory available obviously is the # critical factor here. The values below are set in byte size.# The default is 2mb memory for the cached pages _or_ a maximum of 4000# cached page variations in total.--><!ELEMENT maxcachebytes (#PCDATA)><!ELEMENT avgcachebytes (#PCDATA)><!ELEMENT maxentrybytes (#PCDATA)><!ELEMENT maxkeys (#PCDATA)><!--## HTTP basic authentication settings.--><!ELEMENT http-authentication (browser-based, form-based?)><!--# Enable or disable browser-based HTTP basic authentication.--><!ELEMENT browser-based (#PCDATA)><!--# If bowser-based HTTP basic authentication is disabled, the user gets# redirected to the OpenCms URI specified in this node for a form-based # HTTP basic authentication.# Since this is a system wide setting, users are able to specify different# authentication forms by setting the property "login-form" on resources.--><!ELEMENT form-based (#PCDATA)><!--# Driver manager cache settings.# These settings control the size of various internal caches in the OpenCms database layer.--><!ELEMENT resultcache (	keygenerator,		size-users,	size-groups,	size-orgunits?,	size-usergroups,	size-projects,	size-projectresources?,	size-resources,	size-resourcelists,	size-properties,	size-propertylists?,	size-accesscontrollists,	size-permissions,	size-roles?)><!--# The name of the class to generate cache keys.--><!ELEMENT keygenerator (#PCDATA)><!--# The size of the driver manager's cache for users.--><!ELEMENT size-users (#PCDATA)><!--# The size of the driver manager's cache for groups.--><!ELEMENT size-groups (#PCDATA)><!--# The size of the driver manager's cache for organizational units.# If not given, the size-groups is used.--><!ELEMENT size-orgunits (#PCDATA)><!--# The size of the driver manager's cache for user/group relations.--><!ELEMENT size-usergroups (#PCDATA)><!--# The size of the driver manager's cache for projects.--><!ELEMENT size-projects (#PCDATA)><!--# The size of the driver manager's cache for project resources.# If not given, the size-projects is used.--><!ELEMENT size-projectresources (#PCDATA)><!--# The size of the driver manager's cache for resources.--><!ELEMENT size-resources (#PCDATA)><!--# The size of the driver manager's cache for lists of resources.--><!ELEMENT size-resourcelists (#PCDATA)><!--# The size of the driver manager's cache for properties.--><!ELEMENT size-properties (#PCDATA)><!--# The size of the driver manager's cache for property lists.# If not given, the size-properties is used.--><!ELEMENT size-propertylists (#PCDATA)><!--# The size of the driver manager's cache for ACLS.--><!ELEMENT size-accesscontrollists (#PCDATA)><!--# The size of the security manager's cache for permission checks.--><!ELEMENT size-permissions (#PCDATA)><!--# The size of the driver manager's cache for roles.--><!ELEMENT size-roles (#PCDATA)><!--# Content notification settings.--><!ELEMENT content-notification (notification-time?, notification-project)><!--# The duration after which responsibles will be notified about out-dated content (in days).--><!ELEMENT notification-time (#PCDATA)><!--# The project in which timestamps for the content notification are read--><!ELEMENT notification-project (#PCDATA)><!--# Authorization handler:# Provides methods for SSO.# See the JavaDoc of interface org.opencms.security.I_CmsAuthorizationHandler for more details.--><!ELEMENT authorizationhandler EMPTY><!ATTLIST authorizationhandler class CDATA #REQUIRED><!--# Publish manager:# Provides the configuration parameters for the publish history and queue.# See the package org.opencms.publish for more details.--><!ELEMENT publishmanager (history-size, queue-persistance?, queue-shutdowntime?)><!--# The size of the publish queue--><!ELEMENT history-size (#PCDATA)><!--# Indicates if the publish queue is re-initialized on restart of the system.# The value is optional, the default is "false" if no value is provided.## The #PCDATA value will be evaluated with Boolean.valueOf(#PCDATA).booleanValue().# If the result is "true", the class instance will be re-used. --><!ELEMENT queue-persistance (#PCDATA)><!--# The amount of time in seconds the system waits for a publish job # to be finished during shutdown.# The value is optional, the default is 1 second if no value is provided.--><!ELEMENT queue-shutdowntime (#PCDATA)><!--# Session storage provider:# Provides a storage implementation for the user session.# See the JavaDoc of interface org.opencms.main.I_CmsSessionStorageProvider for more details.--><!ELEMENT session-storageprovider EMPTY><!ATTLIST session-storageprovider class CDATA #REQUIRED><!--# Permission handler:# provides the implememtation of the permission check.# See the JavaDoc of interface org.opencms.db.I_CmsPermissionHandler for more details.--><!ELEMENT permissionhandler EMPTY><!ATTLIST permissionhandler class CDATA #REQUIRED>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?