details: /erp/devel/pi/rev/b85f2815bdcc changeset: 7596:b85f2815bdcc user: Iván Perdomo <ivan.perdomo <at> openbravo.com> date: Mon Jun 14 11:50:40 2010 +0200 summary: Reformatted code and updated license. Related to issue 13593
details: /erp/devel/pi/rev/8eea984425f6 changeset: 7597:8eea984425f6 user: Iván Perdomo <ivan.perdomo <at> openbravo.com> date: Mon Jun 14 11:54:59 2010 +0200 summary: Fixes issue 13593: Added bolOneFormSubmission flag to true The bolOneFormSubmission flag disables multiple form submition by enabling/disabling a gSubmitted flag. If this flag is 1 the form.submit() is not made. diffstat: src/org/openbravo/erpCommon/businessUtility/WindowTabs.java | 20 ++++++------ 1 files changed, 10 insertions(+), 10 deletions(-) diffs (54 lines): diff -r 44c5b03fcca1 -r 8eea984425f6 src/org/openbravo/erpCommon/businessUtility/WindowTabs.java --- a/src/org/openbravo/erpCommon/businessUtility/WindowTabs.java Mon Jun 14 11:30:02 2010 +0200 +++ b/src/org/openbravo/erpCommon/businessUtility/WindowTabs.java Mon Jun 14 11:54:59 2010 +0200 @@ -4,14 +4,14 @@ * Version 1.0 (the "License"), being the Mozilla Public License * Version 1.1 with a permitted attribution clause; you may not use this * file except in compliance with the License. You may obtain a copy of - * the License at http://www.openbravo.com/legal/license.html + * the License at http://www.openbravo.com/legal/license.html * Software distributed under the License is distributed on an "AS IS" * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the * License for the specific language governing rights and limitations - * under the License. - * The Original Code is Openbravo ERP. - * The Initial Developer of the Original Code is Openbravo SLU - * All portions are Copyright (C) 2001-2006 Openbravo SLU + * under the License. + * The Original Code is Openbravo ERP. + * The Initial Developer of the Original Code is Openbravo SLU + * All portions are Copyright (C) 2001-2010 Openbravo SLU * All Rights Reserved. * Contributor(s): ______________________________________. ************************************************************************ @@ -315,8 +315,8 @@ if (isFirst) text.append(" <span class=\"tabTitle_elements_container\">\n"); if (isFirst) - text.append(" <span class=\"tabTitle_elements_text\" id=\"tabTitle_text\">").append(this.Title).append( - "</span>\n"); + text.append(" <span class=\"tabTitle_elements_text\" id=\"tabTitle_text\">").append( + this.Title).append("</span>\n"); if (isFirst) text .append(" <span class=\"tabTitle_elements_separator\"><div class=\"tabTitle_elements_separator_icon\"></div></span>\n"); @@ -422,8 +422,8 @@ if (!hasParent) text.append(" <span class=\"tabTitle_elements_container\">\n"); if (!hasParent) - text.append(" <span class=\"tabTitle_elements_text\" id=\"tabTitle_text\">").append(this.Title).append( - "</span>\n"); + text.append(" <span class=\"tabTitle_elements_text\" id=\"tabTitle_text\">").append( + this.Title).append("</span>\n"); if (!hasParent) text .append(" <span class=\"tabTitle_elements_separator\"><div class=\"tabTitle_elements_separator_icon\"></div></span>\n"); @@ -649,7 +649,7 @@ } } text.append(", null, '"); - text.append(Utility.getTabURL(conn, _tabId, _tabName)).append("', '_self', null, true);"); + text.append(Utility.getTabURL(conn, _tabId, _tabName)).append("', '_self', true, true);"); } text.append("return false;"); return text.toString(); ------------------------------------------------------------------------------ ThinkGeek and WIRED's GeekDad team up for the Ultimate GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the lucky parental unit. See the prize list and enter to win: http://p.sf.net/sfu/thinkgeek-promo _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
