⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 htmlwidget.java

📁 Sequoia ERP是一个真正的企业级开源ERP解决方案。它提供的模块包括:电子商务应用(e-commerce), POS系统(point of sales),知识管理,存货与仓库管理
💻 JAVA
字号:
/* * $Id: HtmlWidget.java 5462 2005-08-05 18:35:48Z jonesde $ * * Copyright (c) 2004 The Open For Business Project - www.ofbiz.org * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included * in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT * OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * THE USE OR OTHER DEALINGS IN THE SOFTWARE. */package org.ofbiz.widget.screen;import java.io.IOException;import java.io.Writer;import java.net.MalformedURLException;import java.util.HashMap;import java.util.Iterator;import java.util.List;import java.util.Map;import org.ofbiz.base.util.Debug;import org.ofbiz.base.util.GeneralException;import org.ofbiz.base.util.UtilXml;import org.ofbiz.base.util.collections.MapStack;import org.ofbiz.base.util.string.FlexibleStringExpander;import org.ofbiz.base.util.template.FreeMarkerWorker;import org.w3c.dom.Element;import freemarker.template.TemplateException;/** * Widget Library - Screen model HTML class * * @author     <a href="mailto:jonesde@ofbiz.org">David E. Jones</a> * @version    $Rev: 5462 $ * @since      3.1 */public class HtmlWidget extends ModelScreenWidget {    public static final String module = HtmlWidget.class.getName();        protected ModelScreenWidget childWidget;        public HtmlWidget(ModelScreen modelScreen, Element htmlElement) {        super(modelScreen, htmlElement);        List childElementList = UtilXml.childElementList(htmlElement);        Iterator childElementIter = childElementList.iterator();        while (childElementIter.hasNext()) {            Element childElement = (Element) childElementIter.next();            if ("html-template".equals(childElement.getNodeName())) {                this.childWidget = new HtmlTemplate(modelScreen, childElement);            } else if ("html-template-decorator".equals(childElement.getNodeName())) {                this.childWidget = new HtmlTemplateDecorator(modelScreen, childElement);            } else {                throw new IllegalArgumentException("Tag not supported under the platform-specific -> html tag with name: " + childElement.getNodeName());            }        }    }    public void renderWidgetString(Writer writer, Map context, ScreenStringRenderer screenStringRenderer) throws GeneralException {        childWidget.renderWidgetString(writer, context, screenStringRenderer);    }    public String rawString() {        return "<html-widget>" + (this.childWidget==null?"":this.childWidget.rawString());    }        public static void renderHtmlTemplate(Writer writer, FlexibleStringExpander locationExdr, Map context) {        String location = locationExdr.expandString(context);        //Debug.logInfo("Rendering template at location [" + location + "] with context: \n" + context, module);                if (location.endsWith(".ftl")) {            try {                FreeMarkerWorker.renderTemplateAtLocation(location, context, writer);            } catch (MalformedURLException e) {                String errMsg = "Error rendering included template at location [" + location + "]: " + e.toString();                Debug.logError(e, errMsg, module);                throw new RuntimeException(errMsg);            } catch (TemplateException e) {                String errMsg = "Error rendering included template at location [" + location + "]: " + e.toString();                Debug.logError(e, errMsg, module);                throw new RuntimeException(errMsg);            } catch (IOException e) {                String errMsg = "Error rendering included template at location [" + location + "]: " + e.toString();                Debug.logError(e, errMsg, module);                throw new RuntimeException(errMsg);            }        } else {            throw new IllegalArgumentException("Rending not yet support for the tempalte at location: " + location);        }    }        public static class HtmlTemplate extends ModelScreenWidget {        protected FlexibleStringExpander locationExdr;                public HtmlTemplate(ModelScreen modelScreen, Element htmlTemplateElement) {            super(modelScreen, htmlTemplateElement);            this.locationExdr = new FlexibleStringExpander(htmlTemplateElement.getAttribute("location"));        }        public void renderWidgetString(Writer writer, Map context, ScreenStringRenderer screenStringRenderer) {            renderHtmlTemplate(writer, this.locationExdr, context);        }        public String rawString() {            return "<html-template location=\"" + this.locationExdr.getOriginal() + "\"/>";        }    }    public static class HtmlTemplateDecorator extends ModelScreenWidget {        protected FlexibleStringExpander locationExdr;        protected Map sectionMap = new HashMap();                public HtmlTemplateDecorator(ModelScreen modelScreen, Element htmlTemplateDecoratorElement) {            super(modelScreen, htmlTemplateDecoratorElement);            this.locationExdr = new FlexibleStringExpander(htmlTemplateDecoratorElement.getAttribute("location"));                        List htmlTemplateDecoratorSectionElementList = UtilXml.childElementList(htmlTemplateDecoratorElement, "html-template-decorator-section");            Iterator htmlTemplateDecoratorSectionElementIter = htmlTemplateDecoratorSectionElementList.iterator();            while (htmlTemplateDecoratorSectionElementIter.hasNext()) {                Element htmlTemplateDecoratorSectionElement = (Element) htmlTemplateDecoratorSectionElementIter.next();                String name = htmlTemplateDecoratorSectionElement.getAttribute("name");                this.sectionMap.put(name, new HtmlTemplateDecoratorSection(modelScreen, htmlTemplateDecoratorSectionElement));            }        }        public void renderWidgetString(Writer writer, Map context, ScreenStringRenderer screenStringRenderer) {            // isolate the scope            if (!(context instanceof MapStack)) {                context = MapStack.create(context);            }            MapStack contextMs = (MapStack) context;            // create a standAloneStack, basically a "save point" for this SectionsRenderer, and make a new "screens" object just for it so it is isolated and doesn't follow the stack down            MapStack standAloneStack = contextMs.standAloneChildStack();            standAloneStack.put("screens", new ScreenRenderer(writer, contextMs, screenStringRenderer));            SectionsRenderer sections = new SectionsRenderer(this.sectionMap, standAloneStack, writer, screenStringRenderer);                        // put the sectionMap in the context, make sure it is in the sub-scope, ie after calling push on the MapStack            contextMs.push();            context.put("sections", sections);            renderHtmlTemplate(writer, this.locationExdr, context);        }        public String rawString() {            return "<html-template-decorator location=\"" + this.locationExdr.getOriginal() + "\"/>";        }    }    public static class HtmlTemplateDecoratorSection extends ModelScreenWidget {        protected String name;        protected List subWidgets;                public HtmlTemplateDecoratorSection(ModelScreen modelScreen, Element htmlTemplateDecoratorSectionElement) {            super(modelScreen, htmlTemplateDecoratorSectionElement);            this.name = htmlTemplateDecoratorSectionElement.getAttribute("name");            // read sub-widgets            List subElementList = UtilXml.childElementList(htmlTemplateDecoratorSectionElement);            this.subWidgets = ModelScreenWidget.readSubWidgets(this.modelScreen, subElementList);        }        public void renderWidgetString(Writer writer, Map context, ScreenStringRenderer screenStringRenderer) throws GeneralException {            // render sub-widgets            renderSubWidgetsString(this.subWidgets, writer, context, screenStringRenderer);        }        public String rawString() {            return "<html-template-decorator-section name=\"" + this.name + "\"/>";        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -