|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opencms.workplace.CmsWorkplace
org.opencms.workplace.tools.CmsToolDialog
org.opencms.workplace.CmsDialog
org.opencms.workplace.CmsMultiDialog
org.opencms.workplace.commons.CmsTouch
public class CmsTouch
Provides methods for the touch resource(s) dialog.
The following files use this class:
Field Summary | |
---|---|
static int |
ACTION_TOUCH
Value for the action: touch. |
static java.lang.String |
DEFAULT_DATE_STRING
Default value for date last modified, the release and expire date. |
static java.lang.String |
DIALOG_TYPE
The dialog type. |
static java.lang.String |
PARAM_CONTENT
Request parameter name for the content flag. |
static java.lang.String |
PARAM_NEWTIMESTAMP
Request parameter name for timestamp. |
static java.lang.String |
PARAM_RECURSIVE
Request parameter name for the recursive flag. |
Fields inherited from class org.opencms.workplace.CmsMultiDialog |
---|
DELIMITER_RESOURCES, PARAM_RESOURCELIST |
Fields inherited from class org.opencms.workplace.tools.CmsToolDialog |
---|
PARAM_BASE, PARAM_FORCE, PARAM_PATH, PARAM_ROOT, PARAM_STYLE, STYLE_NEW |
Constructor Summary | |
---|---|
CmsTouch(CmsJspActionElement jsp)
Public constructor. |
|
CmsTouch(javax.servlet.jsp.PageContext context,
javax.servlet.http.HttpServletRequest req,
javax.servlet.http.HttpServletResponse res)
Public constructor with JSP variables. |
Method Summary | |
---|---|
void |
actionTouch()
Performs the resource touching, will be called by the JSP page. |
java.lang.String |
buildCheckContent()
Creates the "rewrite content" checkbox. |
java.lang.String |
buildCheckRecursive()
Creates the "recursive" checkbox for touching subresources of folders. |
java.lang.String |
calendarIncludes()
Deprecated. use CmsCalendarWidget.calendarIncludes(java.util.Locale) , this is just here so that old JSP still work |
java.lang.String |
calendarInit(java.lang.String inputFieldId,
java.lang.String triggerButtonId,
java.lang.String align,
boolean singleClick,
boolean weekNumbers,
boolean mondayFirst,
java.lang.String dateStatusFunc,
boolean showTime)
Deprecated. use CmsCalendarWidget.calendarInit(org.opencms.i18n.CmsMessages, String, String, String, boolean, boolean, boolean, String, boolean) , this is just here so that old JSP still work |
java.lang.String |
getCurrentDateTime()
Returns the current date and time as String formatted in localized pattern. |
java.lang.String |
getParamContent()
Returns the value of the content parameter, or null if this parameter was not provided. |
java.lang.String |
getParamNewtimestamp()
Returns the value of the new timestamp parameter, or null if this parameter was not provided. |
java.lang.String |
getParamRecursive()
Returns the value of the recursive parameter, or null if this parameter was not provided. |
protected void |
initWorkplaceRequestValues(CmsWorkplaceSettings settings,
javax.servlet.http.HttpServletRequest request)
Analyzes the request for workplace parameters and adjusts the workplace settings accordingly. |
protected boolean |
performDialogOperation()
Performs the resource touching. |
void |
setParamContent(java.lang.String value)
Sets the value of the content parameter. |
void |
setParamNewtimestamp(java.lang.String value)
Sets the value of the new timestamp parameter. |
void |
setParamRecursive(java.lang.String value)
Sets the value of the recursive parameter. |
protected void |
touchSingleResource(java.lang.String resourceName,
long timeStamp,
boolean recursive,
boolean correctDate,
boolean touchContent)
Performs a touch operation for a single resource. |
Methods inherited from class org.opencms.workplace.CmsMultiDialog |
---|
addMultiOperationException, buildLockHeaderBox, buildResourceList, checkMultiOperationException, checkResourcePermissions, getParamResourcelist, getResourceList, getResourceListAsParam, isMultiOperation, isOperationOnFolder, setDialogTitle, setParamResource, setParamResourcelist |
Methods inherited from class org.opencms.workplace.tools.CmsToolDialog |
---|
dialogTitle, getAdminTool, getCurrentToolPath, getParamBase, getParamForce, getParamPath, getParamRoot, getParamStyle, getParentPath, getToolManager, iconsBlockArea, iconsBlockAreaEnd, iconsBlockAreaStart, initAdminTool, pageBody, pageHtmlStyle, setParamBase, setParamForce, setParamPath, setParamRoot, setParamStyle, useNewStyle |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int ACTION_TOUCH
public static final java.lang.String DEFAULT_DATE_STRING
public static final java.lang.String DIALOG_TYPE
public static final java.lang.String PARAM_CONTENT
public static final java.lang.String PARAM_NEWTIMESTAMP
public static final java.lang.String PARAM_RECURSIVE
Constructor Detail |
---|
public CmsTouch(CmsJspActionElement jsp)
jsp
- an initialized JSP action elementpublic CmsTouch(javax.servlet.jsp.PageContext context, javax.servlet.http.HttpServletRequest req, javax.servlet.http.HttpServletResponse res)
context
- the JSP page contextreq
- the JSP requestres
- the JSP responseMethod Detail |
---|
public void actionTouch() throws javax.servlet.jsp.JspException
javax.servlet.jsp.JspException
- if problems including sub-elements occurpublic java.lang.String buildCheckContent()
public java.lang.String buildCheckRecursive()
public java.lang.String calendarIncludes()
CmsCalendarWidget.calendarIncludes(java.util.Locale)
, this is just here so that old JSP still work
public java.lang.String calendarInit(java.lang.String inputFieldId, java.lang.String triggerButtonId, java.lang.String align, boolean singleClick, boolean weekNumbers, boolean mondayFirst, java.lang.String dateStatusFunc, boolean showTime)
CmsCalendarWidget.calendarInit(org.opencms.i18n.CmsMessages, String, String, String, boolean, boolean, boolean, String, boolean)
, this is just here so that old JSP still work
inputFieldId
- the ID of the input field where the date is pasted totriggerButtonId
- the ID of the button which triggers the calendaralign
- initial position of the calendar popup elementsingleClick
- if true, a single click selects a date and closes the calendar, otherwise calendar is closed by doubleclickweekNumbers
- show the week numbers in the calendar or notmondayFirst
- show monday as first day of weekdateStatusFunc
- name of the function which determines if/how a date should be disabledshowTime
- true if the time selector should be shown, otherwise false
public java.lang.String getCurrentDateTime()
public java.lang.String getParamContent()
The content parameter on files decides if also the content is rewritten.
public java.lang.String getParamNewtimestamp()
The timestamp parameter stores the new timestamp as String.
public java.lang.String getParamRecursive()
The recursive parameter on folders decides if all subresources of the folder should be touched, too.
public void setParamContent(java.lang.String value)
value
- the value to setpublic void setParamNewtimestamp(java.lang.String value)
value
- the value to setpublic void setParamRecursive(java.lang.String value)
value
- the value to setprotected void initWorkplaceRequestValues(CmsWorkplaceSettings settings, javax.servlet.http.HttpServletRequest request)
CmsWorkplace
initWorkplaceRequestValues
in class CmsDialog
settings
- the workplace settingsrequest
- the current requestCmsWorkplace.initWorkplaceRequestValues(org.opencms.workplace.CmsWorkplaceSettings, javax.servlet.http.HttpServletRequest)
protected boolean performDialogOperation() throws CmsException
performDialogOperation
in class CmsMultiDialog
CmsException
- if touching is not successfulprotected void touchSingleResource(java.lang.String resourceName, long timeStamp, boolean recursive, boolean correctDate, boolean touchContent) throws CmsException
resourceName
- the resource name of the resource to touchtimeStamp
- the new time stamprecursive
- the flag if the touch operation is recursivecorrectDate
- the flag if the new time stamp is a correct datetouchContent
- if the content has to be rewritten
CmsException
- if touching the resource fails
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |