<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#660000">
    <div class="moz-cite-prefix">On 23.07.2012 15:24, Michael Meeks
      wrote:<br>
    </div>
    <blockquote cite="mid:1343057099.3825.121.camel@linux-d2lh.site"
      type="cite">
      <pre wrap="">Hi Nico,

On Mon, 2012-07-23 at 16:11 +0000, Nico Weyand wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">May I ask why it has been decided to switch from LGPL to MPL/LGPL
anyway ?
</pre>
      </blockquote>
      <pre wrap="">
        Of course ! :-) there is a bit of blurb in the FAQ here:

        <a class="moz-txt-link-freetext" href="http://wiki.documentfoundation.org/Development/Relicensing">http://wiki.documentfoundation.org/Development/Relicensing</a>

</pre>
      <blockquote type="cite">
        <pre wrap=""> As I see it, MPL does grant a much weaker protection for the
libreoffice code than LGPL, because one could simply take one of the
open source code files from libreoffice and include it within a closed
source project without having to release the source code of other
files of that project.
</pre>
      </blockquote>
      <pre wrap="">
        Sure, right; it is a module-level license. On the other hand, this can
also be achieved with the LGPL by simply adding misc. entry points and
linking to the module instead of including it. For the strongest
protections we'd want the GPL I guess.

</pre>
      <blockquote type="cite">
        <pre wrap="">For a lots of commits, this isn't a big issue, however for a
datastructure implementation (like the code I have committed), it is,
as it could be used without further changes in a lot of projects...
</pre>
      </blockquote>
      <pre wrap="">
        At the moment, one factor is trying to win back IBM who have an
outright allergy to anything with "GPLv3" on it; the MPLv2 they dislike
too - perhaps because it forces them to release their bug-fixes as they
ship, and makes it hard for them to compete on quality - but they can at
least accept it. Clearly their ideal is the Apache license that is
profoundly and unhelpfully weak all over :-) [ IMNSHO ]

        So; if you're really concerned by people using your data-structure
without turning that one module into a "libDataStructure" and using it
like that, then that's fine - but altering the whole project's license
to suit your change is rather a big ask :-)

        I notice you spent a lot of time writing a new tree structure; is there
some profile data or detail that explains why that is needed ? is it a
space efficiency thing ? or a time / lookup issue ? in general all new
pointer manipulation code contains plenty of bugs no matter how clever
the author :-)

        Anyhow - sorry you're out of time to work on this, it looks
interesting.

        All the best,

                Michael.
</pre>
    </blockquote>
    <br>
    OK, arguments accepted (even if I am still not convinced 100% :D);
    I'll post something on the mailing list for dual licensing.<br>
    <br>
    As for the reason of this new tree structure, it's quite simple:<br>
    1. The current implementation gives the first word that matches a
    given prefix, so the word you get as a suggestion is in many cases a
    little suboptimal. My tree gives the most probable answer.<br>
    2. I haven't looked into it very deeply, but currently the words
    seem to be stored within a list. This is inefficient (on a side
    note: I've got performance issues while typing when using
    libreoffice in the past on my netbook). This tree on the other hand
    is supposed to be efficient, especially as it stores both the
    current position within a word (so we don't need to start reading
    the tree on its root node each time the user types a new letter) and
    the most probable next char for each node (so we don't need to
    compare probabilities etc. to get the next letter in the chain
    leading to the most probable completion for a given prefix).<br>
    3. Currently, autocompletion word list is build each time
    Libreoffice opens a document and it doesn't seem to differ between
    the language of the requested word. There has been a request for
    making these word lists permanent and language dependent, which is
    why for example I've included a language property within the
    structure.<br>
    <br>
    I hope these are enough arguments for you; they certainly were for
    me :-)<br>
    <br>
    Greetings,<br>
    Nico<br>
  </body>
</html>