⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jetspeedresources.properties

📁 jetspeed源代码
💻 PROPERTIES
📖 第 1 页 / 共 3 页
字号:
daemon.entry=feeddaemon
daemon.entry=diskcachedaemon
daemon.entry=badurlmanagerdaemon

daemon.feeddaemon.classname=org.apache.jetspeed.daemon.impl.FeedDaemon
daemon.feeddaemon.interval=10800
daemon.feeddaemon.onstartup=true

daemon.diskcachedaemon.classname=org.apache.jetspeed.daemon.impl.DiskCacheDaemon
daemon.diskcachedaemon.interval=3600
daemon.diskcachedaemon.onstartup=true

daemon.badurlmanagerdaemon.classname=org.apache.jetspeed.daemon.impl.BadURLManagerDaemon
daemon.badurlmanagerdaemon.interval=3600
daemon.badurlmanagerdaemon.onstartup=true


#########################################
# Jetspeed Content                      #
#########################################
#Jetspeed supports a more advanced weblog format that allows you to publish 
#content to your website.  This is based on RSS 0.91 but allows you to have 
#more Slashdot style content with topics, icons, etc.


#Jetspeed content providers.  This should be a multi-valued property set where 
#you specify the list of providers you want to use:

#Default: jetspeed
content.provider.list=jetspeed

#Config:  You need to tell Jetspeed how to fetch the content you want and 
#what stylesheet to use.  The mechanism is setup like this:
#
#content.provider.[provider-name].url=[url to your content xml file]
#content.provider.[provider-name].stylesheet.url=[url to the stylesheet to use with your content]
#content.provider.[provider-name].description=[a full description of your content]
#content.provider.[provider-name].title=[a title for your content.]

content.provider.jetspeed.url=/jcm/jetspeed-content.xml
content.provider.jetspeed.stylesheet.url=/WEB-INF/xsl/jpc-full.xsl
content.provider.jetspeed.title=Jetspeed
content.provider.jetspeed.description=Jetspeed weblog

#########################################
# Automatic Portlet Creation            #
#########################################
# Jetspeed can automatically create/instantiate all your Portlets and place them
# in the cache when Jetspeed starts up.  
autocreate.portlets=false

#########################################
# IdGenerator Service                   #
#########################################
# Classname of the ID Generation implemented as a Turbine service.
services.IdGenerator.classname=org.apache.jetspeed.services.idgenerator.JetspeedIdGeneratorService

# counter.start - Initial value of conter as a base 10 integer.  JetspeedIdGenerator 
#                 will return the HEX representation of the value so 160 = a0.
#                 Default = 65536 (HEX representation = 1000)
services.IdGenerator.counter.start=65536

# peid.prefix   - Prefix of PEID. Default = P-
services.IdGenerator.peid.prefix=P-

# peid.suffix   - Suffix of PEID. Default = (nothing)
services.IdGenerator.peid.suffix=

#########################################
# Search                                #
#########################################
# Classname of the ID Generation implemented as a Turbine service.
services.Search.classname=org.apache.jetspeed.services.search.lucene.LuceneSearchService
services.Search.directory=/WEB-INF/SearchIndex

services.Search.document.java.net.URL = org.apache.jetspeed.services.search.handlers.URLToDocHandler
services.Search.document.org.apache.jetspeed.portal.Portlet = org.apache.jetspeed.services.search.handlers.PortletToDocHandler
services.Search.document.org.apache.jetspeed.om.registry.RegistryEntry = org.apache.jetspeed.services.search.handlers.RegistryEntryToDocHandler
services.Search.document.org.apache.jetspeed.om.registry.base.BasePortletEntry = org.apache.jetspeed.services.search.handlers.PortletEntryToDocHandler

#########################################
# ThreadPool Service                    #
#########################################
services.ThreadPool.classname=org.apache.jetspeed.services.threadpool.JetspeedThreadPoolService

#Specify the initial number of threads to create
#Default: 50
services.ThreadPool.init.count=5

#Specify the maximum number of threads to create
#Default: 100
services.ThreadPool.max.count=20

#Specify the minimum number of threads to keep as spare until you hit the max
#Default: 15
services.ThreadPool.minspare.count=5


#########################################
# Registry Service                      #
#########################################
services.Registry.classname=org.apache.jetspeed.services.registry.CastorRegistryService
services.Registry.directory=/WEB-INF/conf/
services.Registry.mapping=/WEB-INF/conf/registry.xml
services.Registry.default.Portlet=local-portlets
services.Registry.default.PortletControl=local-managers
services.Registry.default.PortletController=local-managers
services.Registry.default.MediaType=local-medias
services.Registry.default.Skin=local-skins
services.Registry.default.Security=local-security
services.Registry.default.Client=local-clients
services.Registry.extension=.xreg
# Refresh rate, in seconds.  0 = no refresh.  Min value = 60
services.Registry.refreshRate=300


#########################################
# DATABASE Registry Service             #
#########################################
#services.DatabaseRegistry.classname=org.apache.jetspeed.services.registry.DatabaseRegistryService
#services.DatabaseRegistry.default.Portlet=true
#services.DatabaseRegistry.default.Skin=true

# Refresh rate, in seconds.  0 = no refresh.  Min value = 60
#services.DatabaseRegistry.refreshRate=300


#########################################
# PSMLManager Service                   #
#########################################
# Select your PSML Manager service by uncommenting it. The default is 'CastorPsmlManagerService'
# If you uncomment one service, you must comment-out the other service
########################################################################################################

########################################################################################################
# To use the File-based PSML service, select (uncomment) this service (this is the default setting):
services.PsmlManager.classname=org.apache.jetspeed.services.psmlmanager.CastorPsmlManagerService
########################################################################################################
########################################################################################################
# To use the DB-PSML service, select (uncomment) this service, and comment out the above service:
# services.PsmlManager.classname=org.apache.jetspeed.services.psmlmanager.db.DatabasePsmlManagerService
########################################################################################################

#########################################
# PSMLImportManager Service             #
#########################################
# Select your PSML Import Manager service by uncommenting it. The default is 'CastorPsmlManagerService'
# If you uncomment one importer service, you must comment-out the other service
# You must run the importer manually. From the build directory, type 'ant import'
# the PsmlImportManager is the service which will export the psml from its datastore to the current
# PsmlManager's datastore. The PsmlImportManager and PsmlManager should never be the same. 
########################################################################################################

# Select this service to import from File System to the Database (make sure that DatabasePsmlManagerService is selected above)
services.PsmlImportManager.classname=org.apache.jetspeed.services.psmlmanager.CastorPsmlManagerService

# Select this service to import from the Database to the File System (make sure that CastorPsmlManagerService is selected above)
# services.PsmlImportManager.classname=org.apache.jetspeed.services.psmlmanager.db.DatabasePsmlManagerService

services.PsmlManager.root=/WEB-INF/psml
services.PsmlManager.ext=.psml
services.PsmlManager.mapping=/WEB-INF/conf/psml-mapping.xml
#The following property is used for DatabasePsmlManagerService only. The default is false that is caching is
#not allowed with DatabasePsmlManagerService, as the current implementation of caching does not work on a
#distributed environment. It works only in a single server environment. 
services.PsmlManager.caching-on=false
#services.PsmlManager.default-resource=default.psml
#services.PsmlManager.media-types=html:wml
#services.PsmlManager.admin=admin

## only used by Castor(File) PSML Manager 
# scan rate in seconds (every 2 minutes)
services.PsmlManager.scanRate=120
# cache size - number of PSML pages to cache
services.PsmlManager.cacheSize=100

#########################################
# Portlet Factory                       #
#########################################
services.PortletFactory.classname=org.apache.jetspeed.services.portletfactory.JetspeedPortletFactoryService
services.PortletFactory.enable.cache=true

#########################################
# Portlet Cache                         #
#########################################
# TimeToLive.default = number of milliseconds an unused portlet will remain in cache.
#                      Default 2700000 which is 45 minutes (45 * 60 * 1000)
services.PortletCache.classname=org.apache.jetspeed.services.portletcache.JetspeedPortletCacheService
services.PortletCache.TimeToLive.default=2700000

#########################################
# Portal Service                        #
#########################################
services.PortalToolkit.classname=org.apache.jetspeed.services.portaltoolkit.JetspeedPortalToolkitService
services.PortalToolkit.default.control=TitlePortletControl
services.PortalToolkit.default.controller=OneColumn
# services.PortalToolkit.default.skin=orange-grey
services.PortalToolkit.default.skin=Jetspeed
services.PortalToolkit.default.user.security.ref = owner-only
services.PortalToolkit.default.anon.security.ref = anon-view_admin-all
services.PortalToolkit.default.role.security.ref =
services.PortalToolkit.default.group.security.ref =

#########################################
# Profiler Service                      #
#########################################
# These settings are used by the new Jetspeed profiler starting with release 1.3a2

# The Profiler Service is implemented as a Turbine service.
services.Profiler.classname=org.apache.jetspeed.services.profiler.JetspeedProfilerService

# The default resource filename
services.Profiler.resource.default=default

# The default resource filename extension 
services.Profiler.resource.ext=.psml

# When a new user is created, this account's psml is cloned to the new account psml
# Setting this account to nothing configures role-based psml as the default method for new users
services.Profiler.newuser.template=turbine

# Media types template to create for user. (comma separated)
services.Profiler.newuser.media_types=html,wml

#
# Profiler Fallback options
#
# use Role-based PSML fallback
services.Profiler.rolefallback=true

# Consider the language as part of the fallback?
services.Profiler.fallback.language=true

# Consider the country code as part of the fallback?

⌨️ 快捷键说明

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