{ "info": { "author": "Reinout van Rees", "author_email": "reinout.vanrees@nelen-schuurmans.nl", "bugtrack_url": null, "classifiers": [ "Framework :: Django", "Programming Language :: Python" ], "description": "lizard-ui\n=========\n\nLizard-ui provides a basic `Django `_ user\ninterface, so a **base Django template** and some **css + javascript**. We\ndesigned it at `Nelen & Schuurmans `_ for our\ngeographical information websites (with water management information).\n\n.. image:: https://secure.travis-ci.org/lizardsystem/lizard-ui.png?branch=master\n :target: http://travis-ci.org/#!/lizardsystem/lizard-ui\n\nTranslation status:\n\n.. image:: https://translations.lizard.net/projects/p/lizardsystem/resource/lizard-ui/chart/image_png\n :target: https://translations.lizard.net/projects/p/lizardsystem/resource/lizard-ui/\n\n\nChoices, requirements, assumptions\n----------------------------------\n\nLizard-ui is opinionated: it makes choices and prescribes (good!)\ntechnologies.\n\n- Included: the `twitter-bootstrap css framework\n `_. It resets css styles so that\n we've got a common base. It fixes common IE layout bugs. It gives a basic\n typography that's quite pleasing. And it has some javascript that makes many\n common UI tasks easy.\n\n- Required: `django-staticfiles\n `_. For a more verbose\n description, see `Reinout's blog entry\n `_\n (written with lizard-ui in mind).\n\n- Required: `django_compressor\n `_ for combining css/javascript\n files in production.\n\n- Assumption: one screen, using the full width/height of the browser, without\n scrolling. Our main goal is showing a nice big map with a small header and\n a sidebar. You don't want to scroll a map. It is of course possible to\n have a scrollbar inside that main content area itself.\n\n- Assumption: javascript is available. Hey, we're showing a map so you need\n javascript. So we liberally use javascript to get the UI right, for\n instance by detecting and setting the main content area's width and height.\n\n- Included: jquery. Yeah, it is pretty much the standard nowadays. So we use\n jquery where jquery can be used instead of doing it with generic javascript.\n\n- Included: both jqueryui and jquerytools. Visual goodies. Jquerytools for\n the overlay and tabs, jqueryui for the rest (drag/drop and so).\n\n- Included: openlayers as map javascript library. (Lizard-map, sooooon to be\n released, contains our basic map interaction javascript and python code).\n\n\nLicense + licenses\n------------------\n\nOur own license is GPLv3.\n\nLizard-ui ships with a couple of external css/javascript libraries.\n\nTwitter-bootstrap\n Apache 2.0 license.\n\nJquery and jqueryui\n Dual licensed under the MIT or GPL Version 2 licenses. Includes Sizzle.js,\n released under the MIT, BSD, and GPL Licenses.\n\nJquerytools\n No copyrights or licenses. Do what you like.\n\nOpenlayers\n Clear BSD license.\n\nFamfamfam icon set\n CC attribution license.\n\nTreeview jquery plugin\n MIT/GPL\n\n\nDjango settings\n---------------\n\nHere's an excerpt of a ``settings.py`` you can use. The media and static root\ndirectory setup assumes the use of buildout, but you can translate it to your\nown filesystem setup::\n\n INSTALLED_APPS = [\n 'lizard_ui',\n 'compressor',\n 'staticfiles',\n 'django.contrib.admin',\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n ]\n\n # Note: the below settings are more elaborate than needed,\n # but we want to test django_compressor's compressing which\n # needs a media url and root and so.\n\n # SETTINGS_DIR allows media paths and so to be relative to\n # this settings file instead of hardcoded to\n # c:\\only\\on\\my\\computer.\n SETTINGS_DIR = os.path.dirname(os.path.realpath(__file__))\n\n # BUILDOUT_DIR is for access to the \"surrounding\" buildout,\n # for instance for BUILDOUT_DIR/var/static files to give\n # django-staticfiles a proper place to place all collected\n # static files.\n BUILDOUT_DIR = os.path.abspath(os.path.join(SETTINGS_DIR, '..'))\n\n # Absolute path to the directory that holds user-uploaded\n # media.\n MEDIA_ROOT = os.path.join(BUILDOUT_DIR, 'var', 'media')\n # Absolute path to the directory where django-staticfiles'\n # \"bin/django build_static\" places all collected static\n # files from all applications' /media directory.\n STATIC_ROOT = os.path.join(BUILDOUT_DIR, 'var', 'static')\n\n # URL that handles the media served from MEDIA_ROOT. Make\n # sure to use a trailing slash if there is a path component\n # (optional in other cases).\n MEDIA_URL = '/media/'\n # URL for the per-application /media static files collected\n # by django-staticfiles. Use it in templates like \"{{\n # MEDIA_URL }}mypackage/my.css\".\n STATIC_URL = '/static_media/'\n # URL prefix for admin media -- CSS, JavaScript and\n # images. Make sure to use a trailing slash. Uses\n # STATIC_URL as django-staticfiles nicely collects admin's\n # static media into STATIC_ROOT/admin.\n ADMIN_MEDIA_PREFIX = STATIC_URL + 'admin/'\n\n\nAnd a suitable apache config hint::\n\n \n # The css/javascript/image staticfiles are cached in the\n # browser for a day.\n ExpiresActive On\n ExpiresDefault \"access plus 1 day\"\n \n\n \n # django_compress's generated timestamp'ed files:\n # cache forever\n ExpiresActive On\n ExpiresDefault \"access plus 10 years\"\n \n\n # Static files are hosted by apache itself.\n # User-uploaded media: MEDIA_URL = '/media/'\n Alias /media/ ${buildout:directory}/var/media/\n # django-staticfiles: STATIC_URL = '/static_media/'\n Alias /static_media/ ${buildout:directory}/var/static/\n\n\nUpgrading to Django 1.3\n-----------------------\n\nLizard-ui 3.0 requires Django 1.3 as we want to start using class based views\nand some of the other 1.3 goodies. For that, you need to make some changes.\n\n- Add ``LOGGING``, for instance with::\n\n from lizard_ui.settingshelper import setup_logging\n LOGGING = setup_logging(BUILDOUT_DIR)\n # For production, use for instance:\n # LOGGING = setup_logging(BUILDOUT_DIR, console_level=None)\n\n- And remove any by-hand logging setup, for instance with\n ``logging.basicConfig()``.\n\n- Import ``STATICFILES_FINDERS`` from lizard_ui, this adds a finder that also\n finds static media in /media in addition to the new /static::\n\n from lizard_ui.settingshelper import STATICFILES_FINDERS\n\n- ``COMPRESS_STORAGE``, ``COMPRESS_URL`` and ``COMPRESS_ROOT`` can now be\n removed from your settings as the defaults are now fine.\n\n- Switch from using ``bin/django build_static`` to ``bin/django\n collectstatic``.\n\n\nUsage\n-----\n\nYou can mount lizard-ui's urls, but it contains only live examples. So\nperhaps you should only mount it in debug mode under ``/ui``. Handy, as it\ncontains reasonably full documentation on how to use it, including available\nblocks and classes/IDs that you can use.\n\nThe base layout is defined in ``realbase.html``. You should however extend\n``lizard_ui/lizardbase.html`` and then override the blocks that you want.\n\nCSS and javascript should be added to the relevant blocks, but don't forget to\ncall \"block.super\". An example::\n\n {% extends \"lizard_ui/lizardbase.html\" %}\n\n {% block css %}\n {{ block.super }}\n \n {% endblock css %}\n\n {% block javascript %}\n {{ block.super }}\n \n \n \n {% endblock javascript %}\n\n {% block content %}\n
\n {% endblock content %}\n\nA example of a common task: change the logo. For that, make a\n``static/lizard_ui`` directory in your django application (or site) and place a\n``logo.png`` in it. Django-staticfiles' mechanism will take your logo.png in\npreference to lizard-ui's.\n\n\nDevelopment installation\n------------------------\n\nThe first time, you'll have to run the \"bootstrap\" script to set up setuptools\nand buildout::\n\n $> python bootstrap.py\n\nAnd then run buildout to set everything up::\n\n $> bin/buildout\n\n(On windows it is called ``bin\\buildout.exe``).\n\nYou'll have to re-run buildout when you or someone else made a change in\n``setup.py`` or ``buildout.cfg``.\n\nThe current package is installed as a \"development package\", so\nchanges in .py files are automatically available (just like with ``python\nsetup.py develop``).\n\nIf you want to use trunk checkouts of other packages (instead of released\nversions), add them as an \"svn external\" in the ``local_checkouts/`` directory\nand add them to the ``develop =`` list in buildout.cfg.\n\nTests can always be run with ``bin/test`` or ``bin\\test.exe``.\n\n\nLanguage selector\n-----------------\nStarting with version 4.21 a language selector has been added to lizard-ui.\nTo activate the language selector for your project, put these changes in\nyour settings file:\n\n- Make sure ``USE_I18N = True`` is set.\n\n- Add ``UI_SHOW_LANGUAGE_PICKER = True``.\n\n- Add ``'django.middleware.locale.LocaleMiddleware'`` to\n ``MIDDLEWARE_CLASSES`` just below the SessionMiddleware line and above the\n CommonMiddleware line.\n\n- Put the available languages in the ``LANGUAGES`` settings, e.g.::\n\n LANGUAGES = (\n ('en', 'English'),\n ('nl', 'Nederlands'),\n ('vi', 'Vi\u1ec7t'),\n )\n\n- Pick a default language, e.g. ``LANGUAGE_CODE = 'en'``\n\n\nTODO\n====\n\n- Document all of the available classes/IDs that you can use to get automatic\n (javascript) behaviour.\n\n- Document the javascript code.\n\n- Add basic test that the example.html renders without errors.\n\n- Add javascript tests for the javascript code, ideally.\n\n- Add mechanism for rendering a passed-in (or registered/configured) list of\n object_tabs and object_actions, including some nice formatting.\n\n- Add mechanism for breadcrumbs.\n\n- Important: add tests for the login functionality.\n\n\nCredits\n=======\n\n- TODO started this library\n\n\nChangelog of lizard-ui\n======================\n\n\n5.3 (2015-10-08)\n----------------\n\n- Moved language checker over to lizard-map. That way it can be enabled\n through a ``Setting`` object.\n [reinout]\n\n- Using correct session key for storing the language.\n [reinout]\n\n\n5.2 (2015-10-08)\n----------------\n\n- Started with arabic translation (only login/logout has been translated till\n now, though, as test).\n [reinout]\n\n\n5.1.1 (2015-03-31)\n------------------\n\n- Flot formatting tweak: don't show year when day is shown. Too long\n otherwise.\n\n\n5.1 (2015-03-31)\n----------------\n\n- UI changes directly (and dirty) in the downloaded flot library (so watch out\n if you download a new one).\n\n - Always showing years next to the month name.\n\n - Hardcoded Dutch month names and fixed some formatting.\n\n\n5.0 (2014-12-15)\n----------------\n\n- Made the \"awesomebox\" a bit wider (20px) and higher (100px) to prevent\n scrolling **at least** when there's only one result. At least the graph is\n visible, then. You still need to scroll for the add-to-dashboard table...\n\n- Fixed scrolling on #textual page (for the dashboard).\n\n- Included elevationprofile.js in template\n\n- Fix layout bug in login modal. The margin was too large.\n\n- Enhance 404 and 500 html error templates.\n\n- Update daterange picker colors to be the same as the lizard header.\n\n- Supporting, sigh, opening actions in a new tab...\n\n- Set openlayers 2.13.1 for mobile divices (ipad, iphone), 2.12-r7 for the\n rest. (See http://stackoverflow.com/q/236073/27401 for the solution on how\n to write out a closing script tag inside javascript).\n\n- Updated to django 1.6.\n\n\n4.28 (2013-05-14)\n-----------------\n\n- Nothing changed yet.\n\n\n4.27 (2013-05-08)\n-----------------\n\n- Nothing changed yet.\n\n\n4.26 (2013-05-06)\n-----------------\n\n- Upgrade Twitter bootstrap to 2.3.1\n- Upgrade font-awesome v3.0.2\n- Update translations.\n\n\n4.25.1 (2013-04-04)\n-------------------\n\n- Removed ``sentry_exception_handler()`` call from our exception middleware\n (introduced in 4.25), again. This breaks the tests. Further investigation\n showed that the call is only necessary if we return a value in our\n middleware, which we don't.\n\n\n4.25 (2013-04-03)\n-----------------\n\n- Merged deltaportaal fixes. Next to ``#popup-tabs`` there's now also\n ``.popup-tabs``. The body tag can have an ID or class now (needed for\n fiber). Added popup hover on one extra action category.\n\n\n4.24 (2013-03-19)\n-----------------\n\n- Nothing changed yet.\n\n\n4.23 (2013-03-19)\n-----------------\n\n- Actions now always use the ``data_attributes`` instead of only using them\n for the content-actions.\n\n- Apps can now completely remove the sidebar and rightbar elements\n without breaking the JavaScript.\n\n\n4.22 (2013-02-21)\n-----------------\n\n- Add translation to Afrikaans.\n\n- Prevent daterangepicker to round to full days / hours.\n\n\n4.21 (2013-02-20)\n-----------------\n\n- Add language selector.\n\n\n4.20 (2013-02-19)\n-----------------\n\n- Add vietnamese translation for `Login` for testing purposes.\n\n\n4.19 (2013-02-19)\n-----------------\n\n- Upgrade to zc.buildout 2.0.1.\n\n- Use translations package to manage translations.\n\n- Update translation files for dutch and vietnamese.\n\n\n4.18 (2013-02-11)\n-----------------\n\n- Updated the app_icons.\n\n\n4.17 (2013-01-28)\n-----------------\n\n- Fixed logo: removed artifacts; made the toes of the lizard more pronounced.\n\n\n4.16 (2013-01-22)\n-----------------\n\n- When SSO_ENABLED evaluates to True in your settings,\n login/logout become real hyperlinks, instead of the modal popup.\n The links then point to the url alias named 'login'.\n\n- Fixed a bug when map is unavailable during opening / closing the sidebar.\n\n- Update to jQuery UI 1.8.24.\n\n\n4.15 (2012-12-19)\n-----------------\n\n- Fixed urls.py, so it won't recusively include other lizard-* URLs when\n running as part of a site.\n\n- Made the appscreen admin more user friendly.\n\n- Initialize popovers again after fast appscreen load.\n\n\n4.14 (2012-12-17)\n-----------------\n\n- Added flot.fillbetween plugin to the list of Javascript files.\n\n- Applied the rename of jquery's .ui-button to .xui-button everywhere.\n\n- Also renamed jquerys $(el).button to $(el).jqbutton as to now conflict\n with Bootstrap.\n\n\n4.13 (2012-12-04)\n-----------------\n\n- Updated a Django version.\n\n- Align the popup-loading spinner in the middle.\n\n4.12 (2012-11-22)\n-----------------\n\n- Fixed graph axislabels.\n\n- Support mixed flot/matplotlib (IE8) graphs.\n\n- Moved graph stuff to lizard-map, which is a more suitable place for it (in the current app structure).\n In the future all UI stuff should go to lizard-ui.\n\n- Updated Twitter Bootstrap to v2.2.1.\n\n- Added better support for clickable popovers.\n\n- Changed tree styling a bit to support info icons next to tree items.\n\n- Disabled fadeIn for OpenLayers tiles.\n\n- Added a track that 'instantly' loads application screens.\n\n\n4.11 (2012-10-18)\n-----------------\n\n- Add some app_icons.\n\n- Use Font-Awesome for icons.\n\n- Changed the styling a bit.\n\n\n4.10 (2012-10-05)\n-----------------\n\n- Fix an unneeded django-compressor pin.\n\n- Add some app_icons.\n\n\n4.9 (2012-10-04)\n----------------\n\n- Relicensed from GPL to LGPL.\n\n- Removed dependency on sentry when sentry_level = None.\n\n- Fixed problem with sidebar width and content div scrollbars.\n\n- Update Twitter Bootstrap to 2.1.1, html5shiv to the latest dev version, flot\n to the latest dev version.\n\n- Remove seemingly unused jquery-tools library.\n\n- Merged coffeescript to lizard_ui.js.\n\n- Various styling fixes.\n\n- Change information popovers near edge of screen to their browser native\n counterparts.\n\n- Add control buttons to flot graph. Add flot navigate plugin.\n\n- Fix overflow (once and for all?).\n\n- Add date-range picker.\n\n- Add IE version and iPad detection.\n\n\n4.8 (2012-08-23)\n----------------\n\n- Remove conflicting simplejson dependency.\n\n- Remove raven which is incompatible with Django 1.4.\n\n- Add error when graph has no data.\n\n\n4.7 (2012-08-23)\n----------------\n\n- Build a custom jquery.flot.axislabels.js, which is much better (in terms of not messing up flot's draw()).\n\n- Switch the popup's tabs to the superior jquery-ui tabs, replacing the jquery-tools tabs.\n\n- Update flot to latest (git) version, which supports proper ticks rendering (on canvas instead of HTML elements).\n\n- Fixed textual content scrollbars / overflow (again?).\n\n- Updated some app_icons.\n\n\n4.6 (2012-08-14)\n----------------\n\n- Small styling issue with labels.\n\n\n4.5 (2012-08-14)\n----------------\n\n- Switch to OpenLayers dark theme.\n\n\n4.4 (2012-08-14)\n----------------\n\n- Flot graphs: calculate tick sizes.\n\n- Updated OpenLayers to 2.12.\n\n- Styling: fix bootstrap messing up labels, fix hover popup z-index.\n\n\n4.3 (2012-07-26)\n----------------\n\n- Fixed minor layout issues.\n\n\n4.2 (2012-07-12)\n----------------\n\n- Prettified background gradient in sidebar navigation tree.\n\n- Fixed minor layout issues.\n\n\n4.1 (2012-06-28)\n----------------\n\n- Trying to construct a breadcrumb even if we don't have an application icon\n pointing at the current page.\n\n\n4.0 (2012-06-19)\n----------------\n\n- Date range styling; fix a FOUC; fix cursur pointer on H2;\n\n- Increased right sidebar to make legends fit.\n\n- Added styling for multi-select button.\n\n- Proper submission and handling of global errors on login form.\n\n- Changed label of collapse-sidebar-button to 'Navigatie'.\n\n\n4.0b6 (2012-06-06)\n------------------\n\n- Moved excanvas for IE 6 and 7 outside compress.\n\n- Fixed trailing commas (IE7 does not like them).\n\n\n4.0b5 (2012-06-05)\n------------------\n\n- Replace zettingen.png icon to one with shadow.\n\n\n4.0b4 (2012-06-01)\n------------------\n\n- Added ``required_permission`` attribute on UiView. If you set it, the\n permission is checked and the user redirected, if needed.\n\n\n4.0b3 (2012-06-01)\n------------------\n\n- Tiny styling fix.\n\n- Add flot bar graph support.\n\n\n4.0b2 (2012-05-31)\n------------------\n\n- Properly close secondary sidebar (\"Kaartlagen\") when hiding the sidebar (\"Inklappen\").\n\n- Add the Flot JavaScript library.\n\n- Fix a small styling issue concerning workspaces.\n\n- Update to jQuery 1.7.2 which includes some .ajax() fixes.\n\n- Add client side support for the new FlotGraph.\n\n\n4.0b1 (2012-05-29)\n------------------\n\n- UI fixes: graphs load automatically again; workspace item paddings/margins;\n jqueryui buttons commented out as they conflict with bootstrap's css.\n\n- Upgraded sentry client to raven.\n\n- Updated configchecker.\n\n- Commented line 413 in jquery-ui-1.8.5.custom.css to remove conflicing\n (with Twitter Bootstrap) class .ui-button-text-only .ui-button-text\n [Gijs Nijholt]\n\n- Fixed some interaction issues with modal and non-modal login form.\n\n- Restored accordion behavior and improved leftbar styling.\n\n\n4.0a2 (2012-05-18)\n------------------\n\n- Fixed google maps (which would be invisible) by removing max-width from\n bootstrap's css.\n\n\n4.0a1 (2012-05-18)\n------------------\n\n- Add zettingen icon (copied from demo site)\n\n- Merged reinout-bootstrap branch (\"the deltaportaal layout\").\n\n- Using compiled css/js instead of less/coffee.\n\n- Using smaller logo.\n\n- Added source distribution of twitter-bootstrap. You need node.js and its\n package manager npm installed to install lessc and uglify-js (only needed if\n you need to rebuild twitter-bootstrap).\n\n- Changed icon padding to accommodate for two columns in Chrome.\n\n- Fixed several styling issues.\n\n- Making the popup compatible.\n\n- Added sphinx setup for documentation generation.\n\n\n3.16 (2012-05-10)\n-----------------\n\n- Added 1 new ap icon.\n\n- Remove protovis. Not generally used. And it is superseded by\n http://mbostock.github.com/d3/ .\n\n\n3.15 (2012-04-13)\n-----------------\n\n- A missing comma at the end of colorpicker.js broke the demo site. It\n really did. This blockbuster release adds one.\n\n\n3.14 (2012-04-13)\n-----------------\n\n- Updated Openlayers to 2.11.\n\n\n3.13 (2012-03-20)\n-----------------\n\n- Added user to the context of the template that renders application\n icons, so that it is possible to make them depend on the currently\n logged in user.\n\n\n3.12 (2012-02-16)\n-----------------\n\n- Added two icons.\n\n\n3.11 (2012-01-17)\n-----------------\n\n- Made breadcrumbs configurable\n\n- Added helper functions for breadcrumbs to application screens\n\n\n3.10 (2012-01-04)\n-----------------\n\n- Changed confusing breadcrumbs into a simple \"home\" link.\n\n\n3.9 (2011-12-12)\n----------------\n\n- Fix bug where Ajax calls failed because they didn't have a CSRF cookie.\n\n\n3.8.1 (2011-12-08)\n------------------\n\n- Fix bug where loginform didn't redirect.\n\n3.8 (2011-12-07)\n----------------\n\n- Added narrowcasting.png icon as on heerhugowaard sites.\n\n\n3.7.1 (2011-11-28)\n------------------\n\n- Fix incorrect syntax in lizard.js.\n\n\n3.7 (2011-11-08)\n----------------\n\n- Added ``live: true`` to tipsy tooltips so that elements created later can also get tooltips\n\n\n3.6 (2011-10-28)\n----------------\n\n- Swapped order of datatable and colorpicker in the js list as\n django-compressor chokes on them a bit.\n\n- Made debugmode_urlpatterns() more robust. It crashed without MEDIA_URL and\n MEDIA_ROOT settings in the settings.py\n\n- Improved i18n and tipsy tooltips.\n\n\n3.5 (2011-10-19)\n----------------\n\n- Using django-staticfiles' urls instead of django's build-in\n contrib.staticfiles'. This works with \"runserver\" but fails with\n \"run_gunicorn\" (if you enabled gunicorn in your project).\n\n- Added experimental table sorter javascript.\n\n- Print improvements (hiding openlayers controls, for instance).\n\n- Moved from company-internal svn to github:\n https://github.com/lizardsystem/lizard-ui .\n\n\n3.4 (2011-09-23)\n----------------\n\n- Renamed ``media/`` directory into ``static/`` as that's django-staticfiles'\n sane default now.\n\n- Added 'i18n' management command for easier translation.\n\n- Added config checks for i18n settings now that default strings slowly become\n English instead of the Dutch we've been implicitly expecting...\n\n- Added translation markers + Dutch translations for several strings.\n\n\n3.3 (2011-09-05)\n----------------\n\n- Added optional sentry setup.\n\n- Re-did login view as a class based view.\n\n- Fixed the problem that the print of the web page showed a progress icon\n instead of a graphs (ticket 3180).\n\n\n3.2 (2011-08-30)\n----------------\n\n- Added short_timedelta template filter.\n\n- Added ViewContextMixin mixin class for class based views that adds {'view':\n self} to your view's context dict. This should be all you need to have in\n your context.\n\n\n3.1.2 (2011-08-29)\n------------------\n\n- Fixed debugmode_urlpatterns checker.\n\n\n3.1.1 (2011-08-29)\n------------------\n\n- Adding checker that warns if the debugmode_urlpatterns isn't being imported.\n\n\n3.1 (2011-08-29)\n----------------\n\n- TracebackLoggingMiddleware isn't needed anymore, so the config checker now\n tells you that if you still have it in your MIDDLEWARE_CLASSES.\n\n- Switched off sql statement logging by default.\n\n- Added url patterns for showing static/ and media/ files in debug mode. Use\n it by importing ``debugmode_urlpatterns`` from ``lizard_ui.urls`` and\n calling ``urlpatterns += debugmode_urlpatterns()``.\n\n\n3.0 (2011-08-19)\n----------------\n\n- Added javascript-based csrf-for-ajax fix suggested in\n https://docs.djangoproject.com/en/1.3/ref/contrib/csrf/#ajax\n\n- Adjusted for Django 1.3. Note that this is now also a dependency! Upgrading\n will be slightly harder. Run ``bin/django check_config`` to check your\n config afterwards. See the README for more how-to-change information.\n\n\n2.1.6 (2011-08-10)\n------------------\n\n- Added projecten.png, oppervlaktewater.png, grondwater.png,\n riolering.png.\n\n\n2.1.5 (2011-08-01)\n------------------\n\n- Added ApplicationScreen.crumb.\n\n- Added oevers.png.\n\n\n2.1.4 (2011-07-28)\n------------------\n\n- Removed tipsy code specific for lizard-map (reference to\n #transparency-slider).\n\n- Moved tipsy code into setUpTipsy().\n\n\n2.1.3 (2011-07-12)\n------------------\n\n- Removed console.log.\n\n\n2.1.2 (2011-07-12)\n------------------\n\n- Rewritten stretchOneSidebarbox: the old one used to stretch big\n first and then shrink to the correct size. The problem was that the\n scroll focus for large lists would change. #3030.\n\n\n2.1.1 (2011-06-30)\n------------------\n\n- Added option google_tracking_code in realbase.\n\n\n2.1 (2011-06-29)\n----------------\n\n- Updated favicon.ico to lizard.\n\n- Added 'play' icon.\n\n\n2.0 (2011-06-22)\n----------------\n\n- Fixed logo (it was slightly to high).\n\n\n1.70 (2011-06-22)\n-----------------\n\n- Newer lizard logo (without the gray background as that conflicts with our\n own gray gradient), but that's ok for now.\n\n- More app icons with shadows.\n\n\n1.69 (2011-06-21)\n-----------------\n\n- Made popups more consistent (shadow color and size).\n\n\n1.68 (2011-06-17)\n-----------------\n\n- Fixed .gif image that was a wrong file type.\n\n\n1.67 (2011-06-16)\n-----------------\n\n- Fixed #2882: changed css to make some parts overflow: auto.\n\n\n1.66 (2011-06-16)\n-----------------\n\n- Added error message when next accordion pane fails to load.\n\n\n1.65 (2011-06-10)\n-----------------\n\n- Added reloadLocalizedGraphs() in addition to reloadGraphs() to reload only\n graphs inside a certain div. (Used in lizard-map popups with tabs).\n\n- Added Tipsy (Facebook/Github-style tooltips https://github.com/jaz303/tipsy)\n\n- Added buttons.css (from https://github.com/ubuwaits/css3-buttons)\n\n- Some repeatable backgrounds. (from http://subtlepatterns.com/)\n\n- Some icons from http://glyphicons.com/, added/implemented seperately.\n (TODO: integrate properly in sprite.png and the stylesheet of silk)\n\n- OpenLayers 'Dark' theme.\n\n- Re-exported several icon PNG's (meldingen, kaarten) with an alphachannel\n drop-shadow.\n\n- Added extra field to ApplicationScreen model. (description, for display in\n tipsy tooltips)\n\n- Centered the icons in the 'iphonesque' app-screen.\n\n- Added inset drop-shadows to the app-screen.\n\n- Changed the app-screen font to helvetica-light. (TODO: Try out Google\n Webfonts instead)\n\n- Changed gray H2 bars' bevel to a higher contrast, expressing more depth.\n\n- Aligned lizard logo to the outmost left.\n\n- Added tooltips to several interface elements.\n\n- Improved appearance of the breadcrumb. (TODO: position is still a bit\n awkward?)\n\n- Changed OpenLayers javascript + css so that the layer chooser's\n background color matches the rest of the dark theme.\n\n\n1.64 (2011-06-01)\n-----------------\n\n- Changed accordion behaviour. All titles are refreshed, but we don't refresh\n all pane contents anymore: only the new one. This makes sure trees stay\n expanded. And it reduces re-rendering time for big trees. And we\n theoretically don't need to send over all the panes' data in case that's\n prohibitive for performance.\n\n\n1.63 (2011-05-30)\n-----------------\n\n- Removed relative positioning on #portal-tabs. See ticket #2827.\n- Reverted my changes made to .sidebarbox-action-icon in changeset:21174. Even\n added 1px extra to better vertically align workspace items. See ticket #2750\n for screenshots.\n- Added a extra class name for save_form.\n- Bigger portal-tabs with rounded corners.\n- Corrected text-align of wrong-login.\n- \"Log in\" and \"Log uit\" links have the same cursor: they were different and\n \"Log uit\" had an illogical one, viz. cursor:text.\n\n\n1.62 (2011-05-18)\n-----------------\n\n- Fixed vertical location of workspaceitem icons that aren't part of a header.\n\n\n1.61 (2011-05-17)\n-----------------\n\n- Fixing menubar at 2em height to keep longer content from overflowing the\n bar.\n\n- Added favicon image in ``media/lizard_ui/favicon.ico``. So if you want a\n different favicon in your project, place an updated icon in your site's\n ``media/lizardui/`` folder.\n\n\n1.60 (2011-05-06)\n-----------------\n\n- Changed CSS of .workspace (#2659).\n\n- Added five custom icons. (Gijs, req. by Dave)\n\n- Downgraded to jQuery 1.5.1 due to IE8 bug in 1.5.2.\n See https://office.nelen-schuurmans.nl/trac/ticket/2656#comment:5\n See http://bugs.jquery.com/ticket/8755\n\n\n1.59 (2011-04-28)\n-----------------\n\n- Deleted 'Copyright @ Nelen ...' text.\n\n\n1.58 (2011-04-27)\n-----------------\n\n- Added dacom icon.\n\n- Updated tabs css (needed for lizard-map >= 1.71).\n\n\n1.57 (2011-04-20)\n-----------------\n\n- Added new flooding icon flooding2.png.\n\n- Updated OpenLayers from 2.8 to 2.10.\n\n- Jslint lizard.js.\n\n\n1.56 (2011-04-14)\n-----------------\n\n- Updated Lizard logo.\n\n- Added lizard_ui/tabs.css.\n\n- Updated jQuery from 1.4.2 to 1.5.2, jQuery UI from 1.8.2 to 1.8.11,\n jQueryTools from 1.2.2 to 1.2.5. Treeview from 1.4 to 1.4.1.\n\n- Added css class for progress animation image\n\n\n1.55 (2011-04-05)\n-----------------\n\n- Added 3di icon.\n\n- Added Waterbalance icon.\n\n\n1.54 (2011-03-18)\n-----------------\n\n- Removed width: 100% css for .auto-inserted. It works fine without\n it. Before the image was slightly scaled horizontally.\n\n- Added possibility for a double-height item in the\n divideVerticalSpaceEqually() method. Just add a\n \"double-vertical-item\" class instead of \"vertical-item\" to the item\n you want to give double the height.\n\n\n1.53 (2011-03-09)\n-----------------\n\n- Removed setUpWorkspaceAcceptableButtons. The button is now added\n when a workspace-acceptable is clicked (lizard-map 1.58 and higher).\n\n- Adding error message when a \"replace-with-image\" image is loaded and\n there's an error. Instead of an ever-spinning \"loading...\" icon.\n\n\n1.52 (2011-02-23)\n-----------------\n\n- Centered the progress animation.\n\n- Added data-src to progress animation (for debugging purposes).\n\n\n1.51 (2011-02-15)\n-----------------\n\n- Added progress animation to vertical-item / img-use-my-size /\n replace-with-image.\n\n\n1.50 (2011-02-15)\n-----------------\n\n- Added icons dike and controlnext.\n\n\n1.36 (2011-02-15)\n-----------------\n\n- Added application screens and icons support: added models and views.\n\n\n1.35 (2011-02-02)\n-----------------\n\n- Refactored the window.resize function in lizard.js [Gijs].\n\n\n1.34 (2011-02-01)\n-----------------\n\n- Added breadcrumbs example.\n\n- Added new breadcrumbs method. See examples.\n\n- Added protovis library.\n\n- Added support for portal-tabs, see also the examples page.\n\n\n1.33 (2011-01-24)\n-----------------\n\n- Removed preventDefault in logout function.\n\n\n1.32 (2011-01-20)\n-----------------\n\n- Still trying to fix logout bug.\n\n\n1.31 (2011-01-20)\n-----------------\n\n- Fixed logout bug.\n\n\n1.30 (2011-01-20)\n-----------------\n\n- Added turtle app icon.\n\n- After logging out one goes back to \"/\".\n\n- Improved login function.\n\n- Added (empty) login screen with redirect option.\n\n\n1.29 (2011-01-13)\n-----------------\n\n- Added   to workspace acceptable button.\n\n\n1.28 (2011-01-12)\n-----------------\n\n- Added setUpWorkspaceAcceptableButtons in lizard.js. The function is\n in lizard-ui because setUpAccordion needs the function as well.\n\n\n1.27 (2010-12-08)\n-----------------\n\n- Loading accordions re-initializes tree structures.\n\n\n1.26 (2010-12-06)\n-----------------\n\n- Added default 500 and 404 pages.\n\n\n1.25 (2010-12-01)\n-----------------\n\n- Added custom templatetag dutch_timedelta.\n\n- Moved tooltip css from lizard_map to here.\n\n- Add optional description to tree snippet.\n\n\n1.24 (2010-11-24)\n-----------------\n\n- Added css class action-icon.\n\n\n1.23 (2010-11-11)\n-----------------\n\n- (Re-)initializes tooltips when loading accordion.\n\n- Added setUpTooltips() in lizard.js.\n\n\n1.22 (2010-11-09)\n-----------------\n\n- Updated accordion: when an item is clicked, all panes and headers\n are updated.\n\n\n1.21 (2010-10-15)\n-----------------\n\n- Fix \"apple\" icon height to 80px.\n\n\n1.20 (2010-10-15)\n-----------------\n\n- Fixed IE7 print problem.\n\n- Added exception-logging middleware.\n\n- Added app_icons.\n\n- Added sidebar and sidebarbox css entries.\n\n- Added tree_snippet.html template for creating trees.\n\n\n1.19 (2010-09-27)\n-----------------\n\n- Fixed float problem for IE in login popup.\n\n- Fixing visibility of \"restore from print view\" icon in IE.\n\n\n1.18 (2010-09-27)\n-----------------\n\n- Added automatic print button that also allows you to expand the\n collapsed-for-printing view again.\n\n- Tables now print with a grid and proper left/center/right alignment.\n\n- Links don't print anymore (at least, their url isn't appended anymore to the\n link text when printing).\n\n\n1.17 (2010-09-22)\n-----------------\n\n- Add colorpicker js library.\n\n- Added createcoverage command.\n\n\n\n1.16 (2010-09-08)\n-----------------\n\n- Added more tests.\n\n- Small layout tweak for popup box.\n\n\n1.15 (2010-09-03)\n-----------------\n\n- Added utility templatetags.\n\n\n1.14 (2010-08-30)\n-----------------\n\n- Importing json via django now.\n\n\n1.13 (2010-08-30)\n-----------------\n\n- Bugfix simplejson.\n\n\n1.12 (2010-08-27)\n-----------------\n\n- Small adjustments to support lizard-map's new graph popup. (A better\n separation of lizard-ui and lizard-map is needed later on: after the\n deadlines :-) ).\n\n\n1.11 (2010-08-26)\n-----------------\n\n- Styled the login form including proper \"enter\" behaviour and\n first-field-gets-focus handling.\n\n\n1.10 (2010-08-26)\n-----------------\n\n- Moved some css styling from lizard-map to lizard-ui.\n\n- Added initial login support + forms. You need to add lizard-ui's urls.py to\n yours if you want to use it.\n\n- Better drag/drop visual feedback.\n\n\n1.8 (2010-08-18)\n----------------\n\n- Javascript syntax fix: added two semicolons and removed another.\n\n\n1.7 (2010-07-15)\n----------------\n\n- Make \"replace-with-image\" clickable by using \"data-href-click\"\n property.\n\n- Add ol.forms css.\n\n\n1.6 (2010-07-06)\n----------------\n\n- Image replacement looks at \"use-my-size\" class instead of\n use-my-width/height.\n\n- Added javascript \"printPage()\" function that prints a webpage that at least\n doesn't flow over the right hand side of the physical paper page. Printing\n uses a combination of a custom print stylesheet and blueprint's print\n stylesheet. Printing definitively isn't perfect yet, but at least usable.\n Note: you should refresh or resize the page after printing to get the full\n width again.\n\n\n1.5 (2010-07-01)\n----------------\n\n- Added generic automatic image resizing (replacing a generic \"a href\" with an\n image with the same src as the href and then figuring out the height/width\n and passing that along as a GET parameter and as attributes on the img tag.\n\n- Fixed resize timer by having a global variable for it.\n\n- Calculating hiddenStuffHeight (currently: only the date popup hidden div)\n only once: before the date popup has been opened.. Fixes the bug that you'd\n get a large empty space at the bottom of the screen.\n\n\n1.4.1 (2010-06-25)\n------------------\n\n- Updated TODO list.\n\n\n1.4 (2010-06-25)\n----------------\n\n- We're now on the python package index, hurray!\n http://pypi.python.org/pypi/lizard-ui\n\n- Updated package metadata.\n\n- Big README documentation update.\n\n\n1.3 (2010-06-23)\n----------------\n\n- Added graph reloading on sidebar collapse/expand.\n\n- UI css fixes (overflow:hidden in a couple of places to prevent scrollbars in\n corner cases, for instance).\n\n\n1.2 (2010-06-22)\n----------------\n\n- Floating the main content area now and giving it the proper width with\n javascript. This makes the layout in IE more reliable.\n\n- The main body has \"overflow: hidden\" to get rid of scrollbars once and for\n all: scrollbars sometimes occur when there's a small layout bug. A\n scrollbar takes up space, so the main content float is pushed down. We have\n an assumption of a single page without scrolling, so hiding scrollbars is\n perfectly fine. (The main area itself *can* have scrollbars for textual\n content).\n\n\n1.1 (2010-06-18)\n----------------\n\n- IE tweaks.\n\n\n1.0 (2010-06-17)\n----------------\n\n- Fixed javascript code with jslint.\n\n- Added django-compressor for javascript and css compression and combination.\n You'll need to add the configuration in http://dpaste.de/xLDU/ to your\n settings and add \"compressor\" to your installed apps.\n\n- Switched to a separate \"javascript\" and \"css\" block instead of the\n site-head-extras, head-extras and so. Be sure to add {{super.block}} when\n you override the blocks.\n\n\n0.12 (2010-06-11)\n-----------------\n\n- Upgraded to jqueryui 1.8.2 (from 1.8.1).\n\n- Removed jqueryui's tab component as it conflicts with jquerytools'\n implementation. Jquerytools' implementation is way friendlier to our\n existing sidebar css.\n\n\n0.11 (2010-06-08)\n-----------------\n\n- Added direct support for a jquery tree. We already contained the base\n treeview javascript, so lizard-ui was a logical place for setting it up.\n\n\n0.10 (2010-06-07)\n-----------------\n\n- Added fillSidebar() alias for stretchOneSidebarBox().\n\n- Splitted title block in sitetitle/subtitle as that's a common occurrence.\n\n\n0.9 (2010-06-03)\n----------------\n\n- Using jquery's live() for \"late binding\" of events to elements added later\n through javascript. Saves some couple of lines.\n\n\n0.8 (2010-06-01)\n----------------\n\n- Added generic accordion handling for the sidebar. Including ajaxy loading.\n\n\n0.7 (2010-05-18)\n----------------\n\n- Added jquerytools for accordeon behaviour in sidebar.\n\n- Layout fixes, mostly for the sidebar. Also fix for the datepicker-placed\n div at the bottom.\n\n- Update to jquery-ui 1.8.1.\n\n\n0.6 (2010-04-28)\n----------------\n\n- Added collapsible sidebar.\n\n- Changed css framework from yui to blueprint: more understandable. The\n reason for yui was that it had a 100%-width layout. We're now building up\n the layout (grid-wise) ourselves due to the collapsible sidebar, so\n switching back to blueprint is now possible.\n\n- Changed layout to match Dirk-Jan's latest screenshots.\n\n\n0.5 (2010-04-13)\n----------------\n\n- Layout improvements.\n\n- Added documentation (just mount our urls!).\n\n- Removed separate icons, leaving only the sprite'd icons.\n\n- Added jqueryui. Including it automatically. It also means extjs isn't\n included automatically anymore.\n\n- Sidebar width is 300px instead of 180px.\n\n\n0.4 (2010-03-16)\n----------------\n\n- Added extjs javascript library.\n\n- Added javascript and css for dividing the vertical space equally.\n\n\n0.3.1 (2010-03-05)\n------------------\n\n- Bugfix: removed sample breadcrumb content from the template.\n\n\n0.3 (2010-03-05)\n----------------\n\n- Added openlayers 2.8.\n\n- Added famfamfam silk icon set.\n\n- Added background to menubar, footer and body.\n\n- Removed blueprint and added the YUI css framework.\n\n\n0.2 (2010-02-12)\n----------------\n\n- Nested our templates in templates/lizard_ui instead of directly in\n templates. We're well-behaved now!\n\n\n0.1 (2010-02-12)\n----------------\n\n- Added lizardbase.html template as base for a lizard user interface.\n\n- Added django-staticfiles as a dependency for managing css and javascript\n resources.\n\n- Added blueprint css framework.\n\n- Initial structure created by nensskel.", "description_content_type": null, "docs_url": null, "download_url": null, "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.nelen-schuurmans.nl/lizard/", "keywords": null, "license": "LGPL", "maintainer": null, "maintainer_email": null, "name": "lizard-ui", "package_url": "https://pypi.org/project/lizard-ui/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/lizard-ui/", "project_urls": { "Homepage": "http://www.nelen-schuurmans.nl/lizard/" }, "release_url": "https://pypi.org/project/lizard-ui/5.3/", "requires_dist": null, "requires_python": null, "summary": "Basic user interface for lizard websites", "version": "5.3" }, "last_serial": 3847310, "releases": { "1.10": [ { "comment_text": "", "digests": { "md5": "cb915bd16f9f65ae73aa2cfaed212e91", "sha256": "890ddd95829dac248bb6e1f1f50ef98db4ebf9bd60a61645327e692626cd52f4" }, "downloads": -1, "filename": "lizard-ui-1.10.tar.gz", "has_sig": false, "md5_digest": "cb915bd16f9f65ae73aa2cfaed212e91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 842301, "upload_time": "2010-08-26T10:22:01", "url": "https://files.pythonhosted.org/packages/d3/8c/2701e899609f05ea5e4e67216280befa2df416dc7a7f8ad59229d4c6bc3f/lizard-ui-1.10.tar.gz" } ], "1.11": [ { "comment_text": "", "digests": { "md5": "2b77808ed66f68c4ad60c0b1be826f03", "sha256": "ee02421f6b735122e8af75a6e434df8fb47194037661929a2fb21fca535ec0b1" }, "downloads": -1, "filename": "lizard-ui-1.11.tar.gz", "has_sig": false, "md5_digest": "2b77808ed66f68c4ad60c0b1be826f03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 844944, "upload_time": "2010-08-26T17:08:48", "url": "https://files.pythonhosted.org/packages/c6/fa/90ea7a801da51f01efd8366048233a6f76176ae4e5d90396a9758ed9e1a8/lizard-ui-1.11.tar.gz" } ], "1.12": [ { "comment_text": "", "digests": { "md5": "ab207670c288327a171b93798a365830", "sha256": "0f114435feef60cc78d13ae4aee5dcd29ae36412f9c04dcb8414416a400f41f9" }, "downloads": -1, "filename": "lizard-ui-1.12.tar.gz", "has_sig": false, "md5_digest": "ab207670c288327a171b93798a365830", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 845829, "upload_time": "2010-08-27T16:02:52", "url": "https://files.pythonhosted.org/packages/ce/3f/63c34d9a0271fae9d3ecd4ad00a6166fd95132c215578a986d7888811abc/lizard-ui-1.12.tar.gz" } ], "1.14": [ { "comment_text": "", "digests": { "md5": "1858db68c0a521701e7b61519ccaa81e", "sha256": "86dc5ae38fd35577f4ebbd8985b2dd3b2965db39cf325d5566981bb421c574c8" }, "downloads": -1, "filename": "lizard-ui-1.14.tar.gz", "has_sig": false, "md5_digest": "1858db68c0a521701e7b61519ccaa81e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 846118, "upload_time": "2010-08-30T22:46:00", "url": "https://files.pythonhosted.org/packages/d9/92/a1c800d03bb5dab588ed2fb92806d70e216f3e5ae769ea0c1df942d131cc/lizard-ui-1.14.tar.gz" } ], "1.15": [ { "comment_text": "", "digests": { "md5": "669b6445eba31b8cb7fccb6759792c2d", "sha256": "8130a3c73001d5382acf08ef5cc0b8c0c0c8052e80b8f57018f76cd3902637bd" }, "downloads": -1, "filename": "lizard-ui-1.15.tar.gz", "has_sig": false, "md5_digest": "669b6445eba31b8cb7fccb6759792c2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 846485, "upload_time": "2010-09-03T17:04:50", "url": "https://files.pythonhosted.org/packages/f5/18/ba89694f83d9cab33f7ca8a5a28ec36ebb1c56f4f41f779a83c99726bae2/lizard-ui-1.15.tar.gz" } ], "1.16": [ { "comment_text": "", "digests": { "md5": "bb8248827505c584b895355db97fcf03", "sha256": "24fd8027ea7f7170fa60dbc74e285b881843aa3d9cde4997edf0e8ec032a5ba3" }, "downloads": -1, "filename": "lizard-ui-1.16.tar.gz", "has_sig": false, "md5_digest": "bb8248827505c584b895355db97fcf03", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 846593, "upload_time": "2010-09-08T12:26:43", "url": "https://files.pythonhosted.org/packages/4c/c0/613d749d091e3e215c4947e9cbb559b6bb1e6ec9c96dc19a5f37eaec2580/lizard-ui-1.16.tar.gz" } ], "1.18": [ { "comment_text": "", "digests": { "md5": "1b830af28b9c4dae5b8507fea0d542ce", "sha256": "6804053615b82e66e8753d09e5fa6fec03ef2ad4e196454e971ea1986251037b" }, "downloads": -1, "filename": "lizard-ui-1.18.tar.gz", "has_sig": false, "md5_digest": "1b830af28b9c4dae5b8507fea0d542ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 937537, "upload_time": "2010-09-27T12:37:28", "url": "https://files.pythonhosted.org/packages/6e/e7/7995e5508c113fb27b81ebe0d5b35186a1f9a317f0941a97c8aaec532a4d/lizard-ui-1.18.tar.gz" } ], "1.19": [ { "comment_text": "", "digests": { "md5": "748e6a36e3d5064e083435d529d80c8d", "sha256": "60fbc8040a61a5478ebcef0f00f413fce155a778a047453e930fd457bd08a16b" }, "downloads": -1, "filename": "lizard-ui-1.19.tar.gz", "has_sig": false, "md5_digest": "748e6a36e3d5064e083435d529d80c8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 936337, "upload_time": "2010-09-27T15:10:52", "url": "https://files.pythonhosted.org/packages/29/94/23ab01ab694c2f82497c514cf42c102c8a8a1e907d0094e1be7e09fa1a5a/lizard-ui-1.19.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "c602fec911409e61ff746d5390dd0a9f", "sha256": "a50e5e00ace7b55fbc20bdf2d4da7aea768d37d3b7d4b3de7c3f9a145048ff07" }, "downloads": -1, "filename": "lizard-ui-1.3.tar.gz", "has_sig": false, "md5_digest": "c602fec911409e61ff746d5390dd0a9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 827679, "upload_time": "2010-06-25T15:29:24", "url": "https://files.pythonhosted.org/packages/07/ac/d479073d0912b3e99a1b2573e5d65ce334c419ed4609874c29fc6d4e5bbf/lizard-ui-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "df99c54e60c3500f27a2f07499e03b45", "sha256": "11bc80572ed0e968df8c55515481c27208cb84b0005d313d4eb1c7f5c038196d" }, "downloads": -1, "filename": "lizard-ui-1.4.tar.gz", "has_sig": false, "md5_digest": "df99c54e60c3500f27a2f07499e03b45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 835298, "upload_time": "2010-06-25T17:40:46", "url": "https://files.pythonhosted.org/packages/40/3e/4f6e256c7b199b70e9a6b6283ffcf6b0123b86bf760f3a602442d1723a88/lizard-ui-1.4.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "95bdeef29ce0209ff5a7cd2ff7c120a2", "sha256": "3abd77c110c044cf46705dc326bb9e257799feeb7dd42d3b2b2845124dd90d95" }, "downloads": -1, "filename": "lizard-ui-1.4.1.tar.gz", "has_sig": false, "md5_digest": "95bdeef29ce0209ff5a7cd2ff7c120a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 835356, "upload_time": "2010-06-25T17:53:29", "url": "https://files.pythonhosted.org/packages/26/0a/dc54588a70ba0b927ad9c8d910ea1f9cd8311d38c540d0072fce2fe32cd3/lizard-ui-1.4.1.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "11082e3e5f63036094dd0c25b55389e0", "sha256": "eb77f37dd1c1b4d8c32806388829c5eb9c2cdb033e17f5bcb7727b3086a753f2" }, "downloads": -1, "filename": "lizard-ui-1.5.tar.gz", "has_sig": false, "md5_digest": "11082e3e5f63036094dd0c25b55389e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 837210, "upload_time": "2010-07-01T16:48:04", "url": "https://files.pythonhosted.org/packages/d8/62/b6fb5135b37c07c8bed45fe8acbdc37ced9b21643bff9496ef2030752f6a/lizard-ui-1.5.tar.gz" } ], "1.53": [ { "comment_text": "", "digests": { "md5": "bc389080c249ee48795bfba491f6c1df", "sha256": "e12a7b51a1d683997ab46821558d51fddb613139f89b5700246c95486ee3ad90" }, "downloads": -1, "filename": "lizard-ui-1.53.tar.gz", "has_sig": false, "md5_digest": "bc389080c249ee48795bfba491f6c1df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1506697, "upload_time": "2011-03-09T19:50:04", "url": "https://files.pythonhosted.org/packages/79/81/213cd0aa654767db37c15e2463a0751721dc4905de69f7601c218acc9e43/lizard-ui-1.53.tar.gz" } ], "1.54": [ { "comment_text": "", "digests": { "md5": "1af16ed1e3c489d8d48c40cd28648aee", "sha256": "553e5d3942ad61ecb247844a945bcc9fa952fbd092ce065847352dde3c600977" }, "downloads": -1, "filename": "lizard-ui-1.54.tar.gz", "has_sig": false, "md5_digest": "1af16ed1e3c489d8d48c40cd28648aee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1508425, "upload_time": "2011-03-18T13:40:30", "url": "https://files.pythonhosted.org/packages/2f/cb/3c6da58056b68e2fb867333c9596728a3cba0360704b6f01b4cdf707702b/lizard-ui-1.54.tar.gz" } ], "1.59": [ { "comment_text": "", "digests": { "md5": "e166292edba05eaf21e1e7a9852613f1", "sha256": "1368602a51afe151e3dace14667f2775fd4f56989cc03bd7e94251119b60773a" }, "downloads": -1, "filename": "lizard-ui-1.59.tar.gz", "has_sig": false, "md5_digest": "e166292edba05eaf21e1e7a9852613f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1585202, "upload_time": "2011-04-28T16:11:02", "url": "https://files.pythonhosted.org/packages/b7/bd/c4093eb0e8ec62d9be81046d5a36afaf80c66981dc51913e0ebc56c2dc13/lizard-ui-1.59.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "6cd21d471c57fa9f62eb4911b25072b1", "sha256": "6c23e16e9698d9d4e7720af8138b6e2de74029e6d79d9d57f1f351567c2f2968" }, "downloads": -1, "filename": "lizard-ui-1.6.tar.gz", "has_sig": false, "md5_digest": "6cd21d471c57fa9f62eb4911b25072b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 836709, "upload_time": "2010-07-06T15:36:46", "url": "https://files.pythonhosted.org/packages/45/84/ee6ca18eb6cfc5463ddd3ac6ae20228a66d44fa797fab84f239223968920/lizard-ui-1.6.tar.gz" } ], "1.61": [ { "comment_text": "", "digests": { "md5": "6cb553a6c19bdae776294dac242fe750", "sha256": "0e4e3e159cce8aded4aa07f5ed638ce43225e34995c15bbcd3ecf833fb7e807f" }, "downloads": -1, "filename": "lizard-ui-1.61.tar.gz", "has_sig": false, "md5_digest": "6cb553a6c19bdae776294dac242fe750", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1603789, "upload_time": "2011-05-17T16:30:04", "url": "https://files.pythonhosted.org/packages/b5/f5/e2db813868d192c3013dc1c9d006f72133185c019e151ff49a86f2462c3c/lizard-ui-1.61.tar.gz" } ], "1.62": [ { "comment_text": "", "digests": { "md5": "07b5274ea1444ed0b044b3657ab0048d", "sha256": "cc03b5efd4c94dc63a898474ae82c2f41c022e89cd58a5605a1f1dd357a77fbe" }, "downloads": -1, "filename": "lizard-ui-1.62.tar.gz", "has_sig": false, "md5_digest": "07b5274ea1444ed0b044b3657ab0048d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1603675, "upload_time": "2011-05-18T13:27:51", "url": "https://files.pythonhosted.org/packages/7b/00/96e9449ff59ec2414d5b57967f1648dbe705d15ba03d6ce672bc5a12f142/lizard-ui-1.62.tar.gz" } ], "1.64": [ { "comment_text": "", "digests": { "md5": "4ced3f5dfdd82f9e836e9f9243fd703a", "sha256": "14c90d82ce2132ed3433740fa798b6294e961124aa1015acce67793e95890577" }, "downloads": -1, "filename": "lizard-ui-1.64.tar.gz", "has_sig": false, "md5_digest": "4ced3f5dfdd82f9e836e9f9243fd703a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1611623, "upload_time": "2011-06-01T17:18:01", "url": "https://files.pythonhosted.org/packages/36/14/de56d40fd340a3c9e255ff9cca2705ba228f45049717ac1c65f34bfa39f8/lizard-ui-1.64.tar.gz" } ], "1.65": [ { "comment_text": "", "digests": { "md5": "2e3e58fba29b6e43bfdf96496f09d38b", "sha256": "cb00ce433370e782e1d0ebd1e02628d53b028fe3d4338a20bf40f5c84702fdf1" }, "downloads": -1, "filename": "lizard-ui-1.65.tar.gz", "has_sig": false, "md5_digest": "2e3e58fba29b6e43bfdf96496f09d38b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2171060, "upload_time": "2011-06-10T17:45:14", "url": "https://files.pythonhosted.org/packages/c1/00/34abf95a39a060cf28f6630d0a4f5191461c609b88c5936dad3d5a0ddc6b/lizard-ui-1.65.tar.gz" } ], "1.66": [ { "comment_text": "", "digests": { "md5": "68878b28c3b20036878ec5c32844db8e", "sha256": "824c7842ea897ccc3cf48cfebcc4ad04e330e7277795baad605980baa88a2643" }, "downloads": -1, "filename": "lizard-ui-1.66.tar.gz", "has_sig": false, "md5_digest": "68878b28c3b20036878ec5c32844db8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2172795, "upload_time": "2011-06-16T12:40:52", "url": "https://files.pythonhosted.org/packages/da/c3/02bf78b9de6214bec31cb453cbea5ac6e7acfdc0a37f624b9211d2587cc5/lizard-ui-1.66.tar.gz" } ], "1.67": [ { "comment_text": "", "digests": { "md5": "c21be2350ccdfe8d9fc092d421e917b3", "sha256": "e8246038448b8aba9b4db6468764c0a1591e4c2718a96ca525556da5b1586140" }, "downloads": -1, "filename": "lizard-ui-1.67.tar.gz", "has_sig": false, "md5_digest": "c21be2350ccdfe8d9fc092d421e917b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2173429, "upload_time": "2011-06-16T16:02:12", "url": "https://files.pythonhosted.org/packages/b5/62/b3661b9c402344ee4e7b0d6f7e15d24d518907b07f0f050a628cf4896697/lizard-ui-1.67.tar.gz" } ], "1.68": [ { "comment_text": "", "digests": { "md5": "6de615b5cb3f1e7c0edf81d310bb7064", "sha256": "9232dcfb96b5474fe255d42221d4e8e49b808c5242a4f1df19e87986c95d2d43" }, "downloads": -1, "filename": "lizard-ui-1.68.tar.gz", "has_sig": false, "md5_digest": "6de615b5cb3f1e7c0edf81d310bb7064", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2168173, "upload_time": "2011-06-17T15:18:50", "url": "https://files.pythonhosted.org/packages/90/60/e65569339cf0c916c003055d41f6155af65a450b9c5359e3cbe5a4ffdcda/lizard-ui-1.68.tar.gz" } ], "1.69": [ { "comment_text": "", "digests": { "md5": "998badea68820371829ac1cadb16fc9a", "sha256": "3e91a2fbbc0fb64321406b9ec94ac8190e99b36a36e9236a24e0c95cc77a9285" }, "downloads": -1, "filename": "lizard-ui-1.69.tar.gz", "has_sig": false, "md5_digest": "998badea68820371829ac1cadb16fc9a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2172197, "upload_time": "2011-06-21T12:27:51", "url": "https://files.pythonhosted.org/packages/43/f8/65958920c75e163e92ed59f17289beb033181cc85b49ed186eba881f9449/lizard-ui-1.69.tar.gz" } ], "1.70": [ { "comment_text": "", "digests": { "md5": "e772beaa6defd1f38b63c49ee6fd69b8", "sha256": "9edc9e906805fe0f156664318238bb6328d17eda51e7aba0d268875d5e3c8a02" }, "downloads": -1, "filename": "lizard-ui-1.70.tar.gz", "has_sig": false, "md5_digest": "e772beaa6defd1f38b63c49ee6fd69b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2177726, "upload_time": "2011-06-22T11:13:26", "url": "https://files.pythonhosted.org/packages/8e/7a/6aea1ccaffca159d600276ce3d19a009af6d000d33f98896393bc967d2c3/lizard-ui-1.70.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "03e52f0c2a5f58753289a66c61dcef0e", "sha256": "46a9816355538f87990da7abbc3f6a98dc62b4fc8b873e599a176f6f6d3cba6b" }, "downloads": -1, "filename": "lizard-ui-1.8.tar.gz", "has_sig": false, "md5_digest": "03e52f0c2a5f58753289a66c61dcef0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 836921, "upload_time": "2010-08-18T15:51:50", "url": "https://files.pythonhosted.org/packages/7f/d7/b0532ea0f8c8a0eb0d77abdd3aced946d3441f55a49147b677e770fdd3ad/lizard-ui-1.8.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "73dad8582f63ed2dd6dcb0df13c17e98", "sha256": "6a0b069ed148fa0c63627b9927262f57eda35eacd6e3ede7c371e12890cb6404" }, "downloads": -1, "filename": "lizard-ui-2.0.tar.gz", "has_sig": false, "md5_digest": "73dad8582f63ed2dd6dcb0df13c17e98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2177697, "upload_time": "2011-06-22T12:27:48", "url": "https://files.pythonhosted.org/packages/c5/cc/f2af6a8f57975b9d36410d92fe0674cc14321c6ec893a1e16746da5c0ccf/lizard-ui-2.0.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "ac544ea6a0340279502be119071755ac", "sha256": "aebf8b78cdc120cdd43946d296ef3071afd68cc5d0a47a7c7f56f338ac2c25a0" }, "downloads": -1, "filename": "lizard-ui-3.0.tar.gz", "has_sig": false, "md5_digest": "ac544ea6a0340279502be119071755ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2209650, "upload_time": "2011-08-19T12:11:21", "url": "https://files.pythonhosted.org/packages/18/f1/788e94a845536f2d99799ef8b9ec8ec68d66e06d2fb17b5168a6a9513bda/lizard-ui-3.0.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "3640faab948e0fdd5fdee1e2c756151c", "sha256": "a8bf6bdd92ebe4d7c5169316b1e116874cdbd28ccf8b277f42ec61de93fed8ea" }, "downloads": -1, "filename": "lizard-ui-3.1.tar.gz", "has_sig": false, "md5_digest": "3640faab948e0fdd5fdee1e2c756151c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2212425, "upload_time": "2011-08-29T10:55:40", "url": "https://files.pythonhosted.org/packages/60/bb/7691fb8dc2d4af99a89a43c62c5eafa6683025d0995c03af8a6195e37c2d/lizard-ui-3.1.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "99beb19c61a15a7b3911568a542de5b0", "sha256": "8eab51fb427f40ee16f607a839f2c3a2b1f07c0d58d03582ffff281c814c551e" }, "downloads": -1, "filename": "lizard-ui-3.1.1.tar.gz", "has_sig": false, "md5_digest": "99beb19c61a15a7b3911568a542de5b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2213214, "upload_time": "2011-08-29T11:12:32", "url": "https://files.pythonhosted.org/packages/b2/a0/cb13d255ae1745d000a42a8971fd43955f2b078b2c52a63d1a90be706bbb/lizard-ui-3.1.1.tar.gz" } ], "3.1.2": [ { "comment_text": "", "digests": { "md5": "f0017d4a67946002366f11e4592bbea6", "sha256": "566d8139f03209bd7834e61988c6c67ee80e341e6053679c6bb1845ecdf6d2f0" }, "downloads": -1, "filename": "lizard-ui-3.1.2.tar.gz", "has_sig": false, "md5_digest": "f0017d4a67946002366f11e4592bbea6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2213243, "upload_time": "2011-08-29T11:44:13", "url": "https://files.pythonhosted.org/packages/27/e3/70f11d917e07b7237f4795c486150edc832e5b75d3b4bf2685ce4122046a/lizard-ui-3.1.2.tar.gz" } ], "3.11": [ { "comment_text": "", "digests": { "md5": "c7fbec839221a88f5b50b90674de04ec", "sha256": "cf5d5513f81d2c1c31843f9ce28f09b9d37af98db4de64ba1ea3e367355d9111" }, "downloads": -1, "filename": "lizard-ui-3.11.tar.gz", "has_sig": false, "md5_digest": "c7fbec839221a88f5b50b90674de04ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2407766, "upload_time": "2012-01-17T09:18:13", "url": "https://files.pythonhosted.org/packages/3d/81/9fcb58a51a8c8c9325745f0e90d4868db13879d450418e33ad6c883fcf07/lizard-ui-3.11.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "329c22437f990f1f0cc5750e5c8407c3", "sha256": "63e3dc3dcabe80cc130ea1c9583a6c601149af9a47370acd09798371a732485b" }, "downloads": -1, "filename": "lizard-ui-3.3.tar.gz", "has_sig": false, "md5_digest": "329c22437f990f1f0cc5750e5c8407c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2213442, "upload_time": "2011-09-05T16:16:23", "url": "https://files.pythonhosted.org/packages/b2/74/2837c14c189f63ec60231bdadc9676662fcae421d8dd660f93ee8802ea47/lizard-ui-3.3.tar.gz" } ], "3.4": [ { "comment_text": "", "digests": { "md5": "242f9dc7958d698fd00420552efb709d", "sha256": "28e7fbeeac9ea6c79f272d49682614656099ff570f21791f4bd1cac3f8c050ca" }, "downloads": -1, "filename": "lizard-ui-3.4.tar.gz", "has_sig": false, "md5_digest": "242f9dc7958d698fd00420552efb709d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2216313, "upload_time": "2011-09-23T16:41:13", "url": "https://files.pythonhosted.org/packages/e7/4d/a095ecd35d348de221d60b458f738c49cb6d409f27b126b183825b8b494b/lizard-ui-3.4.tar.gz" } ], "3.5": [ { "comment_text": "", "digests": { "md5": "089216d1c2ce91eebec044e6a613b102", "sha256": "6352202193269fed3de6f107bb0d044180f947e9899e4d50662df233b8132e77" }, "downloads": -1, "filename": "lizard-ui-3.5.tar.gz", "has_sig": false, "md5_digest": "089216d1c2ce91eebec044e6a613b102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2377086, "upload_time": "2011-10-19T12:27:08", "url": "https://files.pythonhosted.org/packages/c4/89/a57e7e84e1510e94dd5d68e8f5f69cc07a1415c4705c6fc5723c69b0502e/lizard-ui-3.5.tar.gz" } ], "3.6": [ { "comment_text": "", "digests": { "md5": "5f2d67a766b856ef3d4ac3c070d112b6", "sha256": "8fbf14e3cc2e9af87ae88e2a8243afcc128017435f0bb45dd16989d723994af9" }, "downloads": -1, "filename": "lizard-ui-3.6.tar.gz", "has_sig": false, "md5_digest": "5f2d67a766b856ef3d4ac3c070d112b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2377112, "upload_time": "2011-10-28T17:11:07", "url": "https://files.pythonhosted.org/packages/86/6d/c2d80d3769cc77a9f8970d58f52c0f4ec45c189d4a0aa04035197a443661/lizard-ui-3.6.tar.gz" } ], "3.7": [ { "comment_text": "", "digests": { "md5": "244190f089649c15a25bd4f7b03f3ecd", "sha256": "0a57ce5bdf05d5f16542205ccdc27a11d4f073c4850aa97eb0d8441d8e65d12c" }, "downloads": -1, "filename": "lizard-ui-3.7.tar.gz", "has_sig": false, "md5_digest": "244190f089649c15a25bd4f7b03f3ecd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2404161, "upload_time": "2011-11-08T11:27:28", "url": "https://files.pythonhosted.org/packages/04/ed/36aea0df5328a43326cd6223a470216e12a9b44275239fab1ea5c7e9407c/lizard-ui-3.7.tar.gz" } ], "4.0a1": [ { "comment_text": "", "digests": { "md5": "32ebe8a33178d21477bcea22ecb01938", "sha256": "9c05dad34a29809f905edfe2c12a48f6a30f3f337a6564953aba0b7f12c75eb0" }, "downloads": -1, "filename": "lizard-ui-4.0a1.tar.gz", "has_sig": false, "md5_digest": "32ebe8a33178d21477bcea22ecb01938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2930545, "upload_time": "2012-05-18T14:37:43", "url": "https://files.pythonhosted.org/packages/b7/d6/3cbc72ab09f76f228b7cb4fa6a4012e2d0b1f391bbe0fdc47b97af4edae7/lizard-ui-4.0a1.tar.gz" } ], "4.0a2": [ { "comment_text": "", "digests": { "md5": "9f4d870d3ff2909918eb6f3e317bc45b", "sha256": "69ad158aa18588557eebfcc0eac02b27265c63404b41379d51b8f1462473ee4c" }, "downloads": -1, "filename": "lizard-ui-4.0a2.tar.gz", "has_sig": false, "md5_digest": "9f4d870d3ff2909918eb6f3e317bc45b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2930483, "upload_time": "2012-05-18T16:15:52", "url": "https://files.pythonhosted.org/packages/e5/c7/8e274be4275ccde95fe0f7219571bfc1a4f3be9e361fc531729b37e20ec3/lizard-ui-4.0a2.tar.gz" } ], "4.0b1": [ { "comment_text": "", "digests": { "md5": "2f0916897f09a507d94881a3292f3dc4", "sha256": "a36e673641419e4d0c088eed53c6b41f3ae500a5d4d1ade793738a4eb5e4cd77" }, "downloads": -1, "filename": "lizard-ui-4.0b1.tar.gz", "has_sig": false, "md5_digest": "2f0916897f09a507d94881a3292f3dc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2932650, "upload_time": "2012-05-29T11:39:58", "url": "https://files.pythonhosted.org/packages/d9/32/de29908fdf1ed6ce551df9b1d0a951888ff205d69bcfff8325d52adad85b/lizard-ui-4.0b1.tar.gz" } ], "4.0b4": [ { "comment_text": "", "digests": { "md5": "5491e148cd6e45387e49f8ca7b3ca330", "sha256": "bc5a8e315492dd8b772e3a5a8bb9065f03b025f003cbf37795738064d1c46dc3" }, "downloads": -1, "filename": "lizard-ui-4.0b4.tar.gz", "has_sig": false, "md5_digest": "5491e148cd6e45387e49f8ca7b3ca330", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2985050, "upload_time": "2012-06-01T16:12:14", "url": "https://files.pythonhosted.org/packages/97/af/efd0283ad34ae748dc072786e19fc85f409f4b95fc7ea1665d476e218409/lizard-ui-4.0b4.tar.gz" } ], "4.1": [ { "comment_text": "", "digests": { "md5": "460392217e0938418a1a23f8293fc458", "sha256": "81c1702cb9e7b9b6d38c82e8ec4c4f36a61640edd097c415a5fbeca3ad988cfe" }, "downloads": -1, "filename": "lizard-ui-4.1.tar.gz", "has_sig": false, "md5_digest": "460392217e0938418a1a23f8293fc458", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2986848, "upload_time": "2012-06-28T18:01:55", "url": "https://files.pythonhosted.org/packages/c7/ad/38d69e5c15e6dc9ca725ad5628824e709a862251dce31cae0cc2f598f0ac/lizard-ui-4.1.tar.gz" } ], "4.17": [ { "comment_text": "", "digests": { "md5": "5f1af5e363e08ff6bc85c9b66289f445", "sha256": "e4f4f13454f61af45b31ce8d89ad5ed8a89175b7b8fcdb0c4970d8c0c47ae066" }, "downloads": -1, "filename": "lizard-ui-4.17.zip", "has_sig": false, "md5_digest": "5f1af5e363e08ff6bc85c9b66289f445", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3304078, "upload_time": "2013-01-28T09:06:57", "url": "https://files.pythonhosted.org/packages/28/1c/91db0976248d433659a0b676d604469d1243f3bb2359b8acea2d351ab8e0/lizard-ui-4.17.zip" } ], "4.20": [ { "comment_text": "", "digests": { "md5": "e46cce8f7417112791b7a6c02e8d565d", "sha256": "c57dad41af73b240d7380f3d1c0b4bf4e30353649fb98fdebf3039d4299a1aa2" }, "downloads": -1, "filename": "lizard-ui-4.20.zip", "has_sig": false, "md5_digest": "e46cce8f7417112791b7a6c02e8d565d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3372718, "upload_time": "2013-02-19T16:21:23", "url": "https://files.pythonhosted.org/packages/66/e9/964ce3bef692c1b819defbfcb4856efc750bb863c7708e8cd2c8074238f4/lizard-ui-4.20.zip" } ], "4.23": [ { "comment_text": "", "digests": { "md5": "ae532d565a822d602bf802e387f083e9", "sha256": "123af94cacfce20735258743e747c4a317f484716ba2f13802d0f9c5915a9d7e" }, "downloads": -1, "filename": "lizard-ui-4.23.zip", "has_sig": false, "md5_digest": "ae532d565a822d602bf802e387f083e9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3378865, "upload_time": "2013-03-19T10:42:16", "url": "https://files.pythonhosted.org/packages/86/07/dc2912db169b562720f6fb60eaf077c14e59514fdf7dd097c71b2a55606a/lizard-ui-4.23.zip" } ], "4.24": [ { "comment_text": "", "digests": { "md5": "4d31242a39920ae1c9310f3886424e7a", "sha256": "ec6cadf141109a6b1b227a0cbf45fe168eea82dbd8c72766865bfbde4b254f1b" }, "downloads": -1, "filename": "lizard-ui-4.24.zip", "has_sig": false, "md5_digest": "4d31242a39920ae1c9310f3886424e7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3379033, "upload_time": "2013-03-19T15:34:33", "url": "https://files.pythonhosted.org/packages/93/3a/2676637468203331bf6fbff55e8873371c2ad361bb413655bab02ac8d428/lizard-ui-4.24.zip" } ], "4.25": [ { "comment_text": "", "digests": { "md5": "32495044ee272fbaebfb5b92696e2311", "sha256": "310d0bda2e087337b249733222776a6fc3cffb20241af56e8e087ac353c859ba" }, "downloads": -1, "filename": "lizard-ui-4.25.zip", "has_sig": false, "md5_digest": "32495044ee272fbaebfb5b92696e2311", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3379513, "upload_time": "2013-04-03T15:05:53", "url": "https://files.pythonhosted.org/packages/db/b3/1a6ff9da4dfb900ac5a0b06e07e3e7ee02a581112b78f5aff25ca03de2b8/lizard-ui-4.25.zip" } ], "4.25.1": [ { "comment_text": "", "digests": { "md5": "353ee665cbe12de1fcc452298868f741", "sha256": "9c6540ae291c7f27166c456706433190d6fce6c617b6bc12645c1c3c4370245d" }, "downloads": -1, "filename": "lizard-ui-4.25.1.zip", "has_sig": false, "md5_digest": "353ee665cbe12de1fcc452298868f741", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3381910, "upload_time": "2013-04-04T09:13:14", "url": "https://files.pythonhosted.org/packages/b4/6a/a1d9ab521c0ae28f2f2bf78d7ab1699fd3951ea819e360cc5d4238e63f87/lizard-ui-4.25.1.zip" } ], "4.29": [ { "comment_text": "", "digests": { "md5": "a03403ebc48208cb3cac07727200763f", "sha256": "199b9e5606916950f85e731ed4d7f7a9e313028a8d6f73d2fbd030939fcaa2ff" }, "downloads": -1, "filename": "lizard-ui-4.29.zip", "has_sig": false, "md5_digest": "a03403ebc48208cb3cac07727200763f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3493732, "upload_time": "2013-05-23T20:39:26", "url": "https://files.pythonhosted.org/packages/70/64/1ed255d8a7a472cdf940f63af5c6cd53f1a039f4d76b0f63a855b4bd481a/lizard-ui-4.29.zip" } ], "4.29.1": [ { "comment_text": "", "digests": { "md5": "66034467d46bf53b4f055061fc4e9356", "sha256": "d35efc1814901b2b03676caad085a23cff110dfe21f805ea6e5b845da7fc3d89" }, "downloads": -1, "filename": "lizard-ui-4.29.1.zip", "has_sig": false, "md5_digest": "66034467d46bf53b4f055061fc4e9356", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3496245, "upload_time": "2013-05-23T21:46:31", "url": "https://files.pythonhosted.org/packages/4c/fc/3ee64f6ecfb59060f528f468a9824560bb988f1c9f2c61808ebe285538bc/lizard-ui-4.29.1.zip" } ], "4.29.3": [ { "comment_text": "", "digests": { "md5": "927bdbeeb8580559b7bbc5126828ac52", "sha256": "cf3d93a1ee252da350805b0032ce926aab11c1bac198d889ef25469cad37addf" }, "downloads": -1, "filename": "lizard-ui-4.29.3.zip", "has_sig": false, "md5_digest": "927bdbeeb8580559b7bbc5126828ac52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3496360, "upload_time": "2013-06-11T20:34:33", "url": "https://files.pythonhosted.org/packages/34/19/4118038705727be9f2cf78089af3ff356f0340d7650c641287bf7db8742b/lizard-ui-4.29.3.zip" } ], "5.0": [ { "comment_text": "", "digests": { "md5": "17c2b4986163d4eff0599eec9eadaccf", "sha256": "e643bb10a429939ca4018b5a129f7dfb7303c29b969bedf5d7e4f70b3ad884d1" }, "downloads": -1, "filename": "lizard-ui-5.0.zip", "has_sig": false, "md5_digest": "17c2b4986163d4eff0599eec9eadaccf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8436672, "upload_time": "2014-12-15T19:34:12", "url": "https://files.pythonhosted.org/packages/54/11/41191347eac0635c512e983c21a47e1f4354e30a7accbd6f3e992b045564/lizard-ui-5.0.zip" } ], "5.1": [ { "comment_text": "", "digests": { "md5": "9423c73e8362395df5220af39dd51e9c", "sha256": "943445e329f27f12336d5eca419921c6837a578fb0006a2e970126e4717f04f9" }, "downloads": -1, "filename": "lizard-ui-5.1.tar.gz", "has_sig": false, "md5_digest": "9423c73e8362395df5220af39dd51e9c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7714834, "upload_time": "2015-03-31T07:33:26", "url": "https://files.pythonhosted.org/packages/04/df/6312303cce7f69b305eef0821749b4511941f68919601eaf3fab7d6e541b/lizard-ui-5.1.tar.gz" } ], "5.1.1": [ { "comment_text": "", "digests": { "md5": "67985bd07cb0662c0fd421113526dfd6", "sha256": "d9e01dc8d310b14decf957cbfbbc6de475e3263e8319f597cc8fa02dea8e39a0" }, "downloads": -1, "filename": "lizard-ui-5.1.1.tar.gz", "has_sig": false, "md5_digest": "67985bd07cb0662c0fd421113526dfd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715142, "upload_time": "2015-03-31T09:09:32", "url": "https://files.pythonhosted.org/packages/30/1d/87e9f58206c8d6308dab17299cd8aa3005084cfaf2c20521870b25d89ee1/lizard-ui-5.1.1.tar.gz" } ], "5.2": [ { "comment_text": "", "digests": { "md5": "9e1193a3931dfd433eccb638da9764da", "sha256": "2b16c639d3a1c2ed09d4a3f22a2a1b2841236c2643d99c00cf1a94dedd074b7a" }, "downloads": -1, "filename": "lizard-ui-5.2.tar.gz", "has_sig": false, "md5_digest": "9e1193a3931dfd433eccb638da9764da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715808, "upload_time": "2015-10-08T12:07:34", "url": "https://files.pythonhosted.org/packages/80/52/7e70fd5f8a995152ea380cb9e451587c166fac9fcc2113d093807fd3c826/lizard-ui-5.2.tar.gz" } ], "5.3": [ { "comment_text": "", "digests": { "md5": "aea1b936c24540157d973c7d2ad7a379", "sha256": "a7919692ba0067657297562342c97a2028c55cf9c0729f2991fc4a0f01167f93" }, "downloads": -1, "filename": "lizard-ui-5.3.tar.gz", "has_sig": false, "md5_digest": "aea1b936c24540157d973c7d2ad7a379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715990, "upload_time": "2015-10-08T14:24:13", "url": "https://files.pythonhosted.org/packages/37/36/0c2e0734d00fb461e6ed55d1369738e7245371d42a7ea816e7f53f413fe2/lizard-ui-5.3.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "aea1b936c24540157d973c7d2ad7a379", "sha256": "a7919692ba0067657297562342c97a2028c55cf9c0729f2991fc4a0f01167f93" }, "downloads": -1, "filename": "lizard-ui-5.3.tar.gz", "has_sig": false, "md5_digest": "aea1b936c24540157d973c7d2ad7a379", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7715990, "upload_time": "2015-10-08T14:24:13", "url": "https://files.pythonhosted.org/packages/37/36/0c2e0734d00fb461e6ed55d1369738e7245371d42a7ea816e7f53f413fe2/lizard-ui-5.3.tar.gz" } ] }