Skip to content

Commit

Permalink
update project layout
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeman committed Jul 11, 2012
1 parent 3bed4f0 commit 1f59ffa
Show file tree
Hide file tree
Showing 26 changed files with 11 additions and 30 deletions.
2 changes: 1 addition & 1 deletion manage.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import os, sys import os, sys


if __name__ == "__main__": if __name__ == "__main__":
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "symposion.settings") os.environ.setdefault("DJANGO_SETTINGS_MODULE", "symposion_project.settings")


from django.core.management import execute_from_command_line from django.core.management import execute_from_command_line


Expand Down
8 changes: 0 additions & 8 deletions symposion/__init__.py
Original file line number Original file line Diff line number Diff line change
@@ -1,8 +0,0 @@
# -*- coding: utf-8 -*-

__about__ = """
This project takes the zero_project and adds basic account management
functionality such as sign up, log in, password change/reset and email
confirmation. It is a foundation suitable for most sites that have user
accounts.
"""
Empty file removed symposion/about/__init__.py
Empty file.
3 changes: 0 additions & 3 deletions symposion/about/models.py

This file was deleted.

11 changes: 0 additions & 11 deletions symposion/about/urls.py

This file was deleted.

1 change: 0 additions & 1 deletion symposion/about/views.py

This file was deleted.

8 changes: 8 additions & 0 deletions symposion_project/__init__.py
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-

__about__ = """
This project takes the zero_project and adds basic account management
functionality such as sign up, log in, password change/reset and email
confirmation. It is a foundation suitable for most sites that have user
accounts.
"""
7 changes: 2 additions & 5 deletions symposion/settings.py → symposion_project/settings.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
"debug_toolbar.middleware.DebugToolbarMiddleware", "debug_toolbar.middleware.DebugToolbarMiddleware",
] ]


ROOT_URLCONF = "symposion.urls" ROOT_URLCONF = "symposion_project.urls"


TEMPLATE_DIRS = [ TEMPLATE_DIRS = [
os.path.join(PROJECT_ROOT, "templates"), os.path.join(PROJECT_ROOT, "templates"),
Expand Down Expand Up @@ -159,12 +159,9 @@
"reversion", "reversion",
"easy_thumbnails", "easy_thumbnails",
"sitetree", "sitetree",

# Pinax
"account", "account",


# project # symposion
"symposion.about",
"symposion.sponsorship", "symposion.sponsorship",
"symposion.conference", "symposion.conference",
"symposion.cms", "symposion.cms",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 0 additions & 1 deletion symposion/urls.py → symposion_project/urls.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
"template": "homepage.html", "template": "homepage.html",
}, name="home"), }, name="home"),
url(r"^admin/", include(admin.site.urls)), url(r"^admin/", include(admin.site.urls)),
url(r"^about/", include("symposion.about.urls")),
url(r"^account/", include("account.urls")), url(r"^account/", include("account.urls")),
# url(r"^openid/", include(PinaxConsumer().urls)), # url(r"^openid/", include(PinaxConsumer().urls)),


Expand Down
File renamed without changes.

0 comments on commit 1f59ffa

Please sign in to comment.