summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:20:03 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-14 18:20:03 +0000
commit0bc849ff89bc7cbc4e9133df297de3542240a21a (patch)
tree724e7b6e7a2908b1d9eb716db5988e9c82c61c3a
parentef739404d33e8ea24f106e386575eaf1128a2d14 (diff)
Created django.contrib and moved comments into it
git-svn-id: http://code.djangoproject.com/svn/django/trunk@28 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/contrib/__init__.py (renamed from django/views/comments/__init__.py)0
-rw-r--r--django/contrib/comments/__init__.py0
-rw-r--r--django/contrib/comments/models/__init__.py1
-rw-r--r--django/contrib/comments/models/comments.py (renamed from django/models/comments.py)0
-rw-r--r--django/contrib/comments/templatetags/__init__.py0
-rw-r--r--django/contrib/comments/templatetags/comments.py (renamed from django/templatetags/comments.py)0
-rw-r--r--django/contrib/comments/urls/__init__.py0
-rw-r--r--django/contrib/comments/urls/comments.py (renamed from django/conf/urls/comments.py)0
-rw-r--r--django/contrib/comments/views/__init__.py0
-rw-r--r--django/contrib/comments/views/comments.py (renamed from django/views/comments/comments.py)0
-rw-r--r--django/contrib/comments/views/karma.py (renamed from django/views/comments/karma.py)0
-rw-r--r--django/contrib/comments/views/userflags.py (renamed from django/views/comments/userflags.py)0
-rw-r--r--django/models/__init__.py2
13 files changed, 2 insertions, 1 deletions
diff --git a/django/views/comments/__init__.py b/django/contrib/__init__.py
index e69de29bb2..e69de29bb2 100644
--- a/django/views/comments/__init__.py
+++ b/django/contrib/__init__.py
diff --git a/django/contrib/comments/__init__.py b/django/contrib/comments/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/django/contrib/comments/__init__.py
diff --git a/django/contrib/comments/models/__init__.py b/django/contrib/comments/models/__init__.py
new file mode 100644
index 0000000000..2bf3cc96cc
--- /dev/null
+++ b/django/contrib/comments/models/__init__.py
@@ -0,0 +1 @@
+__all__ = ['comments']
diff --git a/django/models/comments.py b/django/contrib/comments/models/comments.py
index 61988595db..61988595db 100644
--- a/django/models/comments.py
+++ b/django/contrib/comments/models/comments.py
diff --git a/django/contrib/comments/templatetags/__init__.py b/django/contrib/comments/templatetags/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/django/contrib/comments/templatetags/__init__.py
diff --git a/django/templatetags/comments.py b/django/contrib/comments/templatetags/comments.py
index adfd3cedac..adfd3cedac 100644
--- a/django/templatetags/comments.py
+++ b/django/contrib/comments/templatetags/comments.py
diff --git a/django/contrib/comments/urls/__init__.py b/django/contrib/comments/urls/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/django/contrib/comments/urls/__init__.py
diff --git a/django/conf/urls/comments.py b/django/contrib/comments/urls/comments.py
index f117e8924a..f117e8924a 100644
--- a/django/conf/urls/comments.py
+++ b/django/contrib/comments/urls/comments.py
diff --git a/django/contrib/comments/views/__init__.py b/django/contrib/comments/views/__init__.py
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/django/contrib/comments/views/__init__.py
diff --git a/django/views/comments/comments.py b/django/contrib/comments/views/comments.py
index ffad921ad3..ffad921ad3 100644
--- a/django/views/comments/comments.py
+++ b/django/contrib/comments/views/comments.py
diff --git a/django/views/comments/karma.py b/django/contrib/comments/views/karma.py
index 84f0ca852d..84f0ca852d 100644
--- a/django/views/comments/karma.py
+++ b/django/contrib/comments/views/karma.py
diff --git a/django/views/comments/userflags.py b/django/contrib/comments/views/userflags.py
index 051ecb19fe..051ecb19fe 100644
--- a/django/views/comments/userflags.py
+++ b/django/contrib/comments/views/userflags.py
diff --git a/django/models/__init__.py b/django/models/__init__.py
index 63cedc9af1..b4a1d75617 100644
--- a/django/models/__init__.py
+++ b/django/models/__init__.py
@@ -1,6 +1,6 @@
from django.core import meta
-__all__ = ['auth', 'comments', 'core']
+__all__ = ['auth', 'core']
# Alter this package's __path__ variable so that calling code can import models
# from "django.models" even though the model code doesn't physically live