Constructor and Description |
---|
DspFns() |
Modifier and Type | Method and Description |
---|---|
static String |
outDeviceCSSContent(String deviceType)
Generates the complete CSS content of all components in the
specified device.
|
static String |
outDeviceJavaScripts(String deviceType)
Returns HTML tags to include JavaScript files of the specified
device for the current application (never null).
|
static String |
outDeviceStyleSheets(String deviceType)
Returns HTML tags to include style sheets of the specified device
for the current application (never null).
|
static String |
outZkHtmlTags(String deviceType)
Generates and returns the ZK specific HTML tags such as stylesheet
and JavaScript.
|
static void |
setCacheControl(String prop,
int hours)
Sets the Cache-Control and Expires headers for the response.
|
static void |
setCSSCacheControl()
Sets the Cache-Control and Expires headers for the CSS files
of class Web resources.
|
static void |
setCWRCacheControl()
Sets the Cache-Control and Expires headers for class Web resources.
|
public static String outZkHtmlTags(String deviceType)
deviceType
- the device type. If null, ajax is assumed.public static String outDeviceCSSContent(String deviceType)
Notice that it generates the content, while
outDeviceStyleSheets(java.lang.String)
generates the HTML tag that
will include the content.
public static final String outDeviceStyleSheets(String deviceType)
This method is used for DSP pages.
deviceType
- the device type. If null, ajax is assumed.public static final String outDeviceJavaScripts(String deviceType)
public static void setCacheControl(String prop, int hours)
prop
- the name of the property to check if the headers
shall be generated. If null, it is always generated.
If "false" is specified with this property, this method won't
generate anything. In other words, "false" means to disable the cache.
If It is used for debugging/developing purpose.hours
- the number of hours the client is allowed to cache the
resourcepublic static void setCSSCacheControl()
It first check if org.zkoss.web.classWebResource.cache is turned off, and then check how many hours specified in org.zkoss.web.classWebResource.cache.CSS.hours. If it is turned off or the value of hours is non-positive, nothing is generated Otherwise, it generates the header with the specified hours (default: 8760).
setCWRCacheControl()
public static void setCWRCacheControl()
Notice that, for the CSS files, please use setCSSCacheControl()
instead.
Copyright © 2017. All rights reserved.