TODO 3.9 KB

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