ports.jsonp's source

  1 /**
  2  * @name       Supported libraries
  3  * @overview   The keywords of JavaScript library on the ports.js.
  4  * @keywords
  5  * <table cellspacing="0">
  6  * <tr>
  7  * <th>keyword</th>
  8  * <th>name</th>
  9  * <th>version</th>
 10  * <th>description</th>
 11  * <tr>
 12  *   <th>jquery</th>
 13  *   <td><a href="http://jquery.com/">jQuery</a></td>
 14  *   <td>1.1.4</td>
 15  *   <td>
 16  *     jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents,
 17  *     handle events, perform animations, and add Ajax interactions to your web pages.
 18  *     jQuery is designed to change the way that you write JavaScript.
 19  *   </td>
 20  * </tr>
 21  * <tr>
 22  *   <th>lightbox</th>
 23  *   <td><a href="http://www.huddletogether.com/projects/lightbox2/">Lightbox</a></td>
 24  *   <td>2.03.3</td>
 25  *   <td>
 26  *     Lightbox is a simple, unobtrusive script used to overlay images on the current page.
 27  *     It's a snap to setup and works on all modern browsers.
 28  *   </td>
 29  * </tr>
 30  * <tr>
 31  *   <th>mootools</th>
 32  *   <td><a href="http://mootools.net/">mootools</a></td>
 33  *   <td>1.11</td>
 34  *   <td>
 35  *     MooTools is a compact, modular,
 36  *     Object-Oriented JavaScript framework designed for the intermediate to advanced JavaScript developer.
 37  *     It allows you to write powerful, flexible, and cross-browser code with its elegant,
 38  *     well documented, and coherent API.
 39  *   </td>
 40  * </tr>
 41  * <tr>
 42  *   <th>prototype</th>
 43  *   <td><a href="http://prototypejs.org/">Prototype</a></td>
 44  *   <td>1.5.1.1</td>
 45  *   <td>
 46  *     Prototype is a JavaScript Framework that aims to ease development of dynamic web applications.
 47  *   </td>
 48  * </tr>
 49  * <tr>
 50  *   <th>scriptaculous</th>
 51  *   <td><a href="http://script.aculo.us/">script.aculo.us</a></td>
 52  *   <td>1.7.1_beta3</td>
 53  *   <td>
 54  *     script.aculo.us provides you with easy-to-use,
 55  *     cross-browser user interface JavaScript libraries
 56  *     to make your web sites and web applications fly.
 57  *   </td>
 58  * </tr>
 59  * </table><br />
 60  */
 61 
 62 
 63 
 64 port.conf({
 65 	'jquery': {
 66 		'require': [
 67 			'jquery/jquery.js'
 68 		]
 69 	},
 70 	'lightbox': {
 71 		'extend' : 'scriptaculous',
 72 		'require': [
 73 			'lightbox/lightbox.js',
 74 			'lightbox/css/lightbox.css'
 75 		]
 76 	},
 77 	'mootools': {
 78 		'require': [
 79 			'mootools/mootools.js'
 80 		]
 81 	},
 82 	'prototype': {
 83 		'require': [
 84 			'prototype/prototype.js'
 85 		]
 86 	},
 87 	'scriptaculous': {
 88 		'extend' : 'prototype',
 89 		'require': [
 90 			'scriptaculous/scriptaculous.js'
 91 		]
 92 	}
 93 });