TODO 3.0 KB

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