TODO 4.3 KB

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