📄 cmsdialogelements.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/editors/CmsDialogElements.java,v $
* Date : $Date: 2006/03/27 14:52:49 $
* Version: $Revision: 1.17 $
*
* 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.editors;
import org.opencms.file.CmsFile;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsPropertyDefinition;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.i18n.CmsLocaleManager;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsDialog;
import org.opencms.workplace.CmsWorkplaceSettings;
import org.opencms.xml.page.CmsXmlPage;
import org.opencms.xml.page.CmsXmlPageFactory;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
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 editor elements dialog.<p>
*
* The following files use this class:
* <ul>
* <li>/jsp/editors/dialogs/elements.html
* </ul>
* <p>
*
* @author Andreas Zahner
*
* @version $Revision: 1.17 $
*
* @since 6.0.0
*/
public class CmsDialogElements extends CmsDialog {
/** Value for the action: update the elements of the page. */
public static final int ACTION_UPDATE_ELEMENTS = 210;
/** The dialog type. */
public static final String DIALOG_TYPE = "elementselector";
/** Request parameter value for the action: update the elements of the page. */
public static final String DIALOG_UPDATE_ELEMENTS = "updateelements";
/** Prefix for the html input field for the body. */
public static final String PREFIX_PARAM_BODY = "element-";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsDialogElements.class);
/** Stores the element to change to after an element update operation. */
private String m_changeElement;
/** List used to store information of all possible elements of the page. */
private List m_elementList;
/** The element locale. */
private Locale m_elementLocale;
// Special parameters used by this dialog
private String m_paramElementlanguage;
private String m_paramElementname;
private String m_paramTempFile;
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsDialogElements(CmsJspActionElement jsp) {
super(jsp);
m_changeElement = "";
}
/**
* Public constructor with JSP variables.<p>
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsDialogElements(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
m_changeElement = "";
}
/**
* Creates a list of possible elements of a template from the template property "template-elements"
* and the elements available in the provided xmlPage.<p>
*
* @param cms the CmsObject
* @param xmlPage the resource to read the elements from
* @param xmlPageUri the URI of the resouirce to read the template property from
* @param locale the current element locale
* @return the list of elements in a String array with element name, nice name (if present) and mandatory flag
*/
public static List computeElements(CmsObject cms, CmsXmlPage xmlPage, String xmlPageUri, Locale locale) {
List result = new ArrayList();
if (xmlPage != null) {
List elementNames = xmlPage.getNames(locale);
Iterator i = elementNames.iterator();
while (i.hasNext()) {
String name = (String)i.next();
CmsDialogElement element = new CmsDialogElement(name, null, false, false, true);
result.add(element);
}
}
String currentTemplate = null;
try {
currentTemplate = cms.readPropertyObject(xmlPageUri, CmsPropertyDefinition.PROPERTY_TEMPLATE, true).getValue();
} catch (CmsException e) {
if (LOG.isWarnEnabled()) {
LOG.warn(e.getLocalizedMessage(), e);
}
}
if (currentTemplate != null && currentTemplate.length() > 0) {
// template found, check template-elements property
String elements = null;
try {
// read the property from the template file
elements = cms.readPropertyObject(
currentTemplate,
CmsPropertyDefinition.PROPERTY_TEMPLATE_ELEMENTS,
false).getValue(null);
} catch (CmsException e) {
if (LOG.isWarnEnabled()) {
LOG.warn(e.getLocalizedMessage(), e);
}
}
if (elements != null) {
// elements are defined on template file, merge with available elements
List tokens = CmsStringUtil.splitAsList(elements, ',');
Iterator it = tokens.iterator();
while (it.hasNext()) {
String currentElement = (String)it.next();
String niceName = null;
boolean mandatory = false;
int sepIndex = currentElement.indexOf("|");
if (sepIndex != -1) {
// nice name found for current element, extract it
niceName = currentElement.substring(sepIndex + 1);
currentElement = currentElement.substring(0, sepIndex);
}
if (currentElement.endsWith("*")) {
// element is mandatory
mandatory = true;
currentElement = currentElement.substring(0, currentElement.length() - 1);
}
CmsDialogElement element = new CmsDialogElement(currentElement, niceName, mandatory, true, false);
if (result.contains(element)) {
element.setExisting(true);
result.remove(element);
}
result.add(element);
}
}
}
Collections.sort(result);
return result;
}
/**
* Creates a list of possible elements of a template from the template property "template-elements"
* and the elements available in the provided resource file.<p>
*
* @param cms the CmsObject
* @param xmlPageUri the resource to read the elements from
* @param locale the current element locale
* @return the list of elements in a String array with element name, nice name (if present) and mandatory flag
*/
public static List computeElements(CmsObject cms, String xmlPageUri, Locale locale) {
CmsXmlPage page = null;
try {
// read the xmlpage file
CmsFile pageFile = cms.readFile(xmlPageUri, CmsResourceFilter.IGNORE_EXPIRATION);
page = CmsXmlPageFactory.unmarshal(cms, pageFile);
} catch (CmsException e) {
LOG.warn(Messages.get().getBundle().key(Messages.LOG_READ_XMLPAGE_FAILED_1, xmlPageUri), e);
// xmlpage will be null, only "template-elements" property on template will be checked
}
return computeElements(cms, page, xmlPageUri, locale);
}
/**
* Updates the enabled/diabled status of all elements of the current page.<p>
*
* @throws JspException if there is an error including the error page
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -