diff --git a/acom/__init__.pyc b/acom/__init__.pyc new file mode 100644 index 0000000000..be5d09527f Binary files /dev/null and b/acom/__init__.pyc differ diff --git a/acom/audits/__init__.py b/acom/audits/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/audits/models.py b/acom/audits/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/audits/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/audits/tests.py b/acom/audits/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/audits/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/audits/views.py b/acom/audits/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/audits/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/events/__init__.py b/acom/events/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/events/models.py b/acom/events/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/events/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/events/tests.py b/acom/events/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/events/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/events/views.py b/acom/events/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/events/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/groups/__init__.py b/acom/groups/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/groups/models.py b/acom/groups/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/groups/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/groups/tests.py b/acom/groups/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/groups/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/groups/views.py b/acom/groups/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/groups/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/hosts/__init__.py b/acom/hosts/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/hosts/models.py b/acom/hosts/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/hosts/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/hosts/tests.py b/acom/hosts/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/hosts/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/hosts/views.py b/acom/hosts/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/hosts/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/inventory/__init__.py b/acom/inventory/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/inventory/models.py b/acom/inventory/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/inventory/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/inventory/tests.py b/acom/inventory/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/inventory/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/inventory/views.py b/acom/inventory/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/inventory/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/jobs/__init__.py b/acom/jobs/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/jobs/models.py b/acom/jobs/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/jobs/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/jobs/tests.py b/acom/jobs/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/jobs/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/jobs/views.py b/acom/jobs/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/jobs/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/orgs/__init__.py b/acom/orgs/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/orgs/models.py b/acom/orgs/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/orgs/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/orgs/tests.py b/acom/orgs/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/orgs/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/orgs/views.py b/acom/orgs/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/orgs/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/permissions/__init__.py b/acom/permissions/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/permissions/models.py b/acom/permissions/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/permissions/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/permissions/tests.py b/acom/permissions/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/permissions/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/permissions/views.py b/acom/permissions/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/permissions/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/projects/__init__.py b/acom/projects/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/projects/models.py b/acom/projects/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/projects/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/projects/tests.py b/acom/projects/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/projects/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/projects/views.py b/acom/projects/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/projects/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/reports/__init__.py b/acom/reports/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/reports/models.py b/acom/reports/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/reports/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/reports/tests.py b/acom/reports/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/reports/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/reports/views.py b/acom/reports/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/reports/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/settings.py b/acom/settings.py index c5e9dc155c..78c35f832f 100644 --- a/acom/settings.py +++ b/acom/settings.py @@ -11,7 +11,7 @@ MANAGERS = ADMINS DATABASES = { 'default': { - 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. + 'ENGINE': 'postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. 'NAME': '', # Or path to database file if using sqlite3. 'USER': '', # Not used with sqlite3. 'PASSWORD': '', # Not used with sqlite3. @@ -27,7 +27,7 @@ DATABASES = { # timezone as the operating system. # If running in a Windows environment this must be set to the same as your # system time zone. -TIME_ZONE = 'America/Chicago' +TIME_ZONE = 'America/NewYork' # Language code for this installation. All choices can be found here: # http://www.i18nguy.com/unicode/language-identifiers.html diff --git a/acom/settings.pyc b/acom/settings.pyc new file mode 100644 index 0000000000..659ba05313 Binary files /dev/null and b/acom/settings.pyc differ diff --git a/acom/teams/__init__.py b/acom/teams/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/teams/models.py b/acom/teams/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/teams/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/teams/tests.py b/acom/teams/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/teams/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/teams/views.py b/acom/teams/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/teams/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/acom/urls.pyc b/acom/urls.pyc new file mode 100644 index 0000000000..3b39d1050e Binary files /dev/null and b/acom/urls.pyc differ diff --git a/acom/users/__init__.py b/acom/users/__init__.py new file mode 100644 index 0000000000..e69de29bb2 diff --git a/acom/users/models.py b/acom/users/models.py new file mode 100644 index 0000000000..71a8362390 --- /dev/null +++ b/acom/users/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/acom/users/tests.py b/acom/users/tests.py new file mode 100644 index 0000000000..2247054b35 --- /dev/null +++ b/acom/users/tests.py @@ -0,0 +1,23 @@ +""" +This file demonstrates two different styles of tests (one doctest and one +unittest). These will both pass when you run "manage.py test". + +Replace these with more appropriate tests for your application. +""" + +from django.test import TestCase + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.failUnlessEqual(1 + 1, 2) + +__test__ = {"doctest": """ +Another way to test that 1 + 1 is equal to 2. + +>>> 1 + 1 == 2 +True +"""} + diff --git a/acom/users/views.py b/acom/users/views.py new file mode 100644 index 0000000000..60f00ef0ef --- /dev/null +++ b/acom/users/views.py @@ -0,0 +1 @@ +# Create your views here.