[Erp5-report] r39817 nicolas.dumazet - in /experimental/bt5/erp5_jquery_jixedbar: SkinTempl...

nobody at svn.erp5.org nobody at svn.erp5.org
Wed Nov 3 06:34:26 CET 2010


Author: nicolas.dumazet
Date: Wed Nov  3 06:34:25 2010
New Revision: 39817

URL: http://svn.erp5.org?rev=39817&view=rev
Log:
2010-11-03 nicolas.dumazet
* Update dependencies to match new guidelines
* Update code after jQuery version bump

Modified:
    experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getCssRelativeUrlList.xml
    experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getJavaScriptRelativeUrlList.xml
    experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/jixedbar.js.xml
    experimental/bt5/erp5_jquery_jixedbar/bt/change_log
    experimental/bt5/erp5_jquery_jixedbar/bt/dependency_list
    experimental/bt5/erp5_jquery_jixedbar/bt/revision

Modified: experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getCssRelativeUrlList.xml
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getCssRelativeUrlList.xml?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getCssRelativeUrlList.xml [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getCssRelativeUrlList.xml [utf8] Wed Nov  3 06:34:25 2010
@@ -60,7 +60,7 @@
 # BBB: For the history, erp5.css is included by css_list_template.\n
 #      So this script has nothing to do in reality.\n
 \n
-css_list = (\'themes/default/jx.stylesheet.css\', \'jquery-ui-1.8.2/css/erp5-theme/jquery-ui-1.8.2.custom.css\')\n
+css_list = (\'plugin/jixedbar/themes/default/jx.stylesheet.css\', \'ui/css/erp5-theme/jquery-ui.css\')\n
 return css_list\n
 </string> </value>
         </item>

Modified: experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getJavaScriptRelativeUrlList.xml
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getJavaScriptRelativeUrlList.xml?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getJavaScriptRelativeUrlList.xml [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/ERP5Site_getJavaScriptRelativeUrlList.xml [utf8] Wed Nov  3 06:34:25 2010
@@ -61,9 +61,9 @@
 #      js_list is not pre-defined before the global definitions.\n
 \n
 js_list = (\'MochiKit/MochiKit.js\', \'erp5.js\',\n
-           \'jquery-ui-1.8.2/js/jquery-1.4.2.min.js\',\n
-           \'jquery-ui-1.8.2/js/jquery-ui-1.8.2.custom.min.js\',\n
-           \'jquery.jixedbar.js\',\n
+           \'core/jquery.js\',\n
+           \'ui/js/jquery-ui.js\',\n
+           \'plugin/jixedbar/jquery.jixedbar.js\',\n
            \'jixedbar.js\')\n
 return js_list\n
 </string> </value>

Modified: experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/jixedbar.js.xml
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/jixedbar.js.xml?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/jixedbar.js.xml [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/SkinTemplateItem/portal_skins/erp5_jquery_jixedbar/jixedbar.js.xml [utf8] Wed Nov  3 06:34:25 2010
@@ -8,7 +8,7 @@
       <dictionary>
         <item>
             <key> <string>_EtagSupport__etag</string> </key>
-            <value> <string>ts88579575.27</string> </value>
+            <value> <string>ts88761626.95</string> </value>
         </item>
         <item>
             <key> <string>__name__</string> </key>
@@ -44,7 +44,13 @@ $(document).ready(function() {\n
     $( "#portal_skins_input" ).autocomplete({\n
 \t\t\tsource: $.makeArray(skin_list),\n
                         open: function() {\n
-                          $(".ui-autocomplete").css("bottom", 36).css("top", null);\n
+                          /*\n
+                             autocomplete is stupid and believes menu always open downside.\n
+                             Trick it so it opens on top of the input\n
+                          */\n
+                          var menu = $(".ui-autocomplete");\n
+                          var values = { \'z-index\': menu.css(\'z-index\'), left: menu.css(\'left\'), width: menu.css(\'width\'), bottom: 36 };\n
+                          menu.removeAttr("style").css(values);\n
                         },\n
                         select: function(event, ui) {\n
                           window.location.pathname = portal + "/portal_skins/" + ui.item.label + "/manage_main";\n
@@ -80,7 +86,7 @@ $(document).ready(function() {\n
         </item>
         <item>
             <key> <string>size</string> </key>
-            <value> <int>1458</int> </value>
+            <value> <int>1855</int> </value>
         </item>
         <item>
             <key> <string>title</string> </key>

Modified: experimental/bt5/erp5_jquery_jixedbar/bt/change_log
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/bt/change_log?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/bt/change_log [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/bt/change_log [utf8] Wed Nov  3 06:34:25 2010
@@ -1,2 +1,6 @@
+2010-11-03 nicolas.dumazet
+* Update dependencies to match new guidelines
+* Update code after jQuery version bump
+
 2010-11-01 nicolas.dumazet
 * Initial version
\ No newline at end of file

Modified: experimental/bt5/erp5_jquery_jixedbar/bt/dependency_list
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/bt/dependency_list?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/bt/dependency_list [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/bt/dependency_list [utf8] Wed Nov  3 06:34:25 2010
@@ -1 +1,3 @@
-erp5_jquery
\ No newline at end of file
+erp5_jquery
+erp5_jquery_ui
+erp5_jquery_plugin_jixedbar
\ No newline at end of file

Modified: experimental/bt5/erp5_jquery_jixedbar/bt/revision
URL: http://svn.erp5.org/experimental/bt5/erp5_jquery_jixedbar/bt/revision?rev=39817&r1=39816&r2=39817&view=diff
==============================================================================
--- experimental/bt5/erp5_jquery_jixedbar/bt/revision [utf8] (original)
+++ experimental/bt5/erp5_jquery_jixedbar/bt/revision [utf8] Wed Nov  3 06:34:25 2010
@@ -1 +1 @@
-1
\ No newline at end of file
+2
\ No newline at end of file




More information about the Erp5-report mailing list