summaryrefslogtreecommitdiff
path: root/app/unused_apps/ccg_notes/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/unused_apps/ccg_notes/build.py')
-rw-r--r--app/unused_apps/ccg_notes/build.py36
1 files changed, 0 insertions, 36 deletions
diff --git a/app/unused_apps/ccg_notes/build.py b/app/unused_apps/ccg_notes/build.py
deleted file mode 100644
index 499adc6..0000000
--- a/app/unused_apps/ccg_notes/build.py
+++ /dev/null
@@ -1,36 +0,0 @@
-import os
-from django.core.urlresolvers import reverse
-from builder.base import BuildNew
-
-
-class BuildNotes(BuildNew):
-
- def build(self):
- self.build_detail_view()
- self.build_list_view(
- base_path=reverse("notes:live_redirect"),
- paginate_by=24
- )
- self.build_year_view("notes:list_year")
- self.build_month_view("notes:list_month")
-
- def get_model_queryset(self):
- return self.model.objects.all()
-
- def build_detail_view(self):
- '''
- write out all the expenses for each trip
- '''
- for obj in self.get_model_queryset():
- url = obj.get_absolute_url()
- path, slug = os.path.split(url)
- path = '%s/' % path
- # write html
- response = self.client.get(url)
- print(path, slug)
- self.write_file(path, response.content, filename=slug)
-
-
-def builder():
- j = BuildNotes("notes", "luxnote")
- j.build()