Commit Graph

261 Commits

Author SHA1 Message Date
Xavier Morel 987ed581f3 [MERGE] fix to redirection loop bug when serving mobile client as HTTPS, courtesy of Mikel Martin
bzr revid: xmo@openerp.com-20120215115737-a5whcgzk6r03b76p
2012-02-15 12:57:37 +01:00
mikel 79f4e01eaa Suggested fix
bzr revid: mikel@pcl2-20120215094614-uzbqxiuemq6iu3f9
2012-02-15 10:46:14 +01:00
mikel 112070a58f [FIX] When using apache https as proxy for openerp accesing /mobile url leads to redirection loop. This change, 1 line solves the problem.
bzr revid: mikel@pcl2-20120214220615-j28302zaeoewdan6
2012-02-14 23:06:15 +01:00
Launchpad Translations on behalf of openerp 74b3b0bc69 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120214054303-2gawtr1s4zulhhhs
bzr revid: launchpad_translations_on_behalf_of_openerp-20120214054630-925y7kotw7axa7z4
bzr revid: launchpad_translations_on_behalf_of_openerp-20120214061906-2g5kxwe0xle5u54c
2012-02-14 06:19:06 +00:00
Launchpad Translations on behalf of openerp d970294f61 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120211054143-ombd21qpgp6dwowo
bzr revid: launchpad_translations_on_behalf_of_openerp-20120212050000-l6kpoprwuejqy53f
bzr revid: launchpad_translations_on_behalf_of_openerp-20120213050809-dfeuvbboy9mk6ox5
2012-02-13 05:08:09 +00:00
Launchpad Translations on behalf of openerp e260cfa286 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120210050948-enku822yz6xip51k
2012-02-10 05:09:48 +00:00
Launchpad Translations on behalf of openerp 0e2e9ddd78 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120209055558-qfwy9bg1km791dys
bzr revid: launchpad_translations_on_behalf_of_openerp-20120209071015-0jykfhbo8iamzpzk
bzr revid: launchpad_translations_on_behalf_of_openerp-20120209072746-stmwycdircyzrxn4
2012-02-09 07:27:46 +00:00
Carlos Vásquez bad6cde80e [ADD] es_CR.po: in all modules
bzr revid: carlos.vasquez@clearcorp.co.cr-20120208083551-nev12pk8a4jnrou4
2012-02-08 02:35:51 -06:00
Launchpad Translations on behalf of openerp 320b2d2e2e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120208060921-wir47e717rh04xxn
bzr revid: launchpad_translations_on_behalf_of_openerp-20120208063913-vg9qdu30tx09ojrl
2012-02-08 06:39:13 +00:00
Olivier Dony 8e3edb1a42 [I18N] Update translation template with newly exported attributes
Includes @title, @alt and @label attributes
for all qweb template elements.
Web addons without any such attributes have
not been re-exported.

bzr revid: odo@openerp.com-20120207093155-laswlg40wgz6itlx
2012-02-07 10:31:55 +01:00
Launchpad Translations on behalf of openerp 35601a346f Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120207045344-l7gkplf7icv5djit
bzr revid: launchpad_translations_on_behalf_of_openerp-20120207045952-t6bedpten4ms5hx4
2012-02-07 04:59:52 +00:00
Xavier Morel 42f7f57f33 [EXP] export translatable strings to templates
bzr revid: xmo@openerp.com-20120206163406-vf12k01nxqbhnt3q
2012-02-06 17:34:06 +01:00
Olivier Dony 2e8f622f45 [MERGE] sync with latest trunk
bzr revid: odo@openerp.com-20120206153300-ql0qo3mf0j4x05n9
2012-02-06 16:33:00 +01:00
Xavier Morel 5182f41d60 [FIX] jquery-ui reference in mobile client
lp bug: https://launchpad.net/bugs/926014 fixed

bzr revid: xmo@openerp.com-20120203125132-9crn5qgjqweoeg3a
2012-02-03 13:51:32 +01:00
Olivier Dony 7ebc5bdba3 [IMP] refactored translation system to merge web translations with addons translations
- Moved the web *.po files to /i18n to be consistent
  with the addons convention. Using /po was considered
  for a while because it played better with LP's auto-
  detection of PO Templates, but that is not necessary
  anymore, we now have full control on LP templates.

- In order to support addons that contain translations
  for both the web addon and the regular addon part,
  both kinds of translations are now merged in a single
  addon/i18n/addon.pot file. Terms that are used by
  the web part are now marked with a PO annotation:
     #. openerp-web
  so the web client can recognize them and only load
  the relevant translations in the browser memory.
  This is important because a complete PO file can
  be rather large, e.g. account/i18n/de.po = 400KB.

- The web translation export scripts were updated to
  behave properly for addons that have a non-web
  part, and will merge the web translation in the
  original POT file, annotating the web translations
  as needed. These scripts are Unix-only and meant
  to be used by OpenERP packagers when needed.

- The GetText spec says that PO auto-comments indicating
  the source location have this form:
   #: /path/to/file:lineno
  However OpenERP's POT export system defaults to a modified
  version of this format with an extra 'type' field:
   #: type:/path/to/file:lineno
  The babel extractors we use have the GetText format 
  hardcoded so a small patch is needed on the server
  to make it more lenient and accept the standard
  source annotation, defaulting to 'code' type.
  This does not matter for openerp-web, but makes sure
  the server will not fail to load the new PO files 
  that contain openerp-web translations with standard
  annotations.
  The patch for making the server more lenient was
  checked in trunk at revision 4002 
  rev-id odo@openerp.com-20120202143210-05p1w24t6u77cyv8

- The existing translation sync and export wizards for
  regular addons have not been updated to consider
  web addons, so for the time being we will have
  to export regular addons terms first, and run the
  web export script (gen_translations.sh) on the
  addons directory afterwards. This could be improved
  later.

As soon as this change is merged we will have to
perform a full update of addons translation
templates in order to include the web terms as well.

bzr revid: odo@openerp.com-20120202145603-ffo0il0qnfp3r6gt
2012-02-02 15:56:03 +01:00
Launchpad Translations on behalf of openerp 7e2bb94661 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120202055911-xdbu6vwggylcbpq1
bzr revid: launchpad_translations_on_behalf_of_openerp-20120202061434-l5xlutw7q5besmme
2012-02-02 06:14:34 +00:00
Launchpad Translations on behalf of openerp a6be92b62b Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120201045611-6pg23l4ipzfnlpme
bzr revid: launchpad_translations_on_behalf_of_openerp-20120201051211-pvfvh4f562tv94rj
2012-02-01 05:12:11 +00:00
Launchpad Translations on behalf of openerp 69910d967c Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120131050031-o00wn1tnzbkgjt6j
bzr revid: launchpad_translations_on_behalf_of_openerp-20120131050331-w0omtl1lmfqzciwq
bzr revid: launchpad_translations_on_behalf_of_openerp-20120131052309-jtfsc2m4h3liyzb5
2012-01-31 05:23:09 +00:00
Xavier Morel 7ce1aad7ec [IMP] terminate statements, remove extraneous statement terminations
bzr revid: xmo@openerp.com-20120125085310-zzwjrll47n61hw8w
2012-01-25 09:53:10 +01:00
niv-openerp 3002bd091f [imp] removed bunch of old stuff in widget
bzr revid: nicolas.vanhoren@openerp.com-20120124145810-lr2y8igt9iqzqepn
2012-01-24 15:58:10 +01:00
Launchpad Translations on behalf of openerp 5b10b7022d Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120115052053-qy9rgrxe745vw4zw
bzr revid: launchpad_translations_on_behalf_of_openerp-20120116051929-9hq3xgbkj3t90wvt
bzr revid: launchpad_translations_on_behalf_of_openerp-20120114054042-idria8u0iiizg9xu
bzr revid: launchpad_translations_on_behalf_of_openerp-20120115053522-rki2r1zjt8544t0c
bzr revid: launchpad_translations_on_behalf_of_openerp-20120116052722-mb4w266h2j8som8q
2012-01-16 05:27:22 +00:00
Launchpad Translations on behalf of openerp 1ba5e0ae7c Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120113044029-g5gennaovbmjxfut
bzr revid: launchpad_translations_on_behalf_of_openerp-20120113050144-no4194ciwerac0dr
2012-01-13 05:01:44 +00:00
Launchpad Translations on behalf of openerp a2895b719f Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120111044006-ehpf8voofuo20mzc
bzr revid: launchpad_translations_on_behalf_of_openerp-20120112054003-82qy0l7x1jbboc9r
bzr revid: launchpad_translations_on_behalf_of_openerp-20120112054058-8hdv1vhku59lbgb3
bzr revid: launchpad_translations_on_behalf_of_openerp-20120112060622-vns7g4vc2v6thkme
2012-01-12 06:06:22 +00:00
Fabien Meghazi e9ca86dd63 [IMP] More dataset refactoring
bzr revid: fme@openerp.com-20120110165451-pvchn668y0b1p645
2012-01-10 17:54:51 +01:00
Launchpad Translations on behalf of openerp ae446d476d Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120107055507-8swlvr9po6sdss2k
bzr revid: launchpad_translations_on_behalf_of_openerp-20120108052742-h4m1anhu0l9nr90t
bzr revid: launchpad_translations_on_behalf_of_openerp-20120109050846-k4msecejz9aklmon
2012-01-09 05:08:46 +00:00
Launchpad Translations on behalf of openerp 52e0383f2c Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120104044826-ms01gyypcfio5flg
bzr revid: launchpad_translations_on_behalf_of_openerp-20120104051810-r42jfkfmn23nypsg
2012-01-04 05:18:10 +00:00
=Bhumi Thakkar 1c03c37ad1 [IMP] Improve code to based on changes on web client for initialize mobile webclient.
bzr revid: jra@tinyerp.com-20111229065727-egt8j4c2zlv3jh90
2011-12-29 12:27:27 +05:30
Jiten (OpenERP) 4c9bc83fee [MERGE] Merge from openerp-web.
bzr revid: jra@tinyerp.com-20111229061250-55j0zt220km5fml6
2011-12-29 11:42:50 +05:30
Jiten (OpenERP) 269b796aab [IMP] Improved formview to hidden invisible fields.
bzr revid: jra@tinyerp.com-20111223112206-1u92pbvmxrnegjyu
2011-12-23 16:52:06 +05:30
Jiten (OpenERP) 60f529f07b [IMP] Improve listview for additional information.
bzr revid: jra@tinyerp.com-20111223110620-twmi12bn6kzhcrva
2011-12-23 16:36:20 +05:30
Bhumi Thakkar (Open ERP) 6d6ec99bc1 [IMP] Invisible fields should be hidden.
bzr revid: bth@tinyerp.com-20111223053731-qc93a9xaqblh116w
2011-12-23 11:07:31 +05:30
Bhumi Thakkar (Open ERP) c11873aacb [FIX] changes regarding view for additional info in listview.
bzr revid: bth@tinyerp.com-20111222120713-jwua44xld5gczxue
2011-12-22 17:37:13 +05:30
Bhumi Thakkar (Open ERP) 71938cbc3f [FIX] Minor Change In listview for additional Info.
bzr revid: bth@tinyerp.com-20111221110106-dhzed15s3jj3evov
2011-12-21 16:31:06 +05:30
Launchpad Translations on behalf of openerp 953187de8e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111221052822-lovgfl628rt04pro
2011-12-21 05:28:22 +00:00
Xavier Morel 7049024898 [FIX] translation of advanced filter strings
* Made title of group ('Advanced Filters') available for translation
* Fixed translation mark for advanced filter operators (class level, need to be lazy)
* Re-extracted translation strings

and marked selection strings of boolean search widget while at it

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

bzr revid: xmo@openerp.com-20111220175137-r3jeh6q8g4c92xf9
2011-12-20 18:51:37 +01:00
Launchpad Translations on behalf of openerp 8e2457efe8 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111220045056-kxmsczkxkgf5ffe1
bzr revid: launchpad_translations_on_behalf_of_openerp-20111220045629-sx3btepqeei2nq1k
2011-12-20 04:56:29 +00:00
Launchpad Translations on behalf of openerp 8b0311d85e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111217053507-nn68mi7hzemvsfzf
bzr revid: launchpad_translations_on_behalf_of_openerp-20111218044245-2ybd6g6q1730qp1g
2011-12-18 04:42:45 +00:00
Xavier Morel a8286263ff [ADD] lazy translation function, to correctly translate strings in contexts evaluated before the translation db has been loaded
bzr revid: xmo@openerp.com-20111216130000-56qd717d79529opy
2011-12-16 14:00:00 +01:00
Xavier Morel c9b93aea94 [EXP] export translations for view names
lp bug: https://launchpad.net/bugs/904989 fixed

bzr revid: xmo@openerp.com-20111216112207-nzh3ture66un7t4g
2011-12-16 12:22:07 +01:00
Launchpad Translations on behalf of openerp 2d1baf3dda Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216052448-trqaat8m6335nctw
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216052507-5r7nig2ys4fyef7f
bzr revid: launchpad_translations_on_behalf_of_openerp-20111216060814-z34sm1fdvd230j37
2011-12-16 06:08:14 +00:00
Fabien Meghazi 63cf79f2db [IMP] incorrect wording
lp bug: https://launchpad.net/bugs/901579 fixed

bzr revid: fme@openerp.com-20111215145528-28yx0dka5gldxu5k
2011-12-15 15:55:28 +01:00
Xavier Morel c7f3185c0b [EXP] export translation templates for strings marked during previous revision
bzr revid: xmo@openerp.com-20111215104145-lzffvxr7co3khck1
2011-12-15 11:41:45 +01:00
Xavier Morel a44dd489d0 [TNL] updated translation template files
bzr revid: xmo@openerp.com-20111215100827-01nokry6vxbw3swh
2011-12-15 11:08:27 +01:00
Bhumi Thakkar (Open ERP) e2e12d769e [FIX] Minor change to correct statement.
bzr revid: bth@tinyerp.com-20111214113105-868vew0caft0e1al
2011-12-14 17:01:05 +05:30
Bhumi Thakkar (Open ERP) b923ef9dd9 [FIX] incorrect wording in Listview.
lp bug: https://launchpad.net/bugs/901579 fixed

bzr revid: bth@tinyerp.com-20111214104854-uykgi3lcxgrncl7m
2011-12-14 16:18:54 +05:30
Olivier Dony 9835cebe19 [MERGE] Use the new authenticate() API instead of login()
Using the new authenticate() API instead allows to pass
a user-agent environment along with the credentials.
The main use for the UA environment at this point is
to pass the base URL used to login, so that the server
may initialize its "web.base.url" global config parameters

bzr revid: odo@openerp.com-20111213161554-jbtrp94aatcnibne
2011-12-13 17:15:54 +01:00
Launchpad Translations on behalf of openerp 21dcfb26ff Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111210045636-oq5wphio5a00dn29
bzr revid: launchpad_translations_on_behalf_of_openerp-20111210052339-bpnw0helnigf6bay
2011-12-10 05:23:39 +00:00
Xavier Morel 8e760071cb [EXT] extract translatable strings to pot files
bzr revid: xmo@openerp.com-20111209093409-gjarrp10hwy0uogm
2011-12-09 10:34:09 +01:00
Launchpad Translations on behalf of openerp 59b89d88fd Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111209044622-gxexxlpiqihjzreq
bzr revid: launchpad_translations_on_behalf_of_openerp-20111209051713-2iirb6c9d6ihwtwu
2011-12-09 05:17:13 +00:00
Launchpad Translations on behalf of openerp 0199461509 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111208053607-5eolhazj9nhu05j3
bzr revid: launchpad_translations_on_behalf_of_openerp-20111208060700-nb1yi7ecs4q7932m
2011-12-08 06:07:00 +00:00
Jiten (OpenERP) 59ddc46d62 [IMP] Improve list records for o2m and m2m.
bzr revid: jra@tinyerp.com-20111207110316-j8wpqnsza8hg9y2q
2011-12-07 16:33:16 +05:30
Bhumi Thakkar (Open ERP) 486021e965 [FIX] Pass result's ids to the name get method in listview.
bzr revid: bth@tinyerp.com-20111207095429-sb9qhnnstlwst9ax
2011-12-07 15:24:29 +05:30
Jiten (OpenERP) 014731ce5c [MERGE] Merge from openerp-web.
bzr revid: jra@tinyerp.com-20111207065150-cacn5ilkt786ngxc
2011-12-07 12:21:50 +05:30
Bhumi Thakkar (Open ERP) 0de12c221d [IMP] When URL contains '#' then Move on Login Page.
bzr revid: bth@tinyerp.com-20111207060555-gf7oftsdl9isajtw
2011-12-07 11:35:55 +05:30
Launchpad Translations on behalf of openerp a97de28156 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111207045215-38y91pjb1hkogpam
bzr revid: launchpad_translations_on_behalf_of_openerp-20111207052542-j4y1bxmge9qftj3a
2011-12-07 05:25:42 +00:00
Launchpad Translations on behalf of openerp 33767eb356 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111206052824-y4sqcyq1zvz4jj25
bzr revid: launchpad_translations_on_behalf_of_openerp-20111206055923-0ajpo39vg9xuf5ef
2011-12-06 05:59:23 +00:00
niv-openerp 02bffaf7e1 [merge] improvements to the mobile client
bzr revid: nicolas.vanhoren@openerp.com-20111205132959-ydnph7z6ohru6jfc
2011-12-05 14:29:59 +01:00
Xavier Morel ab2d749dd6 [EXT] extract POT files
bzr revid: xmo@openerp.com-20111205105101-ondavioyfv87xldl
2011-12-05 11:51:01 +01:00
Launchpad Translations on behalf of openerp 20c2ebf9cc Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111203051322-9okh062mnsk6z7rl
bzr revid: launchpad_translations_on_behalf_of_openerp-20111205052156-xdi2wl4c0i6c943y
bzr revid: launchpad_translations_on_behalf_of_openerp-20111204044348-1h1ykzimferyb15x
bzr revid: launchpad_translations_on_behalf_of_openerp-20111205052228-xpcasqkuz99hp3bx
bzr revid: launchpad_translations_on_behalf_of_openerp-20111202052804-fp30z23u77bb8xsq
bzr revid: launchpad_translations_on_behalf_of_openerp-20111203054648-32m102m6zeyp2w96
bzr revid: launchpad_translations_on_behalf_of_openerp-20111204050726-v3ccozl63rq6hwt3
bzr revid: launchpad_translations_on_behalf_of_openerp-20111205054444-8otpyzxplw2r1zo8
2011-12-05 05:44:44 +00:00
Jiten (OpenERP) a6c6cc5e57 [IMP] Improve to find records for nested o2m and m2m.
bzr revid: jra@tinyerp.com-20111201112658-mgq350vua4zfoj8b
2011-12-01 16:56:58 +05:30
Jiten (OpenERP) 4cb6d48f1f [IMP] Improve m2m and o2m to show selected record in formview.
bzr revid: jra@tinyerp.com-20111130112614-qrkmra8rzok7nksn
2011-11-30 16:56:14 +05:30
Jiten (OpenERP) 342b0a1ac8 [IMP] To show many2many field on form view.
bzr revid: jra@tinyerp.com-20111129063029-6pvqwh4uvts1pcft
2011-11-29 12:00:29 +05:30
Jiten (OpenERP) 11dee02df2 [MERGE] Merge from openerp-web.
bzr revid: jra@tinyerp.com-20111129062332-nt36fttsgf8movqd
2011-11-29 11:53:32 +05:30
Vo Minh Thu 7d95b51c27 [MERGE] manifests: added descriptions.
bzr revid: vmt@openerp.com-20111128133718-gu79b47hkoqeyv0u
2011-11-28 14:37:18 +01:00
Xavier Morel 19c123d831 [IMP] jquery from 1.6.2 to 1.6.4
bzr revid: xmo@openerp.com-20111125143918-ja5wjs00905d58uz
2011-11-25 15:39:18 +01:00
Vo Minh Thu ed2b473350 [IMP] all manifest files: removed white space, moved the description to a multi line string.
bzr revid: vmt@openerp.com-20111125110715-lov9690uy5hnrpr1
2011-11-25 12:07:15 +01:00
Launchpad Translations on behalf of openerp b31cba394e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111125052228-81zlh9lxuflkcnmc
bzr revid: launchpad_translations_on_behalf_of_openerp-20111125053534-i6m08m0vqpeqhmu6
2011-11-25 05:35:34 +00:00
Naresh (OpenERP) b193fc9108 [IMP]:added temporary description in web addons modules to avoid server warnings log the official description is yet to be decided by web team
bzr revid: nch@tinyerp.com-20111125053225-cbckxm2gfuoaph06
2011-11-25 11:02:25 +05:30
Jiten (OpenERP) 990ece97a5 [MERGE] Merge from openerp-web.
bzr revid: jra@tinyerp.com-20111122051803-1ttx64ilabhxo4p1
2011-11-22 10:48:03 +05:30
Launchpad Translations on behalf of openerp 0e8b913842 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111122050046-eb2hd81qu2801nxi
bzr revid: launchpad_translations_on_behalf_of_openerp-20111122051316-eovfu9qj7puxspbf
2011-11-22 05:13:16 +00:00
Jiten (OpenERP) aad7d22763 [IMP] Improve m2o field to remove image for open related form and make it as o2m.
bzr revid: jra@tinyerp.com-20111121121726-pat4r2ypa3o93tr9
2011-11-21 17:47:26 +05:30
Launchpad Translations on behalf of openerp 7dc7a38490 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111121052226-yhr6ydr2i8dbwp8x
bzr revid: launchpad_translations_on_behalf_of_openerp-20111119051322-q109g1zgszi27u9e
bzr revid: launchpad_translations_on_behalf_of_openerp-20111121052251-ee9tr9wvqumk7n8u
bzr revid: launchpad_translations_on_behalf_of_openerp-20111121055048-51rwikms7xtq4bkz
2011-11-21 05:50:48 +00:00
Jiten (OpenERP) ab599f3646 [IMP] Some Changes to show Maximum 80 records in listview.
bzr revid: jra@tinyerp.com-20111118064138-d9idrs8brq943r2r
2011-11-18 12:11:38 +05:30
Jiten (OpenERP) a9cb7736c4 [IMP] Remove bottom bar (footer) from other pages to show only in main menu.
bzr revid: jra@tinyerp.com-20111116123834-2vejdxbd7morztfv
2011-11-16 18:08:34 +05:30
niv-openerp 210bbdb149 [imp] label correction in mobile web
bzr revid: nicolas.vanhoren@openerp.com-20111115071356-jj2p47qrn4scz5ef
2011-11-15 12:43:56 +05:30
Jiten (OpenERP) a1dfda310b [IMP] Minor change.
bzr revid: jra@tinyerp.com-20111110072148-4lcpu2m3vir86xul
2011-11-10 12:51:48 +05:30
Jiten (OpenERP) b280ff0a32 [MERGE] Merge from openerp-web.
bzr revid: jra@tinyerp.com-20111110070542-erxzaww80v07g4du
2011-11-10 12:35:42 +05:30
Bhumi Thakkar (Open ERP) ffbdc3fc1e [FIX] Fixing issues related o2m relational field in notebook.
bzr revid: bth@tinyerp.com-20111110064145-trcvnzyibt4wxwf9
2011-11-10 12:11:45 +05:30
Launchpad Translations on behalf of openerp 6f77ce98c7 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111105055805-1lmgpe8dot0mqkd3
bzr revid: launchpad_translations_on_behalf_of_openerp-20111105060437-gd0ilsg6cdytkvq2
2011-11-05 06:04:37 +00:00
Bhumi Thakkar (Open ERP) d8723a4765 [MERGE] Merge openerp-web in mobile.
bzr revid: bth@tinyerp.com-20111103115454-gdi35nq4pyf3ukqe
2011-11-03 17:24:54 +05:30
Bhumi Thakkar (Open ERP) f2433868df [IMP] html_name_get for additional information in listview is implemeted.
bzr revid: bth@tinyerp.com-20111103114547-k1abzbg5f2ys438i
2011-11-03 17:15:47 +05:30
Launchpad Translations on behalf of openerp 3d22bb8b55 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111031053342-z3epayy8yamdvd59
bzr revid: launchpad_translations_on_behalf_of_openerp-20111102045643-x5bniok5k0bav5f1
bzr revid: launchpad_translations_on_behalf_of_openerp-20111101051007-ckkd2x2dixj2lenq
bzr revid: launchpad_translations_on_behalf_of_openerp-20111102050506-4162o2sku85ys9m3
2011-11-02 05:05:06 +00:00
Launchpad Translations on behalf of openerp 16d073408b Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111104045551-z0w60kgkd2j0xsf0
bzr revid: launchpad_translations_on_behalf_of_openerp-20111104053220-zf8bvprl2x1ermir
2011-11-04 05:32:20 +00:00
Jiten (OpenERP) 417cae1645 [Merge] Merge from openerp-web
bzr revid: bth@tinyerp.com-20111020062457-h4v2ud105ver5u5y
bzr revid: jra@tinyerp.com-20111025061327-v676oxmsx3xz66s3
2011-10-25 11:43:27 +05:30
Launchpad Translations on behalf of openerp 28a5550cf6 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111024051826-pkcngzrh3j8f3mg9
2011-10-24 05:18:26 +00:00
Launchpad Translations on behalf of openerp 9a31b0a55e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111020044845-r1meytu6clgr7sqp
2011-10-20 04:48:45 +00:00
Bhumi Thakkar (Open ERP) 27598512e3 [IMP] html name_get method is implemeted for additional information.
bzr revid: bth@tinyerp.com-20111019115055-296oz520fu2megh9
2011-10-19 17:20:55 +05:30
Bhumi Thakkar (Open ERP) 45b5fd73a2 [FIX] Some minor issues with UI.
bzr revid: bth@tinyerp.com-20111019110529-wu9jb6v847dutnww
2011-10-19 16:35:29 +05:30
Bhumi Thakkar (Open ERP) 00dd58370b [IMP] Image displayed with the m2o,url & email type field in small screen.
bzr revid: bth@tinyerp.com-20111019091555-ms7uds7k0ffti66e
2011-10-19 14:45:55 +05:30
Bhumi Thakkar (Open ERP) 7b5b0faafe [IMP] Meetings are displayed.
bzr revid: bth@tinyerp.com-20111019070919-yubxuakxhqr7prcf
2011-10-19 12:39:19 +05:30
Bhumi Thakkar (Open ERP) 7a8e23c0d4 [MERGE] Merge from openerp-web.
bzr revid: bth@tinyerp.com-20111019070434-2m4np83sj56grfzo
2011-10-19 12:34:34 +05:30
Bhumi Thakkar (Open ERP) 9ce3447d88 [IMP] When result is null then displayed message in listview for no any records found and filter is hide.
bzr revid: bth@tinyerp.com-20111019065644-nalzsdy6k0klb7jb
2011-10-19 12:26:44 +05:30
Launchpad Translations on behalf of openerp e3ffcd94d6 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019044609-vzsrc1a6nn17ahbo
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019055343-7s4rmkn8lpxvyt4n
bzr revid: launchpad_translations_on_behalf_of_openerp-20111019060521-3smagczfoys4j5wl
2011-10-19 06:05:21 +00:00
Bhumi Thakkar (Open ERP) 6592f2aeb3 [IMP]Set attributes & format related fields in formview.
bzr revid: bth@tinyerp.com-20111012103015-0gva8otxwd9npcp5
2011-10-12 16:00:15 +05:30
Jiten (OpenERP) d7933e2211 [Merge] merge from openerp-web.
bzr revid: jra@tinyerp.com-20111012090958-3c5xp3e8viplb84f
2011-10-12 14:39:58 +05:30
Launchpad Translations on behalf of openerp 048cfa7804 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111012044022-dt1ks2gwog40djxc
bzr revid: launchpad_translations_on_behalf_of_openerp-20111012044412-fk2rlfsfnmhkvaq1
2011-10-12 04:44:12 +00:00
Launchpad Translations on behalf of openerp 9ceaf4fdf3 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20111011052920-un4k47tkwv7djqt2
bzr revid: launchpad_translations_on_behalf_of_openerp-20111011053536-w0rdhuhwp04uxnpd
bzr revid: launchpad_translations_on_behalf_of_openerp-20111011054224-cr2q9q3picqoasam
2011-10-11 05:42:24 +00:00
Jiten (OpenERP) 77ad674798 [IMP] Minor change to hide link 'home' on homepage(Applications page).
bzr revid: jra@tinyerp.com-20111010125514-t8z8begr54u24x36
2011-10-10 18:25:14 +05:30
Bhumi Thakkar (Open ERP) 88f35d04cd [IMP]Improved code for attributes of fields.
bzr revid: bth@tinyerp.com-20111010122318-3fjzgm7dnfqogep7
2011-10-10 17:53:18 +05:30
Jiten (OpenERP) cb6bebc55e [IMP] Imroved code for disabled/readonly fields on formview.
bzr revid: jra@tinyerp.com-20111010105114-fsb8if7u0f2996im
2011-10-10 16:21:14 +05:30