I would like to embed JQuery into an embedded device running a web server. Being an embedded device, storage is at a premium. Here is the comment header of JQuery:
/*
* jQuery JavaScript Library v1.3.2
* http://jquery.com/
*
* Copyright (c) 2009 John Resig
* Dual licensed under the MIT and GPL licenses.
* http://docs.jquery.com/License
*
* Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
* Revision: 6246
*/
What is the proper way to include JQuery and other MIT-licensed code?
Can I just copy the Minified version to my file system and be done?
Do I need to have a copy of the MIT License somewhere in my embedded device?
What have you done?
EDIT:
A few people have chimed in. One posted the MIT License. The part that causes me to hesitate is:
"and this permission notice shall be included in all copies or substantial portions of the Software"
Does that mean I need to include the MIT License text?