{ "info": { "author": "David Thenon", "author_email": "sveetch@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Framework :: Django :: 1.7", "Framework :: Django :: 1.8", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. _Django: https://www.djangoproject.com/\n.. _South: http://south.readthedocs.org/en/latest/\n.. _autobreadcrumbs: https://github.com/sveetch/autobreadcrumbs\n.. _django-braces: https://github.com/brack3t/django-braces/\n.. _rstview: https://github.com/sveetch/rstview\n.. _Django-CodeMirror: https://github.com/sveetch/djangocodemirror\n.. _django-crispy-forms: https://github.com/maraujop/django-crispy-forms\n.. _crispy-forms-foundation: https://github.com/sveetch/crispy-forms-foundation\n.. _Arrow: https://github.com/crsmithdev/arrow\n\nIntroduction\n============\n\nDjango datebook is.. a datebook !\n\nThis aims to manage user datebooks by months. A datebook contain day entries where you can add details, start and stop working hours, vacation, etc..\n\nThis does not aims to reproduce some advanced apps like Google calendar or alike, datebook is simple and will have a particular workflow for our needs at `Emencia `_.\n\n\nLinks\n*****\n\n* Download his `PyPi package `_;\n* Clone it on his `Github repository `_;\n\nRequires\n********\n\n* `Django`_ >=1.7, <1.8;\n* `autobreadcrumbs`_ >= 1.0, <2.0.0;\n* `django-braces`_ >= 1.2.0,<1.4;\n* `crispy-forms-foundation`_ >= 0.5.3;\n* `Arrow`_;\n\n\nOptionnally\n***********\n\n* If you want to use the shipped *Text markup* integration :\n\n * `rstview`_ >= 0.2, <0.4.0;\n * `Django-CodeMirror`_ >= 0.9.7, <1.0.0;\n\n`South`_ usage has been dropped in favor of Django migrations;\n\nInstall\n=======\n\nInstall it from PyPi: ::\n\n pip install django-datebook\n\nAdd it to your installed apps in settings : ::\n\n INSTALLED_APPS = (\n ...\n 'django_assets',\n 'crispy_forms',\n 'crispy_forms_foundation',\n 'autobreadcrumbs',\n 'datebook',\n ...\n )\n\nAppend context processor in settings : ::\n\n TEMPLATE_CONTEXT_PROCESSORS = (\n ...\n 'autobreadcrumbs.context_processors.AutoBreadcrumbsContext',\n ...\n )\n\nAdd required settings (into your project settings):\n\n.. sourcecode:: python\n\n # Add 'foundation-5' layout pack\n CRISPY_ALLOWED_TEMPLATE_PACKS = ('bootstrap', 'uni_form', 'bootstrap3', 'foundation-5')\n # Default layout to use with \"crispy_forms\"\n CRISPY_TEMPLATE_PACK = 'foundation-5'\n\n from datebook.settings import *\n\n(Also you can override some of its settings, see ``datebook.settings`` for more details).\n\nThen in your ``urls.py`` : ::\n\n from django.conf.urls import patterns, include, url\n import autobreadcrumbs\n autobreadcrumbs.autodiscover()\n\n urlpatterns = patterns('',\n url(r'^datebook/', include('datebook.urls', namespace='datebook')),\n )\n\nFinally you will need to read Django-datebook templates to know about required\ntemplate blocks and inheritance in your project templates.\n\nText markup\n***********\n\nDefault behavior configured in settings is to not use any Markup syntax usage.\n\nBut if you want you can configure some settings to use a Markup syntax renderer and a form field to use a specific editor.\n\nThis can be done with the following settings:\n\n.. sourcecode:: python\n\n # Text markup renderer\n DATEBOOK_TEXT_MARKUP_RENDER = None # Default, no renderer\n\n # Field helper for texts in forms\n DATEBOOK_TEXT_FIELD_HELPER_PATH = None # Default, just a CharField\n\n # Template to init some Javascript for texts in forms\n DATEBOOK_TEXT_FIELD_JS_TEMPLATE = None # Default, no JS template\n\n # Validator helper for texts in forms\n DATEBOOK_TEXT_VALIDATOR_HELPER_PATH = None # Default, no markup validation\n\nThey are the default values in the datebook settings.\n\nExplanations\n------------\n\n**DATEBOOK_TEXT_FIELD_HELPER_PATH**\n a function that will be used to define a form field to use for text.\n\n Signature is ``get_text_field(form_instance, **kwargs)`` where:\n\n * ``form_instance`` is the Form instance where it will be used from;\n * ``kwargs`` is a dict containing all default named arguments to give to the field. These default arguments are ``label`` for the field label name and ``required`` that is ``True`` (you should never change this);\n\n This should return an instanciated form field that must act as a ``CharField``.\n\n**DATEBOOK_TEXT_VALIDATOR_HELPER_PATH**\n\n A function that will be used to clean value on the form field text;\n\n Signature is ``clean_restructuredtext(form_instance, content)`` where:\n\n * ``form_instance`` is the Form instance where it will be used from;\n * ``content`` is the value to validate;\n\n Act like a Django form field cleaner method, this should return the cleaned value and eventually raise a validation error if needed.\n\n**DATEBOOK_TEXT_MARKUP_RENDER_TEMPLATE**\n\n A template to include to render text value with some markup syntax. It will have access to the page context with an additional value named ``content`` that will be the text to render;\n\n**DATEBOOK_TEXT_FIELD_JS_TEMPLATE**\n\n A template to include with forms when your custom form field require some Javascript to initialize it. It will have access to page context with an additional value named ``field`` that will be the targeted form field;\n\nAll these settings are only used with forms and template managing ``Datebook.notes`` and ``DayBase.content`` models attributes.\n\nExample\n-------\n\nThere are the settings to use the shipped Markup syntax renderer and editor, disabled by default but that you can easily enable in your settings:\n\n.. sourcecode:: python\n\n # Field helper for texts in forms\n DATEBOOK_TEXT_FIELD_HELPER_PATH = \"datebook.markup.get_text_field\" # Use DjangoCodeMirror\n\n # Validator helper for texts in forms\n DATEBOOK_TEXT_VALIDATOR_HELPER_PATH = \"datebook.markup.clean_restructuredtext\" # Validation for RST syntax (with Rstview)\n\n # Template to init some Javascript for texts in forms\n DATEBOOK_TEXT_FIELD_JS_TEMPLATE = \"datebook/markup/_text_field_djangocodemirror_js.html\" # Use DjangoCodeMirror\n\n # Text markup renderer\n DATEBOOK_TEXT_MARKUP_RENDER_TEMPLATE = \"datebook/markup/_text_markup_render.html\" # Use Rstview renderer\n\nRead their source code to see how they work in detail.\n\n.. warning:: Before enabling these settings you must install `rstview`_ and `Django-CodeMirror`_, see optional requirements to have the right versions to install.\n\nUsage\n=====\n\n**Datebooks are monthly** so each datebook object represents a unique month for a specific year. And **datebook contains day entries** where you can fill start and stop time, eventually the pause time and some optional text content to describe day activities.\n\nFor day entries, **start and stop time represents times for starting and ending work**, they will determine the worked time for the day.\n\n**Pause time represents the time that was not worked between start/stop time** and so will be substracted from the total worked time.\n\n**Overtime represents the extra time that is over the working hours**, it does not affect the worked time.\n\nDay entries can be marked as *vacation*, **vacated days will never be used to calculate the total worked time** for the month and their content is hided if any.\n\nAlso, future days (days that are bigger or equal to the current day) are not used to calculate month totals (worked hours, overtime and vacations).\n\nPermissions\n***********\n\nAt least to access to datebook views, users have to be logged in, there is no anonymous access.\n\nBasic users can see all datebooks and can read their day entries, but they can't add or edit datebooks that they don't own and quite naturally they can't add/edit day entries only on their own datebooks.\n\nFor admin management there is some available permissions :\n\n* 'Can add datebook' : used to create datebook for any user;\n* 'Can change datebook' : used to edit datebook for any user;\n* 'Can add day entry' : used to create day entries for any user's datebook;\n* 'Can change day entry' : used to change day entries for any user's datebook;\n\nPermission level object (like with django-guardian) is not planned because the goal is not to share datebook between users. Only datebook owner should edit its entry and all datebook are visible for any logged users, because a team should be aware of everyone datebooks.\n\nDay models\n**********\n\nOften you would need to repeatedly fill your days with the approximately same content and so to avoid this there is *Day models*.\n\nYou can create a *Day model* from an existing day in your calendars, its content will be saved as a model and then you can use it to fill any another days in your calendar.\n\nYou can have multiple models, but they are allways for an unique user, models are not shareable through other users.\n\nTo fill days with a model, just go into a month calendar, open the models menu, select the day to fill, select the model to use and submit, existing days will be overwrited with model contents and empty selected days will be created with the model contents.\n\nWhen filling days, default behavior does not use the model content text to fill the days, use the checkbox within the assignment form to use it.\n\nCredits\n=======\n\nCollaborators\n * `slothyrulez `_ for Spanish translation;\nFor the \"Sun umbrella\" icon in webfont\n Icon made by `Freepik `_ from `www.flaticon.com `_ is licensed under `CC BY 3.0 `_.\nOther icons in webfont\n Comes from various sets on `IcoMoon `_.", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/django-datebook", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "django-datebook", "package_url": "https://pypi.org/project/django-datebook/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-datebook/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/django-datebook" }, "release_url": "https://pypi.org/project/django-datebook/1.2.0/", "requires_dist": null, "requires_python": "", "summary": "A Django application to manage users Datebooks", "version": "1.2.0" }, "last_serial": 2448129, "releases": { "0.1.3": [ { "comment_text": "", "digests": { "md5": "c942dc061adb261244adf32c5d6917f1", "sha256": "d19f929ae9fc62840a2acf751c6945bba5693fe6f0e8b66d3ab574f70997692f" }, "downloads": -1, "filename": "django-datebook-0.1.3.tar.gz", "has_sig": false, "md5_digest": "c942dc061adb261244adf32c5d6917f1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10198, "upload_time": "2014-08-27T23:46:17", "url": "https://files.pythonhosted.org/packages/59/93/0947271fe21fae832b810b89bff8b675660c952fc0829b494ca2100e2074/django-datebook-0.1.3.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "da31f22e80c8004daf9b97ba3b0256b6", "sha256": "248afec13cf8da416ed16d7c678aa0ac59ce568c45f86b43624f14c46f634ee5" }, "downloads": -1, "filename": "django-datebook-0.2.3.tar.gz", "has_sig": false, "md5_digest": "da31f22e80c8004daf9b97ba3b0256b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17732, "upload_time": "2014-09-04T01:24:07", "url": "https://files.pythonhosted.org/packages/32/ae/207add7d049ff797fcc20c50862628a7c560654172af55f2700a62f6031f/django-datebook-0.2.3.tar.gz" } ], "0.2.4": [ { "comment_text": "", "digests": { "md5": "6f22e714b1bedaf1e04e8f0fae9c80ec", "sha256": "26af324d50367ed90d4990a75852e8bc36c2f1f8cce6ae14f2b68a6df73512b5" }, "downloads": -1, "filename": "django-datebook-0.2.4.tar.gz", "has_sig": false, "md5_digest": "6f22e714b1bedaf1e04e8f0fae9c80ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17991, "upload_time": "2014-09-05T14:21:07", "url": "https://files.pythonhosted.org/packages/d9/f2/f76d28a6f5da05ea79d5a304d4898348b16575cc0c91ea95d53768542bcc/django-datebook-0.2.4.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "151c3cea665c257a7bfc6c7fc85f5433", "sha256": "8e6d418c03d8d103cbbb4f3eaea37446e164b0b211c1046a95ab6631e704ee06" }, "downloads": -1, "filename": "django-datebook-0.2.5.tar.gz", "has_sig": false, "md5_digest": "151c3cea665c257a7bfc6c7fc85f5433", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64671, "upload_time": "2014-09-05T14:30:58", "url": "https://files.pythonhosted.org/packages/6a/67/e9b718757cde1fa16ee5d739dfd87afccfee19b3b1cac7ee33da6371a644/django-datebook-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "4bf2e42166723d44481ea2414178f1eb", "sha256": "6cc6257c629b2410f81701abb821aacf4142abdf108238d46d1c85f14bdd20ad" }, "downloads": -1, "filename": "django-datebook-0.2.6.tar.gz", "has_sig": false, "md5_digest": "4bf2e42166723d44481ea2414178f1eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64676, "upload_time": "2014-09-05T14:37:15", "url": "https://files.pythonhosted.org/packages/dc/f1/262a69318cd4d438ca9812e0caaedd4dbd89a18c7298c766f5c556a7986b/django-datebook-0.2.6.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "5f573ae8e8a74fcdd196619e80add181", "sha256": "c954a58110abefbfe7bc10f6854898d3695af6d37b290b844a480233663897f1" }, "downloads": -1, "filename": "django-datebook-0.3.tar.gz", "has_sig": false, "md5_digest": "5f573ae8e8a74fcdd196619e80add181", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65331, "upload_time": "2014-09-08T10:33:10", "url": "https://files.pythonhosted.org/packages/a9/b7/87fdd7eeeefc7f4c58d8753c8ceb6e5cf88e83efbe4a9ecf4b2641cbbada/django-datebook-0.3.tar.gz" } ], "0.3.5": [ { "comment_text": "", "digests": { "md5": "e3412541a02ca8988973ba05aee58460", "sha256": "3c905c44e08bd60c2aef4e9ed454fddfd9fe6a736f0becb8043f37a7d2081ec7" }, "downloads": -1, "filename": "django-datebook-0.3.5.tar.gz", "has_sig": false, "md5_digest": "e3412541a02ca8988973ba05aee58460", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67352, "upload_time": "2014-09-16T01:07:52", "url": "https://files.pythonhosted.org/packages/51/03/f60e925f90b71dc08d894fddf376cf10e3f1361468e75f8fea9fde526d55/django-datebook-0.3.5.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "d3cb07b0d12563b7cc2f4353b6d62bc8", "sha256": "3d418c6957c57c9c61aab39da540154b05e966a7b4030650e407bb5fa9ee4bc7" }, "downloads": -1, "filename": "django-datebook-0.4.tar.gz", "has_sig": false, "md5_digest": "d3cb07b0d12563b7cc2f4353b6d62bc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 71698, "upload_time": "2014-09-18T02:07:06", "url": "https://files.pythonhosted.org/packages/7c/a8/edc370b38e77919f2c5c95d7917f95b992e16e13ee6f6a63a18f5c8f23bb/django-datebook-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "9c0f60e228f549e7a00ecaa12e5a5701", "sha256": "ad221446bb41af026f6a1278f806e2f711186ef1b31828f2fe9f585887d712a3" }, "downloads": -1, "filename": "django-datebook-0.5.tar.gz", "has_sig": false, "md5_digest": "9c0f60e228f549e7a00ecaa12e5a5701", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74509, "upload_time": "2014-09-21T12:47:29", "url": "https://files.pythonhosted.org/packages/03/56/490c5b03d39ef049c0ce413b73efb821898399f2e64f13762a751f22dab0/django-datebook-0.5.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "ab859edf7aa37f00a9d749bda8a6e1a8", "sha256": "3c67fa0b8416cbb38b8488b9953382afa2519f3620dab6bbbd0569c278781dca" }, "downloads": -1, "filename": "django-datebook-0.5.1.tar.gz", "has_sig": false, "md5_digest": "ab859edf7aa37f00a9d749bda8a6e1a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 74762, "upload_time": "2014-09-21T14:54:48", "url": "https://files.pythonhosted.org/packages/df/f6/1cb1d52a4a6ad1381abc858769a1139507b1b47fd288f80586e11d26cb23/django-datebook-0.5.1.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "d61c143d0c213de655eb6cc59977e081", "sha256": "45c370a7d5dbcd0997b8ab95df8c788bdfd023fad419e22a87e09794291e8fb4" }, "downloads": -1, "filename": "django-datebook-0.6.tar.gz", "has_sig": false, "md5_digest": "d61c143d0c213de655eb6cc59977e081", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75418, "upload_time": "2014-09-22T01:34:33", "url": "https://files.pythonhosted.org/packages/25/6e/b8fac4a8c2dd500df60b514810ea49d897b6721b271f3a540608b61f58f9/django-datebook-0.6.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "bec32f4617d453c4c83e654258bab034", "sha256": "60bc48f41565b6b3547d2ea492d9734c7a5896d7908a31edbfb8c1a14c5edc50" }, "downloads": -1, "filename": "django-datebook-0.6.1.tar.gz", "has_sig": false, "md5_digest": "bec32f4617d453c4c83e654258bab034", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75612, "upload_time": "2014-09-22T01:58:23", "url": "https://files.pythonhosted.org/packages/be/2f/479028b4385893ee3793e51f3718957e85d1c1105e6f41d894d8d262571f/django-datebook-0.6.1.tar.gz" } ], "0.6.2": [ { "comment_text": "", "digests": { "md5": "95b3d95e3c3cc489662a317f547f8c3c", "sha256": "a1228d288885fdade4501fab05b30e9af30c6ee570a46028bd4f624c54e258a1" }, "downloads": -1, "filename": "django-datebook-0.6.2.tar.gz", "has_sig": false, "md5_digest": "95b3d95e3c3cc489662a317f547f8c3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75837, "upload_time": "2014-09-23T01:37:25", "url": "https://files.pythonhosted.org/packages/5c/ac/88dc5bcbb8374c244153e2c722f45904261b6369576db92b0d3f74c756ed/django-datebook-0.6.2.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "a1f474de45fe190f9d2d6cdb010faa60", "sha256": "cc4fd9d725a4f7fb4c466884773a8580103e50d8b5fa3284d62c873ee68606b1" }, "downloads": -1, "filename": "django-datebook-0.7.tar.gz", "has_sig": false, "md5_digest": "a1f474de45fe190f9d2d6cdb010faa60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76527, "upload_time": "2014-09-24T03:05:39", "url": "https://files.pythonhosted.org/packages/39/cd/29945679002b576bc60be67301a9e27be1f4fbbae27e4a7d1c7420229bec/django-datebook-0.7.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "785f2ab936195c26e878ef598c0e148a", "sha256": "036a483730e9cc661a4b765da5081baff1e5fcf9c430b3b7911fc560133ab5ac" }, "downloads": -1, "filename": "django-datebook-0.7.1.tar.gz", "has_sig": false, "md5_digest": "785f2ab936195c26e878ef598c0e148a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 76815, "upload_time": "2014-12-06T20:15:36", "url": "https://files.pythonhosted.org/packages/7c/89/10fb45304fb56bbe7791aac86a9f5406f7b94677af2c772b6caf7dc10af5/django-datebook-0.7.1.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "855bc4a3f5f5c79ee858c65f55cf8546", "sha256": "0bcb5b9c42e0ace816e5e49bfa4938c9260e539fcf52224319cf5060e2959de1" }, "downloads": -1, "filename": "django-datebook-0.8.tar.gz", "has_sig": false, "md5_digest": "855bc4a3f5f5c79ee858c65f55cf8546", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80933, "upload_time": "2014-12-18T01:01:18", "url": "https://files.pythonhosted.org/packages/67/c6/eeeb64c7beedaa0fb6174eabe5e2ac4f3409eb1a5ad8744fc515a331d763/django-datebook-0.8.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "71bf2bdeb15df3d053257be079b11176", "sha256": "fa1a0994eb972ff076d1114d30e177603c6e5a4a49756de78b17076d166339ce" }, "downloads": -1, "filename": "django-datebook-0.8.3.tar.gz", "has_sig": false, "md5_digest": "71bf2bdeb15df3d053257be079b11176", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91982, "upload_time": "2014-12-21T12:02:36", "url": "https://files.pythonhosted.org/packages/c9/08/8d8a1b6716eedd3c34c7c9e3f58dec0c9f9a85fd27851a5a8e4b6a389e95/django-datebook-0.8.3.tar.gz" } ], "0.8.4": [ { "comment_text": "", "digests": { "md5": "c6cf7a9e5b414c436b8a6eb637f41542", "sha256": "8465cd4963279e67deb9bbe4817c33c4f37e182158a75fe6fb4a5e5139fa2753" }, "downloads": -1, "filename": "django-datebook-0.8.4.tar.gz", "has_sig": false, "md5_digest": "c6cf7a9e5b414c436b8a6eb637f41542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92130, "upload_time": "2015-01-08T00:07:28", "url": "https://files.pythonhosted.org/packages/cf/57/96e8e6c83aa7da396003425a48be8e41bdcd6fb9a23e776e3304cbc0513f/django-datebook-0.8.4.tar.gz" } ], "0.8.5": [ { "comment_text": "", "digests": { "md5": "266b8821693c8c36dacee8be8ff61da1", "sha256": "a585f2bde67ac40d221d1098680fb3253f9e60ac5db1ffea243b0a555f15f58b" }, "downloads": -1, "filename": "django-datebook-0.8.5.tar.gz", "has_sig": false, "md5_digest": "266b8821693c8c36dacee8be8ff61da1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92458, "upload_time": "2015-01-08T01:19:40", "url": "https://files.pythonhosted.org/packages/31/5c/5059e090211ecb5e295e1a4988a148f92df4e950aef00d9ac7ffb020ddc1/django-datebook-0.8.5.tar.gz" } ], "0.8.6": [ { "comment_text": "", "digests": { "md5": "fdb3838caa38c4311091a7f48d612633", "sha256": "3019f97f984daf33c8ab8de53d2d866c821387024d69b9d3355b5560e2b991c9" }, "downloads": -1, "filename": "django-datebook-0.8.6.tar.gz", "has_sig": false, "md5_digest": "fdb3838caa38c4311091a7f48d612633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91893, "upload_time": "2015-01-11T01:02:01", "url": "https://files.pythonhosted.org/packages/c9/70/c007e26fa368ed25f73a7ae6d3f997875488069207d1457d13c29733920d/django-datebook-0.8.6.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "700752994aed1180d5f64ac77ca7bdef", "sha256": "556954b1bfc2865a69935b1a997b853841829cc7ec0d77fc16ea4f0a6890fad1" }, "downloads": -1, "filename": "django-datebook-0.8.7.tar.gz", "has_sig": false, "md5_digest": "700752994aed1180d5f64ac77ca7bdef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95522, "upload_time": "2015-01-12T01:09:16", "url": "https://files.pythonhosted.org/packages/ab/db/2cd19e4c52dbeabe97d0ef77d2b8044c9efa82e2816f0a7ce3d4aaae3c01/django-datebook-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "f13d81991022e87d163524b37c4f04ac", "sha256": "06a275880f9dffd34d4505f707bb75592ac32943eff37361811a471553655876" }, "downloads": -1, "filename": "django-datebook-0.8.8.tar.gz", "has_sig": false, "md5_digest": "f13d81991022e87d163524b37c4f04ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96188, "upload_time": "2015-01-18T00:33:52", "url": "https://files.pythonhosted.org/packages/c0/f7/d529781881179da0c942d7373509bd3b3bfef72754aed54d3bb6104e4ae5/django-datebook-0.8.8.tar.gz" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "72d334045c0d7ceb4c4be65e6b5ee38e", "sha256": "6e1b6605a60eff4e4e8ed95ad0d8766b238f44f9a25d12c571beb7435459038b" }, "downloads": -1, "filename": "django-datebook-0.9.0.tar.gz", "has_sig": false, "md5_digest": "72d334045c0d7ceb4c4be65e6b5ee38e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104469, "upload_time": "2015-01-18T21:17:27", "url": "https://files.pythonhosted.org/packages/44/9e/95e3585658d0ee63e894db936dffaa3bc2a258301b250a209c01523b968d/django-datebook-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "efb79a6206015d3ed9200e4cd7193f9e", "sha256": "eb601a38413fb1b68ca7ffcba6195423b725978d85a1d2d3e2169c2f1f9bef4c" }, "downloads": -1, "filename": "django-datebook-0.9.1.tar.gz", "has_sig": false, "md5_digest": "efb79a6206015d3ed9200e4cd7193f9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104552, "upload_time": "2015-01-25T14:00:27", "url": "https://files.pythonhosted.org/packages/d0/de/e21f4061e38b463b63c5d212d592aa30e7968f43150399d272aae78cc38a/django-datebook-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "d2db458686e7faaff7202d05dd370dfb", "sha256": "0f4eef26d5edcab68fa55fd156d6d48a610e6d3e7277ac673943e876c401f1e8" }, "downloads": -1, "filename": "django-datebook-0.9.2.tar.gz", "has_sig": false, "md5_digest": "d2db458686e7faaff7202d05dd370dfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105323, "upload_time": "2015-01-25T20:46:14", "url": "https://files.pythonhosted.org/packages/f3/bc/093fd5d13abe0d1cd651ccbeb48227e55ffba26555a45a97437173124e0a/django-datebook-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "28cb84aa642edbf5f6233969850acda3", "sha256": "3cedebbb7119f5fc219c2c1a4f99556a2af53674001b48fba702b192e956774e" }, "downloads": -1, "filename": "django-datebook-0.9.3.tar.gz", "has_sig": false, "md5_digest": "28cb84aa642edbf5f6233969850acda3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105314, "upload_time": "2015-01-25T20:52:09", "url": "https://files.pythonhosted.org/packages/07/3c/146eee2ba3ffc9d2d9ae7104647d1b93d25f50c9735eb8edd32c94f131d1/django-datebook-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "1b0be3b0f0924f3d28723ffe9cc66128", "sha256": "c1cef263b5571f37ec834a135fd11c7470f39cb21f4136fb8ac5c0abcf3bff42" }, "downloads": -1, "filename": "django-datebook-0.9.4.tar.gz", "has_sig": false, "md5_digest": "1b0be3b0f0924f3d28723ffe9cc66128", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105550, "upload_time": "2015-03-07T02:38:20", "url": "https://files.pythonhosted.org/packages/a3/e9/c391074d17dd079e87a50d0c72edd03a37d925c4d1554f57607ff8eec553/django-datebook-0.9.4.tar.gz" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "132cec178a6e5c23fd8d8e3d6cc28f65", "sha256": "00e7f1cfe16ad69fcf8258d2c498b56fb37492a0082893509c92a7bbf274676c" }, "downloads": -1, "filename": "django-datebook-0.9.5.tar.gz", "has_sig": false, "md5_digest": "132cec178a6e5c23fd8d8e3d6cc28f65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108521, "upload_time": "2015-04-27T01:38:33", "url": "https://files.pythonhosted.org/packages/57/96/4e9eafe87dd5d30d1a648fb022d6d70bb8134fefa8d9f212d55339348ecf/django-datebook-0.9.5.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "006f0ceea79803352a896ff2ed4e8f05", "sha256": "3ea6d71e03f2f9b1e550dceb939ad04cccff7f5b3e4b8373cdf7a64aabb7a373" }, "downloads": -1, "filename": "django-datebook-1.0.0.tar.gz", "has_sig": false, "md5_digest": "006f0ceea79803352a896ff2ed4e8f05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108612, "upload_time": "2016-10-24T21:51:50", "url": "https://files.pythonhosted.org/packages/58/98/a79a602b196345c2e31d6a4d98dad480bdf5b36b1fdcc10e71374b8a6664/django-datebook-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f923f53aaa1c1df6d6d2aa8eb12d8c91", "sha256": "e46f434f96c7102f835dbdc1025551864e775b7ed6ac831c40aa299a0f49b960" }, "downloads": -1, "filename": "django-datebook-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f923f53aaa1c1df6d6d2aa8eb12d8c91", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109466, "upload_time": "2016-10-26T20:22:38", "url": "https://files.pythonhosted.org/packages/ff/78/65e36ed01932e15cc6c79e1e77df0b76c8ca4216b1a16ecfb3a3cdd2473b/django-datebook-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "6afdd03dc45573cd1a1b9bc9f17bd4b3", "sha256": "90f29247e4193416dd8cf6154f0529b83040ebf587a809b30f861037f656dd29" }, "downloads": -1, "filename": "django-datebook-1.1.1.tar.gz", "has_sig": false, "md5_digest": "6afdd03dc45573cd1a1b9bc9f17bd4b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109534, "upload_time": "2016-11-07T23:59:08", "url": "https://files.pythonhosted.org/packages/a5/c6/85c6f25bb71e1ff3e7e25e7f0a051584fa653c23d64d4f26d680b05e956c/django-datebook-1.1.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "6563728d2f0536cdca74cde14d3883d1", "sha256": "1a51e822ee537ecfbc31b363b59641fb612ab1773a2061b65dc1c45251e9eb93" }, "downloads": -1, "filename": "django-datebook-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6563728d2f0536cdca74cde14d3883d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109681, "upload_time": "2016-11-08T00:12:05", "url": "https://files.pythonhosted.org/packages/b9/6d/8b00346f953cca5e0cfc8e4ea8fa13c36860872d220a577f946b39a428c2/django-datebook-1.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "6563728d2f0536cdca74cde14d3883d1", "sha256": "1a51e822ee537ecfbc31b363b59641fb612ab1773a2061b65dc1c45251e9eb93" }, "downloads": -1, "filename": "django-datebook-1.2.0.tar.gz", "has_sig": false, "md5_digest": "6563728d2f0536cdca74cde14d3883d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 109681, "upload_time": "2016-11-08T00:12:05", "url": "https://files.pythonhosted.org/packages/b9/6d/8b00346f953cca5e0cfc8e4ea8fa13c36860872d220a577f946b39a428c2/django-datebook-1.2.0.tar.gz" } ] }