tonthon
tonthon
Create a sequence of Mappings with RichTexts Add a sequence item Delete that item Add a sequence item Fill the text Submit your form The text you filled has disappeared
When inserting a Richtext widget into a sortable sequence, the content of the widget is disappearing on sorting. Tinymce doesn't support DOM manipulations very well. To make it works, the...
When using generate_facturx_from_file on a pdf file with bookmarks, those are removed.
My setup : OS : fedora I installed the following packages : gcc libffi-devel python-devel openssl-devel And I pip installed cryptography. I get the following error ``` raise UnsupportedAlgorithm("This backend...
The Oauth2Client model use the following definition ``` _client_secret = Column(Binary(255), unique=True, nullable=False) ``` On db initialization, the following error is raised ``` OperationalError: (_mysql_exceptions.OperationalError) (1170, "BLOB/TEXT column '_client_secret' used...
Hi, it seems there is no support for the Authorization code grant flow https://tools.ietf.org/html/rfc6749#section-4.1 The token view doesn't support authorization_code grant_type Am I right ?
In xhtml2pdf/util.py https://github.com/chrisglass/xhtml2pdf/blob/master/xhtml2pdf/util.py#L518 The regex matching the mimetype is expecting alphabetical characters ``` python (?P[a-z]+/[a-z]+) ``` but some mimetypes contain other characters like "-" (e.g : image/x-ms-bmp).
When using pyramid_layout with a non default layout, the request_param view predicates is not matched anymore. Starting with the demo app, add following lines in views.py ```python @view_config( route_name='home.mako', request_param='view=html',...
It should be fun if I could simply add : ``` INI pyramid.includes = pyramid_tm daybed ... ``` in my app.ini file. or integrate daybed through a ``` python config.include(daybed)...