Author: jleroux
Date: Fri Dec 22 09:28:17 2017 New Revision: 1819019 URL: http://svn.apache.org/viewvc?rev=1819019&view=rev Log: Completed: Remove applet concept in OFBiz (OFBIZ-10094) Completes r1818646, again forgot the plugins :/ Modified: ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/highlighting/myxml-hl.xml ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/slides/browser/xbDOM.js ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/reset.css ofbiz/ofbiz-plugins/trunk/ldap/src/main/java/org/apache/ofbiz/ldap/LdapLoginWorker.java Modified: ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/highlighting/myxml-hl.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/highlighting/myxml-hl.xml?rev=1819019&r1=1819018&r2=1819019&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/highlighting/myxml-hl.xml (original) +++ ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/highlighting/myxml-hl.xml Fri Dec 22 09:28:17 2017 @@ -17,7 +17,6 @@ <element>ABBR</element> <element>ACRONYM</element> <element>ADDRESS</element> - <element>APPLET</element> <element>AREA</element> <element>B</element> <element>BASE</element> Modified: ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/slides/browser/xbDOM.js URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/slides/browser/xbDOM.js?rev=1819019&r1=1819018&r2=1819019&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/slides/browser/xbDOM.js (original) +++ ofbiz/ofbiz-plugins/trunk/cmssite/template/docbook/slides/browser/xbDOM.js Fri Dec 22 09:28:17 2017 @@ -181,14 +181,6 @@ if (document.layers) } } - for (i = 0; i < doc.applets.length; ++i) - { - if (doc.applets[i].name && name == doc.applets[i].name) - { - elmlist[elmlist.length] = doc.applets[i]; - } - } - for (i = 0; i < doc.embeds.length; ++i) { if (doc.embeds[i].name && name == doc.embeds[i].name) Modified: ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/reset.css URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/reset.css?rev=1819019&r1=1819018&r2=1819019&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/reset.css (original) +++ ofbiz/ofbiz-plugins/trunk/ecommerce/webapp/ecommerce/images/reset.css Fri Dec 22 09:28:17 2017 @@ -20,7 +20,7 @@ /*********************************************** Reset ***********************************************/ -html, body, div, span, applet, object, iframe, +html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, Modified: ofbiz/ofbiz-plugins/trunk/ldap/src/main/java/org/apache/ofbiz/ldap/LdapLoginWorker.java URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/ldap/src/main/java/org/apache/ofbiz/ldap/LdapLoginWorker.java?rev=1819019&r1=1819018&r2=1819019&view=diff ============================================================================== --- ofbiz/ofbiz-plugins/trunk/ldap/src/main/java/org/apache/ofbiz/ldap/LdapLoginWorker.java (original) +++ ofbiz/ofbiz-plugins/trunk/ldap/src/main/java/org/apache/ofbiz/ldap/LdapLoginWorker.java Fri Dec 22 09:28:17 2017 @@ -22,14 +22,18 @@ import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; -import java.util.*; +import java.util.Map; import javax.naming.NamingException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.xml.parsers.ParserConfigurationException; -import org.apache.ofbiz.base.util.*; +import org.apache.ofbiz.base.util.Debug; +import org.apache.ofbiz.base.util.UtilHttp; +import org.apache.ofbiz.base.util.UtilMisc; +import org.apache.ofbiz.base.util.UtilProperties; +import org.apache.ofbiz.base.util.UtilXml; import org.apache.ofbiz.entity.GenericValue; import org.apache.ofbiz.ldap.commons.InterfaceOFBizAuthenticationHandler; import org.apache.ofbiz.webapp.control.LoginWorker; @@ -221,7 +225,7 @@ public class LdapLoginWorker extends Log protected static Element getRootElement(HttpServletRequest request) { if (Debug.infoOn()) { - Debug.logInfo("Applet config file: " + ldapConfig, module); + Debug.logInfo("LDAP config file: " + ldapConfig, module); } File configFile = new File(ldapConfig); FileInputStream configFileIS = null; |
Free forum by Nabble | Edit this page |