- 01 Mar, 2019 1 commit
-
-
Jérome Perrin authored
Backport nexedi/erp5!838 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/37
-
- 27 Feb, 2019 9 commits
-
-
Jérome Perrin authored
self.person is not used anywhere
-
Jérome Perrin authored
for compatibility with login/password
-
Jérome Perrin authored
-
Jérome Perrin authored
no need to use different test components
-
Jérome Perrin authored
also update _createPerson to reindex, as said in the docstring
-
Jérome Perrin authored
-
Jérome Perrin authored
- plugin must be enabled for IAuthenticationPlugin - check complete authentication sequence, not just extraction - update scripts to new names
-
Jérome Perrin authored
As script return user_ids it's more logical to name them *_getUserId
-
Jérome Perrin authored
Make this plugin also an IAuthenticationPlugin which does all the job of returning the user id. It does not really make sense to delegate this to default authenticator. A side effect is that token can still authenticate users with no assignments, since tokens are scriptable, if this is a requirement, it can be implemented in scripts. Because this was broken, we took the liberty to introduce a breaking change to fix naming, now type based scripts are getUserId.
-
- 08 Feb, 2019 4 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!831 this is needed or https://lab.nexedi.com/nexedi/capago/merge_requests/370 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/36
-
Jérome Perrin authored
-
Jérome Perrin authored
The fields are displayed only if some portal types are configured as member of payment_request group. This means that currently it's not displayed by default.
-
Jérome Perrin authored
-
- 31 Jan, 2019 6 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!740 tests for booking in french language from https://lab.nexedi.com/nexedi/capago/merge_requests/363 needs it, probably on production it should not change anything as with "real zopes" we set the encoding in zope.conf. 66b4b55f did not apply, I just skipped this commit. /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/35
-
Jérome Perrin authored
zope.conf default encoding is also used for responses and converters, so for consistency we should also force default encoding there. This is especially useful when running tests, because zope.conf is not used and default values are used.
-
Jérome Perrin authored
-
Jérome Perrin authored
https://tools.ietf.org/html/rfc4329#section-7 states that text/javascript is obsolete. Doesn't really matter in the end because WebPage_viewAsWeb forces the content type.
-
Jérome Perrin authored
In HTTP/1.1 , when not specified , charset detault to ISO-8859-1 https://tools.ietf.org/html/rfc2616#section-3.7.1 > media subtypes of the "text" type are defined to have a default charset value of "ISO-8859-1" when received via HTTP Zope adds a charset with default encoding ( https://github.com/zopefoundation/Zope/blob/2.13/src/ZPublisher/HTTPResponse.py#L512-L515 ) but does this only for text/ type, but we serve our javascript as application/javascript
-
Jérome Perrin authored
-
- 18 Jan, 2019 2 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!825/ for test failure at https://lab.nexedi.com/nexedi/capago/merge_requests/360/diffs#note_73137 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/34
-
Jérome Perrin authored
According to pep-0263, python scripts can define encoding magic on first or second line. If we use for example such a script: ```python # coding: utf-8 return "héhé" ``` then using .read() was wrong, because it return the script with headers, ie: ```python ## Script (Python) "test_coding" ##bind container=container ##bind context=context ##bind namespace= ##bind script=script ##bind subpath=traverse_subpath ##parameters= ##title= ## # coding: utf-8 return "héhé" ``` so the coding magic is no longer in first line and pylint complains with error like: Cannot decode using encoding "ascii", unexpected byte at position 11 (invalid-encoded-data)]
-
- 10 Jan, 2019 2 commits
-
-
Jérome Perrin authored
backport nexedi/erp5!796 mentioned in [Re: Create Bt5 with list of all accounting accounts ?](https://www.erp5.com/project_section/capago-project/forum/Create-Bt5-with-list-of-all-accounting-accounts-HLBp84CyNR/view?list_start=9&reset=1#2019138697) /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/33
-
Jérome Perrin authored
Using a cache cookie that is incremented each time an account is added or modified, we can keep an (almost) up to date list of accounts in the UI. Fixes #20170221-1812E21 /reviewed-on nexedi/erp5!796 (cherry picked from commit bbbe264a)
-
- 03 Dec, 2018 1 commit
-
-
Aurel authored
missing in https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/30
-
- 30 Nov, 2018 14 commits
-
-
Jérome Perrin authored
Backport nexedi/erp5!799 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/30
-
Jérome Perrin authored
https://microsoft.github.io/monaco-editor/ as an ERP5 source code editor. Backport nexedi/erp5!687 /reviewed-on https://lab.nexedi.com/nexedi/erp5-capago/merge_requests/31
-
Jérome Perrin authored
-
Jérome Perrin authored
Just set indentation rules for now
-
Jérome Perrin authored
-
Jérome Perrin authored
Because typescript is a subset of javascript, running typescript compiler on javascript files can already report several issues. https://www.typescriptlang.org/docs/handbook/type-checking-javascript-files.html
-
Jérome Perrin authored
This is triggered by using "Format document" from context menu. Include prettier 1.14.0 Copyright 2017-2018 James Long https://github.com/prettier/prettier/
-
Jérome Perrin authored
-
Jérome Perrin authored
So that we can edit web pages & web scripts with monaco
-
Jérome Perrin authored
So that javascript editor provides hints for code using these libraries. Some pointers for type scripts definitions: https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html https://definitelytyped.org/
-
Jérome Perrin authored
-
Jérome Perrin authored
In the previous approach, several "useless" request were still made during edition.
-
Jérome Perrin authored
-
Jérome Perrin authored
https://microsoft.github.io/monaco-editor/ as an ERP5 source code editor this commit is only a build of the vendor code. It was built using https://lab.nexedi.com/jerome/monaco-editor-erp5/ at revision 9d7f8b5 and uploaded to ERP5 following this procedure: First enable webdav by adding in zope conf: ``` <webdav-source-server> address 127.0.0.1:12200 force-connection-close off </webdav-source-server> ``` This was built and uploaded to ERP5 with: ```bash git clone https://lab.nexedi.com/jerome/monaco-editor-erp5.git/ cd monaco-editor-erp5 npm npm run build lftp http://login:pwd@127.0.0.1:12200/erp5/portal_skins/erp5_monaco_editor/monaco-editor/ -e 'mput dist/*' ```
-
- 29 Nov, 2018 1 commit
-
-
Jérome Perrin authored
instead of building HTML in python, it's cleaner and prevent problems when attachments names are HTML entities.
-