tonthon

Results 16 comments of tonthon

``` python import deform import colander class DemoMapping(colander.MappingSchema): item = colander.SchemaNode( colander.String(), widget=deform.widget.RichTextWidget() ) class DemoSeq(colander.SequenceSchema): items = DemoMapping() schema = DemoSeq() form = Form(schema, buttons=('valid',)) ```

No, it's not related to the use of a MappingSchema or a SequenceSchema. It's related to the js code that binds the editor to the hidden textarea. Something like ```...

The problem comes from tinymce's triggerSave method. Since we don't delete the tinymce instances we create, tinyMCE.editors contains editors not matching an existing textarea. tinyMCE.triggerSave() fails on the first editor...

Here a solution that worked for me 1- Collect the outlines from the original pdf file 2- generate facturx xml 3- Restore the outlines ```python def _collect_outlines(self, pdf_file): """ Collect...

Using Chiliproject, we had the same trouble, I can confirm the modification provided solve the issue for us thanks.

It would be nice to see a new version of pyramid_celery coming out. @sontek Can you handle it or would you like some help ?

Same applies to the auth_url method ```python auth_url = keycloak_openid.auth_url("http://127.0.0.1:8080/oidc_callback", scope="openid", state={"session_id": "1234"}) print(auth_url) "http://mykeycloak:9080/realms/master/protocol/openid-connect/auth?client_id=myclient&response_type=code&redirect_uri=http://127.0.0.1:8080/oidc_callback&scope=openid&state={'session_id': '1234'}" ``` params should be encoded with urllib.parse.urlencode (or a similar tool) ```python from urllib.parse...

Fedora version 23 openssl.x86_64 version 1:1.0.2j-1.fc23 I'm using python 2.7