Skip to content
Snippets Groups Projects
  1. Mar 24, 2011
  2. Mar 22, 2011
    • Vo Minh Thu's avatar
      [MERGE] merged the trunk. · fc1eb1ee
      Vo Minh Thu authored
      bzr revid: vmt@openerp.com-20110322141815-jj836ucwmxw9af53
      fc1eb1ee
    • Vo Minh Thu's avatar
      [MERGE] merged the 6.0 branch. · d02ffafe
      Vo Minh Thu authored
      bzr revid: vmt@openerp.com-20110322140841-6lt7ky1ohxbrgx68
      d02ffafe
    • Vo Minh Thu's avatar
      [FIX] safe_eval: added time in the allowed modules. · 65a37516
      Vo Minh Thu authored
      - The reason is that on some older version of python (e.g. 2.5.2 on Windows),
        datetime.datetime.now() is doing an import time on itws own.
      
      lp bug: https://launchpad.net/bugs/703841 fixed
      
      bzr revid: vmt@openerp.com-20110322140124-huqn504k0y5xrkwa
      65a37516
    • Fabien Meghazi's avatar
      [FIX] ListView table autoresize · 1fb6165a
      Fabien Meghazi authored
      bzr revid: fme@openerp.com-20110322135026-ndme63lh7pa98c03
      1fb6165a
    • Xavier Morel's avatar
      [ADD] underscore utility library. See http://documentcloud.github.com/underscore/ for documentation · 9f74d6d0
      Xavier Morel authored
      bzr revid: xmo@openerp.com-20110322131559-afci46oyqecw571s
      9f74d6d0
    • Nicolas Vanhoren's avatar
      [IMP] Improvements to the screenshots for some modules. · 1b785450
      Nicolas Vanhoren authored
      bzr revid: nicolas.vanhoren@openerp.com-20110322131214-g4h9rzpam67k2ym9
      1b785450
    • Fabien Meghazi's avatar
      [AUTOINSULT] Previous commit was a mistake. · 6369c843
      Fabien Meghazi authored
      I made two mistakes in my life : 1) to be born   2) to commit fme@openerp.com-20110322125836-qnlqagrlcy3ajoci
      
      I could avoid the second one if I had not made the first mistake
      
      bzr revid: fme@openerp.com-20110322130917-2y6kmrwcqutia8ph
      6369c843
    • Fabien Meghazi's avatar
      [UP] Upgraded jQuery 1.5 tp 1.5.1. (200% web client speed upgrade) · a5a90d22
      Fabien Meghazi authored
      Closed Tickets
      
      A full list of all bugs and tickets closed are as follows:
      
      #2551 Make sure .val() works after form.reset() in IE
      #4537 Make sure .clone(true) correctly clones namespaced events
      #4966 Don’t add “px” to unit-less properties when animating them
      #6774 Make sure we only access parentNode if it’s available. Fixes an issue where after an option tag has been detached, an elem.parentNode error would be thrown.
      #6911Prevent action on disabled elements, both triggering and bound via .live()
      #7531 Fix again for IE9RC. Enhances ajaxSetup so that it can take an optional target option, in which case target will be updated instead of ajaxSettings. That way, fields that shouldn’t be deep extended can be listed and dealt with in one place. jQuery.ajax now makes use of ajaxSetup with target to create its internal settings object
      #7568 Follow-up fix for #5862. Objects with a length property weren’t serialized properly by jQuery.param
      #7653 Changes regexp to detect local protocol so that it will accept any protocol finishing by -extension
      #7668 Sizzle and jQuery QUnit tests are out of sync
      #7912 This change makes .cur() more .cssHooks friendly. .cur() now returns the unmodified value by .css() if it isn’t a number, number-alike or a value that needs a fallback to 0.
      #7922 Fixed an issue where live(‘click’) doesn’t fire when live(‘submit’) is bound first in IE
      #7945 Make jQuery.param() serialize plain objects with a property named jquery correctly
      #8033 jQuery 1.4.4+ fails to load on pages with old Prototype (<= 1.5) or Current Prototype + Scriptaculous in IE
      #8039 Selectors with HTML5 input types not work in IE6/7
      #8052 Update jQuery.support.noCloneEvent test to function properly in IE9
      #8095 Properly handles the case where browser cache needs to be bypassed while server-side logic still delivers proper 304 responses. Unit test added
      #8098 Use the fast document.head when available
      #8099 Always restore to correct display value based on element’s expected default display
      #8107 Fix argument handling for $.ajax for multiple method signatues and add test case
      #8108Temporary fix for jQuery metadata being exposed on plain JS objects when serializing with JSON.stringify to avoid compatibility-breaking changes. A proper fix for this will be landed in 1.6
      #8115 Renames all references to jXHR with jqXHR in the code (like was done in the doc)
      #8123 The default for .clone() is to not clone any events
      #8125 Status is set to 200 for requests with status 0 when location.protocol if “file:”. Added test/localfile.html to control it works
      #8129 Fix cloning multiple selected options in IE8
      #8135 Makes sure any exception thrown by Firefox when trying to access an XMLHttpRequest property when a network error occured is caught and notified as an error. Added test/networkerror.html to test the behavior
      #8138 Access to document.location is made only once at load time and if it fails (throwing an exception in IE when document.domain is already set), we use the href of an A element instead
      #8145 Added readyWait tests
      #8146 introducing the xhrFields option with is a map of fieldName/fieldValue to set on the native xhr. Can be used to set withCredentials to true for cross-domain requests if needed
      #8152 applying the same special cases for protocol “chrome-extension:” as were for “file:” (needs tests). Re-organizes and fixes the handling of special cases for HTTP status code in the xhr transport
      #8177 XHR transport now considers 304 Not Modified responses as 200 OK if no conditional request header was provided (as per the XMLHttpRequest specification)
      #8193 Fixes abort in prefilter. No global event will be fired in that case even if the global option is set to true. Unit test added
      #8198 Remove unnecessary “script.type = text/javascript;”
      #8200 Unexpose $.support._scriptEval as it’s not needed. Use a private var instead
      #8209 Make sure that mousing over Chrome “internal div” doesn’t trigger a mouseleave
      #8219 Introduces the mimeType option to override content-type header in conversion (and in native xhr when possible). Adds companion overrideMimeType method on jqXHR object (it simply sets the option)
      #8220 Remove backslashes from tag name filter
      #8245 Ajax now ensures header names are capitalized so that non-compliant xhr implementations don’t override them
      #8250 ajax does not work in opera 10 widgets
      #8277 Sets data to undefined rather than null when it is not provided in ajax helpers so that it won’t revent data set in ajaxSettings from being used.
      #8297 Make sure response headers with empty values are handled properly and do not prevent proper parsing of the entire response headers string.
      #8353 Adds a catch block in resolveWith so that the finally block gets executed in IE7 and IE6.
      #8365 Make sure that IE 9 still clones attributes.
      
      bzr revid: fme@openerp.com-20110322125836-4id2l1w0zjix0qdt
      a5a90d22
    • Fabien Meghazi's avatar
      [ADD] Menu part 1 · c7ce5c80
      Fabien Meghazi authored
      bzr revid: fme@openerp.com-20110322114919-a8l2k4ipy6zt4si8
      c7ce5c80
    • Fabien Meghazi's avatar
      [ADD] url widget · e4b92511
      Fabien Meghazi authored
      bzr revid: fme@openerp.com-20110322114852-4o14wjiebb2yv90c
      e4b92511
    • Fabien Meghazi's avatar
      [ADD] Some images for menus · f2af3b5a
      Fabien Meghazi authored
      bzr revid: fme@openerp.com-20110322114702-53smckfk1uc0tzz5
      f2af3b5a
    • Thibault Francois's avatar
      [MERGE] project fix some error · 3701c53c
      Thibault Francois authored
      bzr revid: tfr@openerp.com-20110322111513-65csvxd4as2fq6i1
      3701c53c
    • Olivier Dony's avatar
      [FIX] survey: i18n - fixed duplicate msgid introduced by commit 4238 · 215bda3e
      Olivier Dony authored
      Hopefully this should restore all translations that have been wiped out in *.po
      files following the commit of this broken translation file.
      
      bzr revid: odo@openerp.com-20110322110328-gu6wt8k9ef6q6d1j
      215bda3e
    • Anup Chavda's avatar
      [MERGE] anonymization : Merged XRG's branch for fixing deprecation warnings · 66581b36
      Anup Chavda authored
      bzr revid: ach@tinyerp.com-20110322092205-09muhx72vmr4v4t0
      66581b36
    • Anup Chavda's avatar
      [MERGE] report_webkit : Merged XRG's branch for a translation fix · e86ab534
      Anup Chavda authored
      bzr revid: ach@tinyerp.com-20110322091540-ko53zraw1wp0bv5b
      e86ab534
    • Launchpad's avatar
      Launchpad automatic translations update. · 82de026e
      Launchpad authored
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110316054257-o0k1zy1zk9o5tb9k
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110317061249-jfr5yx3lj00vn20k
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110318061727-rl00oqonw601p5uh
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110319070951-7hc0io27922zyb89
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110320063141-rae2iw1pdee0o57e
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110321062259-umxel4cvlvocrdsd
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110322062342-4gpy4ewvfc3ef4gc
      82de026e
    • Launchpad's avatar
      Launchpad automatic translations update. · 8c5349a6
      Launchpad authored
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110320044558-ev1jrkafe83u2pxc
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110321044719-jq7brro8iejzgpqq
      bzr revid: launchpad_translations_on_behalf_of_openerp-20110322043613-5hvgnsn9xs2glqfx
      8c5349a6
  3. Mar 21, 2011
  4. Mar 20, 2011
Loading