I want to use a dictionary (basically a text file, and no code) that is included with an open office spell checking plug-in. The plug-in is under the tri-license GPL/LGPL/MPL which I don’t understand. is that legal?
If it is illegal, what if I wrote a script that uses the said open office plug-in to generate the dictionary (assuming it’s technically possible, the script will generate all possible letter permutations, passes it to the plug-in and saves the correct ones) ?
I will be using the dictionary in a closed source commercial application.
The dictionary is in a language that has very little resources online, and short of making my own dictionary, there aren’t any alternatives.
Clarification: The script idea I mentioned above, isn’t a weird technique, I would generate a document with all possible words and use open office with the plug-in installed to show spelling mistakes and remove them, isn’t this the intended use of the plug-in (spell checking)?
3
Code can be released under multiple licenses.
If you don’t have permission to use the original file and you “launder” it like you’re suggesting, you aren’t really changing anything. Judges aren’t dumb, so if you’re essentially hoping that copying it in a weird way will make it legal when copying it directly would not, stop thinking that.
Also, don’t think that “otherwise, I’d have to make my own” will fly.
It’s possible that there is something available on the internet that is not specific to your language but that you could use. It’s also possible that the code and the data file for the plugin you’re talking about are under different licenses.
2
There are two possible scenarios, with different consequences for the licensing position.
-
Your application reads the dictionary as an input file. Your application does not care where the dictionary comes from as long as it is in the right format. Providing the dictionary along with your application is essentially a convenience for your users, if they want they can just replace it.
In this case, it does not really matter what license the dictionary has, as long as you are allowed to re-distribute (which all free licenses allow, that’s an essential part of them being free), because the combination of your application and the dictionary will not be considered a derived/modified work, but rather an aggregation of independent works.
-
Your application links to the dictionary like using a software module.
- If you link statically (the end-user can’t replace the dictionary with a different version without recompiling), you are most likely out of luck and your closed-source application can’t be distributed. It might be that the MPL allows it, but I am not familiar enough with it to tell.
- If you link dynamically (the end-user can replace the dictionary with a different version without recompiling), then you can use the dictionary under the terms of the LGPL. Because the dictionary is multi-licensed, you get to choose which license terms you want to apply.
In all cases, it should be clear that the dictionary and your application are distributed under different licences and where the source for the dictionary can be obtained (unless the dictionary file itself is its source).
1