- May 21, 2014
-
-
Martin Trigaux authored
1st issue: When an exception was raised, it was badly handled by the website in case of website_enabled key. The response page was generated without calling super. The WebRequest object being responsible to rollback the transaction in case of errors. 2sd issue: The _failed attribute is required to rollback the transaction in an WebRequest object. Previously it was only set in the JsonRequest object (which inherit from WebRequest), replace by call to super. The attribute _failed is now set in the WebRequest object.
-
Simon Lejeune authored
[FIX] ir_actions: adapt render_report when called in a tests/qweb report context to generate the pdf only if a directory has been provided
-
Denis Ledoux authored
-
- May 20, 2014
-
-
Fabien Meghazi authored
opt out with query parameter ?noredirect=1
-
- May 19, 2014
-
-
Thibault Delavallée authored
-
Thibault Delavallée authored
function fields for other records in the same model. Previously all function fields in the current model were not computed for some reason not provided by the history. We therefore compute effective store_ids on which the various trigerred function fields will be computed again. Those ids are the ids given in the store_get storage variable minus the deleted ones.
-
Richard Mathot authored
-
Launchpad authored
-
- May 18, 2014
-
-
Kiril Vangelovski authored
-
Launchpad authored
-
- May 17, 2014
-
-
Launchpad authored
-
- May 16, 2014
-
-
Thibault Delavallée authored
Otherwise the website may consider the website field as local for address like www.odoo.com
-
- May 15, 2014
-
-
Martin Trigaux authored
[FIX] ir_model_fields: when adding a new custom column to a custom model, set a valid _rec_name to this model (otherwise would require a server restart to reinstanciate the model)
-
Launchpad authored
-
- May 14, 2014
-
-
Launchpad authored
-
- May 13, 2014
-
-
Olivier Dony authored
The active_test flag is meant for search(), but when passed to search_read() it was also propagated to the read() call. This has little consequence normally because read() ignores this flag, but it can have side-effects when reading x2m fields or function fields. They are likely to call search() somewhere downstream, still with the propagated active_test flag, while it should not be applied anymore. Ultimately dropping this flag could be done by read() in all cases, but changing search_read() is less likely to block exotic cases where the flag was passed on purpose. Moving it to read() could be done as a later step.
-
Xavier Morel authored
-
Launchpad authored
-
- May 12, 2014
-
-
Martin Trigaux authored
[FIX] ir_ui_view: remove undetermist order on search for views as the _order on the model is more specific (opw 607262) This was problematic on some views where two views with the same priority could be chosen depending on the server, postgresql version and the age of the captain
-
Launchpad authored
-
- May 11, 2014
-
-
Launchpad authored
bzr revid: launchpad_translations_on_behalf_of_openerp-20140510075539-empsrh7k5l6q44ln bzr revid: launchpad_translations_on_behalf_of_openerp-20140510075505-nu0zmfg57i2352lz bzr revid: launchpad_translations_on_behalf_of_openerp-20140511070820-8xp1e2jxonp4i750 bzr revid: launchpad_translations_on_behalf_of_openerp-20140503064840-v6n2wyrm1l162bh4 bzr revid: launchpad_translations_on_behalf_of_openerp-20140504062728-9tmsk2r01vvs3avi bzr revid: launchpad_translations_on_behalf_of_openerp-20140506072722-8xpshoxb4um6ef30 bzr revid: launchpad_translations_on_behalf_of_openerp-20140511070841-lboiasc73m8h3fb2
-
- May 09, 2014
-
-
Fabien Meghazi authored
bzr revid: fme@openerp.com-20140509141106-vbokuh0prptxavvg
-
- May 07, 2014
-
-
Thibault Delavallée authored
in kwargs of kwargs, leading to a kwargception. bzr revid: tde@openerp.com-20140507110637-qlj1rj8lrcpkejf6
-
- May 05, 2014
-
-
Martin Trigaux authored
bzr revid: mat@openerp.com-20140505121840-f84u36mng3p1gstn
-
Ravi Gohil authored
[FIX] Modifying default value for other than char/string/selection fields from 'Setting/Technical/Actions/User-defined Defaults' view sets wrong pickle value for respective record. (Maintenance Case: 607398) lp bug: https://launchpad.net/bugs/1153628 fixed bzr revid: rgo@tinyerp.com-20140505115121-lwz1crjjoxyqfgax
-
Olivier Dony authored
bzr revid: odo@openerp.com-20140505074636-bl2y5pst4pfmpz3u
-
- May 04, 2014
-
-
Launchpad authored
bzr revid: launchpad_translations_on_behalf_of_openerp-20140430070138-uuemdpfseyysxlvs bzr revid: launchpad_translations_on_behalf_of_openerp-20140502064550-9r0c2t3tr8dp1hwu bzr revid: launchpad_translations_on_behalf_of_openerp-20140501063929-ta3t6lhed5dpdz9a bzr revid: launchpad_translations_on_behalf_of_openerp-20140502064608-1zwt52snc5pg5kfi bzr revid: launchpad_translations_on_behalf_of_openerp-20140504062721-dgb7m6o6ge2btumg
-
- May 01, 2014
-
-
Antony Lesuisse authored
bzr revid: al@openerp.com-20140501214501-dnt6qjxvqa8tm58o
-
Antony Lesuisse authored
A deadlock occurs when - phantomjs_test1 is executedd, enter_test_mode is activated - console.log('ok') is issued, sigterm is sent to phantomjs_test1 process - phantomjs_test1 is finished and leave_test_mode restores the registrymanager lock - phantomjs_test1 process, just before dying, makes a last http request phantomjs_test1_last_request - phantomjs_test1_last_request thread will wait for the registrymanager lock, when all tests will be completed - phantomjs_test2 is run, enter_test_mode is activated - phantomjs_test2 is reach its end and _wait_remaining_requests is called - phantomjs_test2 _wait_remaining_requests hangs forever waiting for phantomjs_test1_last_request bzr revid: al@openerp.com-20140501150641-ua0b7pntesgm3n5p
-
- Apr 30, 2014
-
-
Antony Lesuisse authored
When the source code doesnt match ir.models of the current session database, openerp is unable to build a registry, we now clear the session instead of issuing an http 500 error. bzr revid: al@openerp.com-20140429232213-omao31x6fdxwg2ov
-
- Apr 29, 2014
-
-
Jeremy Kersten authored
[IMP] allow to pass an avatar_filter in calendar view. this field allow the user to customize the sidebar pictures with another picture that the event. bzr revid: jke@openerp.com-20140429150233-us6e51xl3o4ixzsi
-
Richard Mathot authored
bzr revid: rim@openerp.com-20140429071125-avjggwlmlozv7hz5
-
- Apr 28, 2014
-
-
Olivier Dony authored
bzr revid: odo@openerp.com-20140428151133-uz7mphscch35dl6o
-
Denis Ledoux authored
[FIX] base: ir.model.fields, write, use tools.ustr instead of str so it handle if the string is already unicode Writing special chars in the field label resulted in a traceback (write only, no problem with creation) bzr revid: dle@openerp.com-20140428110042-qeaswuwsquy1612h
-
Anaël Closson authored
bzr revid: acl@openerp.com-20140428100319-52oband82ysw3tus
-
- Apr 25, 2014
-
-
Christophe Simonis authored
[FIX] force creation of workflow used columns. bzr revid: chs@openerp.com-20140425162828-e85aut02ua8c53nv
-
- Apr 24, 2014
-
-
Simon Lejeune authored
[FIX] QWeb contact widget: fixed double escaping: only the address part needs to be escaped as it is shown in a t-raw (other parts are shown in t-esc). bzr revid: sle@openerp.com-20140424144329-vj51bt0y269f1pwo
-
Denis Ledoux authored
[FIX] http: set back the gen_session_id controller, because still used by openframework.js of web branch Related to revision 5124 revid:al@openerp.com-20140316141311-m0xqh386ax952va1 bzr revid: dle@openerp.com-20140424135507-5130yyy5brpfqd5f
-
Stéphane Wirtel authored
bzr revid: stw@openerp.com-20140424092828-j8l6j1re9sa94m85
-
- Apr 23, 2014
-
-
Antony Lesuisse authored
bzr revid: al@openerp.com-20140423162827-zw1fjysgkshgamwa
-