{ "info": { "author": "Thomas Jetzinger", "author_email": "thomas@jetzinger.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Internet :: WWW/HTTP :: WSGI", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=================\nmezzanine-recipes\n=================\n\nThis plugin gives you a \"Recipe\" blog post type for your Mezzanine sites.\n\nFeatures\n========\n\n* Embed an image of the meal\n* Provide an ingredient list\n* Let your visitors add a comment and rating to recipes\n* The usual stuff - ingredients, times, categories\n* REST-API for external applications\n\nInstallation\n============\n\n* Run ``pip install mezzanine-recipes`` (or, if you want to hack on mezzanine-recipes, clone it and run ``pip install -e path/to/repo``)\n* Create a Mezzanine CMS project\n* Add ``\"mezzanine_recipes\"`` followed by ``\"tastypie\"`` on top of your ``INSTALLED_APPS``\n* Migrate your database with ``python manage.py migrate mezzanine_recipes``\n* Install fixtures with ``python manage.py loaddata mezzanine_required.json``\n* To enable Recipe-Blog and REST API put following code to your urls.py::\n\n from mezzanine.conf import settings\n from tastypie.api import Api\n from mezzanine_recipes.api import *\n\n v1_api = Api(api_name='v1')\n v1_api.register(CategoryResource())\n v1_api.register(KeywordResource())\n v1_api.register(AssignedKeywordResource())\n v1_api.register(PostResource())\n v1_api.register(RecipeResource())\n v1_api.register(BlogPostResource())\n v1_api.register(IngredientResource())\n v1_api.register(WorkingHoursResource())\n v1_api.register(CookingTimeResource())\n v1_api.register(RestPeriodResource())\n v1_api.register(CommentResource())\n v1_api.register(RatingResource())\n\n urlpatterns = patterns(\"\",\n (\"^api/\", include(v1_api.urls)),\n (\"^%s/\" % settings.BLOG_SLUG, include(\"mezzanine_recipes.urls\")),\n ...\n\n* Look at http://www.robertstevens.org/mezzanine-recipes.html if you need a much more detailed installation instruction\n \n\nUsage\n=====\n\nmezzanine-recipe provides the blog post type \"Recipe\". The Recipe blog post type represents a single recipe.\n\nCreate a Recipe blog post in the Mezzanine admin (naming it something like \"Recipe\").\n\nCreating Templates\n==================\n\nThe template for the Recipe List can be found at ``templates/recipe/recipe_list.html`` and for a Recipe Blog Post at ``templates/recipe/recipe_detail.html``.\n\nThe Recipe object is available at ``mezzanine_recipes.models.recipe``. It has the following properties:\n\n* Periods and times: *WorkingHours*, *CookingTime*, *RestPeriod*\n* Cooking info: *ingredients*, *portions*, *difficulty*, *categories*\n* Text data: *title*, *summary*, *content*, *comments*, *ratings*\n\nTo Do\n=====\n\n* Implement some tests\n* Add single cooking steps to Recipe", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tjetzinger/mezzanine-recipes", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "mezzanine-recipes", "package_url": "https://pypi.org/project/mezzanine-recipes/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/mezzanine-recipes/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/tjetzinger/mezzanine-recipes" }, "release_url": "https://pypi.org/project/mezzanine-recipes/1.0.0/", "requires_dist": null, "requires_python": null, "summary": "Recipe blog posts for Mezzanine CMS", "version": "1.0.0" }, "last_serial": 794755, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "37b4ca5811559cd60eb1f3102505dc60", "sha256": "9f1570ddc6f4539949e5aa8a598c2ef74bc4358be3d26094c8cd48a2cc8cf6b4" }, "downloads": -1, "filename": "mezzanine-recipes-1.0.0.tar.gz", "has_sig": false, "md5_digest": "37b4ca5811559cd60eb1f3102505dc60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24972, "upload_time": "2013-02-21T23:36:46", "url": "https://files.pythonhosted.org/packages/e0/75/3f041edbead6ff3981c6e58643c5113088cbb9e7c4de8e26b29911a34c4a/mezzanine-recipes-1.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "37b4ca5811559cd60eb1f3102505dc60", "sha256": "9f1570ddc6f4539949e5aa8a598c2ef74bc4358be3d26094c8cd48a2cc8cf6b4" }, "downloads": -1, "filename": "mezzanine-recipes-1.0.0.tar.gz", "has_sig": false, "md5_digest": "37b4ca5811559cd60eb1f3102505dc60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24972, "upload_time": "2013-02-21T23:36:46", "url": "https://files.pythonhosted.org/packages/e0/75/3f041edbead6ff3981c6e58643c5113088cbb9e7c4de8e26b29911a34c4a/mezzanine-recipes-1.0.0.tar.gz" } ] }