Rewrite to Django from scratch. Now it's much more user-friendly. v0.2
authorW. Trevor King <wking@drexel.edu>
Thu, 4 Aug 2011 19:39:18 +0000 (15:39 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 4 Aug 2011 19:40:02 +0000 (15:40 -0400)
commit364935709467c654cc1c079212ec939438935d6f
treed0cfd030b6a4be6ec29d6ccc7310c7af17a62781
parent458baf4d02a354dab67843b6228b158d4148f2c1
Rewrite to Django from scratch.  Now it's much more user-friendly.

Bump to version 0.2 (retroactively tagging the previous version as 0.1).

The flask icon is from DesignKode

From their website [1]:

DesignKode is releasing this set of 40 free high quality icons for
your web site and application GUI designs. All icons in this set are
32 x 32 pixel PNG image files. You may freely use these icons in your
commercial or personal projects without attribution.

[1] http://www.designkode.com/blog/free-developer-icons
30 files changed:
.gitignore
.htaccess [deleted file]
README
bin/cook.py [deleted file]
cookbook/__init__.py
cookbook/admin.py [new file with mode: 0644]
cookbook/cookbook.py [deleted file]
cookbook/models.py [new file with mode: 0644]
cookbook/mom.py [deleted file]
cookbook/server.py [deleted file]
cookbook/template/base.html [deleted file]
cookbook/template/edit-recipe.html [deleted file]
cookbook/template/recipe.html [deleted file]
cookbook/template/recipes.html [deleted file]
cookbook/tests.py [new file with mode: 0644]
cookbook/urls.py [new file with mode: 0644]
cookbook/views.py [new file with mode: 0644]
doc/abbreviations [deleted file]
example/__init__.py [new file with mode: 0644]
example/data/static/cookbook.ico [new file with mode: 0644]
example/data/static/style.css [new file with mode: 0644]
example/data/template/admin/edit_inline/tabular.html [new file with mode: 0644]
example/data/template/cookbook/base.html [new file with mode: 0644]
example/data/template/cookbook/recipe.html [new file with mode: 0644]
example/data/template/cookbook/recipes.html [new file with mode: 0644]
example/data/template/cookbook/tags.html [new file with mode: 0644]
example/manage.py [new file with mode: 0644]
example/settings.py [new file with mode: 0644]
example/urls.py [new file with mode: 0644]
setup.py [new file with mode: 0755]