<div>OK - but my observations were not entirely irrelevant.&nbsp;</div><div><br></div><div>Some front-ends never need the user to enter a reference in an edit box. Navigation is done&nbsp;entirely via menu selections&nbsp;or clicking search results etc.&nbsp;</div><div>AFAICT this is true of PocketSword.&nbsp;</div><div><br></div><div>Other front-ends are designed at the opposite extreme. All navigation is done through an edit box. This is true (eg)&nbsp;of STEP Bible.&nbsp;</div><div><br></div><div>Best regards,</div><div><br></div><div>David.&nbsp;</div><div><br></div><div id="protonmail_mobile_signature_block"><div>Sent from ProtonMail Mobile</div></div> <div><br></div><div><br></div>On Tue, May 28, 2019 at 13:54, refdoc@gmx.net &lt;<a href="mailto:refdoc@gmx.net" class="">refdoc@gmx.net</a>&gt; wrote:<blockquote class="protonmail_quote" type="cite">  Sorry, David, that is a complete  misunderstanding. Modules need osisref. There is and will be no need to do anything to the modules. This is about the engine parser to read references locale appropriately. <br><br>Sent from my mobile. Please forgive shortness, typos and weird autocorrects.<div class="quote" style="line-height: 1.5"><br><br>-------- Original Message --------<br>Subject: Re: [sword-devel] C++ volunteer<br>From: David Haslam <br>To: SWORD Developers' Collaboration Forum <br>CC: <br><br><br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">   <div>Parsing native&nbsp;references is not a simple task, as we know from the fact that adyeths orefs.py was kicked into touch indefinitely.&nbsp;</div><div><br></div><div>And that’s even when punctuation marks are defined in the specified&nbsp;configuration file.&nbsp;</div><div><br></div><div>Unless we might consider the possibility of adding keys to module .conf files that define the module specific native&nbsp;reference punctuation marks and separators.&nbsp;</div><div><br></div><div>That could be a huge undertaking, considering the need to maintain backwards compatibility.&nbsp;</div><div><br></div><div>And it’s not as if it really is module specific entirely. A user can be switching between modules with&nbsp;different languages, yet would need the current reference to always work,&nbsp;no matter what.&nbsp;</div><div><br></div><div>Best regards&nbsp;</div><div><br></div><div>David</div><div><br></div><div id="protonmail_mobile_signature_block"><div>Sent from ProtonMail Mobile</div></div> <div><br></div><div><br></div>On Tue, May 28, 2019 at 12:10, refdoc@gmx.net &lt;<a href="mailto:refdoc@gmx.net" class="">refdoc@gmx.net</a>&gt; wrote:<blockquote class="protonmail_quote" type="cite">  The improvement request for allowing commas in references... adding commas in the suggested form would make millions of currently valid Anglo references invalid. The problem is a much wider one, references should be localised in their punctuation too. I am not sure how difficult this would be, but I guess we could make a start by defining what punctuation is used for which purpose , and then take it from there. <br><br>Cyrille, maybe start a page on the wiki and start thinking  there. <br><br>Sent from my mobile. Please forgive shortness, typos and weird autocorrects.<div class="quote" style="line-height: 1.5"><br><br>-------- Original Message --------<br>Subject: Re: [sword-devel] C++ volunteer<br>From: Cyrille <br>To: SWORD Developers' Collaboration Forum <br>CC: <br><br><br type="attribution"><blockquote class="quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">




    Hello Richard,<br>
    Welcome!<br>
    <span class="tlid-translation translation" lang="en"><span title="" class="">May I make a very selfish proposal to Richard who
        offers his help.</span> <span title="" class="">There are two
        issues that I really want to be resolved.</span> <span title="" class="">One of which particularly handicaps Catholic users,
        (but I discovered today that the issue wasn't been reported!!! I
        just did it): <a class="moz-txt-link-freetext" href="https://tracker.crosswire.org/browse/API-216">https://tracker.crosswire.org/browse/API-216</a><br>
      </span></span>And the second:
    <a class="moz-txt-link-freetext" href="https://tracker.crosswire.org/projects/API/issues/API-180">https://tracker.crosswire.org/projects/API/issues/API-180</a><br>
    <br>
    <span class="tlid-translation translation" lang="en"><span title="" class="">If there are more important things that I am not able
        to estimate not being a developer, I would have tried my luck ;)</span></span><br>
    <br>
    <div class="moz-cite-prefix">Il 28/05/2019 01:38, Troy A. Griffitts
      ha scritto:<br>
    </div>
    <blockquote type="cite">
      <pre class="moz-quote-pre" wrap="">Richard, sorry, I meant to give you the link to our tracker:

<a class="moz-txt-link-freetext" href="https://tracker.crosswire.org">https://tracker.crosswire.org</a>


On 5/27/19 4:32 PM, Troy A. Griffitts wrote:
</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">Welcome, Richard!

I would start at 2 places:

First, have a look at our tracker here.&nbsp; We are not very (very not)
disciplined at keeping it current.&nbsp; Skimming through there and
commenting on anything that looks interesting, or even cleaning a few
things up in there that you confirm are no longer a problem might be a
useful exercise to get you poking around at internals and would be a
blessing for us.&nbsp; Our modus operandi as of late is to create a new unit
test in sword/tests/testssuite/ which fails at the bug and then once
fixed, the test should pass and we leave the test around to be sure we
don't regress.&nbsp; We can always use more tests in our tests suite.

Next, we have the intention to modularize our search engines support and
search types.&nbsp; Right now, SWModule (which represents a Bible) implements
our SWSearchable interface, which is fine, but right now it has a bunch
of #ifdef logic and switch statements to take different code paths
depending on which search engine is compiled into SWORD and which search
type is specified.&nbsp; This was fine initially, but has grown to such that
we now support spaghetti in there.&nbsp; It should probably simply have a set
of SWSearchable objects in a map&lt;SEARCH_TYPE, SWSearchable&gt; and proxy
the search request to the appropriate SWSearchable impl based on what
types are registered for the module.&nbsp; This would allow us to implement
new types and register them with modules which support special search
types, e.g., advanced Hebrew Morphology searching.&nbsp; That's the general
idea anyway.

You should probably become familiar with SWFilter and how we use these
throughout the engine. These prepare a buffer for particular
objectives.&nbsp; We have RenderFilters, EncodingFilters, StripFilters, ...&nbsp;
The last prepares an SWModule entry for searching by, typically,
stripping out all markup and leaving only a plaintext buffer which can
be searched.&nbsp; We have some special code in the SWModule::search
spaghetti which takes Greek and Hebrew modules and turns buffers into a
series of Strongs#@MorphCode Strong#@MorphCode ... which allows regex
searches to do some advanced morph searching... like: Find this strongs
number, any morphology, followed by a any verb withing 2 words.&nbsp; You
have to be pretty familiar with the Strong#@MorphCode syntax to
formulate something like that, but the idea is that a frontend could
have a nice UI to help a user come up with some creative searches.&nbsp;
Anyway, these should all be probably modulized out by renaming the
StripFilter concept to SearchFilter, and then pushing all this special
code out to SearchFilter impls which do these special things...

Finally, an objective of all this search modularization is also to break
out the code required to create search indexes for each of the search
engines we support.&nbsp; Ideally, we should be able to support the same
searches either as an indexed or brute force search.&nbsp; The same code
which iterates a module, prepares each entry, and pushes that entry to
the search engine, building the search index, should also work for a
brute force search-- iterating the module, preparing each entry for the
search engine.. and then performing a check on that buffer to see if it
matches the search expression.

I hope this gives you a few things to think about. It has been good for
me to refresh thoughts on all of this.&nbsp; Have a look and let me know what
you think.

Welcome!&nbsp; Looking forward to sharing in service together,

Troy

&nbsp;

On 5/27/19 1:09 PM, Richard Smith wrote:
</pre>
        <blockquote type="cite">
          <pre class="moz-quote-pre" wrap="">Hi,

My name's Richard Smith. I'm a C++ software engineer with 10 years
experience in various industries. I was wondering if there was any
space for a volunteer. I've started taking a look at things (building
repos on Win/unix), but if there are specific things that are
required, within my ability, I'm happy to do that.

Best Regards
Richard Smith

_______________________________________________
sword-devel mailing list: <a class="moz-txt-link-abbreviated" href="mailto:sword-devel@crosswire.org">sword-devel@crosswire.org</a>
<a class="moz-txt-link-freetext" href="http://www.crosswire.org/mailman/listinfo/sword-devel">http://www.crosswire.org/mailman/listinfo/sword-devel</a>
Instructions to unsubscribe/change your settings at above page
</pre>
        </blockquote>
        <pre class="moz-quote-pre" wrap="">_______________________________________________
sword-devel mailing list: <a class="moz-txt-link-abbreviated" href="mailto:sword-devel@crosswire.org">sword-devel@crosswire.org</a>
<a class="moz-txt-link-freetext" href="http://www.crosswire.org/mailman/listinfo/sword-devel">http://www.crosswire.org/mailman/listinfo/sword-devel</a>
Instructions to unsubscribe/change your settings at above page
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">_______________________________________________
sword-devel mailing list: <a class="moz-txt-link-abbreviated" href="mailto:sword-devel@crosswire.org">sword-devel@crosswire.org</a>
<a class="moz-txt-link-freetext" href="http://www.crosswire.org/mailman/listinfo/sword-devel">http://www.crosswire.org/mailman/listinfo/sword-devel</a>
Instructions to unsubscribe/change your settings at above page</pre>
    </blockquote>
    <br>


</blockquote></div></blockquote><div><br></div><div><br></div></blockquote></div></blockquote><div><br></div><div><br></div>