From 20cfecc7a5e9115e88459f93b29fa717d0451456 Mon Sep 17 00:00:00 2001 From: Bradley Ayers Date: Sun, 10 Jul 2011 16:59:20 +1000 Subject: [PATCH] "example" project's manage.py is now executable. fixed the static media directory. added example database to gitignore. Thanks slafs! --- .gitignore | 1 + .../themes/paleblue/css/screen.css | 0 .../themes/paleblue/img/arrow-active-down.png | Bin .../themes/paleblue/img/arrow-active-up.png | Bin .../themes/paleblue/img/arrow-inactive-down.png | Bin .../themes/paleblue/img/arrow-inactive-up.png | Bin .../themes/paleblue/img/header-bg.gif | Bin .../themes/paleblue/img/pagination-bg.gif | Bin example/manage.py | 0 9 files changed, 1 insertion(+) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/css/screen.css (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/arrow-active-down.png (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/arrow-active-up.png (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/arrow-inactive-down.png (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/arrow-inactive-up.png (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/header-bg.gif (100%) rename django_tables2/static/{django_tables => django_tables2}/themes/paleblue/img/pagination-bg.gif (100%) mode change 100644 => 100755 example/manage.py diff --git a/.gitignore b/.gitignore index 3aacb65..53d12a6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /dist/ /build/ /docs/_build/ +/example/database.sqlite diff --git a/django_tables2/static/django_tables/themes/paleblue/css/screen.css b/django_tables2/static/django_tables2/themes/paleblue/css/screen.css similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/css/screen.css rename to django_tables2/static/django_tables2/themes/paleblue/css/screen.css diff --git a/django_tables2/static/django_tables/themes/paleblue/img/arrow-active-down.png b/django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-down.png similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/arrow-active-down.png rename to django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-down.png diff --git a/django_tables2/static/django_tables/themes/paleblue/img/arrow-active-up.png b/django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-up.png similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/arrow-active-up.png rename to django_tables2/static/django_tables2/themes/paleblue/img/arrow-active-up.png diff --git a/django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-down.png b/django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-down.png similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-down.png rename to django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-down.png diff --git a/django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-up.png b/django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-up.png similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/arrow-inactive-up.png rename to django_tables2/static/django_tables2/themes/paleblue/img/arrow-inactive-up.png diff --git a/django_tables2/static/django_tables/themes/paleblue/img/header-bg.gif b/django_tables2/static/django_tables2/themes/paleblue/img/header-bg.gif similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/header-bg.gif rename to django_tables2/static/django_tables2/themes/paleblue/img/header-bg.gif diff --git a/django_tables2/static/django_tables/themes/paleblue/img/pagination-bg.gif b/django_tables2/static/django_tables2/themes/paleblue/img/pagination-bg.gif similarity index 100% rename from django_tables2/static/django_tables/themes/paleblue/img/pagination-bg.gif rename to django_tables2/static/django_tables2/themes/paleblue/img/pagination-bg.gif diff --git a/example/manage.py b/example/manage.py old mode 100644 new mode 100755 -- 2.26.2