Commit Graph

198 Commits

Author SHA1 Message Date
Xavier Morel 672933ebfe [IMP] PNG recompression
bzr revid: xmo@openerp.com-20130605124327-poy97bvw73sdm1o6
2013-06-05 14:43:27 +02:00
Xavier Morel c694837a64 [FIX] parsing of domains with non-ascii unicode literals
update py.js to support parsing of escape sequences in string literals

bzr revid: xmo@openerp.com-20130517162215-4afen1mdzbfx1mxi
2013-05-17 18:22:15 +02:00
niv-openerp 90d278a6a6 changed encodings
bzr revid: nicolas.vanhoren@openerp.com-20130515095413-tdvyurv8dwgvj0vd
2013-05-15 11:54:13 +02:00
Martin Trigaux eb90dd9370 [IMP] clean permissions and shebang in files
bzr revid: mat@openerp.com-20130514103736-kfuk3nutvezyo7l0
2013-05-14 12:37:36 +02:00
Xavier Morel 522a639035 [FIX] replace uncommon month names of the ar_SY datejs localization file by more standard ones, courtesy of Ahmad Khayyat
The server only supports the ar_SY variant of arabic, so this is the
one and only locale arabic speakers can currently select. According to
Ahmad Khayyat:

> The [ar-SY datejs localization] uses uncommon month names, which are
> hard to recognize.  The more common month names should be used
> instead.

This could be reverted if more arabic locales are made available in
the server, in order to limit deviations from the upstream package.

lp bug: https://launchpad.net/bugs/1151704 fixed

bzr revid: xmo@openerp.com-20130308080020-6q370e2kmrk2xk2w
2013-03-08 09:00:20 +01:00
niv-openerp a52d9a3406 Modified to call the placeholder lib in view_form.js
bzr revid: nicolas.vanhoren@openerp.com-20130301144653-6a1z558tjfkvtcar
2013-03-01 15:46:53 +01:00
niv-openerp 77088d339b merge trunk
bzr revid: nicolas.vanhoren@openerp.com-20130301143341-xa55351zb166bl2w
2013-03-01 15:33:41 +01:00
Michael Telahun Makonnen 35223210cc [ADD] Amharic (Ethiopia) date/time localization for DateJS, courtesy of Michael Telahun Makonnen.
This is necessary in order for the web client to work properly when
the user's locale is set to Amharic. Otherwise datejs will crash and
the web client's loading will fail to complete.

bzr revid: xmo@openerp.com-20130116100411-ew1383st1hr8yv3l
2013-01-16 11:04:11 +01:00
Fabien Meghazi ca454bcf94 [FIX] html widget: fix cleditor width when the field was invisible before becoming editable
lp bug: https://launchpad.net/bugs/1097638 fixed

bzr revid: odo@openerp.com-20130109164626-1a16vqmwc366n0xf
2013-01-09 17:46:26 +01:00
Christophe Matthieu a1e39f8d75 [FIX] py.js: add the name of value to display error when debugging.
bzr revid: chm@openerp.com-20130104140000-22t1wj95jp7ro2ho
2013-01-04 15:00:00 +01:00
Niko 15f98fa004 [IMP] change placeholder inclusion logic
bzr revid: nwi@openerp.com-20121228094256-h7kxphh5lexb3ff5
2012-12-28 10:42:56 +01:00
Niko af7eb0cc06 [IE] bug 1092846
bzr revid: nwi@openerp.com-20121227161837-7qzx93roddfrtlhb
2012-12-27 17:18:37 +01:00
Thibault Delavallée 6de27635d6 [IMP] cleditor: stop using custom font-size, font-family.
bzr revid: tde@openerp.com-20121226161307-nuud3r2omhi1sf3v
2012-12-26 17:13:07 +01:00
Fabien Meghazi ee937272d1 [FIX] Updated spin.js to version v1.2.7 (w/fix for IE)
bzr revid: fme@openerp.com-20121220110127-iw2e13n4mj79i8zv
2012-12-20 12:01:27 +01:00
Fabien Meghazi e47064f150 [HCK] Temporary jQuery monkey patch until the webclient's minifier is fixed or replaced.
jQuery's $.browser dict is not correctly filled when javascript is minified
https://bugs.launchpad.net/openerp-web/+bug/1091621

As this causes many problems with IE, this is a temporary patch until we fix/replace the minifier

bzr revid: fme@openerp.com-20121218131244-cw6mds1ow94bg6re
2012-12-18 14:12:44 +01:00
Fabien Meghazi 7852c12d8a [FIX] Better fix for unclickable z-indexed items in dialogs. (Patching jQuery UI dialog)
bzr revid: fme@openerp.com-20121210145239-0x1sprin6hp66ghl
2012-12-10 15:52:39 +01:00
Fabien Meghazi 96408a36f0 [MERGE] Unclickable z-indexed items in dialogs. (Patching jQuery UI dialog)
The jQuery UI team will not fix the bug because they redisigned
their dialog's code base for their future version (1.10)

http://bugs.jqueryui.com/ticket/5466#comment:8

bzr revid: fme@openerp.com-20121206133126-zc64pkhoh4s89q32
2012-12-06 14:31:26 +01:00
Fabien Meghazi 173a8b9d4d [FIX] QWeb: purge compiled template when template is added
bzr revid: fme@openerp.com-20121206132115-6fyedomrrchrxc43
2012-12-06 14:21:15 +01:00
Xavier Morel f9670e67a2 [FIX] rollback default conversion of js Object to py.object (not py.dict) and add default toJSON to all py.object
* Accesses in contexts & domains are object derefs, so using dicts was
  dumb

* But objects still need to round-trip through in case of e.g. o2m
  commands in contexts, so py.object needs a toJSON (or a special
  object kind needs to be added, specifically for round-tripping
  objects through)

bzr revid: xmo@openerp.com-20121203122312-gc499mujf4l0nuz7
2012-12-03 13:23:12 +01:00
Xavier Morel 54ea7670d3 [FIX] incorrect conversion of JS arrays to py.js lists/tuples
bzr revid: xmo@openerp.com-20121203114706-dn5sqq3glqst4g1q
2012-12-03 12:47:06 +01:00
Vidhin Mehta (OpenERP) 2e05f7f6f5 [IMP]lib issue of jquery ui custom.bug already post on jquery ui support http://bugs.jqueryui.com/ticket/5466.
bzr revid: vme@tinyerp.com-20121203102736-usb3qcd03sdxkxfi
2012-12-03 15:57:36 +05:30
Xavier Morel 0b54cbb64f [IMP] update py.js for abs builtin support
bzr revid: xmo@openerp.com-20121203084803-ib325gp18g5xvdv6
2012-12-03 09:48:03 +01:00
Xavier Morel 759f11f110 [FIX] py.js: bug in tokenization of single-quoted empty string
bzr revid: xmo@openerp.com-20121129132738-fcnam8bkqyt7h8ey
2012-11-29 14:27:38 +01:00
Xavier Morel e00cb36f41 [MERGE] from trunk
bzr revid: xmo@openerp.com-20121129091038-0fexjx8o12drjbga
2012-11-29 10:10:38 +01:00
Xavier Morel 83d5c4f94c [IMP] update py.js to correctly tokenize unicode literals
also various style improvements in the lib

bzr revid: xmo@openerp.com-20121128155448-1tv62wyv3zy2asr5
2012-11-28 16:54:48 +01:00
Xavier Morel 6d27327d14 [FIX] parsing of long integers, as some openerp domains output them
bzr revid: xmo@openerp.com-20121127154037-fiu6vsfdvix3zlmz
2012-11-27 16:40:37 +01:00
Xavier Morel 7de2a2c965 [FIX] small typo
bzr revid: xmo@openerp.com-20121126075327-m3ljltvbhrwm8cbm
2012-11-26 08:53:27 +01:00
Xavier Morel 65db450c81 [IMP] update py.js to 0.7
bzr revid: xmo@openerp.com-20121126073002-deta3rdrwmzao6fy
2012-11-26 08:30:02 +01:00
Christophe Simonis 56ee9f011b [FIX] qweb: <t t-log> action was generating invalid code
bzr revid: chs@openerp.com-20121121155001-7gwb3w3mxqevxibm
2012-11-21 16:50:01 +01:00
Xavier Morel 5a9f78302f [MERGE] from trunk
when creating the instance, set instance.session.uid to 42 so the evaluator has something to chew on when it tries to create the evaluation context

bzr revid: xmo@openerp.com-20121120101733-b0ire11bbuywfi8u
2012-11-20 11:17:33 +01:00
Fabien Meghazi b7a5b07b3e [IMP] Update jQuery to version 1.8.3
bzr revid: fme@openerp.com-20121119111110-rjznfpj6fllfbgqj
2012-11-19 12:11:10 +01:00
Fabien Meghazi cace9f7887 [IMP] Centralized 'openerp' class on top level elements. Also add openerp_ie class for MSIE
bzr revid: fme@openerp.com-20121115164132-i6a0u8zk3knm1zkv
2012-11-15 17:41:32 +01:00
Fabien Meghazi 7d745f7195 [FIX] comment jquery ui bootstrap global styling
bzr revid: fme@openerp.com-20121113101448-a3603utoogsvvjta
2012-11-13 11:14:48 +01:00
Fabien Meghazi a8518622dd [FIX] Check if console exists before using it
bzr revid: fme@openerp.com-20121108132001-jg5cuqszl2qemy92
2012-11-08 14:20:01 +01:00
Fabien Meghazi c73ac9ef04 [YEAH] jquery ui bootstrap has 1.9 support in dev branch
bzr revid: fme@openerp.com-20121107155758-e6637hp114k2twve
2012-11-07 16:57:58 +01:00
Fabien Meghazi 692e50b067 [REM] Removed jQuery ui minified files
bzr revid: fme@openerp.com-20121105204647-htkthnzz2ohs9x5j
2012-11-05 21:46:47 +01:00
Fabien Meghazi f0aaa44301 [REM] Removed unused jquery deferred queue
bzr revid: fme@openerp.com-20121105110312-erxgjmqgg95hyu2m
2012-11-05 12:03:12 +01:00
Fabien Meghazi 2994db89ca [MERGE] trunk
bzr revid: fme@openerp.com-20121105093013-31veb91zkdeiuddh
2012-11-05 10:30:13 +01:00
Fabien Meghazi eb1c4d0f93 [ADD] Add console warning on Deferred.pipe() usage
bzr revid: fme@openerp.com-20121030140529-nzhxwb84vf2a553c
2012-10-30 15:05:29 +01:00
Fabien Meghazi 1210ad9321 [WIP] Start fixing deferred api changes
bzr revid: fme@openerp.com-20121029142504-ax2bhjvw87n1vbrc
2012-10-29 15:25:04 +01:00
niv-openerp b97cb148c8 [IMP] added missing localization files
bzr revid: nicolas.vanhoren@openerp.com-20121015163527-i8upwcnr29yq5o7a
2012-10-15 18:35:27 +02:00
niv-openerp 6034e14280 [IMP] Added localization file for sr@latin
bzr revid: nicolas.vanhoren@openerp.com-20121015162904-hhig0alct0dld5r3
2012-10-15 18:29:04 +02:00
Xavier Morel 7bcbadb099 [FIX] update py.js to 0.6, port existin classes to it, attempt to implement timedelta
bzr revid: xmo@openerp.com-20121008120619-lhmexjnujjrigjn9
2012-10-08 14:06:19 +02:00
Xavier Morel b965ae5cf7 [MERGE] from trunk
bzr revid: xmo@openerp.com-20121005124919-yfkbzk3mjm0tot4e
2012-10-05 14:49:19 +02:00
Frédéric van der Essen 92efdf10c8 [MERGE] from trunk
bzr revid: fva@openerp.com-20120925163122-zgxa0kyeo1q6maex
2012-09-25 18:31:22 +02:00
Fabien Meghazi 8a7ccd3c76 [ADD] Add 'window' in QWeb reserved words
bzr revid: fme@openerp.com-20120925141558-zlj6f328oya3z5oy
2012-09-25 16:15:58 +02:00
Frédéric van der Essen 2d39da345b [FIX] fixed overflow of tooltips. regrouped all menu css in one category (WIP)
bzr revid: fva@openerp.com-20120921140932-epqji1wznvkd6mh1
2012-09-21 16:09:32 +02:00
Thibault Delavallée e79b8e2912 [MERGE] Merged branch fixing recurring bug with ClEditor.
bzr revid: tde@openerp.com-20121029143527-6libgkpudmo2xlu8
2012-10-29 15:35:27 +01:00
Christophe Matthieu f3e397a98f [FIX] cleditor: When the DOM is modify, the event resize try to call refresh and refresh has not DOM available. Correction : If the DOM as no prent, don't call refresh.
bzr revid: chm@openerp.com-20121029142557-q4wdjiqw5fortp36
2012-10-29 15:25:57 +01:00
Xavier Morel 910097617b [IMP] update qunit to 1.9.0
bzr revid: xmo@openerp.com-20120905151840-dopnvm12n0q67wue
2012-09-05 17:18:40 +02:00