From 328652b8200fe85158424f9a8b32b9523aa8f7af Mon Sep 17 00:00:00 2001 From: Syrus Akbary Date: Sat, 2 Jan 2016 21:23:40 +0100 Subject: [PATCH] Renamed cookbook to cookbook Django --- examples/{cookbook => cookbook_django}/README.md | 0 examples/{cookbook => cookbook_django}/cookbook/__init__.py | 0 .../cookbook/ingredients/__init__.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/admin.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/apps.py | 0 .../cookbook/ingredients/fixtures/ingredients.json | 0 .../cookbook/ingredients/migrations/0001_initial.py | 0 .../cookbook/ingredients/migrations/__init__.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/models.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/schema.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/tests.py | 0 .../{cookbook => cookbook_django}/cookbook/ingredients/views.py | 0 .../{cookbook => cookbook_django}/cookbook/recipes/__init__.py | 0 examples/{cookbook => cookbook_django}/cookbook/recipes/admin.py | 0 examples/{cookbook => cookbook_django}/cookbook/recipes/apps.py | 0 .../cookbook/recipes/migrations/0001_initial.py | 0 .../cookbook/recipes/migrations/__init__.py | 0 examples/{cookbook => cookbook_django}/cookbook/recipes/models.py | 0 examples/{cookbook => cookbook_django}/cookbook/recipes/tests.py | 0 examples/{cookbook => cookbook_django}/cookbook/recipes/views.py | 0 examples/{cookbook => cookbook_django}/cookbook/schema.py | 0 examples/{cookbook => cookbook_django}/cookbook/settings.py | 0 examples/{cookbook => cookbook_django}/cookbook/urls.py | 0 examples/{cookbook => cookbook_django}/cookbook/wsgi.py | 0 examples/{cookbook => cookbook_django}/manage.py | 0 examples/{cookbook => cookbook_django}/requirements.txt | 0 26 files changed, 0 insertions(+), 0 deletions(-) rename examples/{cookbook => cookbook_django}/README.md (100%) rename examples/{cookbook => cookbook_django}/cookbook/__init__.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/__init__.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/admin.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/apps.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/fixtures/ingredients.json (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/migrations/0001_initial.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/migrations/__init__.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/models.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/schema.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/tests.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/ingredients/views.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/__init__.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/admin.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/apps.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/migrations/0001_initial.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/migrations/__init__.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/models.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/tests.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/recipes/views.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/schema.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/settings.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/urls.py (100%) rename examples/{cookbook => cookbook_django}/cookbook/wsgi.py (100%) rename examples/{cookbook => cookbook_django}/manage.py (100%) rename examples/{cookbook => cookbook_django}/requirements.txt (100%) diff --git a/examples/cookbook/README.md b/examples/cookbook_django/README.md similarity index 100% rename from examples/cookbook/README.md rename to examples/cookbook_django/README.md diff --git a/examples/cookbook/cookbook/__init__.py b/examples/cookbook_django/cookbook/__init__.py similarity index 100% rename from examples/cookbook/cookbook/__init__.py rename to examples/cookbook_django/cookbook/__init__.py diff --git a/examples/cookbook/cookbook/ingredients/__init__.py b/examples/cookbook_django/cookbook/ingredients/__init__.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/__init__.py rename to examples/cookbook_django/cookbook/ingredients/__init__.py diff --git a/examples/cookbook/cookbook/ingredients/admin.py b/examples/cookbook_django/cookbook/ingredients/admin.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/admin.py rename to examples/cookbook_django/cookbook/ingredients/admin.py diff --git a/examples/cookbook/cookbook/ingredients/apps.py b/examples/cookbook_django/cookbook/ingredients/apps.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/apps.py rename to examples/cookbook_django/cookbook/ingredients/apps.py diff --git a/examples/cookbook/cookbook/ingredients/fixtures/ingredients.json b/examples/cookbook_django/cookbook/ingredients/fixtures/ingredients.json similarity index 100% rename from examples/cookbook/cookbook/ingredients/fixtures/ingredients.json rename to examples/cookbook_django/cookbook/ingredients/fixtures/ingredients.json diff --git a/examples/cookbook/cookbook/ingredients/migrations/0001_initial.py b/examples/cookbook_django/cookbook/ingredients/migrations/0001_initial.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/migrations/0001_initial.py rename to examples/cookbook_django/cookbook/ingredients/migrations/0001_initial.py diff --git a/examples/cookbook/cookbook/ingredients/migrations/__init__.py b/examples/cookbook_django/cookbook/ingredients/migrations/__init__.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/migrations/__init__.py rename to examples/cookbook_django/cookbook/ingredients/migrations/__init__.py diff --git a/examples/cookbook/cookbook/ingredients/models.py b/examples/cookbook_django/cookbook/ingredients/models.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/models.py rename to examples/cookbook_django/cookbook/ingredients/models.py diff --git a/examples/cookbook/cookbook/ingredients/schema.py b/examples/cookbook_django/cookbook/ingredients/schema.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/schema.py rename to examples/cookbook_django/cookbook/ingredients/schema.py diff --git a/examples/cookbook/cookbook/ingredients/tests.py b/examples/cookbook_django/cookbook/ingredients/tests.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/tests.py rename to examples/cookbook_django/cookbook/ingredients/tests.py diff --git a/examples/cookbook/cookbook/ingredients/views.py b/examples/cookbook_django/cookbook/ingredients/views.py similarity index 100% rename from examples/cookbook/cookbook/ingredients/views.py rename to examples/cookbook_django/cookbook/ingredients/views.py diff --git a/examples/cookbook/cookbook/recipes/__init__.py b/examples/cookbook_django/cookbook/recipes/__init__.py similarity index 100% rename from examples/cookbook/cookbook/recipes/__init__.py rename to examples/cookbook_django/cookbook/recipes/__init__.py diff --git a/examples/cookbook/cookbook/recipes/admin.py b/examples/cookbook_django/cookbook/recipes/admin.py similarity index 100% rename from examples/cookbook/cookbook/recipes/admin.py rename to examples/cookbook_django/cookbook/recipes/admin.py diff --git a/examples/cookbook/cookbook/recipes/apps.py b/examples/cookbook_django/cookbook/recipes/apps.py similarity index 100% rename from examples/cookbook/cookbook/recipes/apps.py rename to examples/cookbook_django/cookbook/recipes/apps.py diff --git a/examples/cookbook/cookbook/recipes/migrations/0001_initial.py b/examples/cookbook_django/cookbook/recipes/migrations/0001_initial.py similarity index 100% rename from examples/cookbook/cookbook/recipes/migrations/0001_initial.py rename to examples/cookbook_django/cookbook/recipes/migrations/0001_initial.py diff --git a/examples/cookbook/cookbook/recipes/migrations/__init__.py b/examples/cookbook_django/cookbook/recipes/migrations/__init__.py similarity index 100% rename from examples/cookbook/cookbook/recipes/migrations/__init__.py rename to examples/cookbook_django/cookbook/recipes/migrations/__init__.py diff --git a/examples/cookbook/cookbook/recipes/models.py b/examples/cookbook_django/cookbook/recipes/models.py similarity index 100% rename from examples/cookbook/cookbook/recipes/models.py rename to examples/cookbook_django/cookbook/recipes/models.py diff --git a/examples/cookbook/cookbook/recipes/tests.py b/examples/cookbook_django/cookbook/recipes/tests.py similarity index 100% rename from examples/cookbook/cookbook/recipes/tests.py rename to examples/cookbook_django/cookbook/recipes/tests.py diff --git a/examples/cookbook/cookbook/recipes/views.py b/examples/cookbook_django/cookbook/recipes/views.py similarity index 100% rename from examples/cookbook/cookbook/recipes/views.py rename to examples/cookbook_django/cookbook/recipes/views.py diff --git a/examples/cookbook/cookbook/schema.py b/examples/cookbook_django/cookbook/schema.py similarity index 100% rename from examples/cookbook/cookbook/schema.py rename to examples/cookbook_django/cookbook/schema.py diff --git a/examples/cookbook/cookbook/settings.py b/examples/cookbook_django/cookbook/settings.py similarity index 100% rename from examples/cookbook/cookbook/settings.py rename to examples/cookbook_django/cookbook/settings.py diff --git a/examples/cookbook/cookbook/urls.py b/examples/cookbook_django/cookbook/urls.py similarity index 100% rename from examples/cookbook/cookbook/urls.py rename to examples/cookbook_django/cookbook/urls.py diff --git a/examples/cookbook/cookbook/wsgi.py b/examples/cookbook_django/cookbook/wsgi.py similarity index 100% rename from examples/cookbook/cookbook/wsgi.py rename to examples/cookbook_django/cookbook/wsgi.py diff --git a/examples/cookbook/manage.py b/examples/cookbook_django/manage.py similarity index 100% rename from examples/cookbook/manage.py rename to examples/cookbook_django/manage.py diff --git a/examples/cookbook/requirements.txt b/examples/cookbook_django/requirements.txt similarity index 100% rename from examples/cookbook/requirements.txt rename to examples/cookbook_django/requirements.txt