diff options
author | luxagraf <sng@luxagraf.net> | 2015-11-19 21:14:56 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2015-11-19 21:14:56 -0500 |
commit | fb5f8d0cbfd016bac855968e1e1d6ab5f6ef6689 (patch) | |
tree | 3ae233e5b0d6a18b303db632366598ef1dcdb67c | |
parent | 996e8ab3715d287fde7d204d3345d3384a496ef4 (diff) |
Consolidated and expanded the TODO list, which is alas, quite long at
the moment
-rw-r--r-- | app/TODO | 55 | ||||
-rw-r--r-- | app/birds/TODO | 2 | ||||
-rw-r--r-- | app/builder/views.py | 4 | ||||
-rw-r--r-- | app/figments/TODO | 1 | ||||
-rw-r--r-- | app/photos/TODO | 5 | ||||
-rw-r--r-- | app/src/TODO | 7 |
6 files changed, 59 insertions, 15 deletions
diff --git a/app/TODO b/app/TODO new file mode 100644 index 0000000..502002d --- /dev/null +++ b/app/TODO @@ -0,0 +1,55 @@ +universal/ utils: + +add markdown pronessor function to utils and replace all markdown calls with that one. + +possibly convert to using Pandoc? Python is pretty good, but using Pandoc directly allows for epub, other formats as well. Plus standardized a bit. + +Add resume, src and figments to project page, possible as top level menu itesms + +--- + +notes + +revamp notes to be like my own personal instagram + +--- + +income app: + +Add admin pages for viewing income by month, including future. So page with list of months and links to months: /admin/income/month/ default to current month, add option GET param to show past months, add code to views and call it from base_urls before main admin include. show everything with status accepted and then the separately show pitched as possibilities, then show totals alongside how much we need to live. If invoice is submitted show date submitted and create a probably pay date for each publisher. + +--- + +birds app: + +Finish detail template +write build script + + +--- + +figments + +iron out templates and push first piece live. + +--- + +photos: + +Okay we're uploading/creating galleries/adding images + +Then resize all images for responsive gallery. + +Then play with gallery templates and add a template selecter to form. + +--- + +resume + +clean up design of book detail +add paypal app and generate button +handle callbacks from paypal to deliver the book and link to files + + +redirect lhp: home, book and rss + diff --git a/app/birds/TODO b/app/birds/TODO deleted file mode 100644 index 2464c1f..0000000 --- a/app/birds/TODO +++ /dev/null @@ -1,2 +0,0 @@ -Finish detail template -write build script diff --git a/app/builder/views.py b/app/builder/views.py index 9e22160..a17ec1b 100644 --- a/app/builder/views.py +++ b/app/builder/views.py @@ -3,6 +3,7 @@ from django.template import RequestContext from builder.base import BuildWriting, BuildWritingFeed, BuildMap, BuildPhotos, BuildProjects, BuildSitemap, BuildPages, BuildBooks from src.build import builder as src_build from jrnl.build import BuildJrnl, build_arc, build_detail +from resume.build import builder as resume_builder options = { 'writing': BuildWriting, @@ -24,6 +25,9 @@ def do_build(request): elif section == 'writingarchives': context = {'message': 'Writing Jrnl Archives to Disk'} build_arc() + elif section == 'resume': + context = {'message': 'Writing Resume to Disk'} + resume_builder() elif section == 'buildrss': context = {'message': 'Writing RSS to Disk'} BuildJrnl().build_feed("jrnl:feed") diff --git a/app/figments/TODO b/app/figments/TODO deleted file mode 100644 index 510ee94..0000000 --- a/app/figments/TODO +++ /dev/null @@ -1 +0,0 @@ -iron out templates and push first piece live. diff --git a/app/photos/TODO b/app/photos/TODO deleted file mode 100644 index 4584c63..0000000 --- a/app/photos/TODO +++ /dev/null @@ -1,5 +0,0 @@ -Okay we're uploading/creating galleries/adding images - -Then resize all images for responsive gallery. - -Then play with gallery templates and add a template selecter to form. diff --git a/app/src/TODO b/app/src/TODO deleted file mode 100644 index 9cb5989..0000000 --- a/app/src/TODO +++ /dev/null @@ -1,7 +0,0 @@ -clean up design of book detail -add paypal app and generate button -handle callbacks from paypal to deliver the book and link to files - - -redirect lhp: home, book and rss - |