亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cocoon.properties

?? Prentice Hall published, H.M.Deitel writen.
?? PROPERTIES
字號:
##############################################################################
#                          Cocoon Configuration file                         #
##############################################################################



##########################################
# Global Configurations                  #
##########################################

# Indicates whether or not Cocoon should be visible if
# the requested URI equals the specified one.
selfservlet.enabled = true
selfservlet.uri = /Cocoon.xml

# Indicates whether or not Cocoon should handle errors internally
# and format the error and the exception stack trace to the client
# or return the HTTP error code to the web server and let it handle it.
handle.errors.internally = true

# Indicates the log severity level
#log.level = emergency
#log.level = critical
log.level = error
#log.level = warning
#log.level = info
#log.level = debug



##########################################
# XML Parsers                            #
##########################################

# Apache Xerces 1.0.1+ (http://xml.apache.com/)
parser = org.apache.cocoon.parser.XercesParser

# SUN ProjectX TR2 (http://java.sun.com/xml/)
#parser = org.apache.cocoon.parser.SunXMLParser

# Indicate whether the XML file should be validated or not
# this is turned off by default for faster operation.
parser.validate = false


##########################################
# XSLT Transformers                      #
##########################################

# Apache Xalan (http://xml.apache.org/)
transformer = org.apache.cocoon.transformer.XalanTransformer

# James Clark's XT (http://www.jclark.com/)
#transformer = org.apache.cocoon.transformer.XTTransformer



##########################################
# XML Producers                          #
##########################################

# For example, if you want to produce your XML template reading it from
# the file system, using your producer, you should request the URI:
#   http://your.site.com/your_XML_file.xml?producer=file

# This is the request parameter used to identify the producer in the request:
# (default value is "producer")
producer.parameter = producer

# The syntax for this is
#   producer.type.xxx = full.class.name
# where "xxx" is the producer indentier used in the request
producer.type.file = org.apache.cocoon.producer.ProducerFromFile
producer.type.request = org.apache.cocoon.producer.ProducerFromRequest

# This is used in the example files
producer.type.dummy = org.apache.cocoon.example.DummyProducer

# When producer indication is present in the request
# this configuration allows to map those requests to a particular
# producer indicated here with its type.
# NOTE: this type must present in the above map.
producer.default = file





##########################################
# XML Processors                         #
##########################################

# These are used when the <?cocoon-process type="xxx"?> PI is present.
# If no PI of that type is present, no processing is performed.
# The syntax for this is
#   processor.type.xxx = full.class.name

# XSL Transformations (XSLT)
processor.type.xslt = org.apache.cocoon.processor.xslt.XSLTProcessor

# SQL Processor
processor.type.sql = org.apache.cocoon.processor.sql.SQLProcessor

# LDAP Processor
# NOTE: you need to have the SUN JDNI API (jndi.jar) in your classpath
# in order for this processor to work. Check the FAQ for more information.
#processor.type.ldap = org.apache.cocoon.processor.ldap.LdapProcessor

##########################################
# XSP Processor                          #
##########################################

# eXtensible Server Pages Processor (XSP)
processor.type.xsp = org.apache.cocoon.processor.xsp.XSPProcessor

# supported languages
processor.xsp.languages = java

# Default encoding to be used for code generation and compilation
#   If omitted, the platform's default encoding will be used
#   This encoding should be used in:
#     - The XSP document <?xml?> declaration
#     - The XSLT stylesheet <xsl:output> "encoding" attribute
#     - Cocoon's default formatter "encoding" configuration property
### Example: Russian uses "Cp1251"
### processor.xsp.encoding = Cp1251

# support for the java language
processor.xsp.java.processor = org.apache.cocoon.processor.xsp.language.java.XSPJavaProcessor
processor.xsp.java.logicsheet = xsp-java.xsl
processor.xsp.java.preprocessor = org.apache.cocoon.processor.xsp.language.java.XSPJavaPreprocessor

# sets the repository where the compiled pages are stored.
# NOTE: make sure the directory is readable. This directory is usually
# relative to the web server's or to the servlet engine's. In case you're not
# sure, use an absolute location.
# WARNING: since this repository may contain information you want to remain
# secret, we highly suggest that you protect the repository from untrusted
# access, even read-only. Only Cocoon and the system administrators should
# have access here.
processor.xsp.repository = ./repository

# Set the libraries associated with the given namespace.
# Use the syntax:
#   processor.xsp.logicsheet.<namespace-tag>.<language> = URL to file
# where "URL to file" is usually starting with file:// if you locate
# your custom library in your file system.
processor.xsp.logicsheet.context.java  = resource://org/apache/cocoon/processor/xsp/library/java/context.xsl
processor.xsp.logicsheet.cookie.java   = resource://org/apache/cocoon/processor/xsp/library/java/cookie.xsl
processor.xsp.logicsheet.global.java   = resource://org/apache/cocoon/processor/xsp/library/java/global.xsl
processor.xsp.logicsheet.request.java  = resource://org/apache/cocoon/processor/xsp/library/java/request.xsl
processor.xsp.logicsheet.response.java = resource://org/apache/cocoon/processor/xsp/library/java/response.xsl
processor.xsp.logicsheet.session.java  = resource://org/apache/cocoon/processor/xsp/library/java/session.xsl
processor.xsp.logicsheet.util.java     = resource://org/apache/cocoon/processor/xsp/library/java/util.xsl
processor.xsp.logicsheet.sql.java      = resource://org/apache/cocoon/processor/xsp/library/java/sql.xsl


#### !!!!WARNING!!!! ###########
# The DCP processor should be considered -deprecated- and we highly suggest
# you to convert all of your DCP stuff into XSP pages that, in the future,
# will totally replace DCP.
#
# Dynamic Content Processor (DCP)
processor.type.dcp = org.apache.cocoon.processor.dcp.DCPProcessor
#
################################


##########################################
# XML Formatters                         #
##########################################

# This is used when no <?cocoon?> PI is present to indicate
# which MIME type to associate to the document.
# NOTE: this type must present in the map below.
formatter.default = text/html

# These are used when the <?cocoon-format type="xxx/yyy"?> PI is present
# The syntax for this is
#   formatter.type.xxx/yyy = full.class.name

# Full configurable formatters
###############################

formatter.type.text/html        = org.apache.cocoon.formatter.HTMLFormatter
formatter.type.text/html/loose  = org.apache.cocoon.formatter.HTMLFormatter
formatter.type.text/xhtml       = org.apache.cocoon.formatter.XHTMLFormatter
formatter.type.text/xhtml/loose = org.apache.cocoon.formatter.XHTMLFormatter
formatter.type.text/xml         = org.apache.cocoon.formatter.XMLFormatter
formatter.type.text/wml         = org.apache.cocoon.formatter.XMLFormatter
formatter.type.text/plain       = org.apache.cocoon.formatter.TextFormatter
formatter.type.model/vrml       = org.apache.cocoon.formatter.TextFormatter
formatter.type.text/xslfo       = org.apache.cocoon.formatter.FO2PDFFormatter
formatter.type.application/smil = org.apache.cocoon.formatter.XMLFormatter
formatter.type.image/svg-xml    = org.apache.cocoon.formatter.XMLFormatter

# You can modify the formatter's behavior by adding the following configurations
# for each formatter you want to specifize. Note that even if two formatters
# share the same class, they are will be seen as different entities, accessed
# only by their types.
#
#   formatter.[type].MIME-type      = [formatter MIME type]
#   formatter.[type].encoding       = [encoding type]
#   formatter.[type].doctype-public = [public identifier]
#   formatter.[type].doctype-system = [system identifier]
#   formatter.[type].preserve-space = [whether to preserve space or not]
#   formatter.[type].line-width     = [page width, wrapping column]
#   formatter.[type].indent         = [numbers of spaces for tag indenting]

# HTML 4.0 (strict)
formatter.text/html.doctype-public = -//W3C//DTD HTML 4.0//EN
formatter.text/html.doctype-system = http://www.w3.org/TR/REC-html40/strict.dtd

# XHTML 1.0 (strict)
formatter.text/xhtml.doctype-public = -//W3C//DTD XHTML 1.0 Strict//EN
formatter.text/xhtml.doctype-system = xhtml1-strict.dtd

# WML 1.1
formatter.text/wml.doctype-public = -//WAPFORUM//DTD WML 1.1//EN
formatter.text/wml.doctype-system = http://www.wapforum.org/DTD/wml_1.1.xml
formatter.text/wml.MIME-type = text/vnd.wap.wml

# VRML 97
formatter.model/vrml.MIME-type = model/vrml

# PDF
formatter.text/xslfo.MIME-type = application/pdf

# HTML 4.0 (transitional)
formatter.text/html/loose.doctype-public = -//W3C//DTD HTML 4.0 Transitional//EN
formatter.text/html/loose.doctype-system = http://www.w3.org/TR/REC-html40/loose.dtd
formatter.text/html/loose.preserve-space = true
formatter.text/html/loose.encoding = UTF-8
formatter.text/html/loose.indent = 1
formatter.text/html/loose.line-width = 120
formatter.text/html/loose.MIME-type = text/html

# XHTML 1.0 (transitional)
formatter.text/xhtml/loose.doctype-public = -//W3C//DTD XHTML 1.0 Transitional//EN
formatter.text/xhtml/loose.doctype-system = xhtml1-transitional.dtd

# SMIL
formatter.application/smil.doctype-public = -//W3C//DTD SMIL 1.0//EN
formatter.application/smil.doctype-system = http://www.w3.org/TR/REC-smil/SMIL10.dtd
formatter.application/smil.MIME-type = application/smil

# SVG (20000303 WD)
formatter.image/svg.doctype-public = -//W3C//DTD SVG 20000303 Stylable//EN
formatter.image/svg.doctype-system = http://www.w3.org/TR/2000/03/WD-SVG-20000303/
formatter.image/svg.MIME-type = image/svg-xml




##########################################
# Cache Managers                         #
##########################################

# the default cache
cache = org.apache.cocoon.cache.CocoonCache

# disable page caching
#cache = org.apache.cocoon.cache.NoCache




##########################################
# Object Storage Systems                 #
##########################################

# the default object storage
store = org.apache.cocoon.store.MemoryStore

# Indicates how much free memory should always be available to the JVM. (in bytes)
store.freememory = 1000000

# Indicates what is the maximum heap size that your JVM can reach (in byte).
# This is normally set using the -mx or -Xmx command line argument.
store.heapsize = 60000000

# Indicates the sleeping time for the background thread (in seconds)
#store.interval = 10

# Indicates the thread priority (1-10: 10 is maximum, 1 is minimum)
#store.threadpriority = 10

# Uncomment this to disable the background thread that manages the cache 
# overflow and leave this at request time.
#store.usethread = false



##########################################
# Language Interpreters                  #
##########################################

# These are used by the DCP Processor
interpreter.type.java = org.apache.cocoon.interpreter.java.JavaInterpreter
#interpreter.type.ecmascript = org.apache.cocoon.interpreter.ecmascript.EcmaScriptInterpreter
#interpreter.type.javascript = org.apache.cocoon.interpreter.ecmascript.EcmaScriptInterpreter

# Indicates the default language if not specified in the DCP PIs
interpreter.default = java

# NOTE: see the DCP user guide for instructions on using ecmascript and the
# packages required for this operation.


##########################################
# User Agents (Browsers)                 #
##########################################

# NOTE: numbers indicate the search order. This is very important since
# some words may be found in more than one browser description. (MSIE is
# presented as "Mozilla/4.0 (Compatible; MSIE 4.01; ...")
#
# for example, the "explorer=MSIE" tag indicates that the XSL stylesheet
# associated to the media type "explorer" should be mapped to those browsers
# that have the string "MSIE" in their "user-Agent" HTTP header.

browser.0 = explorer=MSIE
browser.1 = pocketexplorer=MSPIE
browser.2 = handweb=HandHTTP
browser.3 = avantgo=AvantGo
browser.4 = imode=DoCoMo
browser.5 = opera=Opera
browser.6 = lynx=Lynx
browser.7 = java=Java
browser.8 = wap=Nokia
browser.9 = wap=UP
browser.10 = wap=Wapalizer
browser.11 = mozilla5=Mozilla/5
browser.12 = mozilla5=Netscape6/
browser.13 = netscape=Mozilla

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲一区二区中文在线| 欧美大片顶级少妇| 亚洲女同一区二区| 91香蕉视频mp4| 亚洲免费色视频| 欧美午夜不卡在线观看免费| 日韩精品三区四区| 精品剧情v国产在线观看在线| 国产一区二区美女诱惑| 久久先锋影音av| 国产成人精品网址| 有码一区二区三区| 91.成人天堂一区| 国产精品一区在线| 亚洲免费资源在线播放| 欧美日韩国产系列| 国产精品影视在线| 亚洲一二三四在线| 日韩欧美一区二区免费| 国产精选一区二区三区| 亚洲美腿欧美偷拍| 精品日韩欧美在线| 99久久精品国产导航| 三级欧美在线一区| 国产精品精品国产色婷婷| 欧美午夜电影网| 风流少妇一区二区| 日本欧美加勒比视频| 久久久精品日韩欧美| 91国偷自产一区二区三区成为亚洲经典 | 亚洲国产色一区| 欧美tk—视频vk| 91久久久免费一区二区| 久久99精品国产.久久久久| 亚洲欧洲色图综合| 欧美不卡一区二区| 欧美亚洲国产bt| 成人午夜av在线| 麻豆精品视频在线观看| 亚洲欧美日韩一区二区| 久久精品男人的天堂| 91超碰这里只有精品国产| 99免费精品视频| 国产真实乱子伦精品视频| 亚洲成人综合视频| 亚洲欧美另类在线| 国产日韩欧美精品在线| 日韩三级av在线播放| 在线免费精品视频| av网站一区二区三区| 不卡视频免费播放| 奇米精品一区二区三区在线观看| 亚洲欧洲99久久| 久久久青草青青国产亚洲免观| 欧美精品xxxxbbbb| 欧美色视频一区| 99久久精品国产导航| 懂色av一区二区在线播放| 蜜臂av日日欢夜夜爽一区| 亚洲一区二区三区四区在线免费观看 | 久久久精品日韩欧美| 日韩一区二区三区视频在线| 在线观看中文字幕不卡| 99re热这里只有精品免费视频| 国产一区二区三区黄视频 | 国产91精品一区二区麻豆网站| 蜜臀av性久久久久蜜臀av麻豆| 一二三四社区欧美黄| 亚洲人成7777| 亚洲丝袜自拍清纯另类| 亚洲欧美日韩在线不卡| 亚洲男人天堂一区| 亚洲精品久久嫩草网站秘色| 亚洲伦在线观看| 一区二区三区欧美久久| 亚洲美女屁股眼交| 一区二区三区四区精品在线视频 | 成人激情文学综合网| 欧美午夜精品久久久久久孕妇| 成年人午夜久久久| 色综合天天综合狠狠| 91视频在线观看免费| 91看片淫黄大片一级在线观看| 91首页免费视频| 欧美又粗又大又爽| 欧美日韩激情一区二区三区| 欧美日韩国产经典色站一区二区三区| 欧美性猛片xxxx免费看久爱| 欧美日韩视频在线一区二区 | 色婷婷久久一区二区三区麻豆| 不卡视频一二三| 日本电影欧美片| 欧美电影在哪看比较好| 日韩欧美一级特黄在线播放| 久久久久国色av免费看影院| 中文字幕一区二区三中文字幕| 亚洲欧美视频在线观看| 视频一区在线播放| 国产专区欧美精品| 成人性生交大片免费看中文| 91成人免费网站| 日韩一区二区三区免费观看| 国产亚洲综合在线| 伊人一区二区三区| 三级不卡在线观看| 国产高清视频一区| 一本久久a久久精品亚洲| 欧美日韩成人一区| 国产视频在线观看一区二区三区| 亚洲三级在线观看| 免费日韩伦理电影| 99在线精品视频| 在线成人av网站| 国产精品网站在线| 免费一区二区视频| av在线综合网| 26uuu亚洲| 亚洲资源在线观看| 国产一区二区不卡在线| 在线观看日韩国产| 国产视频视频一区| 爽爽淫人综合网网站| 不卡av免费在线观看| 91精品黄色片免费大全| 国产精品看片你懂得| 免费成人在线影院| 在线观看91精品国产入口| 久久久久9999亚洲精品| 亚洲成a天堂v人片| 91蜜桃视频在线| 久久嫩草精品久久久精品| 日一区二区三区| 色噜噜狠狠一区二区三区果冻| www国产成人| 日韩国产欧美在线视频| 91啪亚洲精品| 久久久精品国产免大香伊 | 极品尤物av久久免费看| 在线观看不卡一区| 国产精品久久久久一区二区三区共 | 成人免费电影视频| 日韩一区二区三区在线| 亚洲成人免费视频| 91在线国产观看| 国产亚洲制服色| 狠狠色丁香久久婷婷综| 日韩一区二区中文字幕| 亚洲不卡av一区二区三区| 91在线精品一区二区三区| 国产精品无人区| 国产精品1区2区| 欧美精品一区二区在线播放| 日韩一区精品字幕| 欧美乱熟臀69xxxxxx| 亚洲黄色片在线观看| 一本色道久久综合亚洲91| 亚洲欧洲av色图| 91在线播放网址| 中文字幕在线一区免费| 成人av中文字幕| 最新热久久免费视频| 不卡的看片网站| 国产精品久久久久久久久免费樱桃 | 丁香天五香天堂综合| 久久久久久久久久久久久女国产乱| 蜜桃视频一区二区三区| 欧美一二三四在线| 久久精品国产久精国产| 日韩欧美国产一区二区三区| 激情伊人五月天久久综合| 精品国产免费一区二区三区香蕉| 久久国产精品色| 国产亚洲成aⅴ人片在线观看 | 欧美视频一区二区三区四区| 亚洲自拍偷拍麻豆| 51精品秘密在线观看| 肉丝袜脚交视频一区二区| 日韩精品一区二区三区视频播放 | 欧美色综合天天久久综合精品| 一区二区三区在线看| 欧美午夜电影在线播放| 日本亚洲一区二区| 精品国产乱码久久久久久久| 国产激情视频一区二区三区欧美| 欧美极品少妇xxxxⅹ高跟鞋| 99麻豆久久久国产精品免费| 亚洲一区二区三区中文字幕在线 | 久久精品一区二区三区av| 国产91精品一区二区| 一区二区三区在线视频免费| 欧美日韩亚洲丝袜制服| 精一区二区三区| 国产精品传媒入口麻豆| 在线视频一区二区免费| 美女爽到高潮91| 欧美国产欧美综合| 欧美性色欧美a在线播放| 激情偷乱视频一区二区三区| 国产精品久久久久影院亚瑟| 欧美三级日韩三级|