{ "info": { "author": "4teamwork AG", "author_email": "mailto:info@4teamwork.ch", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Plone :: 4.3", "Framework :: Plone :: 5.1", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. contents:: Table of Contents\n\n\n\n\nIntroduction\n============\n\n\nSimpleLayout provides an intuitive way of adding and arranging the different\nelements of a page such as paragraphs, images, files and links using\ndrag-and-drop functionality.\nThese elements are implemented as addable and easily arrangeable \"blocks\".\nBecause of the restricted dimensions of text, images and other content elements,\nthe general result is content with a uniform look and feel throughout the site.\n\n\nCompatibility\n-------------\n\n**Plone 4.3.x**\n\n.. image:: https://jenkins.4teamwork.ch/job/ftw.simplelayout-master-test-plone-4.3.x.cfg/badge/icon\n :target: https://jenkins.4teamwork.ch/job/ftw.simplelayout-master-test-plone-4.3.x.cfg\n\n\nPlease use the `plone4` extra on Plone 4 Installations in order to have the right dependencies. \n\n\n**Plone 5.1.x**\n\nSo far Simplelayout for Plone 5.1.x has reached beta state and has never been used on a production site so far. Use it on your own risk.\n\nFeatures dropped for Plone 5.1.x:\n\n- Anchor extraction from Blocks for anchors on a page.\n- Upgrade step, which removes the plone.app.referenceablebehavior.referenceable.IReferenceable from all sl content types.\n\n\n**Themes**\n\nTo have proper styles we recommend using `plonetheme.blueberry `_.\n\n\n**Upgrade form Plone 4.3.x to Plone 5.1.x**\n\nTODO: Needs to be implemented and tested.\n\n\n**Trash**\n\n``ftw.simplelayout`` integrates automatically with `ftw.trash`_ when both are installed.\n\nInstallation\n============\n\n- Add the package to your buildout configuration:\n\n::\n\n [instance]\n eggs +=\n ...\n ftw.simplelayout[contenttypes, mapblock]\n\n\n- With ftw.simplelayout 2.0.0 we introduced Plone support for this package. But Plone 4 has different dependencies. In order to use ftw.simpellayout 2.0.0 with Plone 4 also install the plone4 extra\n\n::\n\n [instance]\n eggs +=\n ...\n ftw.simplelayout[contenttypes, mapblock, plone4]\n\n\nThen you got several profile from wich you can choose from:\n\n- ``ftw.simplelayout`` **lib** profile - Just the basics without any ContentTypes. This profile is also available for Plone 5\n\n- ``ftw.simplelayout`` **default** profile - Installs Simplelayout with default ContentTypes and everything you need to create content the Simplelayout way.\n\n- Overlays for manipulate blocks, such as adding, deleting and modifying.\n- Saving the current Simplelayout state.\n- Loading the configuration of a simplelayout page.\n- Reloading blocks with additional parameters, view, or data attributes.\n\n\n\nUsage\n=====\n\nFirst steps\n-----------\n\nIt's a good idea to install the default profile, which ships some basic contenttypes, such as ContentPage and TextBlock.\n\nSimply add a new ContentPage instead of a Plone Document. A Toolbox appears on right, which allows you to create content on/in your ContentPage with Simplelayout.\n\nBy default you can choose between a 1 column, 2 Column or 4 Column layout.\nSimplelayout adds an empty 1 column layout for you by default, so you can directly start adding a Block.\n\nJust drag the Block of your choice, for example a TextBlock, into the layout. Enter title, body text and/or an image. Then click save.\n\nAs you see, you never going to leave the ContentPage, all actions with Simplelayout are asynchronous.\nThis means adding, deleting and editing always opens an overlay, where you can make the modifications.\n\n\n\n\n\nContenttypes\n------------\n\nSimplelayout ships by default with two content types.\nOne folderish type, the `ContentPage` and one block type, the `TextBlock`.\n\n\n**ContentPage**\n\nThe ContentPage is a simple folderish dexterity based contenttype, which\ndoes nearly nothing, but has the ``@@simplelayout-view`` view configured by default.\nIt's possible to add a ContentPage within a ContentPage\n\n**TextBlock**\n\nThe TextBlock provides the following fields:\n\n- ``Title`` (Well, this will be the title of the block, rendered as **h2**).\n- Show title? (Decide if the title will be displayed or not).\n- Text\n- Image\n\nTitle, or Text, or the image is needed to successfully add a new block\n\nThe ``TextBlock`` configuration allows you to use this block to show text\nonly or images only, or of course both. There's no need of a single block for\nimages and a single block for text.\n\n.. figure:: ./docs/_static/add_textblock.png\n :align: center\n :alt: Add TextBlock\n\n Add TextBlock\n\n\nBehaviors\n---------\n\n- The Teaser behavior is enabled by default on `TextBlock`. It allows you to add an\n internal or external link to the block.\n\n- The `show_title` behavior is disabled by default. It can be enabled to add a checkbox\n to the configuration of contentpages. With this checkbox, the title can be hidden.\n\n\nPortlets\n--------\n\n``ftw.simplelayout`` provides a ``Simplelayout Portlet`` which alows you to move Blocks into the right, or left column.\nYou simply have to assign the portlet on a specific context, or type.\n\nExample (How to assign the portlet by default to all Simplelayout ContentPages).\n\nportlets.xml:\n\n.. code-block:: xml\n\n \n \n \n \n \n\n\n\n\nSimplelayout your site\n----------------------\n\n**Yes it's simple:**\n\n- Add layouts by Drag'n'Drop\n- Add Blocks by Drag'n'Drop\n- Upload images directly by Drag'n'Drop [Comming soon]\n- Change representation of blocks directly on the Block itself\n- Responsive by default\n- Create multiple column pages with ease.\n- Uninstall profile\n\n\nDevelopment\n===========\n\n**Python:**\n\n1. Fork this repo\n2. Clone your fork\n3. Shell: ``ln -s development.cfg buidlout.cfg``\n4. Shell: ``python boostrap.py``\n5. Shell: ``bin/buildout``\n\nRun ``bin/test`` to test your changes.\n\nOr start an instance by running ``bin/instance fg``.\n\n\nCreate new Block\n----------------\n\nMake your content blockish, needs only two steps.\n\n\n1. The only difference between a block and other DX content types is the ``SimplelayoutBlockBehavior``. You can simply add the Block behavior to your content by adding the following line to FTI:\n\n.. code-block:: xml\n\n \n \n \n\n2. In order you block knows how to represent himself on a simplelayout page you need to register a ``block_view`` for your Block.\n\nRegister view with zcml:\n\n.. code-block:: xml\n\n \n\nCorresponding template:\n\n.. code-block:: html\n\n

Title of block

\n\n \n
\n\n\nWell basically that's it :-) You just created a new block!!\n\n\nCreate custom actions for Blocks\n--------------------------------\n\n\nGlobal Simplelayout configuration\n---------------------------------\n\n\nCreate new Block representations\n--------------------------------\n\nDirectly edit items in a folderish block\n----------------------------------------\n\nFor this purpose you can place a link in the rendered block.\nAssume you want to edit a file in a listing block: you need a link, which is pointing to ``./sl-ajax-inner-edit-view``,\nhas the css class ``inneredit`` and a data attribute named ``uid`` containing the uid of the content.\n\n.. code-block:: xml\n\n EDIT\n\n\nAfter editing the content, the view automatically reloads the block.\n\nAdditional plone.restapi methods\n--------------------------------\n\nAfter creating blocks in a simplelayout content page they should be synchronized with the pages config. Otherwise\nthe order in the frontend might me wrong. It also removes objects which are in the pages config but not in the page itself.\n\nTo do this, you can simply send a RestAPI Post (more information about\n`plone.restapi `_ ) request to the path of your page, appended with\n``@sl-synchronize-page-config-with-blocks``. A dict with ``added`` and ``removed`` block UIDs is returned.\n\n\nStaging\n-------\n\nSimplelayout provides integration level tools for setting up a staging solution for content pages.\nAn ``IStaging`` adapter provides the functionality for making working copies and applying the\nchanged content of the working copy onto the baseline.\nSimplelayout does not provide an integration; the integration must be implemented on project level.\n\nSimple usage example:\n\n.. code-block:: python\n\n from Acquisition import aq_inner\n from Acquisition import aq_parent\n from ftw.simplelayout.staging.interfaces import IStaging\n\n # Make a working copy of \"baseline\" in the folder \"target\"\n target = aq_parent(aq_inner(baseline))\n working_copy = IStaging(baseline).create_working_copy(target)\n\n # Apply the working copy content to the baseline:\n IStaging(working_copy).apply_working_copy()\n\n # Or discard the working copy:\n IStaging(working_copy).discard_working_copy()\n\nAlthough the staging can be integrated in various ways (actions, events, etc.),\nit is usually integrated in the workflow.\nSince ``ftw.lawgiver >= 1.15.0``, it supports [intercepting transitions](https://github.com/4teamwork/ftw.lawgiver/blob/master/README.rst#intercept-and-customize-transitions),\nwhich can be used for integrating a staging solution.\n\nWhen the working copy is created, only simplelayout block children are copied from the baseline\nto the working copy. This has the advantage that a root page of a large structure can be\nrevised and copied without a performance problem because of many subpages.\n\nWhen the working copy is applied back, the content of its children are copied back to the\nbaseline. The simplalyout state and relations are updated accordingly.\n\n\n\nRun custom JS code\n==================\n\nSome Blocks need to run some JS code after rendering or for the widget itself while adding/editing. For this use case you can simply listen to the jquerytools overlay events.\n\nRun JS after adding and editing a Block\n---------------------------------------\n\nThis example has been taken from the MapBlock.\nIt uses the ``onBeforeClose`` event of jquerytools Overlay to load the collectivegeo map.\n\n.. code-block:: Javascript\n\n $(function(){\n $(document).on('onBeforeClose', '.overlay', function(){\n if ($.fn.collectivegeo) {\n $('.widget-cgmap').filter(':visible').collectivegeo();\n }\n });\n });\n\n\nRun JS after the overlay has been displayed\n-------------------------------------------\n\nThis example has been taken from the MapBlock.\nIt uses the ``onLoad`` event of jquerytools Overlay to load the collectivegeo map in edit mode.\n\n.. code-block:: Javascript\n\n $(function(){\n $(document).on('onLoad', '.overlay', function(){\n if ($.fn.collectivegeo) {\n var maps = $('.widget-cgmap').filter(':visible');\n var map_widgets = $('.map-widget .widget-cgmap').filter(':visible');\n maps.collectivegeo();\n map_widgets.collectivegeo('add_edit_layer');\n map_widgets.collectivegeo('add_geocoder');\n }\n });\n });\n\n\nMore JS events\n--------------\n\njQueryTools Overlay provides two more events:\n\n- onBeforeLoad\n- onClose\n\nCheck `jQueryTools Overlay Documentation `_\n\n\nModify the Simplelayout configuration\n-------------------------------------\n\nThe simplelayout JS lib can be modified by the `data-sl-settings` on the simplelayout container. Currently supported settings:\n\n- layouts\n- canChangeLayouts\n\n1. You're able to modify those settings globally through the Simplelayout control panel. For example:\n\n\n.. code-block:: JSON\n\n {\"layouts\": [1]}\n\nAll Simplelayout sites are configured to have only 1 column Layouts\n\n2. Using a ISimplelayoutContainerConfig Adapter, which adapts a `context` and `request`, which means you can have different settings for different Simplelayout enabled types.\n\nExample:\n\n.. code-block:: Python\n\n from ftw.simplelayout.contenttypes.contents.interfaces import IContentPage\n from ftw.simplelayout.interfaces import ISimplelayoutContainerConfig\n\n\n class ContenPageConfigAdapter(object):\n implements(ISimplelayoutContainerConfig)\n\n def __init__(self, context, request):\n pass\n\n def __call__(self, settings):\n settings['layouts'] = [1]\n\n def default_page_layout():\n return None\n\n provideAdapter(ContenPageConfigAdapter,\n adapts=(IContentPage, Interface))\n\nNote 1: The adapter gets called with the settings Dictionary, so you don't have to return it.\n\nNote 2: With the ``default_page_layout`` method you can also define default layouts, which are pre renderd on a empty page.\n\n\n\n3. Using the View itself, by overwrite the ``update_simplelayout_settings`` method.\n\n.. code-block:: Python\n\n from ftw.simplelayout.browser.simplelayout import SimplelayoutView\n\n\n class CustomSimplelayoutView(SimplelayoutView):\n\n def update_simplelayout_settings(self, settings):\n settings['layouts'] = [1, 4]\n\n\n4. By default the ``canChangeLayouts`` option is injected by the Simplelayout provider. It checks if the current logged in user has the ``ftw.simplelayout: Change Layouts`` permission.\n\n\nOpenGraph support\n-----------------\nSimplelayouts provides a basic `OpenGraph `_ integration.\nYou can disable (Simplelayout Settings - Control Panel) Opengraph for the plone root as you wish, because it's enabled by default.\nOn Simplelayout sites itself the OpenGraph meta tags can be controlled by the `OpenGraph marker behavior`.\n\n\nMigration from ftw.contentpage\n==============================\n\nThis package is the successor of\n`ftw.contentpage `_.\nIn order to migrate from `ftw.contentpage` types to `ftw.simplelayout` types,\ntake a look at the preconfigured inplace migrators in the `migration.py` of\n`ftw.simplelayout`.\n\nClient Library\n==============\n\nBuilding\n--------\n\nRebuilding the library (resources/ftw.simplelayout.js):\n\n.. code-block:: bash\n\n grunt dist\n\nWatching for changes and rebuild the bundle automatically:\n\n.. code-block:: bash\n\n grunt dev\n\nor the default task\n\n.. code-block:: bash\n\n grunt\n\nTesting\n-------\n\nRunning all test:\n\n.. code-block:: bash\n\n npm test\n\nor\n\n.. code-block:: bash\n\n grunt test\n\nRunning a specific test:\n\n.. code-block:: bash\n\n grunt test --grep=\"Name of your test\"\n\nGetting started\n---------------\n\nToolbox\n-------\n\nProvide a toolbox instance for the simplelayout.\n\n.. code-block:: javascript\n\n var toolbox = new Toolbox({\n layouts: [1, 2, 4],\n canChangeLayout: true, // Decides if toolbox get rendered\n blocks: [\n { title: \"Textblock\", contentType: \"textblock\", formUrl: \"URL\",\n actions: {\n edit: {\n class=\"edit\",\n description: \"Edit this block\",\n someCustomAttribute: \"someCustomValue\"\n },\n move: {\n class: \"move\",\n description: \"Move this block\"\n }\n }\n },\n { title: \"Listingblock\", contentType: \"listingblock\", formUrl: \"URL\" }\n ],\n layoutActions: {\n actions: {\n move: {\n class: \"iconmove move\",\n title: \"Move this layout arround.\"\n },\n delete: {\n class: \"icondelete delete\",\n title: \"Delete this layout.\"\n }\n }\n },\n labels: {\n labelColumnPostfix: \"Column(s)\" // Used for label in toolbox\n }\n });\n\nBlocks\n------\n\n+-------------+-------------+------------------------------------+\n| key | is required | description |\n+-------------+-------------+------------------------------------+\n| title | | Title in the toolbox |\n+-------------+-------------+------------------------------------+\n| description | | Used for titleattribute |\n+-------------+-------------+------------------------------------+\n| contentType | yes | Represents the type for each block |\n+-------------+-------------+------------------------------------+\n| actions | yes | Describes the actions |\n+-------------+-------------+------------------------------------+\n\nActions\n-------\n\n+-------------+-------------+------------------------------------+\n| key | is required | description |\n+-------------+-------------+------------------------------------+\n| key | yes | Name for the action |\n+-------------+-------------+------------------------------------+\n| class | | Classattribute for the action |\n+-------------+-------------+------------------------------------+\n| description | | Used for title attribute |\n+-------------+-------------+------------------------------------+\n| custom | | Will be provided as data attribute |\n+-------------+-------------+------------------------------------+\n\nSimplelayout\n------------\n\nUse toolbox instance for initializing a simplelayout.\n\n.. code-block:: javascript\n\n var simplelayout = new Simplelayout({toolbox: toolbox});\n\nDeserialize\n-----------\n\nUse existing markup for deserializing the simplelayout state.\n\nProvided HTML Structure\n\n.. code-block:: html\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n

I am a textblock

\n
\n
\n
\n
\n
\n
\n\nMake sure that each datatype in the structure is covered in the toolbox.\n\nEvents\n------\n\nAttach events using the singleton instance of eventEmitter.\n\n.. code-block:: javascript\n\n var simplelayout = new Simplelayout({toolbox: toolbox});\n simplelayout.on(eventType, callback);\n\nEventtypes\n----------\n\nblockInserted(block)\n\nblock-committed(block)\n\nblock-rollbacked(block)\n\nbeforeBlockMoved(block)\n\nblockMoved(block)\n\nblockDeleted(block)\n\nlayoutInserted(layout)\n\nlayout-committed(layout)\n\nlayout-rollbacked(layout)\n\nlayoutMoved(layout)\n\nlayoutDeleted(layout)\n\nDOM properties\n--------------\n\nEach block and layout is represented in the DOM through an ID.\n\nEach DOM element provides the following properties:\n\n- object --> object representation in simplelayout\n- parent --> parent object representation in simplelayout\n- id --> generated UUID for this element\n- represents --> representer from origin (empty if object only exists local)\n\nThese properties can get extracted as a jQueryElement:\n\n.. code-block:: javascript\n\n var block = $(\".sl-block\").first();\n var blockObj = block.data().object;\n\n\nTODO\n====\n- Update/Finish examples.\n- Update/Add images (animated gifs).\n- Improve Plone 5 support (probably with plone 5 contentttypes).\n- Archetypes block integration (for legacy packages).\n\nLinks\n=====\n\n- Github: https://github.com/4teamwork/ftw.simplelayout\n- Issues: https://github.com/4teamwork/ftw.simplelayout/issues\n- Pypi: http://pypi.python.org/pypi/ftw.simplelayout\n- Continuous integration: https://jenkins.4teamwork.ch/search?q=ftw.simplelayout\n\nCopyright\n=========\n\nThis package is copyright by `4teamwork `_.\n\n``ftw.simplelayout`` is licensed under GNU General Public License, version 2.\n\n.. _ftw.trash: https://github.com/4teamwork/ftw.trash\n\nChangelog\n=========\n\n\n2.1.2 (2019-08-29)\n------------------\n\n- Fix plone.app.events EventBasic timezone conflict when applying working copies [Nachtalb]\n\n\n2.1.1 (2019-08-27)\n------------------\n\n- Fix mapblock.js compatibility with plone5 [Nachtalb]\n\n- Move contenttypes js to resource bundles. [busykoala]\n\n- Fix html entities in data-googlejs url [mathias.leimgruber]\n\n- Fix contenttypes and mapblock js resources. [mathias.leimgruber]\n\n- Preserve childrens children order when applying working copies [Nachtalb]\n\n\n2.1.0 (2019-05-21)\n------------------\n\n- Add macros and slots to block views for easy customization. [jone]\n- Include map preferences behaviours in mapblock.js [Nachtalb]\n\n\n2.0.2 (2019-05-17)\n------------------\n\n- Fix JavaScript of the map block. [mbaechtold]\n\n- Revert: Commit abc8 mistakenly removed IReferencable [busykoala]\n\n- Staging: remove auto generated children when creating a working copy. [jone]\n\n- In order to trigger the plone transform chain, we need to maintain the mimeType of the RichTextValue. [mathias.leimgruber]\n\n- Staging: Add link to working copies in warning message. [mathias.leimgruber]\n\n- Fix plone 4 build by pinning collective.z3cform.datagridfield to 1.4.0. [mathias.leimgruber]\n\n\n2.0.1 (2019-03-08)\n------------------\n\n- Update Readme with some plone 4/5 installation hints [mathias.leimgruber]\n\n- Update package metadata. [mathias.leimgruber]\n\n- Add collective.quickupload as dependency for the plone4 extra.\n\n\n2.0.0 (2019-03-06)\n------------------\n\n- Add Plone 5.1 compatibility [jone, mbaechtold, mathas.leimgruber]\n\n- Remove development GS profile because it did not work. [jone]\n\n- Reimplement file uploading by replacing quickupload with Dropzone.js. [mathias.leimgruber, jone]\n\n- Make mapblock plone 5.1 compatible. Mainly by updating to a good known set of c.geo packages [mathias.leimgruber]\n\n\n1.23.5 (2018-12-18)\n-------------------\n\n- Add zcml:condition=\"have ftw.simplelayout:trash\" to trash related handlers. [mathias.leimgruber]\n\n\n1.23.4 (2018-12-13)\n-------------------\n\n- Trash: No longer index trashed blocks. [mathias.leimgruber]\n\n\n1.23.3 (2018-11-20)\n-------------------\n\n- Staging: fix an error which broke staging when having a link to a sub page. [jone]\n\n\n1.23.2 (2018-11-16)\n-------------------\n\n- Set last modifier for parent object, when sl block is edited if collective.lastmodifier is installed\n This feature is a available for ``collective.lastmodifier`` version ``1.1.3`` and above [Nachtalb]\n\n\n1.23.1 (2018-11-12)\n-------------------\n\n- Implement unrestricted_uuidToObject to get the infos for the staging viewlet, regardless of the workflow. [mathias.leimgruber]\n\n- Add support for www.youtube-nocookie.com video urls. [mathias.leimgruber]\n\n\n1.23.0 (2018-10-08)\n-------------------\n\n- Add tooling for creating a staging solution. [jone]\n\n\n1.22.3 (2018-10-03)\n-------------------\n\n- Add missing_value attribute to the `image_limits` and `image_cropping_aspect_ratios`\n interfaces to prevent the form @@simplelayout-controlpanel from saving `None`\n if no values are given. [elioschmutz]\n\n\n1.22.2 (2018-09-26)\n-------------------\n\n- Fix a caching issue where the cropping overlay have showed the old image after uploading a new one. [elioschmutz]\n\n\n1.22.1 (2018-09-25)\n-------------------\n\n- Fix image cropper styling with blueberry marketing theme. [elioschmutz]\n\n\n1.22.0 (2018-09-25)\n-------------------\n\n- Add imagecropping with configurable aspect-ratios for textblock-images. [elioschmutz]\n- Add configurable hard and soft image limits for textblocks. [elioschmutz]\n- Add plone.restapi endpoint for synchronizing blocks with the page config [Nachtalb]\n- Add additional opengraph tags og:description fb:app_id fb:admins [Nachtalb]\n\n1.21.1 (2018-07-06)\n-------------------\n\n- Support Plone 4.3.17 (Quick fix for getting the base-url still from the base tag). [mathias.leimgruber]\n\n- Fix JS error in FF by actually passing the event object as parameter. [mathias.leimgruber]\n\n\n1.21.0 (2018-07-05)\n-------------------\n\n- Add optional support for ``ftw.trash``. [jone]\n\n1.20.3 (2018-07-05)\n-------------------\n\n- Set default value for image cropping in slider block migration [raphael-s]\n\n- Set simplelayout slot for teaser block migration [raphael-s]\n\n\n1.20.2 (2018-03-26)\n-------------------\n\n- Scale images for colorbox overlay view to fix edge case cashing of images. [raphael-s]\n\n\n1.20.1 (2018-03-01)\n-------------------\n\n- Move title and show_title field into the coordinates schemata on MapBlock. [mathias.leimgruber]\n\n- Fix loading google / geo maps in overlays within a tab. [mathias.leimgruber]\n\n\n1.20.0 (2018-01-26)\n-------------------\n\n- Add support for \"ftw.gopip\". [jone, mbaechtold]\n\n- Optionally render a title of the mapblock. [mbaechtold]\n\n- Content page builder only synchronises page config if the\n page contains blocks. [mbaechtold]\n\n- Implement more specific MapLayers factory to prevent adding the same layers multiple times. [mathias.leimgruber]\n\n- Implement persisten map layer and zoom value.\n Both can be chosen in the edit widget and will be reused on the display widget. [mathias.leimgruber]\n\n\n1.19.0 (2017-11-01)\n-------------------\n\n- The browser does no longer jump to the top when opening an overlay. [Kevin Bieri]\n\n- Handle view names in unicode strings. [mbaechtold]\n\n- New Feature: Asymmetric layouts. [Kevin Bieri, mathias.leimgruber]\n\n - Introduced layout configurations (classes on layouts)\n - By default we have golden ratio-, 1-2-1-, 3-1, 1-1-2-layouts\n - This change introduces two now wrappers (div-tag), while render the simplelayout content.\n Please be aware that those new wrappers may break your CSS selectors.\n\n\n1.18.5 (2017-07-25)\n-------------------\n\n- Handle view names in unicode strings. [mbaechtold]\n\n- Add anchor to new created blocks. [Kevin Bieri]\n\n- The galleryblock now renders a fallback image when the image to be displayed is truncated. [mbaechtold]\n\n- Make iframe fixes compatible with ftw.iframefix 2.0. [Kevin Bieri]\n\n- Use a static vocabulary for the sort options of the gallery block. [mbaechtold]\n\n- Install ftw.iframefix\n [Kevin Bieri]\n\n\n1.18.4 (2017-06-15)\n-------------------\n\n- Add more sorting options (position in parent, id) to the gallery block. [mbaechtold]\n\n- Move print styles accidentally defined in plonetheme.blueberry. [Kevin Bieri]\n\n- Migration: Handle different simplelayout layouts. [lknoepfel]\n\n- Disable kss spinner. [Kevin Bieri]\n\n\n1.18.3 (2017-04-06)\n-------------------\n\n- Fix ordering error on Plone site root. [jone]\n\n\n1.18.2 (2017-03-30)\n-------------------\n\n- Fix UnboundLocalError in the simplelayout portlet. [mbaechtold]\n\n- Make anchor extraction more robust. [mbaechtold]\n\n- Remove unused \"addable_block_types\" method from simplelayout view. [jone]\n\n\n1.18.1 (2017-03-23)\n-------------------\n\n- Fix copy/paste bug with p.a.referenceablebehavior. [jone]\n\n- Make sure plone.app.referenceablebehavior is installed. [jone]\n\n\n1.18.0 (2017-03-23)\n-------------------\n\n- Improve anchor extraction. [mbaechtold]\n\n- Synchronize simplelayout block order to Plone's ordered container. [jone]\n\n- Improve support for hidden blocks introduced in 1.2.1. [mbaechtold]\n\n\n1.17.2 (2017-03-07)\n-------------------\n\n- Make MapBlock addable on plone site per default [raphael-s]\n\n\n1.17.1 (2017-02-28)\n-------------------\n\n- Include theme compatibility hint in readme.\n [Kevin Bieri]\n\n- Prevent plone ajax spinner from being shown. [Kevin Bieri]\n\n- Restore slot defaults when removing last layout. [jone]\n\n\n1.17.0 (2017-01-26)\n-------------------\n\n- Conditionally display move action on toolbar on the layout\n [Kevin Bieri]\n\n- Include handlebars in distributed library.\n [Kevin Bieri]\n\n- Fix map block not showing the Google maps.\n [mbaechtold]\n\n- Use browserify as javascript bundler\n\n - Update tests using karma\n - Add support for ES6 using babeljs\n\n [Kevin Bieri]\n\n\n1.16.0 (2017-01-23)\n-------------------\n\n- Extend the textblock with the \"data-caption\" attribute which can hold\n the caption rendered in the colorbox (requires \"ftw.colorbox\" 1.2.4).\n [mbaechtold]\n\n\n1.15.1 (2017-01-17)\n-------------------\n\n- Do render the simplelayout portlet on non-simplelayout\n content types. [mbaechtold]\n\n\n1.15.0 (2017-01-16)\n-------------------\n\n- TinyMCE: Disable \"anchor\"-Tab when creating a link. [jone]\n\n- TinyMCE: configure content page to contain anchors. [jone]\n\n- Change primary field of text block from \"image\" to \"text\" field\n in order to support anchors. [jone]\n\n- Implement a simplelayout renderer object. This allows us to render\n simplelayoutish structures without the simplelayout provider expression.\n Further it's now possible to render only one layout of slot.\n [mathias.leimgruber]\n\n- Log traceback too when a block cannot be rendered. [jone]\n\n\n1.14.0 (2017-01-04)\n-------------------\n\n- Move option to hide a block to a behavior so it can be used on other blocks too.\n [mbaechtold]\n\n- Move ``ftw.referencewidget`` dependency to ``contenttypes`` extras. [jone]\n\n- Drop ``plone.formwidget.contenttree`` dependency. [jone]\n\n\n1.13.0 (2016-12-06)\n-------------------\n\n- Prevent gallery block from failing when it contains image objects having\n umlauts in their title.\n [mbaechtold]\n\n- Disable inline validation of the Plone forms in the overlay.\n [mbaechtold]\n\n- Hide toolbox on small devices.\n [Kevin Bieri]\n\n- Highlight active layout.\n [Kevin Bieri]\n\n- Fix toolbar zindex.\n [Kevin Bieri]\n\n- Fix layout delete button when block has been moved.\n [Kevin Bieri]\n\n\n1.12.2 (2016-11-11)\n-------------------\n\n- Don't allow all non-folderish types to be selectable as default page.\n Without this types like the TextBlock can be selected and would break the site.\n [lknoepfel]\n\n\n1.12.1 (2016-11-01)\n-------------------\n\n- Enable mapblock.js for anonymous users.\n [mathias.leimgruber]\n\n\n1.12.0 (2016-10-21)\n-------------------\n\n- Implement a inner_edit.json view, which allows us to edit an item in a\n folderish block. For example edit a file directly in a FilelistingBlock.\n This view works almost like the block edit view, the difference is, that\n the inner_edit.json view returns the rendered html of its parent (the Block).\n [mathias.leimgruber]\n\n\n1.11.1 (2016-10-13)\n-------------------\n\n- Make youtube-videoblocks auto-resize to the max space available.\n [raphael-s]\n\n- Fix SCSS linting errors\n\n - This requires ftw.theming>=1.7.0\n\n\n1.11.0 (2016-10-05)\n-------------------\n\n- Remove debugger statement :pig:. [Kevin Bieri]\n\n- Support Chameleon caching. [jone]\n\n\n1.10.0 (2016-09-30)\n-------------------\n\n- Open external links in new tab on block creation.\n [Kevin Bieri]\n\n\n1.9.0 (2016-09-26)\n------------------\n\n- Drop support for standard plone theme (sunburst)\n [Kevin Bieri]\n\n- Extend inplace migrator to create listing blocks of ftw.news and ftw.events. [jone]\n\n\n1.8.3 (2016-09-16)\n------------------\n\n- Use ftw.referencewidget instead of plone.formwidget.contenttree.\n [tschanzt]\n\n- Protect new show/hide title behavior.\n [mathias.leimgruber]\n\n\n1.8.2 (2016-09-14)\n------------------\n\n- Add field description for 'Image alternative text' and 'Open image in overlay'.\n [raphael-s]\n\n- Fix Icon position. It is now postitioned to the image not the container.\n [tschanzt]\n\n- Add optional title to the video block (disabled by default).\n [mbaechtold]\n\n\n1.8.1 (2016-09-06)\n------------------\n\n- Add optional behavior to add a checkbox to show/hide the title of a contentpage.\n [raphael-s]\n\n\n1.8.0 (2016-09-05)\n------------------\n\n- Fix drop animation backgroundcolor\n [Kevin Bieri]\n\n- Make leadimages \"has_image\" and \"get_scale\" usable. [jone]\n\n- BugFix: Copyied event is called recursively. Check if the block is actually part of the current page.\n [mathias.leimgruber]\n\n- Fix image overlay in textblocks\n [Kevin Bieri]\n\n- Set permission for change layout, site admin & manager now have permission to change the layout.\n [raphael-s]\n\n- Implement inplace migrators for migration from ftw.contentpage. [jone]\n\n\n1.7.4 (2016-08-16)\n------------------\n\n- Display mapblock in 2/3 ratio.\n [mathias.leimgruber]\n\n- Implement a really hackish way to support IE11.\n Native c.geo implementation always implements the map api twice and has caching issues.\n [mathias.leimgruber]\n\n\n1.7.3 (2016-08-12)\n------------------\n\n- Fix 1.7.2 broken simplelayout.js build release.\n [mathias.leimgruber]\n\n\n1.7.2 (2016-08-11)\n------------------\n\n- Fix layout state, while moving layouts between containers.\n [mathias.leimgruber]\n\n- Disable iframe fix after stop/receving a layout.\n [mathias.leimgruber]\n\n- Move layouts like blocks.\n [mathias.leimgruber]\n\n- Fix moveing layouts between containers. The usability is still no the best.\n [mathias.leimgruber]\n\n- Add an icon to mark an colorbox image.\n [tschanzt]\n\n\n1.7.1 (2016-08-05)\n------------------\n\n- Fix word breaks in listingblock table.\n [Kevin Bieri]\n\n\n1.7.0 (2016-08-05)\n------------------\n\n- Implement new block coordinate behavior, which uses it's own widget\n for JS compatibility (it handles the google map api integration).\n [mathias.leimgruber]\n\n- Fix toolbox label zindex\n [Kevin Bieri]\n\n- Add IE11 fix for InAndOutWidget Javascript.\n In IE11 it's not possible to manipulate a select (multiple) after\n modifying the text of a option.\n [mathias.leimgruber]\n\n- Add uninstall profile for ftw.simplelayout.contenttypes.\n [elioschmutz]\n\n- Add uninstall profile for ftw.simplelayout.mapblock.\n [elioschmutz]\n\n\n1.6.0 (2016-07-18)\n------------------\n\n- Fix missing toolbar on videoblocks\n [Kevin Bieri]\n\n- Use zindex system from ftw.theming\n Fix iframeblock boundaries\n [Kevin Bieri]\n\n- Display default youtube player controls\n [Kevin Bieri]\n\n- Translate quickupload title in overlay for filelistings and galleryblocks.\n [elioschmutz]\n\n- Fix floating images on mobile view.\n [Kevin Bieri]\n\n- Make simplelayout events globally available.\n [raphael-s]\n\n- Add min-height to empty Simplelyout portlet.\n This fixes a issue, when it was no longer possible to re-add a layout after deleting the last one.\n [mathias.leimgruber]\n\n- Add sort-options to image gallery block.\n [raphael-s]\n\n\n1.5.2 (2016-05-26)\n------------------\n\n- Do not show spinner when loading toolbox. [jone]\n\n\n1.5.1 (2016-05-26)\n------------------\n\n- Fix IE11 issues on succeding edits with TinyMCE by foucusing first input field. [jone]\n\n\n1.5.0 (2016-05-26)\n------------------\n\n- Implement request tracker.\n [Kevin Bieri]\n\n- Block Views: Check for extisting viewname before setting the view_name value.\n [mathias.leimgruber]\n\n- Make getting the og:image url more robust by checking for the scale.\n [mathias.leimgruber]\n\n\n1.4.2 (2016-05-25)\n------------------\n\n- BugFix for IE11 VideoBlock: Prevent iframe from stopping event bubbling in IE\n [Kevin Bieri]\n\n\n1.4.1 (2016-05-24)\n------------------\n\n- Fix editing issues in IE 11. [jone]\n\n\n1.4.0 (2016-05-24)\n------------------\n\n- Add css class to simplelayout container if the user is permitted to edit the content.\n [Kevin Bieri]\n\n- Implement statekeeter to track DOM changes.\n [Kevin Bieri]\n\n\n1.3.0 (2016-05-20)\n------------------\n\n- Update z3c.form to 2.9.3.\n Fixes error when adding a filelisting-block in IE11.\n [Kevin Bieri]\n\n- Remove block bottom margin from textblocks containing only a title.\n [mathias.leimgruber]\n\n- Do not show empty block warning on textblock if there is only a title.\n [mathias.leimgruber]\n\n- GalleryBlock: Show 4 images in a row for 1 col, 2 in a row for 2 col and 1 a row for 4 col.\n [mathias.leimgruber]\n\n- Add min-height to SimplelayoutBlock empty columns.\n [mathias.leimgruber]\n\n- Fix mouse pointer position according to openlayers pointer.\n [mathias.leimgruber]\n\n- Add image caption field to textblock.\n [mathias.leimgruber]\n\n- Hide main scrollbar when overlay is opened. [jone]\n\n- Lead-Image: support all slots. [jone]\n\n- Lead-Image: support gallery blocks. [jone]\n\n- Remove \"Review State\" column from file listing block.\n It is usually not in use, since files has no workflow on simplelayout sites.\n [mathias.leimgruber]\n\n\n1.2.1 (2016-04-14)\n------------------\n\n- Reset default scale behavior for textblock images.\n [Kevin Bieri]\n\n- Some blocks can be hidden now. Users allowed to edit the block will see\n the block anyway.\n [mbaechtold]\n\n\n1.2.0 (2016-03-30)\n------------------\n\n- Match the image scaling dimensions on media breakpoints from ftw.theming.\n [Kevin Bieri]\n\n- Use crop scale for textblock images.\n [Kevin Bieri]\n\n- Make textblock images full with for medium screen.\n [Kevin Bieri]\n\n- Extend documentation with class diagram.\n [Kevin Bieri]\n\n\n1.1.0 (2016-03-03)\n------------------\n\n- Configure TinyMCE resource types. [jone]\n\n- Respect disable_border key in request and do not load simplelayout if present.\n [mathias.leimgruber]\n\n- Remove leadimage cache key. [jone]\n\n- Show hint on empty listing and galeryblock.\n [mathias.leimgruber]\n\n- Implement better image alt text for galleryblock and textblock.\n Improves Accessibility.\n [mathias.leimgruber]\n\n- Right column overlapps the toolbar, apply fixed z-index.\n [Kevin Bieri]\n\n- Move styling from client library to ftw.theming integration using\n base variables from ftw.theming.\n [Kevin Bieri]\n\n- Fix simplelayout dynamic scss resource, so it does not return invalid code\n if the selector is empty.\n [mathias.leimgruber]\n\n- Use default table listing for the listingblock styles.\n Also implement some sane default withs for columns.\n [mathias.leimgruber]\n\n- Add Simlelayout view as possible front page layout + addable types on the plone site.\n This change provides no upgrade step, since it may break the configuration.\n [mathias.leimgruber]\n\n\n1.0a1 (2015-12-04)\n------------------\n\n- Init Release", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/4teamwork/ftw.simplelayout", "keywords": "ftw plone simplelayout block contentpage", "license": "GPL2", "maintainer": "Mathias Leimgruber", "maintainer_email": "", "name": "ftw.simplelayout", "package_url": "https://pypi.org/project/ftw.simplelayout/", "platform": "", "project_url": "https://pypi.org/project/ftw.simplelayout/", "project_urls": { "Homepage": "https://github.com/4teamwork/ftw.simplelayout" }, "release_url": "https://pypi.org/project/ftw.simplelayout/2.1.2/", "requires_dist": null, "requires_python": "", "summary": "SimpleLayout provides block based content pages", "version": "2.1.2" }, "last_serial": 5823353, "releases": { "1.0a1": [ { "comment_text": "", "digests": { "md5": "6b4a8ac513be47da13031346c6ee9f86", "sha256": "24cfcbdc05f8373c459f71d4b1762993ad534092b382ca0b2f54bc0266ab158e" }, "downloads": -1, "filename": "ftw.simplelayout-1.0a1.zip", "has_sig": false, "md5_digest": "6b4a8ac513be47da13031346c6ee9f86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3784150, "upload_time": "2015-12-04T14:56:36", "url": "https://files.pythonhosted.org/packages/7b/5a/f98a9b62f11b705b512208c8bd68cdb5f36a42bf6ebd383e907189421891/ftw.simplelayout-1.0a1.zip" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "72c2a0d274ad4ef6af8ef87eff194296", "sha256": "6cf9090f848f381d90fab4cf5f4cf680f6d9b66b8f82f85fe64914a5f10107c7" }, "downloads": -1, "filename": "ftw.simplelayout-1.1.0.tar.gz", "has_sig": false, "md5_digest": "72c2a0d274ad4ef6af8ef87eff194296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3692303, "upload_time": "2016-03-03T10:05:50", "url": "https://files.pythonhosted.org/packages/02/78/5fba57cabe6d173778ed1ecb6af95d642f2bf60abf8ad11b4bcc0ab7d963/ftw.simplelayout-1.1.0.tar.gz" } ], "1.10.0": [ { "comment_text": "", "digests": { "md5": "c3bc50884da68aa095f50d9151bb4373", "sha256": "b6a1b4af89c8c9ea68f5bc8ccd29b9dbfe5ddada0a9c4177a81a19cc7f1c3da8" }, "downloads": -1, "filename": "ftw.simplelayout-1.10.0.tar.gz", "has_sig": false, "md5_digest": "c3bc50884da68aa095f50d9151bb4373", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3942745, "upload_time": "2016-09-30T07:27:14", "url": "https://files.pythonhosted.org/packages/e6/6e/cc3cf853466534a0f28aba5f72569d59f6d80f882bbf145046c3d25fc389/ftw.simplelayout-1.10.0.tar.gz" } ], "1.11.0": [ { "comment_text": "", "digests": { "md5": "f541d7e13958ff07072ce35aa812cbef", "sha256": "4b7dadbec7b2f926cd4b9211e51ce09078aca0ce93f240baf4b213dbdb216ecd" }, "downloads": -1, "filename": "ftw.simplelayout-1.11.0.tar.gz", "has_sig": false, "md5_digest": "f541d7e13958ff07072ce35aa812cbef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3934278, "upload_time": "2016-10-05T08:47:31", "url": "https://files.pythonhosted.org/packages/ee/de/e6ac7fbc6cb34d070ac1ba86edca1445e83be3430dbd602e42aab435a50b/ftw.simplelayout-1.11.0.tar.gz" } ], "1.11.1": [ { "comment_text": "", "digests": { "md5": "b39a5243b25cbd82cf77b477f66b7ef4", "sha256": "8547908038e5db91ff48f69c257d920ac687aeac25d48f3d89d6bf3a6410a874" }, "downloads": -1, "filename": "ftw.simplelayout-1.11.1.tar.gz", "has_sig": false, "md5_digest": "b39a5243b25cbd82cf77b477f66b7ef4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3934855, "upload_time": "2016-10-13T13:05:46", "url": "https://files.pythonhosted.org/packages/4d/75/6d097747954f40e0bf973fa7a1bcda61ebecea2fd9681a469f4009f28600/ftw.simplelayout-1.11.1.tar.gz" } ], "1.12.0": [ { "comment_text": "", "digests": { "md5": "fd18ab18abd0c794f2c234b8ca93e06e", "sha256": "fca312de83b2a0dbee641f9e968a35101ccf10228e1f6f3a127d162510ead7e4" }, "downloads": -1, "filename": "ftw.simplelayout-1.12.0.tar.gz", "has_sig": false, "md5_digest": "fd18ab18abd0c794f2c234b8ca93e06e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3936531, "upload_time": "2016-10-21T07:59:14", "url": "https://files.pythonhosted.org/packages/7e/cf/0a440d4fc872c80e1c8f626fefeebb35d8fc05f57501a167c25cf7713757/ftw.simplelayout-1.12.0.tar.gz" } ], "1.12.1": [ { "comment_text": "", "digests": { "md5": "02a7e65042ad05ac8870e0fc09a6160b", "sha256": "3350e0fa059bcc296db0039ca4ad13f2a3d18d60945b10549ad167a669fd4846" }, "downloads": -1, "filename": "ftw.simplelayout-1.12.1.tar.gz", "has_sig": false, "md5_digest": "02a7e65042ad05ac8870e0fc09a6160b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3936774, "upload_time": "2016-11-01T13:53:46", "url": "https://files.pythonhosted.org/packages/b2/53/3719d8d22fdd7f849798a4cb959438b947e755c101c1c8e08c8069070cec/ftw.simplelayout-1.12.1.tar.gz" } ], "1.12.2": [ { "comment_text": "", "digests": { "md5": "8194208e5a7a553dd42efedded96d6fb", "sha256": "0ef90c4e1e8fa0feb19ce2d7cc7bcbe175e8ffca46d7d7535a8cb841d208283c" }, "downloads": -1, "filename": "ftw.simplelayout-1.12.2.tar.gz", "has_sig": false, "md5_digest": "8194208e5a7a553dd42efedded96d6fb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3938946, "upload_time": "2016-11-11T12:38:45", "url": "https://files.pythonhosted.org/packages/16/12/85a8be04cb1861212a57b90c4046ca599a7386931af58a4c81ad8389870a/ftw.simplelayout-1.12.2.tar.gz" } ], "1.13.0": [ { "comment_text": "", "digests": { "md5": "53f0d0ee9ca66d1da82c101b39f78851", "sha256": "75b137fbbb3597672c4b06b45019be0647d7e8ee716030dcbeecc0979fd1e0ce" }, "downloads": -1, "filename": "ftw.simplelayout-1.13.0.tar.gz", "has_sig": false, "md5_digest": "53f0d0ee9ca66d1da82c101b39f78851", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3939609, "upload_time": "2016-12-06T07:49:16", "url": "https://files.pythonhosted.org/packages/1b/ac/2c6ba6fa562553d7d90ba7323291e854c6c4becf6c3d9551cda44bc55043/ftw.simplelayout-1.13.0.tar.gz" } ], "1.14.0": [ { "comment_text": "", "digests": { "md5": "dc5e68ba18fef9bc6886663e12fb6637", "sha256": "bcc0a4834388cfd5b712d109a433f6ee512710307bf6ac3194212415d6a23299" }, "downloads": -1, "filename": "ftw.simplelayout-1.14.0.tar.gz", "has_sig": false, "md5_digest": "dc5e68ba18fef9bc6886663e12fb6637", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3940411, "upload_time": "2017-01-04T11:24:43", "url": "https://files.pythonhosted.org/packages/5d/f8/95b2ca2a69f429f40aa19fd19fb22623b9f8db8d824a582bafbc3ca92589/ftw.simplelayout-1.14.0.tar.gz" } ], "1.15.0": [ { "comment_text": "", "digests": { "md5": "788d5fb600c8add3cf4146a1cf485426", "sha256": "ee303309723f3e6b4d9c673331ebc821de444a57f5bdf186dbd8cf559bee0210" }, "downloads": -1, "filename": "ftw.simplelayout-1.15.0.tar.gz", "has_sig": false, "md5_digest": "788d5fb600c8add3cf4146a1cf485426", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3942297, "upload_time": "2017-01-16T13:10:22", "url": "https://files.pythonhosted.org/packages/0a/22/15717bfc63219454e32acf1671eec63a2ae5d1422b830050f6a5003e617d/ftw.simplelayout-1.15.0.tar.gz" } ], "1.15.1": [ { "comment_text": "", "digests": { "md5": "000443aac90802af93915489bcfe1b5c", "sha256": "eded5698af0051159e60475098b105f30ebb64d29a09f490fc50fb44594e9782" }, "downloads": -1, "filename": "ftw.simplelayout-1.15.1.tar.gz", "has_sig": false, "md5_digest": "000443aac90802af93915489bcfe1b5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3942792, "upload_time": "2017-01-17T16:35:10", "url": "https://files.pythonhosted.org/packages/5f/7e/d9419f03d0dfcf8cee89a2b3bf98de44831a027cf697fccf5d5a77546add/ftw.simplelayout-1.15.1.tar.gz" } ], "1.15.2": [ { "comment_text": "", "digests": { "md5": "bf670f49616bccb78e04506fc68005ef", "sha256": "b672c577edf01cc06ed062b40cd3d4576de0169c372bb0bc74083d6993b92169" }, "downloads": -1, "filename": "ftw.simplelayout-1.15.2.tar.gz", "has_sig": false, "md5_digest": "bf670f49616bccb78e04506fc68005ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3949875, "upload_time": "2019-01-10T12:37:33", "url": "https://files.pythonhosted.org/packages/6d/82/7162ea9e082b5bd357b15ea8841374704b45873e99df02d48b6ed1049cf1/ftw.simplelayout-1.15.2.tar.gz" } ], "1.16.0": [ { "comment_text": "", "digests": { "md5": "17a4cde27b6a968e9cb40f360ca107bf", "sha256": "5a4ec3c8227a5312a44d0206985c2cbb7f08b2f1cb3b147a95be1eb999513bd6" }, "downloads": -1, "filename": "ftw.simplelayout-1.16.0.tar.gz", "has_sig": false, "md5_digest": "17a4cde27b6a968e9cb40f360ca107bf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3943041, "upload_time": "2017-01-23T13:40:10", "url": "https://files.pythonhosted.org/packages/7c/ce/0c4ca0011e11b37654598388881b2ebaa49b7476fdceaf8c6906e5334b06/ftw.simplelayout-1.16.0.tar.gz" } ], "1.16.1": [ { "comment_text": "", "digests": { "md5": "8e416c150fdde6ac12190f2d97eadf03", "sha256": "4ec3e1dbb52e5b1d1fd1561e2b49969639aa1d960b514ba7214bcaae0459b726" }, "downloads": -1, "filename": "ftw.simplelayout-1.16.1.tar.gz", "has_sig": false, "md5_digest": "8e416c150fdde6ac12190f2d97eadf03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3950096, "upload_time": "2018-10-09T07:15:11", "url": "https://files.pythonhosted.org/packages/96/40/428d12a18796ab10b537309e89eb7dca6f424fda38ea7d166bff6e2c40be/ftw.simplelayout-1.16.1.tar.gz" } ], "1.17.0": [ { "comment_text": "", "digests": { "md5": "95efc4565018236cd2c324aff5b28a2e", "sha256": "77643ef044eab2594b49549e8966db0c3e3e61086603c5810f7bbe314cf6cd56" }, "downloads": -1, "filename": "ftw.simplelayout-1.17.0.tar.gz", "has_sig": false, "md5_digest": "95efc4565018236cd2c324aff5b28a2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 850803, "upload_time": "2017-01-26T16:32:37", "url": "https://files.pythonhosted.org/packages/8c/95/66c4481c9a3f437d5fa25a65ce74d1b1cc0e18777a52bf9e88f3ec571b1e/ftw.simplelayout-1.17.0.tar.gz" } ], "1.17.1": [ { "comment_text": "", "digests": { "md5": "1fc7255db4544bfcc91503815098c1cf", "sha256": "e8a4d77840de571031614f0b6e7892edac4e5e7dd8b05715094be374e677225f" }, "downloads": -1, "filename": "ftw.simplelayout-1.17.1.tar.gz", "has_sig": false, "md5_digest": "1fc7255db4544bfcc91503815098c1cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 850885, "upload_time": "2017-02-28T10:44:28", "url": "https://files.pythonhosted.org/packages/23/46/43980acc6b34c2e477dc45868763725874d2d6ce79fe33003a683c8cb97e/ftw.simplelayout-1.17.1.tar.gz" } ], "1.17.2": [ { "comment_text": "", "digests": { "md5": "7ae86d4bff81df8a60a381169294ce1b", "sha256": "24458f5eabe192a6262f6d21cb303cd93df507013e600f818ff5d4f39a821e0b" }, "downloads": -1, "filename": "ftw.simplelayout-1.17.2.tar.gz", "has_sig": false, "md5_digest": "7ae86d4bff81df8a60a381169294ce1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 851055, "upload_time": "2017-03-07T10:09:13", "url": "https://files.pythonhosted.org/packages/32/cc/841660d01dce4335b4dceaeee95ab3b520a25486a02ffb0553aa92a5217f/ftw.simplelayout-1.17.2.tar.gz" } ], "1.18.0": [ { "comment_text": "", "digests": { "md5": "6979f778465f8a86527c5047ca7cdc58", "sha256": "863e99dc99fdb80f690935f27fa963c1203573cb2e91a6b47e07300fc2a7e6e3" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.0.tar.gz", "has_sig": false, "md5_digest": "6979f778465f8a86527c5047ca7cdc58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 852999, "upload_time": "2017-03-23T09:52:36", "url": "https://files.pythonhosted.org/packages/bc/b9/04755715fee56ccd216a1a63a00b9b760ce99e4da43ebf968445324d407a/ftw.simplelayout-1.18.0.tar.gz" } ], "1.18.1": [ { "comment_text": "", "digests": { "md5": "16e5aca4bf2a20f2d0dea96795a60487", "sha256": "4b29ce3d65d4563c1046cbee0e12ff9fd6066c09d757957dc0b89a9314d9e1a9" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.1.tar.gz", "has_sig": false, "md5_digest": "16e5aca4bf2a20f2d0dea96795a60487", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 853404, "upload_time": "2017-03-23T15:02:04", "url": "https://files.pythonhosted.org/packages/6c/a4/756209c5e9fdc1280055cb28762c95ef1ff51eaf851e84599e359fd0f5f5/ftw.simplelayout-1.18.1.tar.gz" } ], "1.18.2": [ { "comment_text": "", "digests": { "md5": "6f69d0c30cc30e389cd767545d2842e2", "sha256": "1f895067cc82d64d80665f72f334e797c32390424a7a7e478d62b16450fc1ecf" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.2.tar.gz", "has_sig": false, "md5_digest": "6f69d0c30cc30e389cd767545d2842e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 853432, "upload_time": "2017-03-30T14:33:57", "url": "https://files.pythonhosted.org/packages/59/05/32bfbdacf014c0e1a087cfce3f981e888d71d1bff0df3a3eeb99125d2214/ftw.simplelayout-1.18.2.tar.gz" } ], "1.18.3": [ { "comment_text": "", "digests": { "md5": "40cb7b3f05062b3b0d8fa33da7393723", "sha256": "dc852d07ac3818d8b8b687c1dc3692954acca782e8abf8fb788f90f51dec12e6" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.3.tar.gz", "has_sig": false, "md5_digest": "40cb7b3f05062b3b0d8fa33da7393723", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 853274, "upload_time": "2017-04-06T08:56:01", "url": "https://files.pythonhosted.org/packages/ea/cb/183c3cb71407242c82923e184e802a74488d96ecfc56dbb436265d33ec90/ftw.simplelayout-1.18.3.tar.gz" } ], "1.18.4": [ { "comment_text": "", "digests": { "md5": "7470ba2831ec937696cfa050bef15f98", "sha256": "e3c261f71992f0251615d5d74767976c89fc7276bd9a898a6b9b33301bff5cb7" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.4.tar.gz", "has_sig": false, "md5_digest": "7470ba2831ec937696cfa050bef15f98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 855413, "upload_time": "2017-06-15T12:29:35", "url": "https://files.pythonhosted.org/packages/bd/2d/daa75c3d540585e2cac5929fffa5b81030892b01e64a671a2fb7c4f1dfca/ftw.simplelayout-1.18.4.tar.gz" } ], "1.18.5": [ { "comment_text": "", "digests": { "md5": "96e7e17901a8d15aaff773107bb11568", "sha256": "5b4945013ab12f4f4ec1bf5e3dc5f3a6b1fd56c0c0ffa4ae366001bce01a9589" }, "downloads": -1, "filename": "ftw.simplelayout-1.18.5.tar.gz", "has_sig": false, "md5_digest": "96e7e17901a8d15aaff773107bb11568", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1100820, "upload_time": "2017-07-25T15:28:41", "url": "https://files.pythonhosted.org/packages/d7/b7/96c5eee594c78a9aa016a9a311d42862f599bc939cd082992054752c9d94/ftw.simplelayout-1.18.5.tar.gz" } ], "1.19.0": [ { "comment_text": "", "digests": { "md5": "5265fb3a58cffc7ea2d98680cb515718", "sha256": "e000edea870ed1b3130bd0e28a985728dd985d4717a83c675902f3b7d2d6f27f" }, "downloads": -1, "filename": "ftw.simplelayout-1.19.0.tar.gz", "has_sig": false, "md5_digest": "5265fb3a58cffc7ea2d98680cb515718", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1108980, "upload_time": "2017-11-01T07:58:53", "url": "https://files.pythonhosted.org/packages/34/87/593f27d51b97843543f4966e8c1e6c353dfa72a809e91333849c1bbf4ece/ftw.simplelayout-1.19.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "6774b87dce01bbde863ddf5c4cb3b3cd", "sha256": "0eb5ba34423fdae3b5cc09814acba76da15ec57fd9340a8abd0a8ec15ee2daf9" }, "downloads": -1, "filename": "ftw.simplelayout-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6774b87dce01bbde863ddf5c4cb3b3cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3913338, "upload_time": "2016-03-30T08:57:59", "url": "https://files.pythonhosted.org/packages/8e/b3/ad8a568fbdb604ef30906717815cb9a64cf75406ffdfb5abc28ca13a1be7/ftw.simplelayout-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "6ae0668abea76dd4628a659f99e0f576", "sha256": "322db6b6d597d58148e5086e9f8983452b61143949bfd1a8fbe74ea3ca4ada41" }, "downloads": -1, "filename": "ftw.simplelayout-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6ae0668abea76dd4628a659f99e0f576", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3914582, "upload_time": "2016-04-14T08:43:03", "url": "https://files.pythonhosted.org/packages/7b/26/82a727803ef2ee1269b05c3d53073eeb1b36bfec6f792017a814c009a32c/ftw.simplelayout-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "4611afdeef171cbdff1711d52acf19ad", "sha256": "80c7b7c5263a9649e6d4e6b7d5359e661257f198b1cbf477b3236548e164ae6b" }, "downloads": -1, "filename": "ftw.simplelayout-1.2.2.tar.gz", "has_sig": false, "md5_digest": "4611afdeef171cbdff1711d52acf19ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3914521, "upload_time": "2016-08-26T11:21:42", "url": "https://files.pythonhosted.org/packages/31/5d/60396e6ed5141350ab816ab845cc724b9a039f49c67d5bd584590e9b987a/ftw.simplelayout-1.2.2.tar.gz" } ], "1.20.0": [ { "comment_text": "", "digests": { "md5": "af29ddc02464fdf5c81fd916423af7c8", "sha256": "38e68d213906b79c5483b152356abb8e8262e694de3a10b749ee3dfbf622e68f" }, "downloads": -1, "filename": "ftw.simplelayout-1.20.0.tar.gz", "has_sig": false, "md5_digest": "af29ddc02464fdf5c81fd916423af7c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1114157, "upload_time": "2018-01-26T10:17:01", "url": "https://files.pythonhosted.org/packages/72/6c/f9593baa1f831aac7197db98972b30cc2eaf9dab74acecd6f66f9c9bd620/ftw.simplelayout-1.20.0.tar.gz" } ], "1.20.1": [ { "comment_text": "", "digests": { "md5": "a592d51cd4b81be466fcdd708e53ae05", "sha256": "e2bd6e7625263d14a18a6c984a63f792bca58a75da25a29c8ed824333e16e3d6" }, "downloads": -1, "filename": "ftw.simplelayout-1.20.1.tar.gz", "has_sig": false, "md5_digest": "a592d51cd4b81be466fcdd708e53ae05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1114341, "upload_time": "2018-03-01T15:55:00", "url": "https://files.pythonhosted.org/packages/2e/a4/b7ad09e2e7cbe49f43166eae8860c0efa37048f9bdec479015899d4add82/ftw.simplelayout-1.20.1.tar.gz" } ], "1.20.2": [ { "comment_text": "", "digests": { "md5": "191e710ea1708ec07e4b34d3cdc763c5", "sha256": "5c22c50dee5144b5273f9161579540c1637c6c93508509f0f48dbe800a4dbb42" }, "downloads": -1, "filename": "ftw.simplelayout-1.20.2.tar.gz", "has_sig": false, "md5_digest": "191e710ea1708ec07e4b34d3cdc763c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1114929, "upload_time": "2018-03-26T14:34:22", "url": "https://files.pythonhosted.org/packages/ba/7f/b7b6ed2608b3aeafb7e210db73b7163742df8c74f66f6e940a2c087659b8/ftw.simplelayout-1.20.2.tar.gz" } ], "1.20.2.1": [ { "comment_text": "", "digests": { "md5": "57058456f6363369ad5493c606233791", "sha256": "6c5562cfe634bd532a671758a3054354eaa85544dc3a33c47a32da1f4d5f6602" }, "downloads": -1, "filename": "ftw.simplelayout-1.20.2.1.tar.gz", "has_sig": false, "md5_digest": "57058456f6363369ad5493c606233791", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1112656, "upload_time": "2019-01-21T15:44:33", "url": "https://files.pythonhosted.org/packages/e4/1e/4497016e7cd30a2c0c35eba61ed442df3a30342196d65235528959dfa30e/ftw.simplelayout-1.20.2.1.tar.gz" } ], "1.20.3": [ { "comment_text": "", "digests": { "md5": "1cfbdf5d986fad11bbc14c6c0b0a50f1", "sha256": "e79ced99d64d6a2ea14f9068d096e55b1944135c56a6fb0eb5cc46895a68faa1" }, "downloads": -1, "filename": "ftw.simplelayout-1.20.3.tar.gz", "has_sig": false, "md5_digest": "1cfbdf5d986fad11bbc14c6c0b0a50f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1112247, "upload_time": "2018-07-05T09:34:50", "url": "https://files.pythonhosted.org/packages/82/51/17e7a4360eb27724ca0fdcb2f82811e23ad0cc27913beea1772769695a1f/ftw.simplelayout-1.20.3.tar.gz" } ], "1.21.0": [ { "comment_text": "", "digests": { "md5": "f3f3430a490adf9ce30716ecbcbc71b6", "sha256": "04df0ac709db4eff181c9f0ffd2a97796e7935a0800373d7158d0850f30c3d49" }, "downloads": -1, "filename": "ftw.simplelayout-1.21.0.tar.gz", "has_sig": false, "md5_digest": "f3f3430a490adf9ce30716ecbcbc71b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1116103, "upload_time": "2018-07-05T19:33:41", "url": "https://files.pythonhosted.org/packages/ba/57/9b297b3f89771df2f8fd0902e6dab6511ac76e0e5be2b1cdef382ec51d01/ftw.simplelayout-1.21.0.tar.gz" } ], "1.21.1": [ { "comment_text": "", "digests": { "md5": "e89e64b451093ffa052fd99f34b18bef", "sha256": "4f6499938dc982ed0b02821a3c1627ab69f3977cee3ff74d273cc994882411d5" }, "downloads": -1, "filename": "ftw.simplelayout-1.21.1.tar.gz", "has_sig": false, "md5_digest": "e89e64b451093ffa052fd99f34b18bef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1116264, "upload_time": "2018-07-06T13:23:33", "url": "https://files.pythonhosted.org/packages/b4/3b/4bb68c3726034d2938c137730ca46f4c048aa863314eb7b4ad419c8200bb/ftw.simplelayout-1.21.1.tar.gz" } ], "1.22.0": [ { "comment_text": "", "digests": { "md5": "93306b1a553162fa96b37825e249e5fd", "sha256": "683ff0eba50b1888b7d24a8ff6fa4abfe45b2eeef1574c10c357e8e2e3df5367" }, "downloads": -1, "filename": "ftw.simplelayout-1.22.0.tar.gz", "has_sig": false, "md5_digest": "93306b1a553162fa96b37825e249e5fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281771, "upload_time": "2018-09-25T12:45:40", "url": "https://files.pythonhosted.org/packages/6e/16/2b5909c6c5e3d3513262e75743d8bb4b041cb2985e6dac676ce29916bbb2/ftw.simplelayout-1.22.0.tar.gz" } ], "1.22.1": [ { "comment_text": "", "digests": { "md5": "6bffb334845d2e47cf86a7d29f653b78", "sha256": "2aa315b4b6d3478d32d7d9bd361548e90eee9cffacd2d47373aed89e9abbfee5" }, "downloads": -1, "filename": "ftw.simplelayout-1.22.1.tar.gz", "has_sig": false, "md5_digest": "6bffb334845d2e47cf86a7d29f653b78", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1281807, "upload_time": "2018-09-25T14:44:45", "url": "https://files.pythonhosted.org/packages/f2/d6/a29ecea395590da849efde1539e61c0f3ab5a7ba677e12a4b60617498375/ftw.simplelayout-1.22.1.tar.gz" } ], "1.22.2": [ { "comment_text": "", "digests": { "md5": "5b0a707298a1e8f9c7299197aa445de3", "sha256": "7900e82947967c66c371057ebcade80fc1479f994034c43a2d79ee51036b9fc4" }, "downloads": -1, "filename": "ftw.simplelayout-1.22.2.tar.gz", "has_sig": false, "md5_digest": "5b0a707298a1e8f9c7299197aa445de3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1282228, "upload_time": "2018-09-26T09:10:37", "url": "https://files.pythonhosted.org/packages/fc/ac/aa449088af47ddf2694792820fba7e696a5915b88f71838112fcda48347c/ftw.simplelayout-1.22.2.tar.gz" } ], "1.22.3": [ { "comment_text": "", "digests": { "md5": "320f15797cc5d54201ea90f55c8421eb", "sha256": "5f28113e762048a0fbcd1bb042eef75f9ba776fd7a2fc3ccbbc1bbfdb99a6709" }, "downloads": -1, "filename": "ftw.simplelayout-1.22.3.tar.gz", "has_sig": false, "md5_digest": "320f15797cc5d54201ea90f55c8421eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1282858, "upload_time": "2018-10-03T11:58:36", "url": "https://files.pythonhosted.org/packages/21/a7/69d738441783e1acf8465d6da61d73cea9f4284433f84c3b30c7415881de/ftw.simplelayout-1.22.3.tar.gz" } ], "1.23.0": [ { "comment_text": "", "digests": { "md5": "f55ac147073265827fdd14ae2977d7a8", "sha256": "37bcd44f5ecf21609ba4889e4a758b4c023f861604e739d6e05888a1a01bae81" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.0.tar.gz", "has_sig": false, "md5_digest": "f55ac147073265827fdd14ae2977d7a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1292273, "upload_time": "2018-10-08T16:33:05", "url": "https://files.pythonhosted.org/packages/89/e3/f8cfdf1d3d8ede53c43208387ca69ca5cff7430c6abcf2a47d8b21d62259/ftw.simplelayout-1.23.0.tar.gz" } ], "1.23.1": [ { "comment_text": "", "digests": { "md5": "3b77dedaf3c54be732e8269f536cdb3a", "sha256": "9a2f4f47c5a3e333153121d0d4207cd0a8e47c1ef3d6bfb9ef6fa9b866616545" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.1.tar.gz", "has_sig": false, "md5_digest": "3b77dedaf3c54be732e8269f536cdb3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1294680, "upload_time": "2018-11-12T10:46:16", "url": "https://files.pythonhosted.org/packages/77/f0/20ab4c19cd204cca8e7d7894a0a3718eb3dec9a77ac5e58629f26c83f1b0/ftw.simplelayout-1.23.1.tar.gz" } ], "1.23.10": [ { "comment_text": "", "digests": { "md5": "54106f45aadf03323a95447f55aac237", "sha256": "4ca5af97ff558d92be74860021c9776a0aff44df21aea2eedcfb8c5805db2d9c" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.10.tar.gz", "has_sig": false, "md5_digest": "54106f45aadf03323a95447f55aac237", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1297552, "upload_time": "2019-05-21T11:21:38", "url": "https://files.pythonhosted.org/packages/d5/0b/e4f6f8ad736f3daba34853c3ff1abfb8d19aceddcfabfe680a37cb59393d/ftw.simplelayout-1.23.10.tar.gz" } ], "1.23.11": [ { "comment_text": "", "digests": { "md5": "d784a34969e4b6eebd3aafd9dce52828", "sha256": "244a69f5b25e9603872a8dad9f265a949d8731d3441d8ef979a857d3aa32d407" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.11.tar.gz", "has_sig": false, "md5_digest": "d784a34969e4b6eebd3aafd9dce52828", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1297819, "upload_time": "2019-07-25T13:59:41", "url": "https://files.pythonhosted.org/packages/ef/d8/d62211140375464de60fe445b397e27dacf82eb3d2dae9d0ff56041f2487/ftw.simplelayout-1.23.11.tar.gz" } ], "1.23.12": [ { "comment_text": "", "digests": { "md5": "b879f2a8c093619bb4554de84cd07ce4", "sha256": "1acfbdf8a5850a038c43b97cc4e7aff187713aa297520c7b1ef3dafe096cb562" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.12.tar.gz", "has_sig": false, "md5_digest": "b879f2a8c093619bb4554de84cd07ce4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1298097, "upload_time": "2019-08-27T09:37:04", "url": "https://files.pythonhosted.org/packages/d8/3b/da2b125b23a0b061e5f4af78382b62da1b1fa7424daf3291b5985ab8b7e2/ftw.simplelayout-1.23.12.tar.gz" } ], "1.23.13": [ { "comment_text": "", "digests": { "md5": "21cbb7f51150aa44665f3c31abe2ff4f", "sha256": "489e0522e08084547efe748287ffe647bd6f6f2ba6b7ec4c987eb975bf9997de" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.13.tar.gz", "has_sig": false, "md5_digest": "21cbb7f51150aa44665f3c31abe2ff4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1298216, "upload_time": "2019-08-30T08:20:28", "url": "https://files.pythonhosted.org/packages/83/ec/c5fd526bc76300a82e582c3689d1216c4bbf4fdcdeab872946d9dcbe67ba/ftw.simplelayout-1.23.13.tar.gz" } ], "1.23.2": [ { "comment_text": "", "digests": { "md5": "b37a574d8e43799a127797fb6fa06631", "sha256": "09e7171d40db6bd4f5d76b93773a234700ca475c8e23c602646428772165b3a7" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.2.tar.gz", "has_sig": false, "md5_digest": "b37a574d8e43799a127797fb6fa06631", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1295072, "upload_time": "2018-11-16T16:01:55", "url": "https://files.pythonhosted.org/packages/39/ea/574b0e67255a4768658acbdbcf385eb45b2f01052ecb3329908737d97e58/ftw.simplelayout-1.23.2.tar.gz" } ], "1.23.3": [ { "comment_text": "", "digests": { "md5": "f51ca50742079ce89e4678ca2523c048", "sha256": "06d8b9e52661a2c021101b885e8df1d08bb7fa28f378e644bb34b10f56c87d51" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.3.tar.gz", "has_sig": false, "md5_digest": "f51ca50742079ce89e4678ca2523c048", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1295707, "upload_time": "2018-11-20T11:16:45", "url": "https://files.pythonhosted.org/packages/18/a0/a608762f66f195496805f00d534388422a6355c8292f196d9549b54108e7/ftw.simplelayout-1.23.3.tar.gz" } ], "1.23.4": [ { "comment_text": "", "digests": { "md5": "e833ded7d15c7a4946abc1c807c11071", "sha256": "224506942d0a7ec9750ec38b92cfcf77001a360d3eb26d2cf5517f911d9bee80" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.4.tar.gz", "has_sig": false, "md5_digest": "e833ded7d15c7a4946abc1c807c11071", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1296090, "upload_time": "2018-12-13T16:16:03", "url": "https://files.pythonhosted.org/packages/22/92/1ac12eaeb00707e2e99708758a89b8a7c7555bcd9b0ace70bf3f154106ba/ftw.simplelayout-1.23.4.tar.gz" } ], "1.23.5": [ { "comment_text": "", "digests": { "md5": "66dca29bf4ab9a7d39d96106747eb9b6", "sha256": "84ca4c1d10e9ca19b2bddf95899154377ce094f3a14809e3c801a4ed55c93075" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.5.tar.gz", "has_sig": false, "md5_digest": "66dca29bf4ab9a7d39d96106747eb9b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1296221, "upload_time": "2018-12-18T08:08:14", "url": "https://files.pythonhosted.org/packages/f1/38/14c60f142be30a9ac61adf868c3f7eca78e1aa63278deaa9efd98ff679dc/ftw.simplelayout-1.23.5.tar.gz" } ], "1.23.6": [ { "comment_text": "", "digests": { "md5": "177618eb68798decbff44678582b854c", "sha256": "9fef5625167882bd261c56197b763bed92c984b44a1dbe3c312cb4e7804388ac" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.6.tar.gz", "has_sig": false, "md5_digest": "177618eb68798decbff44678582b854c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1296949, "upload_time": "2019-04-16T13:42:57", "url": "https://files.pythonhosted.org/packages/c0/9e/b1453c3764e0800e096d4da4272f1f62e99b39b176fc2318572326328769/ftw.simplelayout-1.23.6.tar.gz" } ], "1.23.7": [ { "comment_text": "", "digests": { "md5": "65ea24701ad2c088475d802ebd1b61db", "sha256": "6f5d9835b303b2c97f97f58877c40f0c626b085359beecae9af61e7b8f8e4391" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.7.tar.gz", "has_sig": false, "md5_digest": "65ea24701ad2c088475d802ebd1b61db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1297049, "upload_time": "2019-04-23T14:59:19", "url": "https://files.pythonhosted.org/packages/a5/7f/659359efe512431fb5fdb8d40a83c185900b72aae01d1a28264187929a53/ftw.simplelayout-1.23.7.tar.gz" } ], "1.23.8": [ { "comment_text": "", "digests": { "md5": "2a0336f94a5614309a65a19e498910dc", "sha256": "b732841226ad24524f63e7b7f37e64c3c0c93808e124c739f3df8269a1b48b5f" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.8.tar.gz", "has_sig": false, "md5_digest": "2a0336f94a5614309a65a19e498910dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1297303, "upload_time": "2019-04-24T15:07:30", "url": "https://files.pythonhosted.org/packages/d3/9a/d4a4522e08747498195ad5f4123527be6562ac11a089f28a0c1c28482ba6/ftw.simplelayout-1.23.8.tar.gz" } ], "1.23.9": [ { "comment_text": "", "digests": { "md5": "47d83c7265ac3735e49838d61392ee4c", "sha256": "ed2212d3f3a88df78a15f4af46743895a917b0fad6bafa08573fa2c441af1345" }, "downloads": -1, "filename": "ftw.simplelayout-1.23.9.tar.gz", "has_sig": false, "md5_digest": "47d83c7265ac3735e49838d61392ee4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1297406, "upload_time": "2019-05-14T08:04:06", "url": "https://files.pythonhosted.org/packages/15/e6/1e381bb015b908cdc242606f1d9e3b361b968f04cc106f5da31f1805098d/ftw.simplelayout-1.23.9.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "6cc1877b1c99b8abe7dbcf5822165549", "sha256": "a58f43b23a18e39e7d75f001cf6f0a9d13124a99884ceeb454fd06ce6b187446" }, "downloads": -1, "filename": "ftw.simplelayout-1.3.0.tar.gz", "has_sig": false, "md5_digest": "6cc1877b1c99b8abe7dbcf5822165549", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3919475, "upload_time": "2016-05-20T08:24:08", "url": "https://files.pythonhosted.org/packages/de/fa/eb279c05f1dc154075c00fbc79890b57de3a88e2be8f85ec78d079337af7/ftw.simplelayout-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "cb61a5b694f06b668e738cf32169f8b9", "sha256": "92f9611546d850038e3476f9a9170f31d42cc08bf820d90c0b10eed1ebb6cc83" }, "downloads": -1, "filename": "ftw.simplelayout-1.4.0.tar.gz", "has_sig": false, "md5_digest": "cb61a5b694f06b668e738cf32169f8b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920267, "upload_time": "2016-05-24T07:29:04", "url": "https://files.pythonhosted.org/packages/9d/bb/6ac864271caf99d7b126d2f09878bec97c4dc4753e1d9536bd363a47fc98/ftw.simplelayout-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "34c619d5cb967e5877232dd362aab000", "sha256": "4f2cf687893224cc0a84da27ee71c9996f41142a1f5a3ab379d5c425d5a77471" }, "downloads": -1, "filename": "ftw.simplelayout-1.4.1.tar.gz", "has_sig": false, "md5_digest": "34c619d5cb967e5877232dd362aab000", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920360, "upload_time": "2016-05-24T13:51:10", "url": "https://files.pythonhosted.org/packages/9f/8f/f5da19dd497f8c6162e42d54d9182782fe6dd9d987e8243829368a1ff11a/ftw.simplelayout-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "e570a5ded9b9baec7b12fca8032fb289", "sha256": "33d28ed50f0e018a14ab4da4fdf3fc6f2e57931dc436a95790c038a510942398" }, "downloads": -1, "filename": "ftw.simplelayout-1.4.2.tar.gz", "has_sig": false, "md5_digest": "e570a5ded9b9baec7b12fca8032fb289", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3920567, "upload_time": "2016-05-25T11:18:07", "url": "https://files.pythonhosted.org/packages/63/39/9be38f6a4330947b35cefb4ab846cde634f0f2facb9e7ac0fc45aac9ecce/ftw.simplelayout-1.4.2.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "ede63a68d442459675af5fc0872b81df", "sha256": "72a49a63be88e44a5fb7ba428e89bed093cff7ba46e65e8d241089d5670c53bc" }, "downloads": -1, "filename": "ftw.simplelayout-1.5.0.tar.gz", "has_sig": false, "md5_digest": "ede63a68d442459675af5fc0872b81df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3921818, "upload_time": "2016-05-26T14:52:26", "url": "https://files.pythonhosted.org/packages/51/df/edd39df6f4aa93ab8971f9200d0dc64ab70ba99cd8e83f9deb60dfdba9c5/ftw.simplelayout-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "89f4cd5396f7a0c0f3678f3722a648c0", "sha256": "41e8df5cb9bdc8880b445f912e6158e976ecdf0f50c5f9999e0d09d9e5b210d8" }, "downloads": -1, "filename": "ftw.simplelayout-1.5.1.tar.gz", "has_sig": false, "md5_digest": "89f4cd5396f7a0c0f3678f3722a648c0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3921988, "upload_time": "2016-05-26T16:02:49", "url": "https://files.pythonhosted.org/packages/da/7c/b01592e6c0c38f51bb4817fa15552c6f1af771b597cba0b4966562b0f27b/ftw.simplelayout-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "cd398814f53e5f8829d1eee5912efa6c", "sha256": "1f1b202a8ad2aae41a887f37ea0fd6ea808a3922487db70f60a65316313f1c2a" }, "downloads": -1, "filename": "ftw.simplelayout-1.5.2.tar.gz", "has_sig": false, "md5_digest": "cd398814f53e5f8829d1eee5912efa6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3922029, "upload_time": "2016-05-26T16:30:53", "url": "https://files.pythonhosted.org/packages/4a/69/4a22f19fef4fcf8e3d304bf6dc20ec33902ad8049dd59f607ff14010db5a/ftw.simplelayout-1.5.2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "204a93d8c579f68e4e258394e5744104", "sha256": "417e2742b1737ccd6d81a977f9d230289d8cb851bccac46509edccabcab0a7e5" }, "downloads": -1, "filename": "ftw.simplelayout-1.6.0.tar.gz", "has_sig": false, "md5_digest": "204a93d8c579f68e4e258394e5744104", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3924021, "upload_time": "2016-07-18T14:30:34", "url": "https://files.pythonhosted.org/packages/63/4a/1865a721a8f446c2fb7bf0595d1a0cc241cd41306c8e2325e3f395064359/ftw.simplelayout-1.6.0.tar.gz" } ], "1.6.0.1": [ { "comment_text": "", "digests": { "md5": "c4870557872e9ea6499e5257339cf02b", "sha256": "c83684b0b03c960b8af1b1c79a577e752dd531234105ccb9e4d8a891f85e5d11" }, "downloads": -1, "filename": "ftw.simplelayout-1.6.0.1.tar.gz", "has_sig": false, "md5_digest": "c4870557872e9ea6499e5257339cf02b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3931863, "upload_time": "2018-08-10T08:08:25", "url": "https://files.pythonhosted.org/packages/a1/a1/14efc8c2da3cc4411352ffab51d13e6785695457eaec4978ad17d1bd1391/ftw.simplelayout-1.6.0.1.tar.gz" } ], "1.6.0.2": [ { "comment_text": "", "digests": { "md5": "68593a0213bcd1f93ddc9c380963eeb3", "sha256": "8bec3613a2343259ed9f6f82aad02fd2ed4b2338f93fef007817b1b808d6047b" }, "downloads": -1, "filename": "ftw.simplelayout-1.6.0.2.tar.gz", "has_sig": false, "md5_digest": "68593a0213bcd1f93ddc9c380963eeb3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3932055, "upload_time": "2018-10-09T07:08:19", "url": "https://files.pythonhosted.org/packages/ea/96/39242e146333dcc718c4c28dc4950c4e941cbea7b2f598573b7a9e87d539/ftw.simplelayout-1.6.0.2.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "105307c0964afd0a3efe426fc6a0aeb5", "sha256": "7ee3d5e6aec18db3af4791e9c65302fad43327ced536b2afff9c1e65dcd2931b" }, "downloads": -1, "filename": "ftw.simplelayout-1.7.0.tar.gz", "has_sig": false, "md5_digest": "105307c0964afd0a3efe426fc6a0aeb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3930531, "upload_time": "2016-08-05T12:29:19", "url": "https://files.pythonhosted.org/packages/c0/c9/dc8cbf2141f273591ca9de3dbda12b76583c6d373b694c58aa5d6a62fbbc/ftw.simplelayout-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "060b349f5118433e4cb0fd892a934d3e", "sha256": "a73b03dafb71df013670e09871979e151c5fb43bd6103396ebc563377b2de888" }, "downloads": -1, "filename": "ftw.simplelayout-1.7.1.tar.gz", "has_sig": false, "md5_digest": "060b349f5118433e4cb0fd892a934d3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3930559, "upload_time": "2016-08-05T13:06:23", "url": "https://files.pythonhosted.org/packages/7c/5c/f1d8b468d145667cab0b9430e41ec7f341ed1d5a4e4b0d0ae191ae860ba7/ftw.simplelayout-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "c6ac7f805f20f8b554e202efd2a4779d", "sha256": "7eb0b54ab6ea9c07d1821f2098fbf3d4d49d01b11bcf8cca4f792ea4405b6546" }, "downloads": -1, "filename": "ftw.simplelayout-1.7.2.tar.gz", "has_sig": false, "md5_digest": "c6ac7f805f20f8b554e202efd2a4779d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3932548, "upload_time": "2016-08-11T13:26:24", "url": "https://files.pythonhosted.org/packages/87/5e/d9a6e742398bc2ed1571df77aac056f5c00238dc5c74eeebb14898f57bd3/ftw.simplelayout-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "34cac0744b4005cc21e1d8eadac0016b", "sha256": "8e21fbe08ad3f2927f58a11ff8f29a4f2358aa11c95de1d2e33a4bfb1af414e8" }, "downloads": -1, "filename": "ftw.simplelayout-1.7.3.tar.gz", "has_sig": false, "md5_digest": "34cac0744b4005cc21e1d8eadac0016b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3932662, "upload_time": "2016-08-12T15:08:46", "url": "https://files.pythonhosted.org/packages/a1/74/07c9fc129beba7942633d3273ba5da48619bf3bbaabd95af906cf957b50f/ftw.simplelayout-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "4d2070a5e0a3ea225c652c21d9d071ef", "sha256": "5e598ea35c391236ed89b52fa04195eefc624202dbe70e0c57b220a83bcb2f2b" }, "downloads": -1, "filename": "ftw.simplelayout-1.7.4.tar.gz", "has_sig": false, "md5_digest": "4d2070a5e0a3ea225c652c21d9d071ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3933410, "upload_time": "2016-08-16T11:27:49", "url": "https://files.pythonhosted.org/packages/48/8f/825f7d99ee36a7b06780fe2c115e6f78d530f46ce77d5985020ab54e47cb/ftw.simplelayout-1.7.4.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "555a91802f6a1d87fea63ed08f0fb81b", "sha256": "ec153ac8a2aa8f21673c053ab763bdade06af4962f8a63ae200a9037fef731b1" }, "downloads": -1, "filename": "ftw.simplelayout-1.8.0.tar.gz", "has_sig": false, "md5_digest": "555a91802f6a1d87fea63ed08f0fb81b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3939077, "upload_time": "2016-09-05T08:20:14", "url": "https://files.pythonhosted.org/packages/d1/45/d360904de8748785741da58a09f817f66e60914919b2819ff034d132da4e/ftw.simplelayout-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "7fb5f0cacd789f192383b65ad8c3d096", "sha256": "4c67a985c0087ca49b61832b17968c3565023df8c1e2b2382aaad1180cfc7639" }, "downloads": -1, "filename": "ftw.simplelayout-1.8.1.tar.gz", "has_sig": false, "md5_digest": "7fb5f0cacd789f192383b65ad8c3d096", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3940315, "upload_time": "2016-09-06T14:26:52", "url": "https://files.pythonhosted.org/packages/c7/0a/17d1cacde17688db633b5c9023f95c2e40aed86a0503ed727daecb5ade01/ftw.simplelayout-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "82bda9381be43006cab52309eae0d452", "sha256": "b8ae9b088ba80f9e666c0eb0ae84c43394a8346e0590690490febb3fcbbeee21" }, "downloads": -1, "filename": "ftw.simplelayout-1.8.2.zip", "has_sig": false, "md5_digest": "82bda9381be43006cab52309eae0d452", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4057883, "upload_time": "2016-09-14T14:07:10", "url": "https://files.pythonhosted.org/packages/ee/03/3a39909c6fe03401d84dadb4b2083a0badf18ed531be980a5ed5a0d675a1/ftw.simplelayout-1.8.2.zip" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "9b12d522757a691fe6c75730ab14b873", "sha256": "a8f19de297bede0e4af13d3adbf83e46f12f057d3242cfacfef4fd74a7b93445" }, "downloads": -1, "filename": "ftw.simplelayout-1.8.3.zip", "has_sig": false, "md5_digest": "9b12d522757a691fe6c75730ab14b873", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4060289, "upload_time": "2016-09-16T09:48:53", "url": "https://files.pythonhosted.org/packages/c2/13/37cb9c8f31329b59cfb14b1a14deaf4d9826aeddc9f0e908e373c7770fb6/ftw.simplelayout-1.8.3.zip" } ], "1.9.0": [ { "comment_text": "", "digests": { "md5": "f6be51e0ac25842bd355c7e0bd127443", "sha256": "51fe81fb28a7eba9977d56db2561e5c4e7e553a8f80ac23138060c2574f3b4dc" }, "downloads": -1, "filename": "ftw.simplelayout-1.9.0.tar.gz", "has_sig": false, "md5_digest": "f6be51e0ac25842bd355c7e0bd127443", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3942359, "upload_time": "2016-09-26T16:22:34", "url": "https://files.pythonhosted.org/packages/8b/cd/9c133e99eada0f665b070d29ef46f698fc3558d223b4b62193fcd39b574d/ftw.simplelayout-1.9.0.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "d51a3cff8f9c0324c9b32fcdeda46190", "sha256": "6b30bf3a658287c7379c9b5e6bbcb32f3aca90de750a8b15274b97c9e487c535" }, "downloads": -1, "filename": "ftw.simplelayout-2.0.0.tar.gz", "has_sig": false, "md5_digest": "d51a3cff8f9c0324c9b32fcdeda46190", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1564779, "upload_time": "2019-03-06T10:02:10", "url": "https://files.pythonhosted.org/packages/9d/a1/547eda726cc62e389073986f0206c58fd508a85814673c623ef1e36be977/ftw.simplelayout-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "d1dc6257f9f5a712a180036e50cd2df4", "sha256": "7b5ea2ff134be8e9c9bb63fad1e31dddf9dbb4fbc7e66f5fa224a53e1f64d254" }, "downloads": -1, "filename": "ftw.simplelayout-2.0.1.tar.gz", "has_sig": false, "md5_digest": "d1dc6257f9f5a712a180036e50cd2df4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1565143, "upload_time": "2019-03-08T10:22:13", "url": "https://files.pythonhosted.org/packages/d1/95/a55e3b4c000177038fbdedf95f2f73647e3137dc5821f893e2f639331b04/ftw.simplelayout-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "0c8b728f8635fb8b662a6b9eb11abfdf", "sha256": "e268b5c3e785c2be7dc2ffe3c2a98d3cf8fa5da484497140a8bb8a89fe45e330" }, "downloads": -1, "filename": "ftw.simplelayout-2.0.2.tar.gz", "has_sig": false, "md5_digest": "0c8b728f8635fb8b662a6b9eb11abfdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1565239, "upload_time": "2019-05-17T06:59:23", "url": "https://files.pythonhosted.org/packages/16/2f/7f1c079f950d52c472353ce305459ba5091c48fd3da21277ca84fe285fa1/ftw.simplelayout-2.0.2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "5fb21b150c07db2ef130efa579025448", "sha256": "15fe795a4978e93725eb4dcd04c8cf1d164b70c6ab12e3e130bab59199a92e94" }, "downloads": -1, "filename": "ftw.simplelayout-2.1.0.tar.gz", "has_sig": false, "md5_digest": "5fb21b150c07db2ef130efa579025448", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1567097, "upload_time": "2019-05-21T11:30:31", "url": "https://files.pythonhosted.org/packages/d2/76/7cd04a1801c89634be4e38bc4d0ffab90ee5e03ea045681460715414bbf1/ftw.simplelayout-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "5811832c2b69410a0755600e939d4855", "sha256": "afed546c078b8c08d9d300257f0234008afd5ce95c11ab88d161d2c70bdda292" }, "downloads": -1, "filename": "ftw.simplelayout-2.1.1.tar.gz", "has_sig": false, "md5_digest": "5811832c2b69410a0755600e939d4855", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1570216, "upload_time": "2019-08-27T10:00:07", "url": "https://files.pythonhosted.org/packages/df/06/fb60a9b4cafd6e0d67f3de2d8a6cc9da82bcb731b0d27cce0a7c9441c4d4/ftw.simplelayout-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "b1acdec247b7a0e294b39eb957a64829", "sha256": "5cc8fbbb399fb90c816c5934eaeb6c8cb155cad58f4e7aaf2dc560fb8d855d36" }, "downloads": -1, "filename": "ftw.simplelayout-2.1.2.tar.gz", "has_sig": false, "md5_digest": "b1acdec247b7a0e294b39eb957a64829", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1570402, "upload_time": "2019-08-29T17:58:48", "url": "https://files.pythonhosted.org/packages/28/c6/ee7c35797ec03886e16fffa482b5b3b0829debdc34d0befb0352e36ca1bf/ftw.simplelayout-2.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b1acdec247b7a0e294b39eb957a64829", "sha256": "5cc8fbbb399fb90c816c5934eaeb6c8cb155cad58f4e7aaf2dc560fb8d855d36" }, "downloads": -1, "filename": "ftw.simplelayout-2.1.2.tar.gz", "has_sig": false, "md5_digest": "b1acdec247b7a0e294b39eb957a64829", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1570402, "upload_time": "2019-08-29T17:58:48", "url": "https://files.pythonhosted.org/packages/28/c6/ee7c35797ec03886e16fffa482b5b3b0829debdc34d0befb0352e36ca1bf/ftw.simplelayout-2.1.2.tar.gz" } ] }