OpenCms export属性

if static export is disabled nothing is exported and the rules are not
used.

For the handeling of the link tags one standard rule is generated with
the url_prefix_http value. So you can still configure the servletpath.staticexport.enabled=true

the static export is controlled by the resource property export.
It has 6 possible values: true, false, dynamic, https, https_enabled and dynamic_https_enabled.
With the property staticexport.default.export you can decide whitch
value is used if a resource and all parentfolders don't have the the property export set.

If your site shoud be exported except a few resources you set the default to true and add the export=dynamic property to the folder where the dynamic pages are.
If your site is mostly dynamic you set the default to dynamic and add the export=true property to the pics and the download folder.
Only the values 'true' and 'dynamic' are allowed. staticexport.default.export=true the path where to save the exported pages. This path may be relative or absolute. staticexport.path=/home/httpd/html Prefix variables.
The export prefix defines where to find the static reources.
The http prefix defines the way to the dynamic resources in OpenCms.
The https and the servername are used only for ssl. (If you use ssl you have to
set the values like:
 https://server.de/$%7BWEB_APP_NAME%7D/opencms for the https prefix and
 http://server.de/ for the servername)
 The String ${WEB_APP_NAME} will be replaced by the name of the webapplication. These variables can also be used in the rulesets.
 url_prefix_export=
 url_prefix_http=/${WEB_APP_NAME}/opencms
 url_prefix_https=
 url_prefix_servername= the name of the ruleset used to replace links while exporting, in the online project, in the offlineproject and for the name in the extern file system.
There are two sets of rules. Depending of the staticexport.default.export parameter the linkrules.true or the linkrules.dynamic are used.
linkrules.true.export=exportrules
linkrules.true.online=exportrules
linkrules.true.offline=offlinerules
linkrules.true.extern=externrules
linkrules.dynamic.export=dynamic_exportrules
linkrules.dynamic.online=dynamic_exportrules
linkrules.dynamic.offline=dynamic_offlinerules
linkrules.dynamic.extern=dynamic_externrules

the start rule used for extern and export (not for online and offline).
(the rules are regular expressions in perl5 standard) exportfirstrule=s#.([^&\?]*)=([^&\?]*)#_$1$2#g The start rule feature is removed.
Instead there is a new feature: While exporting if after the dynamic rueles nothing has changed the parameters of the link will be decoded in the name.
so "/index.html?newsid=27&size=100" is replaced by "/index_402.html" where 402 is the id of the link in the database. Further rules (after the dynamic ones) will be processed with the new link.

The rulesets for linkreplacement as comma seperated lists You can use the ${WEB_APP_NAME} variable for the webapplication name and the four prefix variables defined above (${url_prefix_export}, {url_prefix_http},...).
They will be replaced befor using the regular expression.
In addition to this it is possible to define the place where the dynamic generated rules should be used instead of a rule use the expression *dynamicRules* (including the *'s).
OpenCms replaces this with the dynamic generated rules.
There are two types of dynamic rules. The first one is generated with the resourceproperty "exportname".
For each resouce with this property a rule will be generated that replaces the absolute path of this resource with the value of the property. It is principally used to get nice short foldernames on the disc.
The second kind of dynamic rules are generated with the property "export".
The possible values are explained below.

Possible values for the "export" property are:

export=true
   The marked resource is exported.
   For the online project, all links that point to this resource are
   build according to the "linkrules.true.extern" (see above) ruleset.
   All links found on the marked resource that have been
   marked with the <link/> tag are followed and also checked for export.
   Example:
      VFS =/index.html
      RFS =${webapp_path}/opencms/export/index.html
      Link=<a href="${url_prefix_export}/index.html"/>

 export=false
   The marked resource is not exported.
   For the online project, all links that point to this resource are
   build according to the "linkrules.true.online" (see above) ruleset.
   Links on the marked resource that are marked with the <link/> tag are
   NOT followed and therefore not exported.
   Example:
      VFS =/index.html
      RFS =(none)
      Link=<a href="${url_prefix_http}/index.html"/>

 export=dynamic
   The marked resource is not exported.
   For the online project, all links that point to this resource are
   build according to the "linkrules.dynamic.online" (see above) ruleset.
   All links found on the marked resource that have been
   marked with the <link/> tag are followed and also checked for export.
   Example:
      VFS =/index.html
      RFS =(none)
      Link=<a href="${url_prefix_http}/index.html"/>

 Static exort and https:
   If you intent to use https settings with the export,
   you must extend the ${url_prefix_http} to include the http protocol,
   and also set the ${url_prefix_https} and the ${url_prefix_servername}.
   In this case, all links will be absolute links that contain server name
   and protocol (but see also the resource setting "export=https_enabled"
   explained below).

 export=https
   The marked resource is not exported, but treated as a https resource.
   For the online project, all links that point to this resource are
   build according to the "linkrules.true.online" (see above) ruleset,
   using the "url_prefix_https" Prefix.
   All access to this resource that is NOT using the https protocol
   is forbidden!
   All links found on the marked resource that have been
   marked with the <link/> tag are followed and also checked for export.
   Example:
      VFS =/index.html
      RFS =(none)
      Link=<a href="${url_prefix_https}/index.html"/>

 export=https_enabled
   The marked resource is not exported.
   For the online project, all links that point to this resource are
   build according to the "linkrules.true.extern" (see above) ruleset.
   No protocol will be used for the link, so that a browser that
   was in https mode will be staying in https, while a http request
   will stay in http mode.
   Use this parameter esp. for images to prevent the dreaded webbrowser warning
   that tells you something like "The page you are about
   to view uses secure and unsecure data".
   All links found on the marked resource that have been
   marked with the <link/> tag are followed and also checked for export.
   Example:
      VFS =/index.html
      RFS =(none)
      Link=<a href="/${web_app_name}/${opencms_servlet_name}/index.html"/>

 export=dynamic_https_enabled
   The marked resource is not exported, but treated as a https resource.
   This is like "export=dynamic" with the addition that the resource
   will only be delivered if the request is a https request,
   Example:
      VFS =/index.html
      RFS =(none)
      Link=<a href="${url_prefix_https}/index.html"/>

The dynamic rules are only for export, online and extern rules. Don't use them in the offlineruleset.
 The parameterreplacement is done in the dynamic rules. So it works together with the exportname rule.
 If you have a rule befor the dynamic rules that is triggered the parameterreplacement will not happen.
 ruleset.offlinerules=s#^#${url_prefix_http} ruleset.exportrules=*dynamicRules*, \s#^#${url_prefix_export}# ruleset.externrules=*dynamicRules*
 ruleset.dynamic_offlinerules=s#^#${url_prefix_http}#
 ruleset.dynamic_exportrules=*dynamicRules*, \
 s#(.*\.gif$)#${url_prefix_export}$1#, \
 s#(.*\.jpg$)#${url_prefix_export}$1#, \
 s#(.*\.pdf$)#${url_prefix_export}$1#, \
 s#(.*\.css$)#${url_prefix_export}$1#, \
 s#(.*\.doc$)#${url_prefix_export}$1#, \
 s#(.*\.exe$)#${url_prefix_export}$1#, \
 s#(.*\.xls$)#${url_prefix_export}$1#, \
 s#(.*\.js$)#${url_prefix_export}$1#, \
 s#(.*\.zip$)#${url_prefix_export}$1#, \
 s#(.*\.jpeg$)#${url_prefix_export}$1#, \
 s#(.*\.txt$)#${url_prefix_export}$1#, \
 s#^#${url_prefix_http}#
 ruleset.dynamic_externrules=*dynamicRules*, \
 s#(.*\.gif$)#$1#, \
 s#(.*\.jpg$)#$1#, \
 s#(.*\.pdf$)#$1#, \
 s#(.*\.css$)#$1#, \
 s#(.*\.doc$)#$1#, \
 s#(.*\.exe$)#$1#, \
 s#(.*\.xls$)#$1#, \
 s#(.*\.js$)#$1#, \
 s#(.*\.zip$)#$1#, \
 s#(.*\.jpeg$)#$1#, \
 s#(.*\.txt$)#$1#, \
 s#.*##

 

 When set to true the links in the static export that refer to pages in the static export will be relative instead of absolute. Enable this feature only if you use the standard ruleset.

relativelinks_in_export=true

 

我在更新了某个页面后,使用用户凡是访问,总是发现,opencms从exports/sites里面取页面,结果页面无法更新,无奈,只能把sites/mysite的属性设置为export=false这样是可以更新了,可是以后要静态导出,不知道会不会有问题。不知道有没有更好的办法。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值