Commit Graph

55 Commits

Author SHA1 Message Date
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
Vaibhav (OpenERP) 02adb92519 [ADD] Summary Information. Fixed fields information look.
bzr revid: vda@tinyerp.com-20110930080000-7vuomze8cbun17oh
2011-09-30 13:30:00 +05:30
Vaibhav (OpenERP) 69238240cd [IMP] show Fields.Changed Mechanism.
bzr revid: vda@tinyerp.com-20110929110145-z5fgyg84acx3nuyl
2011-09-29 16:31:45 +05:30
Vaibhav (OpenERP) f516936e1c [FIX] Changed images for node text align.
bzr revid: vda@tinyerp.com-20110929071448-119c8glmi4q6ol3z
2011-09-29 12:44:48 +05:30
Vaibhav (OpenERP) da60b9cf77 [ADD] Edit Process.
bzr revid: vda@tinyerp.com-20110929061553-0gk3v3j2cuva0jpb
2011-09-29 11:45:53 +05:30
Yogesh (OpenERP) c029638da6 [IMP] process :- string display in node.
bzr revid: ysa@tinyerp.com-20110928122310-dnijca5crg53tx0g
2011-09-28 17:53:10 +05:30
Vaibhav (OpenERP) 78eb1e13e5 [FIX] Indentation.Show help.
bzr revid: vda@tinyerp.com-20110928084739-cd0tnajmulohp0k8
2011-09-28 14:17:39 +05:30
Vaibhav (OpenERP) a7a2564542 [FIX] Load subflow actions.
bzr revid: vda@tinyerp.com-20110921094823-4rrqbdov4s0csk0t
2011-09-21 15:18:23 +05:30
Vaibhav (OpenERP) 6ca5e79d89 [FIX] node text not in set.
bzr revid: vda@tinyerp.com-20110921080418-vlfezcpkcrj84tbe
2011-09-21 13:34:18 +05:30
Vaibhav (OpenERP) 1aa8f36900 [FIX] do not show border on rect.background image.desc node does not need to add in set.
bzr revid: vda@tinyerp.com-20110921073729-zqjijfseuz4ipc1h
2011-09-21 13:07:29 +05:30
Vaibhav (OpenERP) e070274115 [FIX] subflow id.
bzr revid: vda@tinyerp.com-20110921064640-0j7ikcpvuaivicc7
2011-09-21 12:16:40 +05:30
Vaibhav (OpenERP) d05651bebe [FIX] Does not allowed drag&drop.
bzr revid: vda@tinyerp.com-20110920173031-ialtmcpub2c24k04
2011-09-20 23:00:31 +05:30
Vaibhav (OpenERP) 8ab9a5ecf9 [FIX] typo.
bzr revid: vda@tinyerp.com-20110920171315-k1aambijdl9ih04n
2011-09-20 22:43:15 +05:30