odoo/odoo.git
12 years ago[IMP]improve view in contract
Sanjay Gohel (Open ERP) [Tue, 12 Jun 2012 13:00:56 +0000 (18:30 +0530)]
[IMP]improve view in contract

bzr revid: sgo@tinyerp.com-20120612130056-vjryu1lo5l9v5cq4

12 years ago[REM]:sale:removed changes related analytic_journal_billing_rate module.
Amit Patel (OpenERP) [Tue, 12 Jun 2012 06:58:01 +0000 (12:28 +0530)]
[REM]:sale:removed changes related analytic_journal_billing_rate module.

bzr revid: apa@tinyerp.com-20120612065801-fsluuihjd6r39nht

12 years ago[REM]:sale:removed changes related analytic_journal_billing_rate module.
Amit Patel (OpenERP) [Tue, 12 Jun 2012 06:49:10 +0000 (12:19 +0530)]
[REM]:sale:removed changes related analytic_journal_billing_rate module.

bzr revid: apa@tinyerp.com-20120612064910-nm379tgwt1nper16

12 years ago[REM]:removed analytic_journal_billing_rate
Amit Patel (OpenERP) [Tue, 12 Jun 2012 06:41:50 +0000 (12:11 +0530)]
[REM]:removed analytic_journal_billing_rate

bzr revid: apa@tinyerp.com-20120612064150-dcno3x33v4es1kf7

12 years ago[MERGE]:resolved conflicts and merged with trunk
Amit Patel (OpenERP) [Tue, 12 Jun 2012 06:35:39 +0000 (12:05 +0530)]
[MERGE]:resolved conflicts and merged with trunk

bzr revid: apa@tinyerp.com-20120612063539-japenzf86hh59541

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Tue, 12 Jun 2012 04:55:55 +0000 (04:55 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120612045555-2irdwxgtdcfdho23

12 years ago[MERGE] Repair RNG validation, enable rendering check, fix validation in update mode
Olivier Dony [Mon, 11 Jun 2012 20:34:31 +0000 (22:34 +0200)]
[MERGE] Repair RNG validation, enable rendering check, fix validation in update mode

- RNG validation restored for non 7.0-style views
- RNG schema document now cached for faster validation
- Extra view validation now performed by forcing a rendering
  of each created/updated view via fields_view_get, including
  inherited views
- Fixed fields_view_get when called during module update, i.e.
  while modules are only partially loaded - it will now only
  consider views belonging to already loaded modules only

bzr revid: odo@openerp.com-20120611203431-syzqe4n2jbrqv17u

12 years ago[MERGE] Fixes for @version attr in recently modified 7.0-style forms
Olivier Dony [Mon, 11 Jun 2012 20:27:01 +0000 (22:27 +0200)]
[MERGE] Fixes for @version attr in recently modified 7.0-style forms

A corresponding server-side fix including improved validation
is being merged at the same time

bzr revid: odo@openerp.com-20120611202701-xhcx9vppv9qkj9bf

12 years ago[IMP] orm: improved @version spec validation for inherited views
Olivier Dony [Mon, 11 Jun 2012 17:31:32 +0000 (19:31 +0200)]
[IMP] orm: improved @version spec validation for inherited views

bzr revid: odo@openerp.com-20120611173132-3ioptod9jwxttopc

12 years ago[FIX] *: Correct @version spec in new-style forms, after FP's recent merge
Olivier Dony [Mon, 11 Jun 2012 16:10:14 +0000 (18:10 +0200)]
[FIX] *: Correct @version spec in new-style forms, after FP's recent merge

bzr revid: odo@openerp.com-20120611161014-19p6rd5qpkmmijmg

12 years ago[IMP] added warning messages in o2m when using an unsupported type of view, also...
niv-openerp [Mon, 11 Jun 2012 16:07:29 +0000 (18:07 +0200)]
[IMP] added warning messages in o2m when using an unsupported type of view, also removed form view handling in o2m

bzr revid: nicolas.vanhoren@openerp.com-20120611160729-wtqg0o0ry12pyi04

12 years ago[fix] added sortable false in o2m & m2m
niv-openerp [Mon, 11 Jun 2012 15:28:19 +0000 (17:28 +0200)]
[fix] added sortable false in o2m & m2m

bzr revid: nicolas.vanhoren@openerp.com-20120611152819-rk9zeosndxjrajfa

12 years ago[IMP] form layout of invoice
Fabien Pinckaers [Mon, 11 Jun 2012 14:47:37 +0000 (16:47 +0200)]
[IMP] form layout of invoice

bzr revid: fp@tinyerp.com-20120611144737-pa5q8r4bi3i6726w

12 years agofix
Fabien Pinckaers [Mon, 11 Jun 2012 14:42:23 +0000 (16:42 +0200)]
fix

bzr revid: fp@tinyerp.com-20120611144223-9ha9jwaabmeawgb5

12 years ago[REM] auction,project_messages,base_synchro: remove empty dir after disabling LP...
Olivier Dony [Mon, 11 Jun 2012 12:58:03 +0000 (14:58 +0200)]
[REM] auction,project_messages,base_synchro: remove empty dir after disabling LP translations - modules removed in 7.0

bzr revid: odo@openerp.com-20120611125803-vuqyxbewnxmdyq7a

12 years ago[IMP] modules, ir.ui.view: improve view validation + avoid validation errors during...
Olivier Dony [Mon, 11 Jun 2012 12:27:58 +0000 (14:27 +0200)]
[IMP] modules, ir.ui.view: improve view validation + avoid validation errors during updates

As of 7.0, RNG validation is not possible for form views
that have a version attribute equal to "7.0", due to the
allowed usage of HTML syntax mixed with the regular OpenERP
view syntax. RNG validation is still enabled for regular
form views (@version missing or less than "7.0"), and for
all other views types.
Validation of 7.0 form views should be improved with the
addition of an assertion-based schema, still to be done.

The above is also complemented with an explicit call to fields_view_get()
during view installation, in order to immediately verify
that the updated view hierarchy does not cause any
issue when loaded along with its related views (i.e
parent and siblings, for inheriting views).
In addition to that, fields_view_get() will now only
consider loading views that belong to modules that have
already been loaded. This avoids a lot of validation errors
during a module update operation, which runs on top of
an existing database with all previous views visible,
even those whose module is not loaded yet.

bzr revid: odo@openerp.com-20120611122758-qcw9xdhupl24busq

12 years ago[REVERT] db: revert incorrect change to auto_install logic
Olivier Dony [Mon, 11 Jun 2012 10:36:53 +0000 (12:36 +0200)]
[REVERT] db: revert incorrect change to auto_install logic

The auto_install flag means that the module will be automatically
installed as soon as all its dependencies are satisfied.
It does *not* mean that the module will be automatically installed
upon database creation. It can be used for that purpose by
setting it on a module that has no dependencies however.

bzr revid: odo@openerp.com-20120611103653-l7x0xxdqo4wixjvl

12 years ago[IMP] purchase form view
Fabien Pinckaers [Mon, 11 Jun 2012 10:19:35 +0000 (12:19 +0200)]
[IMP] purchase form view

bzr revid: fp@tinyerp.com-20120611101935-d2a4nm62x4al1nyu

12 years ago[IMP] sale form view
Fabien Pinckaers [Mon, 11 Jun 2012 10:07:57 +0000 (12:07 +0200)]
[IMP] sale form view

bzr revid: fp@tinyerp.com-20120611100757-20fcsrkts3ussa2r

12 years ago[MERGE] cleaning all form views
Fabien Pinckaers [Mon, 11 Jun 2012 10:00:52 +0000 (12:00 +0200)]
[MERGE] cleaning all form views

bzr revid: fp@tinyerp.com-20120611100052-e2u8augm7kkc0uyr

12 years ago[IMP] removing unused tag
Fabien Pinckaers [Mon, 11 Jun 2012 09:26:52 +0000 (11:26 +0200)]
[IMP] removing unused tag

bzr revid: fp@tinyerp.com-20120611092652-5yfyl1h2tymnl8ge

12 years ago[ADD] Added !important to oe_form_invisible
Fabien Meghazi [Mon, 11 Jun 2012 09:26:41 +0000 (11:26 +0200)]
[ADD] Added !important to oe_form_invisible

bzr revid: fme@openerp.com-20120611092641-cp0m7w2a41917r9h

12 years ago[REM] Removed openerp.log
Fabien Meghazi [Mon, 11 Jun 2012 09:19:09 +0000 (11:19 +0200)]
[REM] Removed openerp.log

bzr revid: fme@openerp.com-20120611091909-269ukzc2gftkwuma

12 years ago[merge] improved all form views
Fabien Pinckaers [Mon, 11 Jun 2012 09:14:38 +0000 (11:14 +0200)]
[merge] improved all form views

bzr revid: fp@tinyerp.com-20120611091438-9txh9avm142tses1

12 years agotemporarily removing checks
Fabien Pinckaers [Mon, 11 Jun 2012 09:10:31 +0000 (11:10 +0200)]
temporarily removing checks

bzr revid: fp@tinyerp.com-20120611091031-sfear1x3c574tvpw

12 years ago[IMP] Improved projects view to use a kanban view for project members.
niv-openerp [Mon, 11 Jun 2012 09:09:02 +0000 (11:09 +0200)]
[IMP] Improved projects view to use a kanban view for project members.

bzr revid: nicolas.vanhoren@openerp.com-20120611090902-mtpokdqfdgihckew

12 years agomerge trunk
niv-openerp [Mon, 11 Jun 2012 09:08:38 +0000 (11:08 +0200)]
merge trunk

bzr revid: nicolas.vanhoren@openerp.com-20120604121500-sgfni3iokvm8dh1p
bzr revid: nicolas.vanhoren@openerp.com-20120611090838-vmi2softfyfvv299

12 years agomerge
Fabien Pinckaers [Mon, 11 Jun 2012 09:08:02 +0000 (11:08 +0200)]
merge

bzr revid: fp@tinyerp.com-20120611090802-a85fuvi9kkb15nju

12 years ago[IMP] Improved partners' view, changed kanban view of children to be more usable.
niv-openerp [Mon, 11 Jun 2012 09:07:02 +0000 (11:07 +0200)]
[IMP] Improved partners' view, changed kanban view of children to be more usable.

bzr revid: nicolas.vanhoren@openerp.com-20120611090702-46szixayu6bsnzxy

12 years ago[IMP] removing layout="manual"
Fabien Pinckaers [Mon, 11 Jun 2012 09:07:01 +0000 (11:07 +0200)]
[IMP] removing layout="manual"

bzr revid: fp@tinyerp.com-20120611090701-57jr0v6oxnbuocwc

12 years ago[MOV] Moved instance.notification to instance.web.notification
Fabien Meghazi [Mon, 11 Jun 2012 09:06:22 +0000 (11:06 +0200)]
[MOV] Moved instance.notification to instance.web.notification

bzr revid: fme@openerp.com-20120611090622-mvhhdn8cez9tx99h

12 years agomerge trunk
niv-openerp [Mon, 11 Jun 2012 09:05:49 +0000 (11:05 +0200)]
merge trunk

bzr revid: nicolas.vanhoren@openerp.com-20120611090549-y4um978338d22bvn

12 years ago[merge] trunk
Fabien Pinckaers [Mon, 11 Jun 2012 09:03:05 +0000 (11:03 +0200)]
[merge] trunk

bzr revid: fp@tinyerp.com-20120611090305-hh1yws123ile54r3

12 years ago[IMP] views
Fabien Pinckaers [Mon, 11 Jun 2012 09:02:48 +0000 (11:02 +0200)]
[IMP] views

bzr revid: fp@tinyerp.com-20120611090248-oechaas8kntaqzqf

12 years ago[IMP]:improved report : add formatLand in date
Amit Patel (OpenERP) [Mon, 11 Jun 2012 07:01:38 +0000 (12:31 +0530)]
[IMP]:improved report : add formatLand in date

bzr revid: apa@tinyerp.com-20120611070138-90yuf276q52dypzp

12 years ago[MERGE]
Amit Patel (OpenERP) [Mon, 11 Jun 2012 06:32:53 +0000 (12:02 +0530)]
[MERGE]

bzr revid: apa@tinyerp.com-20120611063253-thu785ewcrcs7ci6

12 years ago[MERGE]
Amit Patel (OpenERP) [Mon, 11 Jun 2012 06:21:42 +0000 (11:51 +0530)]
[MERGE]

bzr revid: apa@tinyerp.com-20120611062142-gf4mtvhx09w0q51w

12 years ago[MERGE]
Amit Patel (OpenERP) [Mon, 11 Jun 2012 06:09:12 +0000 (11:39 +0530)]
[MERGE]

bzr revid: apa@tinyerp.com-20120611060912-zgmaro17mmpv48bx

12 years ago[MERGE]merge with parent branch
Sanjay Gohel (Open ERP) [Mon, 11 Jun 2012 05:28:46 +0000 (10:58 +0530)]
[MERGE]merge with parent branch

bzr revid: sgo@tinyerp.com-20120611052846-msrf9ts8ogoljcdx

12 years ago[IMP]set xpath correctly in account_journal_billing_rate
Sanjay Gohel (Open ERP) [Mon, 11 Jun 2012 04:57:24 +0000 (10:27 +0530)]
[IMP]set xpath correctly in account_journal_billing_rate

bzr revid: sgo@tinyerp.com-20120611045724-gqd8cmjkmb2qv1kq

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Mon, 11 Jun 2012 04:46:47 +0000 (04:46 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120609053947-vtt4bvvka4m7ss08
bzr revid: launchpad_translations_on_behalf_of_openerp-20120610043726-y2hq6n49adbitr1p
bzr revid: launchpad_translations_on_behalf_of_openerp-20120611044647-txtguaozavg1ipp2

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 17:54:35 +0000 (19:54 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610175435-xovklbihgqhnxbfu

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 17:51:20 +0000 (19:51 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610175120-hbhky8lzcqighns7

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 17:50:39 +0000 (19:50 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610175039-nr76mqt0o938sk8x

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 17:40:29 +0000 (19:40 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610174029-72nr53b40dd8zmqj

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 17:38:21 +0000 (19:38 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610173821-560aihfbvlwm6v3e

12 years agoimp_form_view
Fabien Pinckaers [Sun, 10 Jun 2012 17:13:41 +0000 (19:13 +0200)]
imp_form_view

bzr revid: fp@tinyerp.com-20120610171341-daug80mm3sps9k2e

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 15:09:18 +0000 (17:09 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610150918-qyj5kms1lvuwdwkc

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 15:04:58 +0000 (17:04 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610150458-zrh2bds43w0i3b4g

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 14:38:43 +0000 (16:38 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610143843-tydwjj99qyhi1shh

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 14:12:53 +0000 (16:12 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610141253-9j6fjjiv5uxjves7

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 13:46:58 +0000 (15:46 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610134658-65adbtp2mxolakq9

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 13:06:13 +0000 (15:06 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610130613-ptxeqrxxn15ultei

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 12:58:45 +0000 (14:58 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610125845-fyd5o5vb1fuoosbv

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 12:06:14 +0000 (14:06 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610120614-oe3plgxr1364um0q

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 10:43:38 +0000 (12:43 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610104338-spr8hfo74z2vy0nj

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 10:32:54 +0000 (12:32 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610103254-5iinjtbfoi1ls7c0

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 10:03:38 +0000 (12:03 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610100338-10i6j62ame7qz0a0

12 years agofix
Fabien Pinckaers [Sun, 10 Jun 2012 08:39:19 +0000 (10:39 +0200)]
fix

bzr revid: fp@tinyerp.com-20120610083919-0k023u8hzcibpzy1

12 years ago[merge] trunk
Fabien Pinckaers [Sun, 10 Jun 2012 08:35:15 +0000 (10:35 +0200)]
[merge] trunk

bzr revid: fp@tinyerp.com-20120610083515-itgsn211254zp1b9

12 years ago[merge] trunk
Fabien Pinckaers [Sun, 10 Jun 2012 08:18:34 +0000 (10:18 +0200)]
[merge] trunk

bzr revid: fp@tinyerp.com-20120610081834-lwt8ffvniuxddn3c

12 years ago[imp] cleaning projects
Fabien Pinckaers [Sun, 10 Jun 2012 08:15:36 +0000 (10:15 +0200)]
[imp] cleaning projects

bzr revid: fp@tinyerp.com-20120610081536-su827vf2fvxtr1jv

12 years agoLaunchpad automatic translations update.
Launchpad Translations on behalf of openerp [Sun, 10 Jun 2012 04:36:58 +0000 (04:36 +0000)]
Launchpad automatic translations update.

bzr revid: launchpad_translations_on_behalf_of_openerp-20120608043934-em2lsbdmii9h008h
bzr revid: launchpad_translations_on_behalf_of_openerp-20120609053847-swqhr56rkn08wy76
bzr revid: launchpad_translations_on_behalf_of_openerp-20120610043658-zp9mib8m2afz35w4

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 00:12:52 +0000 (02:12 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610001252-1axqs109qoutqx5h

12 years agoimp
Fabien Pinckaers [Sun, 10 Jun 2012 00:08:43 +0000 (02:08 +0200)]
imp

bzr revid: fp@tinyerp.com-20120610000843-lp06fvzq3ejmsmk8

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 23:48:16 +0000 (01:48 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609234816-9a3domcakn0vbazv

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 23:47:44 +0000 (01:47 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609234744-cqrvmqkxfrpei6i1

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 23:46:14 +0000 (01:46 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609234614-9grhse0j33ewzsl1

12 years agoimp
Fabien Pinckaers [Sat, 9 Jun 2012 23:35:49 +0000 (01:35 +0200)]
imp

bzr revid: fp@tinyerp.com-20120609233549-b5z7os4dcydz7d0f

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 23:32:39 +0000 (01:32 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609233239-tm5cz70fctemmar0

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 23:18:24 +0000 (01:18 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609231824-3k3xejhpbpknvaa1

12 years ago[IMP] new form views
Fabien Pinckaers [Sat, 9 Jun 2012 23:09:29 +0000 (01:09 +0200)]
[IMP] new form views

bzr revid: fp@tinyerp.com-20120609230929-dg3jol0d7ia265j2

12 years agofix
Fabien Pinckaers [Sat, 9 Jun 2012 22:32:41 +0000 (00:32 +0200)]
fix

bzr revid: fp@tinyerp.com-20120609223241-lfuqxylfvh1v163r

12 years ago[FIX] headers
Fabien Pinckaers [Sat, 9 Jun 2012 22:28:49 +0000 (00:28 +0200)]
[FIX] headers

bzr revid: fp@tinyerp.com-20120609222849-gm9loztzarjyn7pl

12 years ago[IMP] new form views
Fabien Pinckaers [Sat, 9 Jun 2012 22:12:48 +0000 (00:12 +0200)]
[IMP] new form views

bzr revid: fp@tinyerp.com-20120609221248-6l7fg99yedc0gy11

12 years ago[IMP] better form views
Fabien Pinckaers [Sat, 9 Jun 2012 21:56:28 +0000 (23:56 +0200)]
[IMP] better form views

bzr revid: fp@tinyerp.com-20120609215628-0ro72kp0hzni67j9

12 years ago[IMP] form view, removed project_planning
Fabien Pinckaers [Sat, 9 Jun 2012 20:31:27 +0000 (22:31 +0200)]
[IMP] form view, removed project_planning

bzr revid: fp@tinyerp.com-20120609203127-hzdb9tuua0dmydh0

12 years ago[IMP] form view, removed project_planning
Fabien Pinckaers [Sat, 9 Jun 2012 19:49:46 +0000 (21:49 +0200)]
[IMP] form view, removed project_planning

bzr revid: fp@tinyerp.com-20120609194946-5pgqdhkf1mmrleox

12 years ago[IMP] old style views supported with version=...
Fabien Pinckaers [Sat, 9 Jun 2012 16:00:09 +0000 (18:00 +0200)]
[IMP] old style views supported with version=...

bzr revid: fp@tinyerp.com-20120609160009-ng8l3f8fa1sojkjw

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 15:59:35 +0000 (17:59 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609155935-ngp2di1h04uan90j

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 15:37:41 +0000 (17:37 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609153741-gkmqamwbr0s84wy6

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 15:28:02 +0000 (17:28 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609152802-2rowk0sbu7220ouy

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 15:19:20 +0000 (17:19 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609151920-4sv7qzomhmfpwsy2

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 15:08:55 +0000 (17:08 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609150855-8vhx441vhby4lbr4

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 14:39:04 +0000 (16:39 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609143904-ydwqfyb54atbcpvw

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 14:18:49 +0000 (16:18 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609141849-kq5ng1r4n1cieafo

12 years ago[IMP] better form views, new guidelines
Fabien Pinckaers [Sat, 9 Jun 2012 14:13:14 +0000 (16:13 +0200)]
[IMP] better form views, new guidelines

bzr revid: fp@tinyerp.com-20120609141314-m26hf1pfyk0hd8oz

12 years ago[IMP] better views, mostly accoung wizards form
Fabien Pinckaers [Sat, 9 Jun 2012 13:50:41 +0000 (15:50 +0200)]
[IMP] better views, mostly accoung wizards form

bzr revid: fp@tinyerp.com-20120609135041-570vyqpa9m2f1huw

12 years ago[IMP] removing select=? and adding version=7
Fabien Pinckaers [Sat, 9 Jun 2012 12:40:45 +0000 (14:40 +0200)]
[IMP] removing select=? and adding version=7

bzr revid: fp@tinyerp.com-20120609124045-sbopsbiiffcnjzfv

12 years ago[IMP] improved <group> tags bugfixes
Fabien Pinckaers [Sat, 9 Jun 2012 09:44:33 +0000 (11:44 +0200)]
[IMP] improved <group> tags bugfixes

bzr revid: fp@tinyerp.com-20120609094433-o7svbpvk48omvknd

12 years ago[IMP] improved form views
Fabien Pinckaers [Fri, 8 Jun 2012 18:35:18 +0000 (20:35 +0200)]
[IMP] improved form views

bzr revid: fp@tinyerp.com-20120608183518-7sllx2v50vsx3ohm

12 years ago[MERGE] trunk-mit css improvements
Antony Lesuisse [Fri, 8 Jun 2012 17:16:03 +0000 (19:16 +0200)]
[MERGE] trunk-mit css improvements

bzr revid: al@openerp.com-20120608171603-d2zu8dni5cx2ltph

12 years ago[MERGE] trunk-mit css improvements
Antony Lesuisse [Fri, 8 Jun 2012 17:15:44 +0000 (19:15 +0200)]
[MERGE] trunk-mit css improvements

bzr revid: al@openerp.com-20120608171544-lct5ptxwos4j36rz

12 years ago[FIX] move boostrap css fix in base.sass
Antony Lesuisse [Fri, 8 Jun 2012 17:14:52 +0000 (19:14 +0200)]
[FIX] move boostrap css fix in base.sass

bzr revid: al@openerp.com-20120608171452-rls5mopqqd3hdfmn

12 years ago[MERGE] trunk
Antony Lesuisse [Fri, 8 Jun 2012 17:00:05 +0000 (19:00 +0200)]
[MERGE] trunk

bzr revid: al@openerp.com-20120608170005-exk83se779u3py4x

12 years ago[MERGE] trunk
Antony Lesuisse [Fri, 8 Jun 2012 16:59:32 +0000 (18:59 +0200)]
[MERGE] trunk

bzr revid: al@openerp.com-20120608165932-qp494qy31xa6oi6t

12 years agomerge
Fabien Pinckaers [Fri, 8 Jun 2012 14:07:42 +0000 (16:07 +0200)]
merge

bzr revid: fp@tinyerp.com-20120608140742-jldq2jreulj4uzv9

12 years ago[MERGE]:lp:~openerp-dev/openobject-addons/trunk-form-fp-improve-sgo
Amit Patel (OpenERP) [Fri, 8 Jun 2012 13:34:32 +0000 (19:04 +0530)]
[MERGE]:lp:~openerp-dev/openobject-addons/trunk-form-fp-improve-sgo

bzr revid: apa@tinyerp.com-20120608133432-pj6cirhm3q52r4qw

12 years ago[MERGE]merge with parent branch
Sanjay Gohel (Open ERP) [Fri, 8 Jun 2012 13:34:23 +0000 (19:04 +0530)]
[MERGE]merge with parent branch

bzr revid: sgo@tinyerp.com-20120608133423-rv33zgeckkm4fvt0

12 years ago[IMP]:improved contract view
Amit Patel (OpenERP) [Fri, 8 Jun 2012 13:27:14 +0000 (18:57 +0530)]
[IMP]:improved contract view

bzr revid: apa@tinyerp.com-20120608132714-nqon3zqppewroq85