You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2010/09/21 13:36:04 UTC

svn commit: r999327 [3/3] - in /ofbiz/branches/jquery: ./ applications/commonext/data/helpdata/ applications/content/widget/content/ applications/order/script/org/ofbiz/order/customer/ applications/order/webapp/ordermgr/WEB-INF/actions/entry/ applicati...

Modified: ofbiz/branches/jquery/specialpurpose/webpos/webapp/webpos/images/js/SearchProducts.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/specialpurpose/webpos/webapp/webpos/images/js/SearchProducts.js?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/specialpurpose/webpos/webapp/webpos/images/js/SearchProducts.js (original)
+++ ofbiz/branches/jquery/specialpurpose/webpos/webapp/webpos/images/js/SearchProducts.js Tue Sep 21 11:36:01 2010
@@ -17,7 +17,7 @@ specific language governing permissions 
 under the License.
 */
 
-Event.observe(window, 'load', function() {
+document.observe('dom:loaded', function() {
 
     // Autocompleter for good identification field
     var j = 0;

Modified: ofbiz/branches/jquery/themes/bizznesstime/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/bizznesstime/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/bizznesstime/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/bizznesstime/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -102,6 +102,9 @@ under the License.
 </head>
 <body>
 <div id="wrap">
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div id="header">
     <div id="logo"></div>
     <div id="shelf"></div>
@@ -136,10 +139,5 @@ under the License.
                <a href="${layoutSettings.middleTopLink3?if_exists}">${layoutSettings.middleTopMessage3?if_exists}</a>
              </span>
            </#if>
-           <div class="wait-spinner" style="background:none; visibility:hidden">
-             <div id="wait-spinner" style="">
-               <img src="/images/spinner.gif" alt="" title=""/>
-             </div>
-           </div>
     </div>
-  </div>
\ No newline at end of file
+  </div>

Modified: ofbiz/branches/jquery/themes/bizznesstime/includes/messages.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/bizznesstime/includes/messages.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/bizznesstime/includes/messages.ftl (original)
+++ ofbiz/branches/jquery/themes/bizznesstime/includes/messages.ftl Tue Sep 21 11:36:01 2010
@@ -37,7 +37,7 @@ under the License.
 <#-- display the error messages -->
 <#if (errorMessage?has_content || errorMessageList?has_content)>
 <script type="text/javascript">
-    Event.observe(window, 'load', function() {
+    document.observe('dom:loaded', function() {
         humanMsg.displayMsg('<div class="errorMessage"><#if errorMessage?has_content><p>${errorMessage}</p></#if><#if errorMessageList?has_content><#list errorMessageList as errorMsg><p>${errorMsg}</p></#list></#if></p></div>');
         return false;
     });
@@ -47,7 +47,7 @@ under the License.
 <#-- display the event messages -->
 <#if (eventMessage?has_content || eventMessageList?has_content)>
 <script type="text/javascript">
-    Event.observe(window, 'load', function() {
+    document.observe('dom:loaded', function() {
         humanMsg.displayMsg('<div class="eventMessage"><#if eventMessage?has_content><p>${eventMessage}</p></#if><#if eventMessageList?has_content><#list eventMessageList as eventMsg><p>${eventMsg}</p></#list></#if></div>');
         return false;
     });

Modified: ofbiz/branches/jquery/themes/bizznesstime/webapp/bizznesstime/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/bizznesstime/webapp/bizznesstime/css/style.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/bizznesstime/webapp/bizznesstime/css/style.css (original)
+++ ofbiz/branches/jquery/themes/bizznesstime/webapp/bizznesstime/css/style.css Tue Sep 21 11:36:01 2010
@@ -1566,12 +1566,14 @@ height:16px;
   background: none !important; 
 }
 
-.wait-spinner {
-    float: right;
-    margin-right: 10px;
-}
-.wait-spinner div {
-    padding-top: 4px;
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/images/spinner.gif);
 }
 
 #controls span#last-system-msg{

Modified: ofbiz/branches/jquery/themes/bluelight/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/bluelight/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/bluelight/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/bluelight/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -104,6 +104,9 @@ under the License.
 </#if>
 
 <body>
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div class="page-container">
     <div class="hidden">
       <a href="#column-container" title="${uiLabelMap.CommonSkipNavigation}" accesskey="2">
@@ -183,11 +186,6 @@ under the License.
               </#if>
             </#if>
             <li class="control-area">
-              <div class="wait-spinner" style="background:none; visibility:hidden">
-                <div id="wait-spinner" style="">
-                  <img src="/images/spinner.gif" alt="" title=""/>
-                </div>
-              </div>
             </li>
           </ul>
         </li>

Modified: ofbiz/branches/jquery/themes/bluelight/webapp/bluelight/style.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/bluelight/webapp/bluelight/style.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/bluelight/webapp/bluelight/style.css (original)
+++ ofbiz/branches/jquery/themes/bluelight/webapp/bluelight/style.css Tue Sep 21 11:36:01 2010
@@ -2122,13 +2122,18 @@ Lookups
      top: 0px;
  }
 
-.wait-spinner {
-    float: right;
-    margin-right: 10px;
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
 }
 .wait-spinner div {
     padding-top: 4px;
 }
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/images/spinner.gif);
 
 /* ========================================================= */
 /* ===== JavaScript jQuery widgets                      ===== */

Modified: ofbiz/branches/jquery/themes/droppingcrumbs/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/droppingcrumbs/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/droppingcrumbs/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/droppingcrumbs/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -104,6 +104,9 @@ under the License.
 </#if>
 
 <body>
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div class="page-container">
     <div class="hidden">
       <a href="#column-container" title="${uiLabelMap.CommonSkipNavigation}" accesskey="2">
@@ -183,11 +186,6 @@ under the License.
               </#if>
             </#if>
             <li class="control-area">
-              <div class="wait-spinner" style="background:none; visibility:hidden">
-                <div id="wait-spinner" style="">
-                  <img src="/images/spinner.gif" alt="" title=""/>
-                </div>
-              </div>
             </li>
           </ul>
         </li>

Modified: ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css (original)
+++ ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/css/style.css Tue Sep 21 11:36:01 2010
@@ -2101,9 +2101,14 @@ Lookups
      top: 0px;
  }
 
-.wait-spinner {
-    float: right;
-    margin-right: 10px;
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/images/spinner.gif);
 }
 .wait-spinner div {
     padding-top: 4px;

Modified: ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/js/application.js
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/js/application.js?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/js/application.js (original)
+++ ofbiz/branches/jquery/themes/droppingcrumbs/webapp/droppingcrumbs/js/application.js Tue Sep 21 11:36:01 2010
@@ -80,7 +80,7 @@ javascript solution to make form focus s
 consistent cross browser form platforms that
 don't support input:focus (cough, cough, IE, cough)
 *****************************************************/
-Event.observe(window, 'load', function() {
+document.observe('dom:loaded', function() {
     var fields = $$("input, textarea");
     for (var i = 0; i < fields.length; i++) {
       fields[i].onfocus = function() {this.className += ' focused';}
@@ -168,7 +168,7 @@ ModalWindow = Class.create({
 });
 
 //LOAD MODAL PREFERENCE WINDOWS
-Event.observe(window, 'load', function() {
+document.observe('dom:loaded', function() {
     get = new ModalWindow();
     $("language").observe('click',function(e) {
       var locale = new Element('div', {id:'modal-contents'}).update("<img src='/bizznesstime/images/ajax-loader.gif'/>Updating Languages, please wait...");

Modified: ofbiz/branches/jquery/themes/flatgrey/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/flatgrey/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/flatgrey/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/flatgrey/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -85,6 +85,9 @@ under the License.
   <#assign logoLinkURL = "${layoutSettings.commonHeaderImageLinkUrl}">
 </#if>
 <body>
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div class="page-container">
   <div class="hidden">
     <a href="#column-container" title="${uiLabelMap.CommonSkipNavigation}" accesskey="2">
@@ -185,11 +188,6 @@ under the License.
               <li><a <#if pageAvail?has_content>class="alert"</#if> href="javascript:lookup_popup2('showHelp?helpTopic=${helpTopic}&amp;portalPageId=${parameters.portalPageId?if_exists}','help' ,500,500);">${uiLabelMap.CommonHelp}</a></li>
            </#if>
            <li class="control-area">
-             <div class="wait-spinner" style="background:none; visibility:hidden">
-               <div id="wait-spinner" style="">
-                 <img src="/images/spinner.gif" alt="" title=""/>
-               </div>
-             </div>
            </li>
           </ul>
         </li>

Modified: ofbiz/branches/jquery/themes/flatgrey/webapp/flatgrey/maincss.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/flatgrey/webapp/flatgrey/maincss.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/flatgrey/webapp/flatgrey/maincss.css (original)
+++ ofbiz/branches/jquery/themes/flatgrey/webapp/flatgrey/maincss.css Tue Sep 21 11:36:01 2010
@@ -2154,9 +2154,14 @@ Lookups
      left: 0px;
      top: 0px;
  }
-.wait-spinner {
-    float: right;
-    margin-right: 10px;
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/images/spinner.gif);
 }
 .wait-spinner div {
     padding-top: 4px;

Modified: ofbiz/branches/jquery/themes/multiflex/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/multiflex/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/multiflex/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/multiflex/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -20,6 +20,9 @@ under the License.
 <!-- Global IE fix to avoid layout crash when single word size wider than column width -->
 <!--[if IE]><style type="text/css"> body {word-wrap: break-word;}</style><![endif]-->
 
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div class="page-container">
     <div class="header">
       <div class="header-top">

Modified: ofbiz/branches/jquery/themes/multiflex/webapp/multiflex/style.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/multiflex/webapp/multiflex/style.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/multiflex/webapp/multiflex/style.css (original)
+++ ofbiz/branches/jquery/themes/multiflex/webapp/multiflex/style.css Tue Sep 21 11:36:01 2010
@@ -2599,6 +2599,15 @@ width:16px;
 height:16px;
 }
 
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/images/spinner.gif);
+}
 /* RTL support */
 .ui-datepicker-rtl { direction: rtl; }
 .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }

Modified: ofbiz/branches/jquery/themes/tomahawk/includes/appbarClose.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/tomahawk/includes/appbarClose.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/tomahawk/includes/appbarClose.ftl (original)
+++ ofbiz/branches/jquery/themes/tomahawk/includes/appbarClose.ftl Tue Sep 21 11:36:01 2010
@@ -53,13 +53,6 @@ under the License.
 <div id="control-area">
   <ul id="preferences-menu">
     <#if userLogin?exists>
-      <li>
-        <div class="wait-spinner" style="background:none; visibility:hidden;">
-          <div id="wait-spinner" style="">
-            <img src="/tomahawk/images/spinner.gif" alt="" title=""/>
-          </div>
-        </div>
-      </li>
       <#if (userPreferences.COMPACT_HEADER)?default("N") == "Y">
         <li class="collapsed"><a href="javascript:document.setUserPreferenceCompactHeaderN.submit()">&nbsp;</a>
           <form name="setUserPreferenceCompactHeaderN" method="post" action="<@o...@ofbizUrl>">

Modified: ofbiz/branches/jquery/themes/tomahawk/includes/header.ftl
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/tomahawk/includes/header.ftl?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/tomahawk/includes/header.ftl (original)
+++ ofbiz/branches/jquery/themes/tomahawk/includes/header.ftl Tue Sep 21 11:36:01 2010
@@ -88,6 +88,9 @@ under the License.
 </#if>
 
 <body>
+  <div id="wait-spinner" style="display:none">
+    <div id="wait-spinner-image"></div>
+  </div>
   <div class="page-container">
     <div class="hidden">
       <a href="#column-container" title="${uiLabelMap.CommonSkipNavigation}" accesskey="2">

Modified: ofbiz/branches/jquery/themes/tomahawk/webapp/tomahawk/css/style.css
URL: http://svn.apache.org/viewvc/ofbiz/branches/jquery/themes/tomahawk/webapp/tomahawk/css/style.css?rev=999327&r1=999326&r2=999327&view=diff
==============================================================================
--- ofbiz/branches/jquery/themes/tomahawk/webapp/tomahawk/css/style.css (original)
+++ ofbiz/branches/jquery/themes/tomahawk/webapp/tomahawk/css/style.css Tue Sep 21 11:36:01 2010
@@ -2071,17 +2071,26 @@ color: #000000;
 
 /* == Portlet configuration screenlet == */
 .portlet-config {
-background-color: #D4D0C8;
-border: 2px solid #D4D0C8;
+background-color: #FFEC6F;
+border: 2px solid #FFEC6F;
 margin-bottom: 5px;
 }
 
 .portlet-config-title-bar .title {
 color: #555555;
-font-size: 1.2em;
+background-color: #CFC05A;
 float: left;
 }
 
+.portlet-config-title-bar select {
+margin: 0;
+border: none;
+font-size: 10px;
+height: auto;
+padding: 0;
+vertical-align: top;
+}
+
 .portlet-config-title-bar ul {
 display: inline; /* IE Fix */
 }
@@ -2290,9 +2299,14 @@ background-color:#a9b996;
 background-color:#b29898;
 }
 
-.wait-spinner {
-    float: right;
-    margin-right: 10px;
+#wait-spinner {
+z-index:50000;
+position:absolute;
+}
+#wait-spinner-image {
+height:21px;
+width:56px;
+background-image:url(/tomahawk/images/spinner.gif);
 }
 .wait-spinner div {
     padding-top: 4px;