blob: 2ddc87349e0136f4819ce0b55c7a1245ebde5337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
universal/ utils:
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
add service worker:
https://css-tricks.com/serviceworker-for-offline/
https://adactio.com/journal/9814
https://adactio.com/journal/9775
http://brucelawson.github.io/manifest/
https://serviceworker-cookbook.herokuapp.com/
fix amp support by sanitizing html:
https://github.com/duner/django-bluebox/blob/master/bluebox/converters/sanitizer.py
---
#src
clean up design of book detail
handle callbacks from paypal to deliver the book and link to files:
https://developer.paypal.com/webapps/developer/docs/classic/ipn/integration-guide/IPNandPDTVariables/
redirect lhp: home, book and rss
---
# 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.
like this full width design: http://www.photobyrichard.com/photobyrichard/page/2/
Next step is to create private galleries and password protect them on the server at a common url. Flow will be something like:
galleries = PhotoGallery.object.filter(private=True)
for gal in galleries:
create at url like /photos/private/gallery-list and
/photos/private/gallery-name
Then just require a password to get to anything under /photos/private/
Then change the default PhotoGallery manager to filter out anything marked private. Or make sure to write all those queries with .filter(private=False)
---
# birds app:
Finish detail template
write build script
---
# notes
revamp notes to be like my own personal instagram
'''
2) test urlize with markdown links
3) parse out markdown wrapped links for twitter
4) CSS
6) Write JavaScript to automatically place map on current location
'''
|