Coincidently my starting in putting together a literature review on open source happened at the same time as the conflict between the WordPress project and the makers of a theme called Thesis went public (#thesiswpMixergy). The arguments and the nastiness are all too familiar to those from the Joomla! world. Interestingly, in my very first literature seach on the term "open source" I came up with a whole set of law review articles on licensing. I guess that makes sense since licensing is at the heart of what makes open source/free software different. Interestingly, a lot of them are older, but they are useful nonetheless. So the first article I read was ...

 

There are many different kinds of law review articles. Some make an argument and some, like Carver's, lay out the state of things at the time they were written. In 2005, the SCO v. IBM case was in a much more unclear state than it is today, the Progress case had been decided. A law review article is not case law (way too often I see foss people quote articles as if they are), but this is an attempt to summarize the case law and to explain the issues that remain open.

One of the things that was interesting to me was his discussion of dynamic linking, which is one of the complicated areas where people get pulled in discussion of the GPL. Reading it helped me see that the whole topic is pretty irrelevant for PHP.

Static linking involves embedding the library in the independent program when it is compiled.89 A dynamically linked library is not incorporated into a program, rather it exists both in its own place on a computer’s hard drive and in its own memory space while in use.90 Multiple programs might even be dynamically linked to the same library and communicate with it while it sits in a single memory space.91 Consequently, some have argued that a proprietary program could dynamically link to a library licensed under the GPL, or a program licensed under the GPL could dynamically link to a proprietary library, and in neither case would a “derivative work” of the GPL-covered work be created, since the two programs retain distinct existences and only tenuous connections.92 (469)

To me, admittedly not a computer scientist as well as not a lawyer, neither static nor dynamic linking really describes how php brings together core applications (like Joomla!, WordPress or Drupal) and code that extends them, even when that code is highly modularized or encapsulated. When Joomla! is rendering a page it has the core and the extension in the same memory space at the same time working together to produce what the user sees, save things in the database, cache or do other things.

So the whole issue of whether or not dynamic linking creates a derivative work seems like a red herring. Making what in Joomla! is called an extension is a way of improving the application by adding new functionality. Improving the application is a right guaranteed by the GPL and is part of the power of the GPL to produce superior code. Improvements have to be licensed under the GPL. So even though the GPL was really invented with thinking that was focused around compiled languages in some ways it seems less ambiguous for interpreted languages like PHP than for others.

Carver continues that "ultimately, the issue of what constitutes a derivative software work must be addressed by statute or the courts." I'm sure that's true, but coming from the perspective of a writer and a bug fixer and occassional module and plugin writer, I think there is a whole separate issue. That is one that has been highlighted in the WordPress blow up, which is much more like a print or music copyright issue.

When someone or some group wants to reverse engineer an application they are generally advised to use a "clean room" procedure. That is it should be written by someone who has never look at the code of the original application and who is just given a list of specifications. That way you can document that no concepts or code were derived from the original application. That's simply not the way that open source code development works.  This came up again in the WordPress issue when people asked whether the Thesis author had learned from studying the theme included in the distribution of WordPress. Then the whole story went from bad to worse with the revelation that actual GPL code is included in the Thesis theme.

One of the things that is really nice about taking the time to read serious articles is doing is highlighting for me why it is that so many people have trouble with the issue. Carver's article is 39 pages and really carefully written, but the arguments people have about licensing online tend to be quick exchanges. It's not fair to say they are 140 characters because there are clearly some longer well thought out discussions. And I will say that a lot of them represent new people who haven't really thought through things before. Each time, new people have to go through the same round of arguments and questions. Tweeting, blogging, forum posts are their way of thinking out loud. It's alway variations on the same questions (arguments) because those are the questions people need to ask in order to work their way through the logic. it's not that different, really, than me knowing in advance what 80% of the questions willl be for a particular topic in a class. So, you just patiently listen, answer, listen, answer. And you think it through some more so that your depth of understanding is increased, which this article helped me to do.