Re: [sword-devel] Multiple Feature entries from getConfigEntry().

2024-05-15 Thread Troy A. Griffitts
Hi David, Yeah, so a module's config is simply a multimap.  We extend multimap with our own class multimapwithdefault to make it nice to work with when there is only one entry so you can still simply say:  SWBuf x = configEntries["mykey"]; Just like a map works, but if there is more than

Re: [sword-devel] Searching for entity attributes

2024-05-10 Thread Troy A. Griffitts
"find other occurrences of this Greek word" and I search for the Strongs number as it is formatted in that Bible. On May 6, 2024 13:17:38 GMT-03:00, "David "Judah's Shadow" Blue" wrote: >On Friday, May 3, 2024 6:00:59 PM EDT Troy A. Griffitts wrote: >>

Re: [sword-devel] Searching for entity attributes

2024-05-03 Thread Troy A. Griffitts
Have a look in sword/examples/cmdline/search.cpp  We have comments near the top how to do a strongs search with entry attributes, and you can experiment easily in there. https://crosswire.org/svn/sword/trunk/examples/cmdline/search.cpp On 5/2/24 16:02, David "Judah's Shadow" Blue wrote: I'm

Re: [sword-devel] OSHB module

2024-04-23 Thread Troy A. Griffitts
the StrongsPadding=true in its .conf file.  All Strongs-keyed dictionaries should have this entry. Hope this helps, Troy On 4/23/24 10:56, David "Judah's Shadow" Blue wrote: On Tuesday, April 16, 2024 12:21:00 AM EDT Troy A. Griffitts wrote: https://crosswire.org/svn/sword/trunk/s

Re: [sword-devel] RTF in conf files

2024-04-23 Thread Troy A. Griffitts
On Tuesday, April 16, 2024 5:35:50 AM EDT Troy A. Griffitts wrote: There is an SWFilter to help with this. E.g., to get HTML, try something like: #include SWBuf confValue = module.getConfigValue("About"); RTFHTML().processText(confValue); If you don't want HTML, I believe there are a

[sword-devel] sword-support volunteer

2024-04-17 Thread Troy A. Griffitts
Hey guys, We've have gotten pretty low on the participation charts with sword-support. This mailing list is where all support emails go.  It also gets spam, which we do our best to filter, but quick a bit still gets through. If you have been around for a while and are willing to receive and

Re: [sword-devel] RTF in conf files

2024-04-16 Thread Troy A. Griffitts
There is an SWFilter to help with this. E.g., to get HTML, try something like: #include SWBuf confValue = module.getConfigValue("About"); RTFHTML().processText(confValue); If you don't want HTML, I believe there are also other RTF filter conversions like RTFPlain which should give you things

Re: [sword-devel] OSHB module

2024-04-15 Thread Troy A. Griffitts
https://crosswire.org/svn/sword/trunk/src/modules/lexdict/swld.cpp Have a look at SWLD::strongsPad This method is supposed to be called everywhere Strongs numbers are dealt with. It is supposed to ease the pain of dealing with the various ways Strongs numbers are encoded. If you find a use

[sword-devel] Happy Easter

2024-03-31 Thread Troy A. Griffitts
Dear CrossWire Family, Happy Easter! Praise God for taking on flesh and dying for us to give us new life! Praise Him for conquering Satan, sin, and death and rising from the dead. He is risen! -- Sent from my Android device with K-9 Mail. Please excuse my

Re: [sword-devel] getKeyText() doesn't always return keys.

2024-03-29 Thread Troy A. Griffitts
Hi David, The weirdness you might be running into is the behavior that SWLex modules 'snap' their key to the nearest entry upon renderText (or stripText, as you are calling). I know this doesn't seem completely intuitive, but I would try calling stripText BEFORE calling getKeyText().  I

Re: [sword-devel] Fwd: Resend: David Haslam's inquiry about Crosswire

2024-03-14 Thread Troy A. Griffitts
ome> for iOS On Thu, Mar 14, 2024 at 08:03, Troy A. Griffitts <mailto:On Thu, Mar 14, 2024 at 08:03, Troy A. Griffitts <> wrote: I've added STEP Bible to our registry of known remote SWORD publishers, but I've tested a refresh in Bishop and it hangs on STEP Bible. I've tested using t

Re: [sword-devel] Fwd: Resend: David Haslam's inquiry about Crosswire

2024-03-14 Thread Troy A. Griffitts
hasn’t been updated for several years, so it may now need updating. The Master Repositories List (MRL) hosted by CrossWire still does not include an entry for STEP Bible. To request that this should be added, please send an email to Troy A. Griffitts - CrossWi

Re: [sword-devel] Best way to work with Genbooks

2024-03-06 Thread Troy A. Griffitts
On 3/6/24 07:49, David "Judah's Shadow" Blue wrote: On Tuesday, March 5, 2024 12:28:26 PM EST you wrote: Hi David, Traversing a tree without recursion usually required keeping a stack you can push onto and pop when you hit a leaf. This is all handled for you in the call stack when you use

Re: [sword-devel] Best way to work with Genbooks

2024-03-05 Thread Troy A. Griffitts
Hi David, Traversing a tree without recursion usually required keeping a stack you can push onto and pop when you hit a leaf.  This is all handled for you in the call stack when you use recursion.  If you really do want to avoid recursion, I would recommend having a look at general strategies

Re: [sword-devel] Catholic versification / inter-versification mappings

2024-02-19 Thread Troy A. Griffitts
d is a bit better than Sword in this regard, in that it doesn't assume fixed versifications. As far as volunteering for pumpkin holder for versifications, I nominate Arnaud. (I already bit off more than I can chew by myself. Sorry.) On 2/19/24 14:23, Troy A. Griffitts wrote:

Re: [sword-devel] Catholic versification / inter-versification mappings

2024-02-19 Thread Troy A. Griffitts
Dear all, These comments are a mix of background, history, and thoughts: 1) VERSIFICATION (v11n): Variation between reference systems sucks.  Until you get into the weeds of the details, it is normal to assume the problems are not complex.  SWORD tries to implement a simple 90% solution.

Re: [sword-devel] Making better use of the CrossWire GitHub project ?

2024-02-18 Thread Troy A. Griffitts
Dear Arnaud and others, Peter has done a good job summarizing. Yes, last year we had a discussion on the CrossWire and git topic and you can see the discussion in the mail archives here. https://crosswire.org/pipermail/sword-devel/2023-March/subject.html Some progress has been made.

Re: [sword-devel] HTTPS Transport

2024-01-21 Thread Troy A. Griffitts
tory. > >Is there any explanation for that? >I did not change anything in node-sword-interface, but only updated the sword >dependency to the latest version 3894. > >Best regards, >Tobias > >On 12/16/23 11:11 PM, Troy A. Griffitts wrote: >> Hey guys, >> >>

Re: [sword-devel] AKJV source.

2023-12-26 Thread Troy A. Griffitts
Hi Michael, we have ISO images here whick would include all the modules we had available from CrossWire but it looks like they only go back to 2004: https://crosswire.org/ftpmirror/pub/sword/iso/ On December 25, 2023 10:54:42 MST, Michael H wrote: >Cyrille found 2 "errors" in short order on

[sword-devel] HTTPS Transport

2023-12-16 Thread Troy A. Griffitts
Hey guys, For a while now, we've been working on a new mechanism for allowing a remote module installation repository to use only HTTPS traffic to supply their modules, if they wish.  A little history and how things work in the released SWORD engine and what we have in SVN trunk now... (skip

Re: [sword-devel] What markup format is SWORD's internal markup, and/or where is it documented?

2023-12-16 Thread Troy A. Griffitts
ble to adapt to Qt-less C++ without too many issues. Thanks for your help! On Fri, Dec 15, 2023 at 9:45 PM Troy A. Griffitts wrote: Hi Aaron, The SWORD engine tries to preserve the best it can the markup from an imported text for few supported markup formats. The markup used by a SWORD module is

Re: [sword-devel] What markup format is SWORD's internal markup, and/or where is it documented?

2023-12-15 Thread Troy A. Griffitts
Hi Aaron, The SWORD engine tries to preserve the best it can the markup from an imported text for few supported markup formats. The markup used by a SWORD module is specified in its .conf file. Most new SWORD modules from our Modules Team are in OSIS markup. If you want to add markdown as a

[sword-devel] Fwd: [sword-support] Please add Sword Project to Winget on Windows

2023-11-27 Thread Troy A. Griffitts
For those who build packages for Windows.  We received this request on sword-support.  It sounds interesting. Forwarded Message Subject:[sword-support] Please add Sword Project to Winget on Windows Date: Wed, 8 Nov 2023 16:12:57 + (UTC) From:

Re: [sword-devel] Crash when getting module type

2023-10-29 Thread Troy A. Griffitts
, "Troy A. Griffitts" wrote: >Hi David, > >On October 29, 2023 10:52:50 MST, "David "Judah's Shadow" Blue" > wrote: > > >>The next class at play is the library class that also has a private member >>swordLibrary, >> >>

Re: [sword-devel] Crash when getting module type

2023-10-29 Thread Troy A. Griffitts
Hi David, On October 29, 2023 10:52:50 MST, "David "Judah's Shadow" Blue" wrote: >The next class at play is the library class that also has a private member >swordLibrary, > >sword::SWMgr swordLibrary; This is the issue. Since you are declaring an instance of SWMgr here, it will get

Re: [sword-devel] Bishop to-do list

2023-10-27 Thread Troy A. Griffitts
hop on my Android phone, it crashed every time I tried to >tap the pull-down list to add a second in the parallel list. > >On 10/27/23 09:09, Troy A. Griffitts wrote: >> >> Hey guys, >> >> I just wanted to post here this random list of things I intend to

[sword-devel] Bishop to-do list

2023-10-27 Thread Troy A. Griffitts
Hey guys, I just wanted to post here this random list of things I intend to update for the next version of Bishop.  If anyone is interested in helping or giving ideas, I would love collaborators. ** *Bishop todo* * * Space between verse number and first character of text for better

Re: [sword-devel] Crash when getting module type

2023-10-27 Thread Troy A. Griffitts
On 10/27/23 09:33, David "Judah's Shadow" Blue wrote: On Friday, October 27, 2023 8:46:19 AM EDT Troy A. Griffitts wrote: Hi David. There shouldn't be any nulls in the SWMgr::Modules map. Have you done anything with the map which might have created an entry? For example, have you

[sword-devel] ETS / IBR / SBL San Antonio

2023-10-27 Thread Troy A. Griffitts
Is anyone planning to attend these annual meetings Nov 14-21? It would be great to have a dinner and meet in person if anyone would like. Troy -- Sent from my Android device with K-9 Mail. Please excuse my brevity.___ sword-devel mailing list:

Re: [sword-devel] Crash when getting module type

2023-10-27 Thread Troy A. Griffitts
Hi David. There shouldn't be any nulls in the SWMgr::Modules map. Have you done anything with the map which might have created an entry? For example, have you attempted to obtain a module by name which wasn't there? In C++ this would create an empty entry with a null pointer if the KJV wasn't

Re: [sword-devel] New shared common SWORD path on Android

2023-10-24 Thread Troy A. Griffitts
.html Up till now, the Cordova SWORD bindings have used the included libftp in SWORD for package install. My plan is to bump this up to libcurl to take advantage of some of the new features in libsword trunk. Hope it works! Troy On October 22, 2023 11:51:56 GMT+02:00, "Troy A. Griffitts&quo

Re: [sword-devel] New shared common SWORD path on Android

2023-10-22 Thread Troy A. Griffitts
/21 13:10, Troy A. Griffitts wrote: Hi Tobias, So, I did a bunch of reading when choosing this location and couldn't find anything that specifically listed which folders where standard "top level" folders under /sdcard, only that the changes to the API in newer versions of Android

Re: [sword-devel] Front-end feature

2023-06-27 Thread Troy A. Griffitts
Yes, SWORDWeb uses these to highlight parallel words. You'll see this when you click q word in either the TR or KJV here: https://crosswire.org/study/parallelstudy.jsp?del=all=KJV=TR=Treg=NASB On June 27, 2023 9:42:24 AM GMT+02:00, David Haslam wrote: >Are there any SWORD front-end apps that

Re: [sword-devel] OSIS and xi:include ?

2023-06-04 Thread Troy A. Griffitts
Hi David, Thank you for your proposal.  I don't think adding support for xi:include to osis2mod would be very difficult.  It should be a fairly straightforward addition.  I would be happy for support to be added. The trade-off I see is that someone will need to maintain the top level OSIS

[sword-devel] Fwd: [sword-support] Korean Translation

2023-05-01 Thread Troy A. Griffitts
Volunteer for anyone who can let a Korean translator use their gifts for the Lord. Original Message From: Stella Pak Sent: May 1, 2023 6:19:35 PM GMT-03:00 To: "sword-feedb...@crosswire.org" Subject: [sword-support] Korean Translation My name is Stella Pak. I am a Korean

Re: [sword-devel] Search Bug?

2023-04-24 Thread Troy A. Griffitts
Hi Stephan, Have a go with SWORD SVN. I wonder if ICU detection in trunk can handle the latest versions of libicu-dev on your Ubuntu box. svn co https://crosswire.org/svn/sword/trunk sword Thanks for looking into this. Also, you may wish to compile the examples/cmdline/search.cpp as is and

Re: [sword-devel] AndBible WEBC Daniel

2023-04-24 Thread Troy A. Griffitts
having both versions of Daniel goes. That isn't >important to you. I get that. It is more important to me to preserve the >versifications of the original works than it is to support Sword, especially >if DAN and DAG are not allowed to coexist in the same Bible. Time for a fork? > >On 4/2

Re: [sword-devel] AndBible WEBC Daniel

2023-04-24 Thread Troy A. Griffitts
 I would obvious encourage the use of "well balanced" over "broken". The use cases we need to solve are varied, but the typical cases have to be priorities. 1) Users lookup verses by reference, e.g., for Dan 3:7. What should they get? Majority of users don't ask for the Greek or Hebrew

Re: [sword-devel] Languages without a space between words

2023-04-18 Thread Troy A. Griffitts
ars my last message up a bit. Blessings, Troy > >David > >Sent from Proton Mail for iOS > >On Tue, Apr 18, 2023 at 01:08, Troy A. Griffitts wrote: > >> Great suggestions all. One thing to interject: SWORD raw search simply looks >> for a needles in a hays

Re: [sword-devel] Languages without a space between words

2023-04-17 Thread Troy A. Griffitts
Great suggestions all.  One thing to interject: SWORD raw search simply looks for a needles in a haystack-- it doesn't break words at all in the haystack.  Multi-word search-type will break the needles up by a space, e.g., if you search for "God love world" and specify multi-word then you

Re: [sword-devel] Rendering issues with Finnish Umlauts in FinPR

2023-04-06 Thread Troy A. Griffitts
der some of the helper functions implemented here: >https://github.com/ezra-bible-app/node-sword-interface/blob/master/src/sword_backend/module_helper.cpp >https://github.com/ezra-bible-app/node-sword-interface/blob/master/src/sword_backend/repository_interface.cpp > > >On 4/3/23 9:27

Re: [sword-devel] Rendering issues with Finnish Umlauts in FinPR

2023-04-03 Thread Troy A. Griffitts
gt; >I think this is something not fully clear from the SWORD >documentation/examples. > >Maybe these transformation points you had mentioned in the thread below should >be described somewhere in the developer wiki? > >Best regards, >Tobias > >On 4/3/23 6:45 P

Re: [sword-devel] Rendering issues with Finnish Umlauts in FinPR

2023-04-03 Thread Troy A. Griffitts
. If this is the case you will get whatever the modules are encoded / marked up as, which might be various things. Hope this helps, Troy On January 22, 2023 12:03:22 PM MST, "Troy A. Griffitts" wrote: >Hey guys, > >Sorry for not jumping in on this thread more quickly. > >Ple

[sword-devel] Bible in a year audio

2023-03-23 Thread Troy A. Griffitts
Hey guys. Do any of you have a strategy for reading the Bible in a year. And also for listening to the daily reading? I have a friend asking for an app which allows him to listen to the Bible in a year. He said that he previously had an app which each day gave an OT passage, a Psalm, and an

Re: [sword-devel] CrossWire and git

2023-03-18 Thread Troy A. Griffitts
Guys who prefer GitLab, I am sorry. No university research project, no commercial job has ever asked me to use GitLab. They have all asked me use GitHub. From a purely popular choice and to prevent all of us from having to create yet another account (I am sure most everyone already has a GitHub

[sword-devel] CrossWire and git

2023-03-17 Thread Troy A. Griffitts
I don't want this to turn into a debate. I agree, we need to move source control to git. I even mostly agree we should do most of our dev work on github for the visibility to draw other developers. To move forward with this: 1) I would actually need access to the github 'crosswire'

Re: [sword-devel] failing to install LXX with installmgr

2023-01-29 Thread Troy A. Griffitts
Hi Pierre, Yes, you are probably running into a bug we had in libsword a while ago which defaults the download timeout to 10 seconds. I am not at my computer now so can't give the details but the setting is under your ~/.sword/InstallMgr/InstallMgr.conf or something similar. The timeout

Re: [sword-devel] Correction for KJV module in 2 Corinthians 1:8

2023-01-16 Thread Troy A. Griffitts
Hey guys. A few points of clarity. We do make the source available from our wiki page regarding the work. https://wiki.crosswire.org/User:Dmsmith/KJV_2.6 You will find a link to the source somewhere on that page. DM Smith took over that work after we finished the KJV2003 work to manually add

Re: [sword-devel] SWORD Module Search / Also searching footnote content?

2022-12-17 Thread Troy A. Griffitts
Hi Tobias. Sure. If you turn off the Footnotes option filter during a search, you should see results without footnotes hits. In the frontends I write, I will often keep a display SWMgr and a search SWMgr around configured accordingly. Also, I believe an indexed search is configured to not

Re: [sword-devel] Question regarding InstallMgr

2022-12-08 Thread Troy A. Griffitts
Hi Paul, Have a look at the command line interface for installmgr here. https://crosswire.org/svn/sword/trunk/utilities/installmgr.cpp On December 8, 2022 1:50:48 PM MST, P Mosier wrote: >Hello, > >I am trying to figure out what the appropriate steps to take are for >programmatically

Re: [sword-devel] CrossWire down?

2022-12-06 Thread Troy A. Griffitts
Hi Timmy, We had some trouble with Apache hitting a server configuration limit this morning.  I have increased the limit and restarted the server.  This should have been limited to HTTP resources (e.g., JSWORD based apps and PocketSword).  Let us know if you are still experiencing issues.

Re: [sword-devel] SWORD module installation bug

2022-11-12 Thread Troy A. Griffitts
Thank you Gred and Tobias for the reports. Has anyone seen this happen using svn trunk? I can write up some tests to add to our test suite but it would be helpful to know if either of you have seen this with the most recent version. It is useful to hear that it was happening on rev 3873. That

Re: [sword-devel] InstallMgr::getModuleStatus / Performance optimization possible?

2022-11-05 Thread Troy A. Griffitts
?! Best regards, Tobias On 11/4/22 12:13 AM, Troy A. Griffitts wrote: OK Tobias, I have a first cut of a caching mechanism for a mods.d/ folder coded up and pushed to trunk.  I have attempted to remove the cache when the folder is changed (= new module is installed

Re: [sword-devel] InstallMgr::getModuleStatus / Performance optimization possible?

2022-11-03 Thread Troy A. Griffitts
if it improves things for you on your slower devices and we'll go from there. Troy On 11/3/22 12:05, Tobias Klein wrote: Thank you, Troy! I'd be glad to test any changes you come up with! Best regards, Tobias On 11/3/22 5:57 PM, Troy A. Griffitts wrote: Dear Tobias, I can have a look at optimizing

Re: [sword-devel] InstallMgr::getModuleStatus / Performance optimization possible?

2022-11-03 Thread Troy A. Griffitts
Dear Tobias, I can have a look at optimizing getModuleStatus.  I can certainly see that only checking locally installed modules might be a speed improvement, but I suspect most of the time is loading all the .conf files for each module, and that is done when constructing the SWMgr (remote

Re: [sword-devel] Possibility to install arbitrary module versions with InstallMgr

2022-09-29 Thread Troy A. Griffitts
That's one failure point. The download goes to a staging folder. If the download completes then any existing installed version module is removed and the staging data is copied. There are possible failure points after the download. If you are hinting at digest sum checks on the data, no we don't

Re: [sword-devel] Possibility to install arbitrary module versions with InstallMgr

2022-09-27 Thread Troy A. Griffitts
Hi Tobias. Well, adding to the API wouldn't be a significant change there. What would be significant is retaining previous versions in the remote repository. I doubt we can get people to offer every version of their texts. Updates are usually bug fixes and if they are not simply this, we

Re: [sword-devel] SWORDWeb

2022-09-24 Thread Troy A. Griffitts
Nope, that didn't work :)  Whereas https://crosswire.org moved the sidebar divs under the main body, swordweb tried to keep them and basically had a 1 word column for the Bible text. :)  We need you, Don!  HTML/CSS are not my strong points :) On 9/24/22 09:43, Troy A. Griffitts wrote: Hi Don

Re: [sword-devel] SWORDWeb

2022-09-24 Thread Troy A. Griffitts
>-- >by grace alone, > >Pastor Don A. Elbourne Jr. >Lakeshore Baptist Church >http://lakeshorebaptist.net >http://rebuildlakeshore.com > >On 8/14/2021 5:31 AM, Troy A. Griffitts wrote: >> Hi Don! I don't know if anyone is running the site other than CrossWire. >>

Re: [sword-devel] NASB 2020 and updated NASB 1995

2022-09-18 Thread Troy A. Griffitts
y much for this update. I checked all the issues on the tracker >only one is still present (and maybe the lockman foundation is interesting to >know it?):https://tracker.crosswire.org/browse/MOD-393 > >Le 17/09/2022 à 14:27, Troy A. Griffitts a écrit : >> Dear Team, >> >&g

[sword-devel] NASB 2020 and updated NASB 1995

2022-09-17 Thread Troy A. Griffitts
Dear Team, Lockman has given us updated data for their NASB 1995 module (our current module) and their new NASB 2020 edition. I have updated our conversion script to convert their latest data https://crosswire.org/svn/sword-tools/trunk/modules/nasb2020/ and have posted the two new modules

Re: [sword-devel] Module release: LXX (typos corrected)

2022-09-01 Thread Troy A. Griffitts
Sorry lots of typos in the last email from my phone. Some corrections below: On September 1, 2022 2:41:57 PM GMT+02:00, "Troy A. Griffitts" wrote: >So, LXX is hard. Chris Little did a bit of research a while back on editions >of the Greek OT. Some of his hard work is availabl

Re: [sword-devel] Module release: LXX

2022-09-01 Thread Troy A. Griffitts
So, LXX is hard. Chris Little did a bit of research a while back on editions of the Greek OT. Some of his hard work is available here: https://crosswire.org/svn/sword-tools/trunk/versification/lxx_v11ns/ There are all kinds of crazy things in there, including our of order verse numbers (SWORD

Re: [sword-devel] Bishop app usability issue

2022-08-14 Thread Troy A. Griffitts
This is not obvious, but you can tap the blue verse number to select the verse and hopefully pull up the notes. Let me know if that doesn't work. On August 14, 2022 6:47:25 PM GMT+02:00, Greg Hellings wrote: >Troy, > >I've been using Bishop on my Galaxy Tab. It is great on the tablet size

Re: [sword-devel] Server upgrades

2022-08-04 Thread Troy A. Griffitts
ixed? David Sent from Proton Mail for iOS On Mon, Aug 1, 2022 at 18:41, Troy A. Griffitts wrote: He have our core OS updated and most services back online, but still need to work on our wiki and gitlab On 8/1/22 12:34, Troy A. Griffitts wrote: > We're doing some server upgrades today. If you

Re: [sword-devel] Server upgrades

2022-08-01 Thread Troy A. Griffitts
He have our core OS updated and most services back online, but still need to work on our wiki and gitlab On 8/1/22 12:34, Troy A. Griffitts wrote: We're doing some server upgrades today.  If you notice intermittent lapse in service, please know we are doing our best to limit this during

[sword-devel] Server upgrades

2022-08-01 Thread Troy A. Griffitts
We're doing some server upgrades today.  If you notice intermittent lapse in service, please know we are doing our best to limit this during the upgrade process. Blessings! Troy ___ sword-devel mailing list: sword-devel@crosswire.org

Re: [sword-devel] Question about strong morph and xiphos

2022-06-18 Thread Troy A. Griffitts
I believe I understand what we're talking about, but please correct me if I am wrong. A long long time ago in a galaxy far far away, our data from Bible Foundation which was originally produced by them with the intend to be used by the Online Bible software package had "extended strongs"

Re: [sword-devel] HTTP Module Install Preference

2022-06-02 Thread Troy A. Griffitts
more thoughts. What part of Germany are you in? I'm working in Göttingen and Münster this summer. Troy On June 1, 2022 6:21:12 PM GMT+02:00, Bastian Germann wrote: >Hi Troy, > >Am 30.05.22 um 01:36 schrieb Troy A. Griffitts: >> 1) new unzip expansion support in the engin

[sword-devel] HTTP Module Install Preference

2022-05-29 Thread Troy A. Griffitts
Hey guys, I have some pretty experimental code in trunk which I'd love for you to try out. In general, it is an attempt to update InstallMgr to prefer HTTPS zip package downloads if HTTPS is a supported protocol on the platform and they exists on the remote source.  Details follow: 1) new

Re: [sword-devel] Open source DuoLingo

2022-03-18 Thread Troy A. Griffitts
and share lessons and progress via their shared Google storage, or something similar. https://quizlet.com/ On 3/18/22 00:46, Troy A. Griffitts wrote: Hi Vladimir, I've updated the lesson selection to suck a bit less and fixed the problem when a lesson quiz was getting stuck toward the end when

Re: [sword-devel] Open source DuoLingo

2022-03-18 Thread Troy A. Griffitts
? On Fri, Mar 18, 2022 at 12:47 AM Troy A. Griffitts wrote: Hi Vladimir, I've updated the lesson selection to suck a bit less and fixed the problem when a lesson quiz was getting stuck toward the end when only a few cards were left to master. Same link: https

Re: [sword-devel] Open source DuoLingo

2022-03-17 Thread Troy A. Griffitts
://gitlab.com/pasosdeJesus ) Where is the source code of the flashcards app? Have you considered a web application for that? (latelay I have been working specially on Ruby on Rails) Blessings. El 2022-03-10 18:15, Troy A. Griffitts escribió: Hey guys. I have a seminary who wants to teach ancient

Re: [sword-devel] Open source DuoLingo

2022-03-13 Thread Troy A. Griffitts
submit .mp3 files for correct, wrong, finished.  I've had it get stuck mid-lesson occasionally and I'm trying to figure out why. https://crosswire.org/fc/app/ On 3/11/22 15:53, Troy A. Griffitts wrote: Doing a bit more hunting around, I found this, which doesn't look too bad, but introduces

Re: [sword-devel] Open source DuoLingo

2022-03-11 Thread Troy A. Griffitts
ore interactive. > >On Fri, Mar 11, 2022 at 9:56 AM Troy A. Griffitts >wrote: > >> Thank for these suggestions, Robert. I had not heard of them. They look >> fun. I believe they seminary team is looking for an app which uses this >> style of teaching but also coaches the s

Re: [sword-devel] Open source DuoLingo

2022-03-11 Thread Troy A. Griffitts
: >You mean like Andrew and Beth have done at >https://freehebrew.hismagnificence.com/? > >(I also see a link to FreeGreek near the bottom.) > >Robert. > > >On 11/03/22 12:15, Troy A. Griffitts wrote: >> Hey guys. I have a seminary who wants to teach ancient biblical

[sword-devel] Open source DuoLingo

2022-03-10 Thread Troy A. Griffitts
Hey guys. I have a seminary who wants to teach ancient biblical languages as living language, meaning they want to use audio and conversational exercises as they teach their students, just like one might teach any language actively used in the world today. Basically, they'd like DuoLingo for

Re: [sword-devel] Sanctions and CrossWire

2022-03-10 Thread Troy A. Griffitts
I too am saddened by the situation with Ukraine. From a policy standpoint, I don't believe CrossWire has any place in offering services beyond producing and offer Bible software resources. From a practical standpoint, I agree with MPJ. In a sense you're asking the equivalent of, do any of us

Re: [sword-devel] French with Strongs?

2022-02-17 Thread Troy A. Griffitts
ugh to improve things on your own. Troy On 2/17/22 08:51, Fr Cyrille wrote: Le 17/02/2022 à 15:57, Troy A. Griffitts a écrit : Dear Fr. Cyrille, Have a look here. We regularly use this for migrating tags between modules. You can use one of the default matchers or try the GNT matcher to see

Re: [sword-devel] French with Strongs?

2022-02-17 Thread Troy A. Griffitts
Dear Fr. Cyrille, Have a look here. We regularly use this for migrating tags between modules. You can use one of the default matchers or try the GNT matcher to see how it does or use it as an example to write a more "French-specific" matcher. Let me know if you'd like help getting started:

Re: [sword-devel] Strong's numbers: Numbers or strings

2022-01-27 Thread Troy A. Griffitts
add one by using the same strongsPad function during the lemma search or lemma index creation. Let me have a bit more time to think through this. Troy On January 27, 2022 10:01:52 AM MST, "Troy A. Griffitts" wrote: >Hi Karl, > >Yes, this history of how to record Strong's

Re: [sword-devel] Strong's numbers: Numbers or strings

2022-01-27 Thread Troy A. Griffitts
Hi Karl, Yes, this history of how to record Strong's numbers has a long and inglorious history.  The zero prefix was how the "Online Bible", from which came most free online Bible resources back in the 1980s, recorded Hebrew Strong's.  The Bible Foundation (the primary initial provider of

Re: [sword-devel] Sword as a WASM library

2022-01-14 Thread Troy A. Griffitts
Welcome Zoltán! I am curious how local storage is used and how much is available. We jump through all kinds of hoops to get libsword compiled and accessible on both iOS and Android for Bishop. It would be nice if maybe we could simply ship a WASM lib with Bishop for both platforms. I noticed

Re: [sword-devel] Efficiently extracting section + chapter headers

2022-01-08 Thread Troy A. Griffitts
e->search("/Heading", >SWModule::SEARCHTYPE_ENTRYATTR, 0, ); > >When I did that I still did not get the chapter headings, though. > >Best regards, >Tobias > >On 1/7/22 3:44 PM, Troy A. Griffitts wrote: >> Dear Tobias, >> >> I haven't had

Re: [sword-devel] Efficiently extracting section + chapter headers

2022-01-07 Thread Troy A. Griffitts
rs, but not chapter headers. >Could you have another look based on the example and GerNeUe/Acts and >advise? > >I have attached a list of headers that I get from the Bible text of >GerNeUe/Acts - just for reference. > >Best regards, >Tobias > >On 4/12/21 9:07 PM

Re: [sword-devel] Getting entry by key for a lexicon module.

2022-01-03 Thread Troy A. Griffitts
Hi David. You should skip the attempt to parse a verse list. Something simple like: module->setKeyText("Moses"); SWBuf entryBody = module->renderText(); SWBuf entryKey = module->getKeyText(); Notice the renderText call before the getKeyText call. renderText will "snap" the requested key to

Re: [sword-devel] ETS / IBR / SBL

2021-11-19 Thread Troy A. Griffitts
CDT, "Troy A. Griffitts" wrote: >:) Great, Greg! Let me know if you would like to come the venue to meet up, >even if you don't attend any of the conferences. Would love to spend some time >together talking in person! > >On October 29, 2021 4:15:19 AM MST, Greg He

Re: [sword-devel] #bibletime is now on irc.oftc.net

2021-11-15 Thread Troy A. Griffitts
I know many other collaboration frameworks were discussed and this email is not meant to discourage their use, and I realize Bibletime mentioned they went with OFTC for IRC, and I don't mean to disagree with their decision... Preparing for these conferences this week, I found that our "chat

Re: [sword-devel] ETS / IBR / SBL

2021-11-15 Thread Troy A. Griffitts
Troy On 10/29/21 06:03, Troy A. Griffitts wrote: Anyone planning to visit Texas this year? I hope to be at each event. Would love to meet if anyone else plans to attend or is in the area. https://www.etsjets.org/annual_meeting_overview https://ibr-bbr.org/annual-meeting/annual-lecture http

Re: [sword-devel] Mobile Linux UIs

2021-11-08 Thread Troy A. Griffitts
qpsword was written for OPIE, which was basically linux ported to HP PDAs years ago.  It uses Qt.  It probably still calls a bunch of deprecated API methods, but should be easy to update. https://crosswire.org/qpsword/index.jsp?section=Screenshots https://crosswire.org/qpsword svn co

Re: [sword-devel] NET (Bible.org) repository offline?

2021-11-05 Thread Troy A. Griffitts
Should be resolved.  I've also updated their pay modules' .conf file with our newer UnlockInfo property to point users directly to their store page. On 11/5/21 08:12, Tobias Klein wrote: The Bible.org  SWORD repo is still offline as of now. Can somebody talk to the folks at

Re: [sword-devel] ETS / IBR / SBL

2021-10-29 Thread Troy A. Griffitts
uth of DFW! Don't know >that these are viable for me to attend this year, but I'm only about 45 >minutes from downtown Fort Worth. > >--Greg > >On Fri, Oct 29, 2021, 06:03 Troy A. Griffitts wrote: > >> Anyone planning to visit Texas this year? I hope to be at eac

[sword-devel] ETS / IBR / SBL

2021-10-29 Thread Troy A. Griffitts
Anyone planning to visit Texas this year? I hope to be at each event. Would love to meet if anyone else plans to attend or is in the area. https://www.etsjets.org/annual_meeting_overview https://ibr-bbr.org/annual-meeting/annual-lecture https://www.sbl-site.org/meetings/AnnualMeeting.aspx --

Re: [sword-devel] Windows Development

2021-10-10 Thread Troy A. Griffitts
Hi Zdenko, I use the git-svn bridge plugin for Git which will let you 'clone' the svn repository to a local git repository and do work as you would normally do in git.  If you have svn permissions for a particular part of the svn repo, you will be able to push back up.  We have access

Re: [sword-devel] New shared common SWORD path on Android

2021-10-04 Thread Troy A. Griffitts
regards, >Tobias > >On 9/13/21 12:38 PM, Troy A. Griffitts wrote: >> >> Thanks Michael, yes, I also feel we need to not swim against the >> Google flow.  The problem is that the Google flow seems to turn at >> each new release of Android.  Be assured, my goal is to

[sword-devel] Bishop Locale Translator Help

2021-09-20 Thread Troy A. Griffitts
Dear volunteers who have helped with translating Bishop, We are looking for help choosing a "preferred Bible" for each locale, set by adding a new string to the translation file with a key simply as preferredBible= Can you help? Bishop started off by shipping a very small (~3MB) APK with

Re: [sword-devel] New shared common SWORD path on Android

2021-09-13 Thread Troy A. Griffitts
missions request for > WRITE_EXTERNAL_STORAGE. > > I wonder whether there is still any way to still use /sdcard/* in > Android >= 11 in the C++ context ... I haven't found a solution yet > and it seems rather complicated. > > Best regards, > Tobias > > On 9/12/21 3:51

[sword-devel] New shared common SWORD path on Android

2021-09-12 Thread Troy A. Griffitts
Dear all, I've been updating Bishop to work on newer versions of Android and have found that we are running into problems trying to create the "Nonstandard top-level folder" 'sword' at the root of the common storage folder. Tobias, I know a while back you mentioned that you had to update Ezra

Re: [sword-devel] SWORDWeb

2021-08-14 Thread Troy A. Griffitts
Hi Don! I don't know if anyone is running the site other than CrossWire. We've helped a few people setup the software over the years but not sure if they continue to run it. We've made an OCI container of the software to make it scalable and to more easily spin up an image:

Re: [sword-devel] Xiphos / SWORD / F34

2021-07-29 Thread Troy A. Griffitts
tes/FEDORA-2021-7c840c4245> > BibleTime update: > https://bodhi.fedoraproject.org/updates/FEDORA-2021-d44aac8e44 > <https://bodhi.fedoraproject.org/updates/FEDORA-2021-d44aac8e44> > > --Greg > > On Wed, Jul 14, 2021 at 1:12 PM Troy A. Griffitts > mailto:scr...@crosswire.org>> wrote

  1   2   3   4   5   6   7   8   9   10   >