Commit Graph

1779 Commits

Author SHA1 Message Date
chm@openerp.com 8df09c6c6a [FIX] website: snippet: display image editor button in snippet. Don't remove overlay (editor is used to clean snippets for save view)
bzr revid: chm@openerp.com-20140305132422-sfmlq8giol53rqjm
2014-03-05 14:24:22 +01:00
Xavier Morel a0feb7c3c9 [REV] backout xmo@openerp.com-20140303153855-5f2l8v0jq2mgb26f, schemas should not be altered in saas-3
bzr revid: xmo@openerp.com-20140304132101-qysq310wp1oo859n
2014-03-04 14:21:01 +01:00
Xavier Morel e78a3b18cc [ADD] tentative removal of attachments
Attachments ought be removed only if they are not used in an existing page/web
view.

Theoretically this could be set directly in unlink(), but:
* that would make a nice error message significantly harder
* the expenses of performing a text search in all view archs would be a bit expensive

Notes:
* the views set could be reduced to only "web" views
* the search is likely sensible to false negatives e.g. different order of
  query parameters. It *will* remove images still being used.

bzr revid: xmo@openerp.com-20140304110716-u14w6uo8fbkfa42i
2014-03-04 12:07:16 +01:00
Xavier Morel a99a15c960 [ADD] deduplication of website images being uploaded
There is a deduplication in ir.attachment, but it's only for FS-stored content
*and* it only deduplicates storage not models (as there are access rights
issues involved).

The goal here is to always return the same attachment when a user uploads the
exact same image multiple times (because it's simpler or whatever).

Initially tried to use a binary field & digest(), but search() blows up
because it tries to utf-8 encode raw binary data. So use char & hexdigest
instead.

_compute_checksum returns None if the provided attachment data does not look
like a website image attachment.

Unhandled: multiple existing matches, maybe a UNIQUE constraint on the
checksum field would be a good idea just in case.

bzr revid: xmo@openerp.com-20140303153855-5f2l8v0jq2mgb26f
2014-03-03 16:38:55 +01:00
Xavier Morel ec68d3d8bd [IMP] don't duplicate website_url function field of attachments
bzr revid: xmo@openerp.com-20140303142401-2jaxc3m31tmqw9qa
2014-03-03 15:24:01 +01:00
Xavier Morel 9d00835b2c [FIX] order of attachments in 'existing images' sub-dialog: put last uploaded first
bzr revid: xmo@openerp.com-20140303135426-evouhwgjtwku3v2b
2014-03-03 14:54:26 +01:00
Denis Ledoux 70d3570846 [FIX]website: do not send False value to google map api to retrieve the image. Otherwise, you are in the middle of the ocean.
bzr revid: dle@openerp.com-20140228170900-lagmopkmkb58exqr
2014-02-28 18:09:00 +01:00
Denis Ledoux 2d903bcbb8 [FIX]website: stop animation on focus (clean fix)
bzr revid: dle@openerp.com-20140228163112-hru06zno1sl919uq
2014-02-28 17:31:12 +01:00
Christophe Matthieu abcd7e4926 [FIX] website snippet: When duplicating a column, the column becomes a col-md-1 instead of keeping existing width
bzr revid: chm@openerp.com-20140228132507-0s6y5k3vkbmusvf1
2014-02-28 14:25:07 +01:00
Christophe Matthieu ce1ff0a854 [FIX] website snippet: Fix parallax with retro-compatibility; Crappy fix for carousel because bootstrap active cycling when user click on a bullet and don't stop when user edit a snippet inside a slider.
bzr revid: chm@openerp.com-20140228131738-il41640r8x9zesll
2014-02-28 14:17:38 +01:00
Christophe Matthieu c11f4f9352 [FIX] website: snippet: continue slide cycling when the user edit the content
bzr revid: chm@openerp.com-20140228095531-8c735qyacmffryno
2014-02-28 10:55:31 +01:00
Christophe Matthieu d96cf8c54c [FIX] website: editor: can not edit a label in edit mode, must prevent the default click
bzr revid: chm@openerp.com-20140227140043-8iko13704pci9823
2014-02-27 15:00:43 +01:00
Christophe Matthieu f462d1564f [FIX] website: bootstrap: Fixed the sliding issue of carousel library in IE9. The transition was not working in any snippet.
bzr revid: chm@openerp.com-20140227133347-6pk45n7ibyrx8imf
2014-02-27 14:33:47 +01:00
Xavier Morel 6b857b6eeb [FIX] whitespace/indent lost by RTE
Didn't manage to find RTE settings to avoid losing leading whitespace of
lines, so reindeint arch after doing all integration, right before saving back
to view's field.

* html.fromstring(parser=HTMLParser(remove_blank_text=True) does not seem to
  work, so serialize to XML, and parse back with
  remove_blank_text. remove_blank_text necessary for lxml's pretty_print to
  work correctly.

* pretty_print only & always uses 2 spaces/indent level. Our files (and the
  HTML editor's Format button) uses 4 spaces -> need a second pass to double
  indents.

bzr revid: xmo@openerp.com-20140227125934-q8j3z440px2ic6kx
2014-02-27 13:59:34 +01:00
Paramjit Singh Sahota 89de7d9f25 [MERGE] Merged lp:~openerp/openobject-addons/saas-3
bzr revid: psa@tinyerp.com-20140227114202-g2yw8pmsn4v0lm05
2014-02-27 17:12:02 +05:30
Christophe Matthieu 6a777b9e62 [FIX] website editor: Editor bar is showing border in ie.
bzr revid: chm@openerp.com-20140227111726-s1545ii3exjqjkxz
2014-02-27 12:17:26 +01:00
Christophe Matthieu 5f70ca61b6 [FIX] website: editor: pointer-events:none for ie doesn't work (because ie). Change snippet overlay to fix this ie bug
bzr revid: chm@openerp.com-20140227111038-0hodseqys6pnz841
2014-02-27 12:10:38 +01:00
Christophe Matthieu 01a898ab8b [FIX] website snippet: pointer-ie
bzr revid: chm@openerp.com-20140227100917-wq54xrkgii7uhacl
2014-02-27 11:09:17 +01:00
Christophe Matthieu cfeac71d6a [FIX] website: editor: pointer-events:none for ie doesn't work (because ie). Change snippet overlay to fix this ie bug
bzr revid: chm@openerp.com-20140226175558-2gyix2zgdawf87yz
2014-02-26 18:55:58 +01:00
Denis Ledoux 50ecb598e7 [FIX] website: website settings should inherit of res.config.settings and not base.config.settings, as it create a new page settings, instead of extending one
bzr revid: dle@openerp.com-20140226171114-jwthykyud66l7o6x
2014-02-26 18:11:14 +01:00
Xavier Morel 30a99471e2 [FIX] Webkit created spurious spans with inline style when joining lines
Post process to manually unwrap node if it only has purely looks-oriented CSS
properties set inline.

ref:
https://code.google.com/p/chromium/issues/detail?id=226941
https://bugs.webkit.org/show_bug.cgi?id=114791
http://dev.ckeditor.com/ticket/9998
http://www.neotericdesign.com/blog/2013/3/working-around-chrome-s-contenteditable-span-bug

bzr revid: xmo@openerp.com-20140226152004-9ybbki1op80lpxin
2014-02-26 16:20:04 +01:00
Christophe Matthieu a22379520c [FIX] website: error managment in ace editor for ie9
bzr revid: chm@openerp.com-20140225165720-c451gumsd5mce5ya
2014-02-25 17:57:20 +01:00
Christophe Matthieu 1e2a5ddfa6 [FIX] website: fix for ie: add bootstrap class in website_sale and bind click for editor
bzr revid: chm@openerp.com-20140225162136-5xdt7n498qxf9myw
2014-02-25 17:21:36 +01:00
Xavier Morel 750b9f405c [FIX] tags edition breakage in website_event_track
* remove some nodes from the $editables set, ``li`` really does not like being
  widgetified. Remove a few others just in case

* split fa outside of li to make it safely (ish) editable

* simplify upcast function for icons cke widget

bzr revid: xmo@openerp.com-20140225131228-2m75itgi4zbj5xfh
2014-02-25 14:12:28 +01:00
Christophe Matthieu 055f73322d [FIX] website: 'window.location.origin' is not found in IE browser thats why generated manually.
bzr revid: chm@openerp.com-20140224143828-wq1k4931lmmm8leh
2014-02-24 15:38:28 +01:00
Christophe Matthieu 60c75d38bf [FIX] website placeholder; website_hr_recruitment required for ie
bzr revid: chm@openerp.com-20140224142751-7bolxomy2nc717w0
2014-02-24 15:27:51 +01:00
Christophe Matthieu 85d3f2ebf5 [FIX][ADD] Added jquery.placeholder lib. because IE9 is not supporting the placeholders.
bzr revid: chm@openerp.com-20140224105958-1dji1sepr6z8dzb2
2014-02-24 11:59:58 +01:00
Pariket Trivedi 467ec6a919 [FIX] Fixed a small problem which falls to load the template in mobile
bzr revid: psa@tinyerp.com-20140221131215-nf1y2t3qbeiosujb
2014-02-21 18:42:15 +05:30
Christophe Matthieu 960ac4bca8 [FIX] website: ace: client side add a try catch to DOMParser for IE
bzr revid: chm@openerp.com-20140221100853-50smr3ii8jrcq178
2014-02-21 11:08:53 +01:00
Paramjit Singh Sahota 777506617a [FIX] 'window.location.origin' is not found in IE browser thats why generated manually.
bzr revid: psa@tinyerp.com-20140221071512-4uky4k2wiu6miysi
2014-02-21 12:45:12 +05:30
Paramjit Singh Sahota 2e49e46698 [FIX] Fixed the sliding issue of carousel library in IE9. The transition was not working in any snippet
bzr revid: psa@tinyerp.com-20140221061236-7jcbgae7m081pjv8
2014-02-21 11:42:36 +05:30
Christophe Simonis 09d7364739 [FIX] website: on DOM elements we must set attribute via setAttribute
bzr revid: chs@openerp.com-20140220142110-zwtvvt2bkvbki7oo
2014-02-20 15:21:10 +01:00
Christophe Matthieu a1bfa32389 [IMP] website ace editor: display more informations about errors when the user save views
bzr revid: chm@openerp.com-20140220103355-0us8k76yrrodqs0u
2014-02-20 11:33:55 +01:00
Paramjit Singh Sahota 2e3e44255e [FIX] Editor bar is showing border.
bzr revid: psa@tinyerp.com-20140220102200-2r2urlrrkngv20at
2014-02-20 15:52:00 +05:30
Paramjit Singh Sahota e776245b8b [ADD] Added jquery.placeholder lib. because IE9 is not supporting the placeholders.
bzr revid: psa@tinyerp.com-20140220100716-01mjib3w692qdgi1
2014-02-20 15:37:16 +05:30
Christophe Matthieu a09b0db51d [FIX] website: Select some text > Click on the link button > Select Page textfield and start typing (e.g. comm) > There is a lot of noise here; Dsiplaying create page for existing page
bzr revid: odo@openerp.com-20140219105502-jg8f2i1gpz5vdarf
2014-02-19 11:55:02 +01:00
Christophe Matthieu 42634d2a0d [FIX] website rte: Select some text > Click on the link button > Start typing > The focus is still on your text, you loose what you selected
bzr revid: odo@openerp.com-20140219092402-bf8vkin5q07rv9bf
2014-02-19 10:24:02 +01:00
Christophe Matthieu 517ace3e41 [FIX] website: snippet: click on bullet don't change the slide of carousel. Fix unique id for each carousel.
bzr revid: odo@openerp.com-20140219090731-c77q63xc77osyw6w
2014-02-19 10:07:31 +01:00
Christophe Matthieu 3226a16b99 [FIX] website: snippet: the slide move he is typing (quote slider)
bzr revid: chm@openerp.com-20140218163759-ojyto7j8r34nh2we
2014-02-18 17:37:59 +01:00
Christophe Matthieu 16953b43bb [FIX] website: snippet editor can be loaded before snippet animation
bzr revid: chm@openerp.com-20140218162452-cf3jqkbstlyw7l5x
2014-02-18 17:24:52 +01:00
Christophe Matthieu 1c4f859f1f [FIX] website: jQuery (sizcache) trigger a change id in the page, the observer set as dirty all template. All template are saved when the user click on save button.
bzr revid: chm@openerp.com-20140218160144-5drlsnz4plyb9tqx
2014-02-18 17:01:44 +01:00
Christophe Matthieu 09397684b3 [FIX] website: change odrer of script tag because jquery-ui-1.9.1.custom overwrite jQuery and cancel some bootstrap method in edit mode
bzr revid: chm@openerp.com-20140218153451-uxd87o5b7zy3asvv
2014-02-18 16:34:51 +01:00
Christophe Matthieu c930e2489f [FIX] website_blog: At one step, it says 'delete the title', but it deletes the whole block
bzr revid: chm@openerp.com-20140218151127-a6471u9l0jpot6gq
2014-02-18 16:11:27 +01:00
Christophe Matthieu 00c810ab14 [FIX] website: Don't allow to edit the menu inline. Users try to change the link, but it does not work. We can put a tooltip explaning they should use the content top menu to edit the menu; bootstrap tooltip don't available in edit mode.
bzr revid: chm@openerp.com-20140218145619-fboofhu111s3g45p
2014-02-18 15:56:19 +01:00
Christophe Matthieu e473e795f6 [FIX] website: Page is added to menu even if the checkbox is unchecked at adding time
bzr revid: chm@openerp.com-20140218144215-vmlah8giy28oq3cd
2014-02-18 15:42:15 +01:00
Christophe Matthieu 28958a4088 [FIX] website tour: At the end of the "Insert a banner" tour the help is "Close Mobile Preview" Change into "Check Mobile Preview" -> i would close with a "Continue" bouton to keep running the help on content -> really needed. With the tour they stay in editable mode and search for adding a new menu
bzr revid: chm@openerp.com-20140218111008-rp1kg7r8pv53wfoh
2014-02-18 12:10:08 +01:00
Christophe Matthieu 8830cb581c [FIX] website: In the footer, users record their phone number inbetween the fa-phone and the t-field. As a result, they change the footer template, not the phone number of the company. This zone should be t-ignore to avoid this mistake.
bzr revid: chm@openerp.com-20140218110250-lvvem8ibkg3g8e8d
2014-02-18 12:02:50 +01:00
Christophe Matthieu 934f57c0c7 [FIX]website snippet: banner content editable
bzr revid: chm@openerp.com-20140218101737-o19ht6n6f2o26pfe
2014-02-18 11:17:37 +01:00
Christophe Matthieu c11e6f6249 [FIX] website: snippet resizing: display top and bottom arrow in function of margin size
bzr revid: chm@openerp.com-20140218101017-f827kued494rfu9g
2014-02-18 11:10:17 +01:00
Christophe Matthieu 7d6dd7070d [FIX] website: snippet resizing; Users don't understand when they can drag arrows to resize col-md-XX. They try, it does not work, so they think the feature does not work. So, horizontal arrow on col-md-XX snippets should use an icon according to what you can do
bzr revid: chm@openerp.com-20140217100418-iwdrv36a4u2inasn
2014-02-17 11:04:18 +01:00
Olivier Dony 632182589c [IMP] website: extra safe check for qcontext's flag
bzr revid: odo@openerp.com-20140217093311-wmv6sxtv9aizusvr
2014-02-17 10:33:11 +01:00
Christophe Matthieu 329d2b7b1a [Fix] The new page is confusing: one user created a new page and then she don't figure out how to find it.
[IMP] website: add a checkbox on new page dialog to add page in menu.
[IMP] website: add page: change default sequence and layout

bzr revid: chm@openerp.com-20140214132602-ts8wcgdkospofg5f
2014-02-14 14:26:02 +01:00
Christophe Matthieu 386b2fe70f [IMP] website: add page: change default sequence and layout
bzr revid: chm@openerp.com-20140214103744-dptrytkfbcwti6t8
2014-02-14 11:37:44 +01:00
Christophe Matthieu 373eadffb1 [MERGE] from saas-3
bzr revid: chm@openerp.com-20140214100424-str26q27d169adwi
2014-02-14 11:04:24 +01:00
Christophe Matthieu d4244bec3e [IMP] website: add a checkbox on new page dialog to add page in menu. Fix: The new page is confusing: one user created a new page and then she don't figure out how to find it
bzr revid: chm@openerp.com-20140213152728-jj6j1hxae8ia5w4k
2014-02-13 16:27:28 +01:00
Christophe Matthieu c86156bbec [FIX] website: comment test login_test.js. Error QWeb2 (test dependence) is not injected in the login page to insert login and password
bzr revid: chm@openerp.com-20140213132550-9i28l7v8vcibz36t
2014-02-13 14:25:50 +01:00
Christophe Matthieu a193f3fef8 [FIX] website: login for test js
bzr revid: chm@openerp.com-20140213132156-plxe5hqohmkxf40g
2014-02-13 14:21:56 +01:00
Christophe Matthieu 441bbb23d7 [IMP] website tour: auto hide popover when the target element is display or hidden
bzr revid: chm@openerp.com-20140213104947-ezd53nzwyxe4xtos
2014-02-13 11:49:47 +01:00
Christophe Matthieu e1b37a897d [FIX] website: remove alert snippets_modal
bzr revid: chm@openerp.com-20140212143916-tqf8d8n1hhod5l4v
2014-02-12 15:39:16 +01:00
Christophe Matthieu ed785f0783 [FIX] website_sale: pager and breadcrum keep search and filter. Filter keep search and category. Links for category
bzr revid: chm@openerp.com-20140212115516-3izdv7cszgh2n3l4
2014-02-12 12:55:16 +01:00
Christophe Matthieu ac03ba3095 [FIX] website: pager don't keep searches
bzr revid: chm@openerp.com-20140212102805-5khiv3cgslci9che
2014-02-12 11:28:05 +01:00
Christophe Matthieu 7576c80a36 [FIX] website: Snippet: Move separator to Features instead of Content section
bzr revid: chm@openerp.com-20140211163853-g5a92uuifrv20e20
2014-02-11 17:38:53 +01:00
Christophe Matthieu 712811654a [FIX] website: text-box and image in the banner is too big on large screen. It should be in a 'container'.
bzr revid: chm@openerp.com-20140211143619-b1dwa5q1wdoeyzn4
2014-02-11 15:36:19 +01:00
Christophe Matthieu 7d1ba3329c [FIX] website: contactus: address of the company above the phone, typo edit button
bzr revid: chm@openerp.com-20140211095933-s712ssydrv1d54nq
2014-02-11 10:59:33 +01:00
Christophe Matthieu 1ac9b4d20d [IMP] website: banner tutorial: remove step about customize and promote
bzr revid: chm@openerp.com-20140210155251-iyj3v06r18vexj7d
2014-02-10 16:52:51 +01:00
Christophe Matthieu 3a273b989c [IMP] website: typo for tutorial
bzr revid: chm@openerp.com-20140210151741-grf5wsvjonuihxw0
2014-02-10 16:17:41 +01:00
Christophe Matthieu abc49aebd5 [FIX] website: don't set tour as automatic when reload page
bzr revid: chm@openerp.com-20140210145923-2w9vbxqqgewgkb0w
2014-02-10 15:59:23 +01:00
Fabien Meghazi 0da8cdda90 [FIX] Set default 'editable' key in website's rendering context
bzr revid: fme@openerp.com-20140210143546-1t82gog330n5x89t
2014-02-10 15:35:46 +01:00
Xavier Morel d4c7de4b03 [FIX] work around distribute_branding
distribute_branding is applied after view inheritance is applied, and does not
take it in account. As a result, altering an existing view "from the top"
(e.g. adding a div element preceding an existing div) will alter the xpath
leading to whatever element we need to deal with.

Move fakebar injection to the bottom of the body, where it can't have any
impact on preceding node paths.

bzr revid: xmo@openerp.com-20140210132855-lwh1ow1tq1e0pidp
2014-02-10 14:28:55 +01:00
Xavier Morel e95eb140a7 [CHG] website: fp wants image 'change' buttons to be btn-sm
bzr revid: xmo@openerp.com-20140210130504-hejvay436emh7f36
2014-02-10 14:05:04 +01:00
Denis Ledoux 38b7c38e32 [FIX] website: config settings does write the values on the website model
This config contains only related fields of the website_id many2one.
The problem is that applying the change CREATE a res config settings
And the create orm method does not forward and write the values on the related fields.
Write does.
The best fix should be to change all these related fields to char fields, 
and to create the set_ method who will acutally set the value to the website_id.
But, unfortunately, this is a stable branch
And we cannot alter the database structure in stable branches.

bzr revid: dle@openerp.com-20140207172157-6upyhuin93qlkrfa
2014-02-07 18:21:57 +01:00
Christophe Matthieu efe1e4a183 [FIX] website test: remove hack for runbot
bzr revid: chm@openerp.com-20140207155454-jf3pwp3hl9nvay6m
2014-02-07 16:54:54 +01:00
Christophe Matthieu c254b7ae2c [FIX] website: enable test tour; + translate; + fixes
bzr revid: chm@openerp.com-20140207155113-honsvx545awa3rcp
2014-02-07 16:51:13 +01:00
Christophe Matthieu 6d7eccf10a [FIX] website snippet drop for rte; remove dependence to qweb template (remove popover from tours); fx import file with ajax
bzr revid: chm@openerp.com-20140207154520-2injapzg9lgrdbvc
2014-02-07 16:45:20 +01:00
Xavier Morel 7ac7b2599e [IMP] make page lookup case-insensitive during completion
bzr revid: xmo@openerp.com-20140207150623-vevnuswi9gx0bqeb
2014-02-07 16:06:23 +01:00
Xavier Morel 6900662b54 [FIX] page creation broken because what is grep
bzr revid: xmo@openerp.com-20140207145149-fem1wnr0t10rcgsn
2014-02-07 15:51:49 +01:00
Christophe Matthieu f767f6ca47 [FIX] website tour test: import with ajax insead of jquery (and auto load jquery)
bzr revid: chm@openerp.com-20140207143437-uptdehmpegzze61y
2014-02-07 15:34:37 +01:00
Christophe Matthieu d432e56661 [FIX] website: for activate test on runbot
bzr revid: chm@openerp.com-20140207143241-e4u7ikvgbl0f980d
2014-02-07 15:32:41 +01:00
Christophe Matthieu 598d811ea7 [MERGE] from saas-3
bzr revid: chm@openerp.com-20140207140912-2tu1bhpvlap0fa4m
2014-02-07 15:09:12 +01:00
Antony Lesuisse cd2bddad46 [FIX] website ir.ui.view render
bzr revid: al@openerp.com-20140207140503-doolcovzuce4m6i4
2014-02-07 15:05:03 +01:00
Christophe Matthieu 25117ffd0b [FIX] tour test log error
bzr revid: chm@openerp.com-20140207134548-lr2563gtlgjphxrp
2014-02-07 14:45:48 +01:00
Christophe Matthieu 76841f14e4 [FIX] website: snippet: display baner in mobile view; background cover insead of 100%; paralax scrolling
bzr revid: chm@openerp.com-20140207133712-srtik2knhwyybgse
2014-02-07 14:37:12 +01:00
Christophe Matthieu 6cb5b1e556 [FIX] website: test tour: use admin insead of tools.config['admin_passwd']
bzr revid: chm@openerp.com-20140207130104-nuwurzlsvt4cu1jr
2014-02-07 14:01:04 +01:00
Christophe Matthieu b21bb08c22 [ADD] website: test login, backend, go back, branding, edit, logout
bzr revid: chm@openerp.com-20140207125231-3zd0i1axdwuht5g4
2014-02-07 13:52:31 +01:00
Christophe Simonis 1b0ce7052e [FIX] website: do not force uneditable templates
bzr revid: chs@openerp.com-20140207122837-ysfss4khpt2hsau1
2014-02-07 13:28:37 +01:00
Christophe Matthieu b71ef0541e [FIX] website test phantomjs login
bzr revid: chm@openerp.com-20140207115903-kzf9ikk37xvtq0ef
2014-02-07 12:59:03 +01:00
Christophe Matthieu 7f241d4245 [FIX] website: snippet option: background style is required
bzr revid: chm@openerp.com-20140207105722-6wfbfw5mj5937t03
2014-02-07 11:57:22 +01:00
Christophe Matthieu 8879fb1728 [FIX] website snippet: reset snippet-editor and overlay because the rte re-generate the dom and cancelled all snippet datas
bzr revid: chm@openerp.com-20140207100734-pdzr0qz8mtmha96m
2014-02-07 11:07:34 +01:00
Christophe Matthieu 4663f5b10c [IMP] website test: add a timeout in phantom js to raise a better error and improve log error
bzr revid: chm@openerp.com-20140207074745-ffrcoi2aj5m67i8m
2014-02-07 08:47:45 +01:00
Christophe Matthieu 062c491488 [IMP] website test_ui: add a try catch in run and run_test to display error
bzr revid: chm@openerp.com-20140206175113-w0qscfngebnn7718
2014-02-06 18:51:13 +01:00
Christophe Simonis daace48560 [MERGE] fix template rendering
bzr revid: chs@openerp.com-20140206163811-i43srg7hd4yqzzo3
2014-02-06 17:38:11 +01:00
Christophe Matthieu 97091c31ae [IMP] website: reduce run test of banner
bzr revid: chm@openerp.com-20140206161614-afam16q12ci0kr7l
2014-02-06 17:16:14 +01:00
Fabien Meghazi 2d4fb97696 [IMP] Move some qweb rendering context vars from website#ir.qweb to server#ir.ui.view
bzr revid: fme@openerp.com-20140206161316-jw7luqon476widcm
2014-02-06 17:13:16 +01:00
Christophe Matthieu 64eb4376ee [MERGE] from saas-3
bzr revid: chm@openerp.com-20140206150121-drs3ybhgx5837zt2
2014-02-06 16:01:21 +01:00
Thibault Delavallée 2f682975bc [FIX] website: fixed call to slugify
- python-slugify: max_length is an optional keyword
- slugify library also exists and does not accepts max_length -> if this very simple library is used, fall
            back on our own implementation

bzr revid: tde@openerp.com-20140206145638-entdcqsawrqf1nnq
2014-02-06 15:56:38 +01:00
Christophe Matthieu 14b4efcd28 [FIX] tour and translate title
bzr revid: chm@openerp.com-20140206145236-vwdq74yyz21qvyzu
2014-02-06 15:52:36 +01:00
Fabien Meghazi b112d5d2f1 [FIX] ir ui view should have rendering context on request.website_enabled
bzr revid: fme@openerp.com-20140206143919-f6vz8rpx9mb4798g
2014-02-06 15:39:19 +01:00
Christophe Matthieu e8964f896c [FIX] website: tour, test and test_runner
bzr revid: chm@openerp.com-20140206140746-jmeyx8q9qxv7sz1j
2014-02-06 15:07:46 +01:00
Christophe Matthieu 0677fda79e [FIX] website tours: fix and translate
bzr revid: chm@openerp.com-20140206140643-z3b2fu2v9uaozc1z
2014-02-06 15:06:43 +01:00
Christophe Matthieu 052bcacd5f [FIX] website_sale template; snippet editor
bzr revid: chm@openerp.com-20140206140258-l3hriceuksx0c061
2014-02-06 15:02:58 +01:00