-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
theWord import: <WT*> tags not implemented #78
Comments
Hello Paul, thank you for this bug report. Indeed, morphology import from TheWord is not implemented: BibleMultiConverter/biblemulticonverter/src/main/java/biblemulticonverter/format/TheWord.java Line 253 in cb7664b
When I implemented it in 2015, I ran into some problems and decided to first release without that support (I don't exactly remember which ones, but I assume it is caused by the intermediary format requires start and end markers for strongs and morphology, while TheWord only has the end markers). Then I must have forgotten it. The Export of morphology tags to TheWord would work fine, though, as well as exporting to MyBible.Zone I will keep this bug open to remind me that there is still an open issue. To correct it yourself (apart from implementing the missing code if you know Java), I think the only viable option would be to first convert to Diffable format, then use some regular expressions to try to fix up the tags, and then export to MyBible.Zone. Or look if you can find your input file in a different format than TheWord. [MyBible.Zone comes with SBLGNT, but from your description I assume that the module is more like MorphGNT, which includes morphology information. I am not aware of any MorphGNT modules for MyBible.Zone] |
Thanks schierlm, I greatly appreciate that explanation. I didn't yet come up with a morphgnt module that I could convert to Mybiblezone. If that proves not possible, can you point me to what the required input format would look like? I might be able to regex it into compliance. Thanks much. This is a great project! |
In
I guess the format is pretty self-explanatory if you convert something to it and have a look yourself. If you prefer some XML with schema, you can use RoundtripXML whose XSD you can find here: |
Thanks much. I will look into this! |
Wondering if my command line is deficient. I've got a tagged NT that looks like this, (from line 1):
<GR>Βίβλος<Gr><EN> Book <En><WG976><WTN-NSF l="βίβλος">
Using BMC SQLite Edition 0.0.8, I use the command:
java -jar BMC.jar TheWord sblgnt.nt MyBibleZone sblgnt
The output on my Android phone, where MyBible is installed, is:
<wt>Βίβλος<WG976><WTN-NSF l="βίβλος">
<wt
,Book
(which is good, I don't want it),So something is wrong with how the tags are being processed. Can I correct this?
Thanks very much.
The text was updated successfully, but these errors were encountered: