details: /erp/devel/pi/rev/fc7b261ea19d
changeset: 9881:fc7b261ea19d
user: Martin Taal <martin.taal <at> openbravo.com>
date: Mon Jan 17 22:37:00 2011 +0100
summary: Solved line break character
details: /erp/devel/pi/rev/053a40038814
changeset: 9882:053a40038814
user: Martin Taal <martin.taal <at> openbravo.com>
date: Mon Jan 17 22:38:02 2011 +0100
summary: Solved line break character
diffstat:
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-help-about-widget.js
| 186 +-
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-tab.js
| 86 +-
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-user-profile-widget.js
| 964 +++++-----
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-view-form-linked-items.js
| 378 +-
4 files changed, 808 insertions(+), 806 deletions(-)
diffs (truncated from 1634 to 300 lines):
diff -r 009c009a5e6b -r 053a40038814
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-help-about-widget.js
---
a/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-help-about-widget.js
Mon Jan 17 22:34:45 2011 +0100
+++
b/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-help-about-widget.js
Mon Jan 17 22:38:02 2011 +0100
@@ -1,93 +1,93 @@
-/*
- *************************************************************************
- * The contents of this file are subject to the Openbravo Public License
- * Version 1.1 (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
- * 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) 2010 Openbravo SLU
- * All Rights Reserved.
- * Contributor(s): ______________________________________.
- ************************************************************************
- */
-
-isc.ClassFactory.defineClass('OBHelpAbout', isc.OBQuickRun);
-
-// = OB Help About =
-// Provides the help/about widget in the navigation bar. It displays two
-// links: about and help. The help link will only be
-// displayed if the current selected window has a help view.
-isc.OBHelpAbout
- .addProperties( {
-
- layoutProperties : {},
-
- title : OB.I18N.getLabel('UINAVBA_Help'),
-
- // Set to empty to prevent an icon from being displayed on the button.
- src : '',
-
- showTitle : true,
-
- beforeShow : function() {
- // determine if the help should be displayed or not
- var tabPane = null, aboutLink = null, helpLink = null, helpView = null;
-
- aboutLink = {
- editorType : 'link',
- value : null,
- showTitle : false,
- target : 'javascript',
- shouldSaveValue : false,
- linkTitle : OB.I18N.getLabel('UINAVBA_About'),
- handleClick : function() {
- isc.OBQuickRun.hide();
-
- OB.Layout.ClassicOBCompatibility.Popup.open('About', 620, 500,
- OB.Application.contextUrl + '/ad_forms/about.html', '', window);
- }
- };
-
- helpLink = {
- editorType : 'link',
- value : null,
- showTitle : false,
- target : 'javascript',
- shouldSaveValue : false,
- linkTitle : OB.I18N.getLabel('UINAVBA_Help'),
- handleClick : function() {
- isc.OBQuickRun.hide();
- OB.Layout.ViewManager.openView(helpView.viewId, helpView);
- }
- };
-
- // get the selected tab
- var selectedTab = OB.MainView.TabSet.getSelectedTab();
- if (selectedTab && selectedTab.pane && selectedTab.pane.getHelpView) {
- tabPane = selectedTab.pane;
- }
- // determine if a help link should be shown or not
- if (!tabPane) {
- this.members[0].setFields( [ aboutLink ]);
- } else {
- helpView = tabPane.getHelpView();
- if (!helpView) {
- this.members[0].setFields( [ aboutLink ]);
- } else {
- this.members[0].setFields( [ helpLink, aboutLink ]);
- }
- }
- },
-
- members : [ isc.DynamicForm.create( {
- numCols : 1
- }) ],
-
- keyboardShortcutId : 'NavBar_OBHelpAbout'
- });
+/*
+ *************************************************************************
+ * The contents of this file are subject to the Openbravo Public License
+ * Version 1.1 (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
+ * 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) 2010 Openbravo SLU
+ * All Rights Reserved.
+ * Contributor(s): ______________________________________.
+ ************************************************************************
+ */
+
+isc.ClassFactory.defineClass('OBHelpAbout', isc.OBQuickRun);
+
+// = OB Help About =
+// Provides the help/about widget in the navigation bar. It displays two
+// links: about and help. The help link will only be
+// displayed if the current selected window has a help view.
+isc.OBHelpAbout
+ .addProperties( {
+
+ layoutProperties : {},
+
+ title : OB.I18N.getLabel('UINAVBA_Help'),
+
+ // Set to empty to prevent an icon from being displayed on the button.
+ src : '',
+
+ showTitle : true,
+
+ beforeShow : function() {
+ // determine if the help should be displayed or not
+ var tabPane = null, aboutLink = null, helpLink = null, helpView = null;
+
+ aboutLink = {
+ editorType : 'link',
+ value : null,
+ showTitle : false,
+ target : 'javascript',
+ shouldSaveValue : false,
+ linkTitle : OB.I18N.getLabel('UINAVBA_About'),
+ handleClick : function() {
+ isc.OBQuickRun.hide();
+
+ OB.Layout.ClassicOBCompatibility.Popup.open('About', 620, 500,
+ OB.Application.contextUrl + '/ad_forms/about.html', '', window);
+ }
+ };
+
+ helpLink = {
+ editorType : 'link',
+ value : null,
+ showTitle : false,
+ target : 'javascript',
+ shouldSaveValue : false,
+ linkTitle : OB.I18N.getLabel('UINAVBA_Help'),
+ handleClick : function() {
+ isc.OBQuickRun.hide();
+ OB.Layout.ViewManager.openView(helpView.viewId, helpView);
+ }
+ };
+
+ // get the selected tab
+ var selectedTab = OB.MainView.TabSet.getSelectedTab();
+ if (selectedTab && selectedTab.pane && selectedTab.pane.getHelpView) {
+ tabPane = selectedTab.pane;
+ }
+ // determine if a help link should be shown or not
+ if (!tabPane) {
+ this.members[0].setFields( [ aboutLink ]);
+ } else {
+ helpView = tabPane.getHelpView();
+ if (!helpView) {
+ this.members[0].setFields( [ aboutLink ]);
+ } else {
+ this.members[0].setFields( [ helpLink, aboutLink ]);
+ }
+ }
+ },
+
+ members : [ isc.DynamicForm.create( {
+ numCols : 1
+ }) ],
+
+ keyboardShortcutId : 'NavBar_OBHelpAbout'
+ });
diff -r 009c009a5e6b -r 053a40038814
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-tab.js
---
a/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-tab.js
Mon Jan 17 22:34:45 2011 +0100
+++
b/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-tab.js
Mon Jan 17 22:38:02 2011 +0100
@@ -1,44 +1,44 @@
-/*
- *************************************************************************
- * The contents of this file are subject to the Openbravo Public License
- * Version 1.1 (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
- * 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) 2010 Openbravo SLU
- * All Rights Reserved.
- * Contributor(s): ______________________________________.
- ************************************************************************
- */
-
-isc.ClassFactory.defineClass('OBTabSet', isc.TabSet);
-
-isc.ClassFactory.defineClass('OBTabBar', isc.TabBar);
-
-isc.ClassFactory.defineClass('OBTabSetChild', isc.OBTabSet);
-
-isc.OBTabSetChild.addProperties({
- initWidget: function() {
- if (this.initWidgetStyle) {
- this.initWidgetStyle();
- }
- this.Super('initWidget', arguments);
- }
-});
-
-isc.ClassFactory.defineClass('OBTabBarChild', isc.OBTabBar);
-
-isc.OBTabBarChild.addProperties({
- initWidget: function() {
- if (this.initWidgetStyle) {
- this.initWidgetStyle();
- }
- this.Super('initWidget', arguments);
- }
+/*
+ *************************************************************************
+ * The contents of this file are subject to the Openbravo Public License
+ * Version 1.1 (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
+ * 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) 2010 Openbravo SLU
+ * All Rights Reserved.
+ * Contributor(s): ______________________________________.
+ ************************************************************************
+ */
+
+isc.ClassFactory.defineClass('OBTabSet', isc.TabSet);
+
+isc.ClassFactory.defineClass('OBTabBar', isc.TabBar);
+
+isc.ClassFactory.defineClass('OBTabSetChild', isc.OBTabSet);
+
+isc.OBTabSetChild.addProperties({
+ initWidget: function() {
+ if (this.initWidgetStyle) {
+ this.initWidgetStyle();
+ }
+ this.Super('initWidget', arguments);
+ }
+});
+
+isc.ClassFactory.defineClass('OBTabBarChild', isc.OBTabBar);
+
+isc.OBTabBarChild.addProperties({
+ initWidget: function() {
+ if (this.initWidgetStyle) {
+ this.initWidgetStyle();
+ }
+ this.Super('initWidget', arguments);
+ }
});
\ No newline at end of file
diff -r 009c009a5e6b -r 053a40038814
modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-user-profile-widget.js
---
a/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-user-profile-widget.js
Mon Jan 17 22:34:45 2011 +0100
+++
b/modules/org.openbravo.client.application/web/org.openbravo.client.application/js/ob-user-profile-widget.js
Mon Jan 17 22:38:02 2011 +0100
@@ -1,484 +1,484 @@
-/*
- *************************************************************************
- * The contents of this file are subject to the Openbravo Public License
- * Version 1.1 (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
- * 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) 2010 Openbravo SLU
------------------------------------------------------------------------------
Protect Your Site and Customers from Malware Attacks
Learn about various malware tactics and how to avoid them. Understand
malware threats, the impact they can have on your business, and how you
can protect your company and customers by using code signing.
http://p.sf.net/sfu/oracle-sfdevnl
_______________________________________________
Openbravo-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openbravo-commits