Skip to main content

Tiles for use in pyramid framework.

Project description

This package provides rendering snippets of markup organized as tiles for the pyramid framework.

A tile is a piece of web application, i.e. a form, a navigation, etc.

Splitting your application in such small and logic application parts makes it easy to re-use this application, simplifies application AJAXification and the use of same application parts in different manners.

Latest PyPI version Number of PyPI downloads Test cone.tile

Usage

Register tiles

A tile is registered similar to a pyramid view. Registration is done with the the cone.tile.tile decorator on classes.

from cone.tile import tile
from cone.tile import Tile

@tile(
    name='b_tile',
    path='package:browser/templates/b_tile.pt',
    permission='view',
    strict=False)
class BTile(Tile):
    pass

There also exists a cone.tile.register_tile function. It should not be used directly any more. tile decorator attaches this function to venusian for deferred tile registration.

from cone.tile import register_tile

register_tile(
    name='a_tile',
    path='package:browser/templates/a_tile.pt',
    permission='view')

tile decorator accepts the following arguments:

name

Identifier of the tile (for later lookup).

path

Either relative path to the template or absolute path or path prefixed by the absolute package name delimeted by ‘:’. If path is used attribute is ignored.

attribute

Attribute on the given _class to be used to render the tile. Defaults to render.

interface

Interface or class of the pyramid model the tile is registered for.

class_

Class to be used to render the tile. usally cone.tile.Tile or a subclass of. Promises to implement cone.tile.ITile. When the tile decorator is used, the decorated class is expected as tile implementation.

permission

Enables security checking for this tile. Defaults to view. If set to None security checks are disabled.

strict

Wether to raise Forbidden or not if rendering is not permitted. Defaults to True. If set to False the exception is consumed and an empty unicode string is returned.

Tiles can be overwritten later while application initialization by just registering it again. This is useful for application theming and customization.

Rendering tiles

Tile rendering with the render_tile function

from cone.tile import render_tile
rendered = render_tile(model, request, name)

Inside templates which are bound to the tile, more tiles can be rendered on current model and request via tile

<tal:sometile replace="structure tile('tilename')" />

The Tile

A tile is similar to what’s known in the zope world as content provider.

Before rendering of the tile is done, the prepare function is called which can be used to load data or whatever.

Further, the show flag is considered (which might have been set in the prepare function) and rendering is skipped if it evaluates to False.

More on rendering

There are helper functions for rendering which pass the tile renderer to templates for invoking child tiles and consider redirections.

The tile class provides a redirect function, which expects either a string containing a URL or a webob.exc.HTTPFound instance. This causes rendering of remaining tiles to be skipped and request.environ['redirect'] to be set.

cone.tile.render_template

Render template. Passes tile renderer to template. Considers redirection. Returns empty string if redirection found.

cone.tile.render_template_to_response

Render template to response. Passes tile renderer to template. Considers redirection. Returns HTTPFound instance if redirection found, otherwise rendered response.

cone.tile.render_to_response

Renders some result to the response considering redirection. Returns HTTPFound instance if redirection found, otherwise rendered response.

Contributors

  • Robert Niederreiter

  • Jens Klein

  • Attila Olah

Changes

2.0.0 (2026-02-03)

  • Refactor package layout to use pyproject.toml and implicit namespace packages. [rnix]

  • Setup Makefile. [lenadax]

  • Run tests with pytest. [lenadax]

1.2 (2025-10-25)

  • Pin upper versions of dependencies. [rnix]

  • Setup Makefile. [lenadax]

  • Run tests with pytest. [lenadax]

1.1 (2022-12-05)

  • Release wheel. [rnix]

1.0 (2019-11-07)

  • Drop pyramid support < 1.5. [rnix, 2019-03-24]

  • Python 3 compatibility. [rnix, 2019-03-24]

  • Do not use cgi module if replacement module html available. [rnix, 2019-03-24]

  • Convert doctests to unittests. [rnix, 2019-03-21]

  • tile decorator uses venusian to defer tile registration now. [rnix, 2015-11-06]

  • Accept name as keyword instead of positional argument in register_tile and tile decorator. [rnix, 2015-11-06]

  • registerTile has been renamed to register_tile. [rnix, 2015-11-06]

  • Update to pyramid 1.5 [rnix, 2015-11-02]

  • Remove useless test case due to this change. https://github.com/Pylons/pyramid/commit/4b552e539a1725356b9982261b73fd88de7d59a1#diff-bcda6948340ab38542fe18fd2365ac70R144 [rnix, 2015-11-02]

0.9.6

  • Use traceback module instead of zope.exceptions to format exceptions in render_template. [rnix, 2017-10-06]

0.9.5

  • Remove log_exception utility and use registered IDebugLogger in cone.tile._api.render_template for exception logging. [rnix, 2017-03-24]

0.9.4

  • Tile registration name is taken from Tile subclass if not given in registerTile function and tile decorator. [rnix, 2017-02-17]

  • name is now optional in registerTile function and tile decorator. [rnix, 2017-02-17]

  • Default attribute is now None in registerTile function and tile decorator to ensure considering attribute from Tile subclass if set. [rnix, 2017-02-17]

  • Tile.name, Tile.path and Tile.attribute can be set on Tile subclass directly without being overwritten at tile registration if not given. [rnix, 2017-02-17]

0.9.3

  • Errors caught in render_tile may contain umlaute. Properly decode error string. [rnix, 2017-02-13]

0.9.2

  • Using and depending now on zope.exceptions to format tracebacks with supplements. [jensens, 2012-06-06]

  • Improved visibility of tracebacks, they appear now in the error log. even if an expression like `tal:replace="structure tile('editform')"` ate it, the traceback is logged. traceback supplements are rendered. [jensens, 2012-06-05]

  • Removed superfluos try except [jensens, 2012-06-05]

  • Fixed dependencies for integrated tests [jensens, 2012-06-05]

0.9.1

  • Tiles can be overwritten. [rnix, 2012-05-22]

  • Use zope.interface.implementer instead of zope.interface.implements. [rnix, 2012-05-18]

0.9

  • Fit for pyramid 1.1 + 1.2 [rnix, 2011-09-08]

  • Documentation [rnix, 2011-09-08]

  • Make it work [jensens, rnix, et. al]

License

Copyright (c) 2009-2021, BlueDynamics Alliance, Austria Copyright (c) 2021-2025, Cone Contributors All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cone_tile-2.0.0.tar.gz (15.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cone_tile-2.0.0-py3-none-any.whl (17.1 kB view details)

Uploaded Python 3

File details

Details for the file cone_tile-2.0.0.tar.gz.

File metadata

  • Download URL: cone_tile-2.0.0.tar.gz
  • Upload date:
  • Size: 15.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for cone_tile-2.0.0.tar.gz
Algorithm Hash digest
SHA256 c7a2896387c0091d9dafb695d5a9e0ab859a249b88a750ee56c941d4731a9d94
MD5 1ab1a54b8b33f6c1c5ccb870db7fb504
BLAKE2b-256 97415196df3c92d1ef3883276cb279da8b8dc0d5ca490143c65163b2a3c5c071

See more details on using hashes here.

File details

Details for the file cone_tile-2.0.0-py3-none-any.whl.

File metadata

  • Download URL: cone_tile-2.0.0-py3-none-any.whl
  • Upload date:
  • Size: 17.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.5

File hashes

Hashes for cone_tile-2.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 79e8a63b0c8b86c0574e3d3c2961870eb4d0e1ec72e77af44180c3c60bab51fb
MD5 078045d161ad0d8b074890451de4abef
BLAKE2b-256 0303f8961ef10649995aa30675493561bd73a388ba2205245a095907b42a6a3e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page