📄 cmspropertycustom.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/commons/CmsPropertyCustom.java,v $
* Date : $Date: 2006/03/27 14:52:18 $
* Version: $Revision: 1.22 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.workplace.commons;
import org.opencms.file.CmsProperty;
import org.opencms.file.CmsPropertyDefinition;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.i18n.CmsEncoder;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsWorkplace;
import org.opencms.workplace.CmsWorkplaceSettings;
import org.opencms.workplace.explorer.CmsExplorerTypeSettings;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
import org.apache.commons.logging.Log;
/**
* Provides methods for the customized property dialog.<p>
*
* This is a special dialog that is used for the different resource types in the workplace.<p>
* For the xmlpage resource type, this class is extended in the editor subpackage.<p>
*
* The following files use this class:
* <ul>
* <li>/commons/property_custom.jsp
* </ul>
* <p>
*
* @author Andreas Zahner
*
* @version $Revision: 1.22 $
*
* @since 6.0.0
*/
public class CmsPropertyCustom extends CmsPropertyAdvanced {
/** Value for the action: edit the properties. */
public static final int ACTION_EDIT = 500;
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsPropertyCustom.class);
/** Holds all active properties for the current resource. */
private Map m_activeProperties;
/** Helper object holding the information about the customized properties. */
private CmsExplorerTypeSettings m_explorerTypeSettings;
/** Flag to determine if navigation properties are shown. */
private boolean m_showNavigation;
/**
* Public constructor with JSP action element.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsPropertyCustom(CmsJspActionElement jsp) {
super(jsp);
}
/**
* Public constructor with JSP variables.<p>
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsPropertyCustom(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
}
/**
* Performs the edit properties action, will be called by the JSP page.<p>
*
* @param request the HttpServletRequest
* @throws JspException if problems including sub-elements occur
*/
public void actionEdit(HttpServletRequest request) throws JspException {
// save initialized instance of this class in request attribute for included sub-elements
getJsp().getRequest().setAttribute(SESSION_WORKPLACE_CLASS, this);
try {
// save the changes only if resource is properly locked
if (isEditable()) {
performEditOperation(request);
}
} catch (Throwable e) {
// Cms error defining property, show error dialog
includeErrorpage(this, e);
}
}
/**
* Creates the HTML String for the edit properties form.<p>
*
* @return the HTML output String for the edit properties form
*/
public String buildEditForm() {
StringBuffer result = new StringBuffer(2048);
// check if the properties are editable
boolean editable = isEditable();
// create the column heads
result.append("<table border=\"0\">\n");
result.append("<tr>\n");
result.append("\t<td class=\"textbold\">");
result.append(key(Messages.GUI_PROPERTY_0));
result.append("</td>\n");
result.append("\t<td class=\"textbold\">");
result.append(key(Messages.GUI_PROPERTY_VALUE_0));
result.append("</td>\n");
result.append("\t<td class=\"textbold\" style=\"white-space: nowrap;\">");
result.append(key(Messages.GUI_PROPERTY_USED_0));
result.append("</td>\n");
result.append("</tr>\n");
result.append("<tr><td><span style=\"height: 6px;\"></span></td></tr>\n");
// create the text property input rows from explorer type settings
result.append(buildTextInput(editable));
// show navigation properties if enabled in explorer type settings
if (showNavigation()) {
result.append(buildNavigationProperties(editable));
}
result.append("</table>");
return result.toString();
}
/**
* Builds the JavaScript to set the property form values delayed.<p>
*
* The values of the properties are not inserted directly in the <input> tag,
* because there is a display issue when the property values are very long.
* This method creates JavaScript to set the property input field values delayed.
* On the JSP, the code which is created from this method has to be executed delayed after
* the creation of the html form, e.g. in the <body> tag with the attribute
* onload="window.setTimeout('doSet()',50);".<p>
*
* @return the JavaScript to set the property form values delayed
*/
public String buildSetFormValues() {
StringBuffer result = new StringBuffer(1024);
Iterator i = getExplorerTypeSettings().getProperties().iterator();
// iterate over the customized properties
while (i.hasNext()) {
String curProperty = (String)i.next();
if (getActiveProperties().containsKey(curProperty)) {
CmsProperty property = (CmsProperty)getActiveProperties().get(curProperty);
String propValue = property.getValue();
if (propValue != null) {
propValue = propValue.trim();
propValue = CmsStringUtil.escapeJavaScript(propValue);
// create the JS output for a single property
result.append("\tdocument.getElementById(\"");
result.append(PREFIX_VALUE);
result.append(curProperty);
result.append("\").value = \"");
result.append(propValue);
result.append("\";\n");
}
}
}
// check if the navigation text property value has to be added
if (showNavigation() && getActiveProperties().containsKey(CmsPropertyDefinition.PROPERTY_NAVTEXT)) {
CmsProperty property = (CmsProperty)getActiveProperties().get(CmsPropertyDefinition.PROPERTY_NAVTEXT);
String propValue = property.getValue();
if (propValue != null) {
propValue = propValue.trim();
propValue = CmsStringUtil.escapeJavaScript(propValue);
// create the JS output for a single property
result.append("\tdocument.getElementById(\"");
result.append(PREFIX_VALUE);
result.append(CmsPropertyDefinition.PROPERTY_NAVTEXT);
result.append("\").value = \"");
result.append(propValue);
result.append("\";\n");
}
}
return result.toString();
}
/**
* Builds a button row with an "ok", a "cancel" and an "advanced" button.<p>
*
* @param okAttributes additional attributes for the "ok" button
* @param cancelAttributes additional attributes for the "cancel" button
* @param advancedAttributes additional attributes for the "advanced" button
* @return the button row
*/
public String dialogButtonsOkCancelAdvanced(String okAttributes, String cancelAttributes, String advancedAttributes) {
if (isEditable()) {
int okButton = BUTTON_OK;
if (getParamDialogmode() != null && getParamDialogmode().startsWith(MODE_WIZARD)) {
// in wizard mode, display finish button instead of ok button
okButton = BUTTON_FINISH;
}
return dialogButtons(new int[] {okButton, BUTTON_CANCEL, BUTTON_ADVANCED}, new String[] {
okAttributes,
cancelAttributes,
advancedAttributes});
} else {
return dialogButtons(new int[] {BUTTON_CLOSE, BUTTON_ADVANCED}, new String[] {
cancelAttributes,
advancedAttributes});
}
}
/**
* Returns the explorer type settings for the current resource type.<p>
*
* @return the explorer type settings for the current resource type
*/
public CmsExplorerTypeSettings getExplorerTypeSettings() {
return m_explorerTypeSettings;
}
/**
* Sets the explorer type settings for the current resource type.<p>
*
* @param typeSettings the explorer type settings for the current resource type
*/
public void setExplorerTypeSettings(CmsExplorerTypeSettings typeSettings) {
m_explorerTypeSettings = typeSettings;
}
/**
* Sets if navigation properties are shown.<p>
*
* @param showNav true, if navigation properties are shown, otherwise false
*/
public void setShowNavigation(boolean showNav) {
m_showNavigation = showNav;
}
/**
* Returns if navigation properties are shown.<p>
*
* @return true, if navigation properties are shown, otherwise false
*/
public boolean showNavigation() {
return m_showNavigation;
}
/**
* Builds the HTML code for the special properties of an xmlpage resource.<p>
*
* @param editable indicates if the properties are editable
* @return the HTML code for the special properties of a file resource
*/
protected StringBuffer buildNavigationProperties(boolean editable) {
StringBuffer result = new StringBuffer(1024);
// create "disabled" attribute if properties are not editable
String disabled = "";
if (!editable) {
disabled = " disabled=\"disabled\"";
}
// create "add to navigation" checkbox
result.append(buildTableRowStart(key(Messages.GUI_PROPERTY_ADD_TO_NAV_0)));
result.append("<input type=\"checkbox\" name=\"enablenav\" id=\"enablenav\" value=\"true\" onClick=\"toggleNav();\"");
if (getActiveProperties().containsKey(CmsPropertyDefinition.PROPERTY_NAVTEXT)
|| getActiveProperties().containsKey(CmsPropertyDefinition.PROPERTY_NAVPOS)) {
result.append(" checked=\"checked\"");
}
result.append(disabled);
result.append(">");
result.append("</td>\n");
result.append("\t<td class=\"textcenter\">");
result.append(" ");
result.append(buildTableRowEnd());
// create NavText input row
result.append(buildPropertyEntry(CmsPropertyDefinition.PROPERTY_NAVTEXT, key(Messages.GUI_LABEL_NAVTEXT_0), editable));
// create NavPos select box row
result.append(buildTableRowStart(key(Messages.GUI_CHNAV_INSERT_AFTER_0)));
result.append(CmsChnav.buildNavPosSelector(getCms(), getParamResource(), disabled
+ " id=\"navpos\" class=\"maxwidth noborder\"", getMessages()));
// get the old NavPos value and store it in hidden field
String navPos = null;
try {
navPos = getCms().readPropertyObject(getParamResource(), CmsPropertyDefinition.PROPERTY_NAVPOS, false).getValue();
} catch (CmsException e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage());
}
}
if (navPos == null) {
navPos = "";
}
result.append("<input type=\"hidden\" name=\"");
result.append(PREFIX_HIDDEN);
result.append(CmsPropertyDefinition.PROPERTY_NAVPOS);
result.append("\" value=\"");
result.append(navPos);
result.append("\">");
result.append("</td>\n");
result.append("\t<td class=\"textcenter\">");
result.append(" ");
result.append(buildTableRowEnd());
return result;
}
/**
* Builds the html for a single text input property row.<p>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -