summaryrefslogtreecommitdiff
path: root/app/builder/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/builder/base.py')
-rw-r--r--app/builder/base.py70
1 files changed, 46 insertions, 24 deletions
diff --git a/app/builder/base.py b/app/builder/base.py
index 7da7df3..62cfad0 100644
--- a/app/builder/base.py
+++ b/app/builder/base.py
@@ -4,7 +4,7 @@ from decimal import Decimal
from django.test.client import Client
from django.template.loader import render_to_string
from django.template import Context
-from django.db.models import get_model
+from django.apps import apps
from django.conf import settings
#from pages.models import PageGenerator
@@ -72,7 +72,7 @@ class BuildWriting(Build):
self.writing_month_archives()
def get_model_querset(self):
- model = get_model('blog', 'entry')
+ model = apps.get_model('blog', 'entry')
qs = model.objects.filter(status__exact=1)
return qs
@@ -95,8 +95,8 @@ class BuildWriting(Build):
self.build_archive_pages(qs, 'jrnl/')
def build_region_archive_pages(self):
- model = get_model('locations', 'Region')
- blog = get_model('blog', 'entry')
+ model = apps.get_model('locations', 'Region')
+ blog = apps.get_model('blog', 'entry')
regions = model.objects.all()
for c in regions:
qs = blog.objects.filter(status__exact=1, location__state__country__lux_region=c.id).order_by('-pub_date')
@@ -104,8 +104,8 @@ class BuildWriting(Build):
self.build_archive_pages(qs, path)
def build_country_archive_pages(self):
- model = get_model('locations', 'Country')
- blog = get_model('blog', 'entry')
+ model = apps.get_model('locations', 'Country')
+ blog = apps.get_model('blog', 'entry')
countries = model.objects.filter(visited=True)
for c in countries:
qs = blog.objects.filter(status__exact=1, location__state__country=c).order_by('-pub_date')
@@ -113,7 +113,7 @@ class BuildWriting(Build):
self.build_archive_pages(qs, path)
def writing_year_archives(self):
- entry = get_model('blog', 'entry')
+ entry = apps.get_model('blog', 'entry')
years = entry.objects.dates('pub_date', 'year')
for year in years:
year = year.strftime('%Y')
@@ -124,7 +124,7 @@ class BuildWriting(Build):
self.write_file(fpath, t)
def writing_month_archives(self):
- entry = get_model('blog', 'entry')
+ entry = apps.get_model('blog', 'entry')
months = entry.objects.dates('pub_date', 'month')
for m in months:
year = m.strftime('%Y')
@@ -139,8 +139,8 @@ class BuildWriting(Build):
self.write_file(fpath, t)
def build_homepage(self):
- obj = get_model('blog', 'homepagecurrator').objects.get(pk=1)
- recent = get_model('blog', 'entry').objects.filter(status__exact=1)[:4]
+ obj = apps.get_model('blog', 'homepagecurrator').objects.get(pk=1)
+ recent = apps.get_model('blog', 'entry').objects.filter(status__exact=1)[:4]
template = obj.template_name
c = Context({'homepage': obj, 'recent': recent, 'MEDIA_URL': settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL})
t = render_to_string(template, c).encode('utf-8')
@@ -158,11 +158,11 @@ class BuildPhotos(Build):
self.build_js()
def build_photo_archive_pages(self):
- qs = get_model('photos', 'PhotoGallery').objects.all()
+ qs = apps.get_model('photos', 'PhotoGallery').objects.all()
self.build_archive_pages(qs, 'photos/', 18)
def build_detail_pages(self):
- qs = get_model('photos', 'PhotoGallery').objects.all()
+ qs = apps.get_model('photos', 'PhotoGallery').objects.all()
for photo in qs:
c = Context({'object': photo, 'MEDIA_URL':
settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL})
@@ -188,14 +188,14 @@ class BuildProjects(Build):
def get_projects(self):
all_proj = []
- projects = get_model('projects', 'Project').objects.filter(status__exact=1).order_by('-pub_date')
+ projects = apps.get_model('projects', 'Project').objects.filter(status__exact=1).order_by('-pub_date')
for proj in projects:
row = {'slug': proj.slug, 'name': proj.model_name}
all_proj.append(row)
return all_proj
def build_project_archive(self):
- qs = get_model('projects', 'Project').objects.filter(status__exact=1).order_by('-pub_date')
+ qs = apps.get_model('projects', 'Project').objects.filter(status__exact=1).order_by('-pub_date')
c = Context({'object_list': qs, 'MEDIA_URL': settings.BAKED_MEDIA_URL,
'IMAGES_URL': settings.BAKED_IMAGES_URL})
t = render_to_string('archives/projects.html', c).encode('utf-8')
@@ -204,7 +204,7 @@ class BuildProjects(Build):
def build_project_details(self):
projects = self.get_projects()
for proj in projects:
- model = get_model('projects', proj['name'])
+ model = apps.get_model('projects', proj['name'])
if proj['name'] == 'NationalParks':
qs = model.objects.filter(visited__exact=True).order_by("-date_visited_begin")
else:
@@ -224,7 +224,7 @@ class BuildProjects(Build):
functions it is.
"""
def build_gifs(self):
- qs = get_model('projects', 'AnimatedGif').objects.all()
+ qs = apps.get_model('projects', 'AnimatedGif').objects.all()
for gif in qs:
c = Context({
'object': gif,
@@ -236,7 +236,7 @@ class BuildProjects(Build):
self.write_file(path, t)
def build_project_data(self):
- model = get_model('projects', 'NationalParks')
+ model = apps.get_model('projects', 'NationalParks')
for park in model.objects.filter(visited__exact=True):
path = 'projects/data/natparks/'
json = park.mpoly.json
@@ -260,7 +260,7 @@ class BuildSitemap(Build):
class BuildWritingFeed(Build):
def build(self):
- qs = get_model('blog', 'entry').objects.filter(status__exact=1).order_by('-pub_date')[:20]
+ qs = apps.get_model('blog', 'entry').objects.filter(status__exact=1).order_by('-pub_date')[:20]
c = Context({'object_list': qs, 'SITE_URL': settings.SITE_URL})
t = render_to_string('feed.xml', c).encode('utf-8')
fpath = '%s' % ('rss/',)
@@ -268,7 +268,7 @@ class BuildWritingFeed(Build):
class BuildPages(Build):
def build(self):
- model = get_model('pages', 'page')
+ model = apps.get_model('pages', 'page')
pages = model.objects.all()
for page in pages:
c = Context({'object':page,'SITE_URL':settings.SITE_URL, 'MEDIA_URL':settings.BAKED_MEDIA_URL})
@@ -280,10 +280,10 @@ class BuildPages(Build):
class BuildMap(Build):
def build(self):
- qs = get_model('blog', 'entry').objects.filter(status__exact=1)
- cl = get_model('locations', 'Country').objects.filter(visited=True).exclude(name='default')
- rl = get_model('locations', 'Region').objects.all()
- rtl = get_model('locations', 'Route').objects.all()
+ qs = apps.get_model('blog', 'entry').objects.filter(status__exact=1)
+ cl = apps.get_model('locations', 'Country').objects.filter(visited=True).exclude(name='default')
+ rl = apps.get_model('locations', 'Region').objects.all()
+ rtl = apps.get_model('locations', 'Route').objects.all()
c = Context({
'object_list': qs,
'country_list': cl,
@@ -311,7 +311,7 @@ class BuildMap(Build):
# Back up entries to markdown text files which are then stored in dropbox and git
class EntryBak(Build):
def get_model_querset(self):
- model = get_model('blog', 'entry')
+ model = apps.get_model('blog', 'entry')
qs = model.objects.filter(status__exact=1)
return qs
@@ -327,3 +327,25 @@ class EntryBak(Build):
path = "%szbak/posts/%s_%s.txt" %(settings.PROJ_ROOT, (obj.pub_date.strftime("%Y-%m-%d").lower()), obj.slug)
t = render_to_string('details/entry-bak.txt', c).encode('utf-8')
self.write_file(path, t)
+
+
+
+class BuildBooks(Build):
+ def build(self):
+ self.build_detail_pages()
+ self.build_book_archive_pages()
+
+
+ def build_book_archive_pages(self):
+ qs = apps.get_model('books', 'Book').objects.all().order_by('-read_date').select_related()
+ self.build_archive_pages(qs, 'books/', 18)
+
+
+ def build_detail_pages(self):
+ qs = apps.get_model('books', 'Book').objects.all().order_by('-read_date').select_related()
+ for book in qs:
+ c = Context({'object': book,})
+ t = render_to_string('details/book.html', c).encode('utf-8')
+ path = 'books/'
+ slug = '%s' % (book.slug)
+ self.write_file(path, t, 'html', slug)