pyramid_layout icon indicating copy to clipboard operation
pyramid_layout copied to clipboard

Pyramid add-on for managing UI layouts.

Results 12 pyramid_layout issues
Sort by recently updated
recently updated
newest added

Changed the category of the venusian callback to 'pyramid' as pyramid 2.0 only calls callbacks with category='pyramid' by default. Michael Merickel explained the change: My main reason for changing it...

https://github.com/Pylons/pyramid_layout/issues/41

Receiving `AttributeError: 'Request' object has no attribute 'layout_manager'` on startup running under uwsgi. This is the line that is causing it: https://github.com/Pylons/pyramid_layout/blob/master/pyramid_layout/config.py#L79 I am still looking into the correct course...

Note that Sphinx 4.0 might break a docs build. If needed, temporarily pin to

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',...

The bug is in this function in config.py ``` def derived(context, request, *args, **kw): result = wrapped(context, request, *args, **kw) if isinstance(result, basestring): return result system = {'panel': panel, 'renderer_info':...

I found in the panel template there is no 'view' renderer global variable there, I was trying to get it through the introspectable but failed. Is there an easy way...

Here's the relevant traceback ``` pytb File "/path/to/pyramid_layout-0.8-py2.7.egg/pyramid_layout/config.py", line 359, in register template = helper.renderer.implementation() pyramid.exceptions.ConfigurationExecutionError: : 'MakoLookupTemplateRenderer' object has no attribute 'implementation' ``` Latest versions of pyramid_mako and pyramid_jinja...

Maybe it will be more good to change namespace of zcml to pyramid as in pyramid_zcml?