Is it a legal and acceptable practice to embed an open source library in your open source application?

For example, is it alright to embed jQuery's source instead of having a <script src= ... </script>?

Of course I am not removing the credits part.

link|improve this question

I'm unsure what you mean, do you mean having a local copy of the jquery file? Or actually including the contents of the jQuery file in your HTML? – Michael Wolfendale Aug 4 '11 at 14:19
The second. Have it in the same html/php file. – Majid Fouladpour Aug 4 '11 at 14:21
feedback

3 Answers

up vote 1 down vote accepted

it will depend on the license for that particular software.

in the case of jquery, it is distributed under both gpl and mit licenses. the mit license will let you do almost anything with the software (distribute it, charge for it, etc), as long as you honor (properly distribute with your copies) the original copyright and license.

taken from ( https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt )

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

link|improve this answer
feedback

Whether it is legal is perhaps off-topic and will depend upon your license and jurisdiction.

It is, however, usually a good practice to link the jquery library externally. That way, it can be cached by the browser instead of being downloaded with your HTML source on every request.

link|improve this answer
Yes usually. I have a corner case here though. And I am asking about when both are open source (GPL, MIT, ...). How is it off-topic? – Majid Fouladpour Aug 4 '11 at 14:27
feedback

It depends under which licence the open source app is published: MIT != GPL. Wikipedia has an article about which licence can be used with others: http://en.wikipedia.org/wiki/List_of_FSF_approved_software_licenses

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.