Commit Graph

67 Commits

Author SHA1 Message Date
niv-openerp 8384876ef0 [imp] renamed widget_parent to getParent()
bzr revid: nicolas.vanhoren@openerp.com-20120221153023-cqs66neaddtuf7km
2012-02-21 16:30:23 +01:00
Launchpad Translations on behalf of openerp 1ecec769b9 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120218051809-skplocdgadkpyhjb
2012-02-18 05:18:09 +00:00
Launchpad Translations on behalf of openerp 9f65e1565e Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120217050201-xlguleciidhnkxln
bzr revid: launchpad_translations_on_behalf_of_openerp-20120217051344-6opxazcgg875mypq
2012-02-17 05:13:44 +00:00
Launchpad Translations on behalf of openerp 2094148de5 Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120216050419-fgzhvlogc71u42qe
bzr revid: launchpad_translations_on_behalf_of_openerp-20120216050718-lf9hgvr1p33jpm2h
bzr revid: launchpad_translations_on_behalf_of_openerp-20120216052148-ta5bwtqg3bzmvp3i
2012-02-16 05:21:48 +00: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 df0b4f8c35 [IMP] i18n extractor now ignores comments and PIs + additional spurious translations removed
PO templates updated accordingly

bzr revid: odo@openerp.com-20120207182255-23s4yp4hrteierht
2012-02-07 19:22:55 +01: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
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 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
Xavier Morel a6c106365a [REM] unused variables in process
bzr revid: xmo@openerp.com-20120131105846-wvqyxko2lux2gwnj
2012-01-31 11:58:46 +01:00
Xavier Morel ad5457693c [FIX] selection of current document's state in process view
bzr revid: xmo@openerp.com-20120131105212-bnu4150hai88rwm6
2012-01-31 11:52:12 +01:00
Vaibhav (OpenERP) f2ad8bd914 [FIX] img of current state node.
bzr revid: vda@tinyerp.com-20120130113745-fe7w9hhuenahhdx1
2012-01-30 17:07:45 +05:30
Vaibhav (OpenERP) b4e7377b54 [FIX] state of current process.
lp bug: https://launchpad.net/bugs/919175 fixed

bzr revid: vda@tinyerp.com-20120130111541-6mpeb9253fzzk46c
2012-01-30 16:45:41 +05:30
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
Vaibhav (OpenERP) f5e4a28727 [FIX] replace views instance with new action.
lp bug: https://launchpad.net/bugs/919175 fixed

bzr revid: vda@tinyerp.com-20120120134120-ugqv7yzer7gp31z8
2012-01-20 19:11:20 +05:30
Xavier Morel 7373de6fe6 [IMP] move fields_get display from process view to debug dropdown
bzr revid: xmo@openerp.com-20120113175405-buakxhqmq76gev24
2012-01-13 18:54:05 +01:00
Xavier Morel 9fb0c46f67 [FIX] display each subflow only once in process view
bzr revid: xmo@openerp.com-20120113100051-5a7j1v410g6h0e4b
2012-01-13 11:00:51 +01:00
Fabien Meghazi fca894050a [IMP] Refactored web.Dialog (again)
bzr revid: fme@openerp.com-20120111110648-thxst5ot0te60fj5
2012-01-11 12:06:48 +01:00
vishmita bbe9f88c01 [FIX]Improve code.
bzr revid: vja@vja-desktop-20120111092800-x0muv9nt5wspqhmq
2012-01-11 14:58:00 +05:30
Antony Lesuisse 6f82675a8a [FIX] help links
bzr revid: al@openerp.com-20111230115012-gsckxb7bpkzelche
2011-12-30 12:50:12 +01:00
Roberto López López (OpenERP) 7b2ece8ddc merge
bzr revid: rlo@openerp.com-20111222115243-ht5rqa4j5bl7ie96
2011-12-22 12:52:43 +01:00
vishmita ece5ba53c7 [FIX]Improve code.
bzr revid: vja@vja-desktop-20111222074026-tixnqpwpgpueuqye
2011-12-22 13:10:26 +05:30
Fabien Meghazi 41cd88bfad [FIX] Reworked dialogs
lp bug: https://launchpad.net/bugs/892248 fixed
lp bug: https://launchpad.net/bugs/885507 fixed

bzr revid: fme@openerp.com-20111221134306-k5w0g0oih3uvhy34
2011-12-21 14:43:06 +01:00
Fabien Meghazi 8ba259b3f6 [IMP] Improved buttons
bzr revid: fme@openerp.com-20111220115500-aulwnoj6ciks8jxm
2011-12-20 12:55:00 +01:00
vishmita b8c1cf1b65 [FIX]Process-subflows must have unique names.
lp bug: https://launchpad.net/bugs/906073 fixed

bzr revid: vja@vja-desktop-20111220063519-epd6nrs2ysz4lqhu
2011-12-20 12:05:19 +05:30
Roberto López López (OpenERP) fb7d80d56f [MERGE] merge up to last branch
bzr revid: rlo@openerp.com-20111219103346-k8va78gdfudedg62
2011-12-19 11:33:46 +01:00
Antoine Huvelle 4bbb1c0683 [IMP] changes in 'group by' padding
bzr revid: ahu@openerp.com-20111216083515-tvmyyn1zzh34qzfp
bzr revid: ahu@openerp.com-20111216130741-a6f0bv7ixq16osg6
2011-12-16 14:07:41 +01:00
Xavier Morel b5a797ba0a [IMP] mark a bunch of dialog stuff as exportable (mostly buttons, but also dialog titles)
bzr revid: xmo@openerp.com-20111215104031-h2xjkf0zwf8x8zjk
2011-12-15 11:40:31 +01:00
Antoine Huvelle 5dd3318ca0 [ADD] Adding images for pagers & pager styling
bzr revid: ahu@openerp.com-20111214115206-xukqkaa0i1h9xd8c
2011-12-14 12:52:06 +01:00
Fabien Meghazi 573bae6729 [FIX] Shortcut icon + Process view button shall honor flags.display_title
Fixed dashboard buttons styling

bzr revid: fme@openerp.com-20111207163131-mi5cmtgficytw5c6
2011-12-07 17:31:31 +01:00
Roberto López López (OpenERP) d8e772be5c crash dialog
bzr revid: rlo@openerp.com-20111207110057-4w5dbtw9nv68gosy
2011-12-07 12:00:57 +01:00
Fabien Meghazi 1719b9408b [REM] Removed unnecessary auto_search keys in actions
bzr revid: fme@openerp.com-20111206105734-9271jcsc8leanj66
2011-12-06 11:57:34 +01:00
Antoine Huvelle a103f44748 [IMP] css on list view header, changes in process.css for the small icon
bzr revid: ahu@openerp.com-20111130135448-yuszw4ejewvd0ai8
2011-11-30 14:54:48 +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
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
Kunal Chavda (OpenERP) 5372b9b9a1 [IMP]Improved code for setting width and height of document to rendering process graph.
bzr revid: kch@tinyerp.com-20111122114209-olyhazad8dff3s1z
2011-11-22 17:12:09 +05:30
Kunal Chavda (OpenERP) 1c7fa1fabc [FIX]Fixed code for showing process view icon on viewmanager.
bzr revid: kch@tinyerp.com-20111122113420-m5pme4wdkrfrrm19
2011-11-22 17:04:20 +05:30
Kunal Chavda (OpenERP) 7cffb9a12a [MERGE]Merge trunk upto 1528 revision.
bzr revid: kch@tinyerp.com-20111122112603-m6g8vg233695whlf
2011-11-22 16:56:03 +05:30
vishmita 40e3f490a2 [FIX]Title should be change when going to subprocess.
bzr revid: vja@vja-desktop-20111122105937-gi2zdinsmajtb53b
2011-11-22 16:29:37 +05:30
Xavier Morel 2e5d7852f4 [FIX] comma-terminated object literals
bzr revid: xmo@openerp.com-20111122101950-mng5zy4os3mukj6d
2011-11-22 11:19:50 +01:00
Christophe Simonis d673d7325c [FIX] web_process: qweb template loading
bzr revid: chs@openerp.com-20111117130237-wqiqdrleiv2mwyf8
2011-11-17 14:02:37 +01:00
vishmita 223c3a7b8b [FIX]Fixed code for if help is false.
bzr revid: vja@vja-desktop-20111117071452-0n1pxy6zwbwgo3dg
2011-11-17 12:44:52 +05:30
Kunal Chavda (OpenERP) 9cf9849c4b [FIX]Fixed code for showing model name in title of process view.
bzr revid: kch@tinyerp.com-20111117065953-pqse8i6mxyptw6g5
2011-11-17 12:29:53 +05:30
Kunal Chavda (OpenERP) b3ef9f9162 [IMP]Improved code by formatting.
bzr revid: kch@tinyerp.com-20111117051910-kb4r9mzojtu0roeb
2011-11-17 10:49:10 +05:30
Kunal Chavda (OpenERP) 59f655f650 [FIX]Fixed code for passing model.
bzr revid: kch@tinyerp.com-20111116133458-vivv0elu15mj3iiw
2011-11-16 19:04:58 +05:30