Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

TODO 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Everything.
  2. Ideas:
  3. -- Replace cl-markdown with 3bmd down the line?
  4. -- Use cl-inotify or similar for notifications instead of timers?
  5. TODO:
  6. ;;;; STATIC
  7. ;;;; implement start-coleslaw, stop-coleslaw!
  8. ;;;; implement cl-store use+init, once every 24 hours?
  9. ;;;; how many globals can we move into *storage* as keywords? ALL OF THEM!
  10. ;;;; --what about accessing them?
  11. ;;;; write a proper version of escape considering wild pathnames and valid URL issues
  12. ;;;; implement atom feed. RSS too?
  13. ;;;; implement non-disqus comment support?
  14. ;;;; What do post update semantics look like? i.e. edit file to change tags. what about post-removal?
  15. ;;;; PLUGINS
  16. ;;;; add activate-plugin, deactivate-plugin, :active-plugins?
  17. ;;;; implement: analytics, crossposting, disqus, mathjax, pygments, recaptcha, s3
  18. ;;;; support input or output dirs being git repos + have git hooks?
  19. ;;; import
  20. ;; add comment handling ... (when comments ...)
  21. ;; support old URLs via use of post-aliases?
  22. ;;;; DYNAMIC
  23. ;;;; implement the whole damn backend!
  24. ;;;; make sure it has an admin interface!
  25. ;;;; -- spend two years trying to make it secure without HTTPS+SSL. fail.
  26. ;;;; rendering hooks (pygmentize, xposting) via :around/:before/:after methods
  27. ;; get run on rendered html before "storage"
  28. ;; xposting may be a rendering hook but may necessitate publishing hooks
  29. ;; again, these should be methods on a generic function
  30. ;;;; template hooks *ARE* pre-rendering-hooks. or methods on GFs.
  31. ;;;; they're methods on GFs you fool! work on the classes/constructors for post+indices
  32. ;;;; that's the only thing that makes sense. (eg 'disqus, 'mathjax)
  33. ;; run before the template is called to generate html or javascript includes
  34. ;; for a given template property (eg. comments, includes). they should probably be
  35. ;; methods on a generic function (eg. blog-comments, blog-includes)