TODO 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #+COMMENT: -*- Mode: org -*-
  2. #+COMMENT: Time-stamp: <2024-05-22 09:23:25 fred>
  3. * DONE Make lookups be relative to the specified book, not to Genesis. (internal)
  4. * DONE Make tabs work in Hebrew mode
  5. * TODO Make tabs skip past verse number at the beginning
  6. - Use `fields'
  7. * DONE Make lookups be case insensitive in all contexts (e.g. module). This isn't applicable because modules have combinations of different cases (upper and lower)
  8. * DONE Cache module list on startup (lazy lookup instead)
  9. * DONE Make morphology work in word-study mode
  10. * DONE Make lucene search work
  11. * DONE Associate data structure with words so that tags (Strong's numbers, morphology) are invisible but still work
  12. - Use text properties
  13. * DONE Cache morphological tags so you only have to look them up once
  14. * DONE Make Hebrew rendering right-to-left.
  15. - Displaying Hebrew terms already does this, but tooltip display is messed up.
  16. - Can do for buffer (e.g. OSHB) but needs to look up information from mod.d directory, wherever that may be.
  17. - Temporary fix: menu item to select buffer direction.
  18. - Will revisit at some point
  19. * DONE Some bugs in Hebrew rendering (occasional "args out of range" errors). (Fixed by changing the way text properties are done.)
  20. * DONE Fix titles (i.e. in Psalms) (Still broken)
  21. - Show lemmas in titles?
  22. * TODO Fix punctuation
  23. - Have to parse XML.
  24. - ?? Probably lots of work for not much return
  25. * TODO Infer chapter counts from book data
  26. - May not be easily possible
  27. * TODO Search should order references by OT books, then NT books, in alphabetical order
  28. - Search references currently works pretty well except for the above. Worth doing?
  29. * DONE Fix Robinson morphology: diatheke doesn't render it with spaces between fields in "plain" format
  30. - Either parse the XML (or whatever format) or just look for field names and put spaces before them, i.e.
  31. N-NSM Part of Speech: NounCase: NominativeNumber: SingularGender: Masculine
  32. should be
  33. N-NSM Part of Speech: Noun Case: Nominative Number: Singular Gender: Masculine
  34. or perhaps
  35. N-NSM
  36. Part of Speech: Noun
  37. Case: Nominative
  38. Number: Singular
  39. Gender: Masculine
  40. though this may take up too much vertical space. But it looks like Emacs puts the tooltips in a good place.
  41. - Did this by using "shr" package to parse HTML.
  42. * TODO Clean up Hebrew lexicon tooltip
  43. - I.e. outline indicators should be better indented.
  44. * TODO Cross references in Abbott lexicon display are not right
  45. - I.e. Mk 3:7, 4:11, 15; should refer to Mark 3:7, Mark 4:11 and Mark 4:15.
  46. Do this with overlapping text properties.