TODO 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #+COMMENT: -*- Mode: org -*-
  2. #+COMMENT: Time-stamp: <2026-03-09 14:00:52 fred>
  3. * TODO Add commentaries as module options.
  4. * TODO Fix cross-references from books/commentaries.
  5. * TODO Add customizations for font faces for different kinds of buffers (e.g. Greek, Hebrew, English etc.)
  6. * TODO Infer chapter counts from book data.
  7. - May not be easily possible
  8. * TODO Psalm 119 acrostic Hebrew letters doesn't work.
  9. * TODO Search should order references by OT books, then NT books, in alphabetical order
  10. - Search references currently works pretty well except for the above. Worth doing?
  11. * DONE It would be nice to be able to enter either I, II or III or 1, 2 or 3 when referencing books.
  12. * DONE XXX Using "bible-search-mode-follow-verse" function reverts to default (customized) module instead of current module.
  13. * DONE Add search ranges
  14. * DONE Make lookups be relative to the specified book, not to Genesis. (internal)
  15. * DONE Make tabs skip past verse number at the beginning
  16. - Use `fields'
  17. - actually done by using text properties
  18. * 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)
  19. * DONE Cache module list on startup (lazy lookup instead)
  20. * DONE Make lucene search work
  21. * DONE Search results don't show III John.
  22. - Apparently this is the only instance of the problem since III John
  23. is the only book with the III prefix.
  24. * DONE Associate data structure with words so that tags (Strong's numbers, morphology) are invisible but still work
  25. - Use text properties
  26. * DONE Make tabs work in Hebrew mode
  27. * DONE Clean up Hebrew lexicon tooltip
  28. - I.e. outline indicators should be better indented.
  29. * DONE Make Hebrew rendering right-to-left.
  30. - Displaying Hebrew terms already does this, but tooltip display is messed up.
  31. - Can do for buffer (e.g. OSHB) but needs to look up information from mod.d directory, wherever that may be.
  32. - Temporary fix: menu item to select buffer direction.
  33. - Will revisit at some point
  34. * DONE Some bugs in Hebrew rendering (occasional "args out of range" errors). (Fixed by changing the way text properties are done.)
  35. * DONE Fix titles (i.e. in Psalms) (Still broken)
  36. - Show lemmas in titles?
  37. * DONE Fix punctuation
  38. - Have to parse XML.
  39. - ?? Probably lots of work for not much return
  40. - Did by looking at dom tags.
  41. * DONE Make morphology work in word-study mode
  42. * DONE Cache morphological tags so you only have to look them up once
  43. * DONE Fix Robinson morphology: diatheke doesn't render it with spaces between fields in "plain" format
  44. - Either parse the XML (or whatever format) or just look for field names and put spaces before them, i.e.
  45. N-NSM Part of Speech: NounCase: NominativeNumber: SingularGender: Masculine
  46. should be
  47. N-NSM Part of Speech: Noun Case: Nominative Number: Singular Gender: Masculine
  48. or perhaps
  49. N-NSM
  50. Part of Speech: Noun
  51. Case: Nominative
  52. Number: Singular
  53. Gender: Masculine
  54. though this may take up too much vertical space. But it looks like Emacs puts the tooltips in a good place.
  55. - Did this by using "shr" package to parse HTML.
  56. * DONE Cross references in Abbott lexicon display are not right
  57. - I.e. Mk 3:7, 4:11, 15; should refer to Mark 3:7, Mark 4:11 and Mark 4:15.
  58. Do this with overlapping text properties.
  59. * DONE Move book/chapter/verse to status line (saves room in the display)