TODO 3.2 KB

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