mercury 0.9.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. data/LICENSE +1 -1
  2. data/README.rdoc +12 -5
  3. data/bin/mercury +17 -2
  4. data/lib/mercury.rb +9 -69
  5. data/lib/mercury/helpers.rb +61 -0
  6. data/lib/mercury/images.rb +33 -0
  7. data/lib/public/javascripts/jquery-ui-1.8.custom.min.js +374 -0
  8. data/lib/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
  9. data/lib/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  10. data/lib/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
  11. data/lib/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
  12. data/lib/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  13. data/lib/public/stylesheets/smoothness/{jquery-ui-1.8rc3.custom.css → jquery-ui-1.8.custom.css} +9 -8
  14. data/lib/views/index.haml +6 -1
  15. data/lib/views/layout.haml +2 -2
  16. metadata +21 -33
  17. data/.document +0 -5
  18. data/.gitignore +0 -21
  19. data/Mercury.gemspec +0 -108
  20. data/Rakefile +0 -48
  21. data/VERSION +0 -1
  22. data/docs/config.ru +0 -7
  23. data/docs/mercury.log +0 -3015
  24. data/docs/views/about.haml +0 -6
  25. data/docs/views/about.md +0 -25
  26. data/docs/views/default.sass +0 -30
  27. data/docs/views/example.haml +0 -14
  28. data/docs/views/example.md +0 -82
  29. data/docs/views/footer.haml +0 -2
  30. data/docs/views/header.haml +0 -3
  31. data/docs/views/home.md +0 -21
  32. data/docs/views/index.haml +0 -14
  33. data/docs/views/navigation.haml +0 -9
  34. data/docs/views/resources.haml +0 -12
  35. data/docs/views/resources.md +0 -8
  36. data/docs/views/wolfgang.coffee +0 -4
  37. data/lib/public/javascripts/jquery-ui-1.8rc3.custom.min.js +0 -374
  38. data/spec/spec.opts +0 -1
@@ -1,6 +0,0 @@
1
- = sass :default
2
- = haml :header
3
- = haml :navigation
4
- #content.container_12
5
- = markdown :about
6
- = haml :footer
data/docs/views/about.md DELETED
@@ -1,25 +0,0 @@
1
- # About Mercury
2
-
3
- Mercury is a gem that makes it simple to work with haml, sass, jquery and other tools and technologies without the hassle.
4
-
5
- <pre><code>
6
- $ gem install mercury
7
-
8
- $ mercury {your project}
9
-
10
- $ cd {your project}
11
-
12
- $ mate views
13
-
14
- # Start writing your haml
15
-
16
- # default.haml
17
-
18
- %h1 Hello World
19
-
20
- ----
21
-
22
- # Run
23
-
24
- $ mercury
25
- </code></pre>
@@ -1,30 +0,0 @@
1
- =nav_a
2
- padding: .5px
3
- color: #004080
4
-
5
- body
6
- font-family: monospace
7
-
8
- #header-wrapper
9
- background-color: orange
10
- color: white
11
-
12
- #navigation
13
- text-align: left
14
- ul
15
- list-style: none
16
-
17
- li
18
- display: inline
19
- a
20
- +nav_a
21
-
22
-
23
- #home-content
24
- p
25
- font-size: 2em
26
-
27
- pre
28
- background-color: black
29
- color: white
30
- padding: 10px
@@ -1,14 +0,0 @@
1
- = sass :default
2
- = haml :header
3
- = haml :navigation
4
- = coffee :wolfgang
5
-
6
- #content.container_12
7
- .grid_7.prefix_2.suffix_3
8
- = markdown :example
9
-
10
-
11
- .clear
12
-
13
-
14
- = haml :footer
@@ -1,82 +0,0 @@
1
- ## Step 1 : Create Index File
2
-
3
- In the views folder create a file called 'index.haml', then add the following:
4
-
5
- <pre><code>
6
- <span style='color:orange'>.container_12</span>
7
- <span style='color:orange'>.grid_4</span>
8
- <span style='color:green'>%h1</span> Mercury Example
9
- <span style='color:orange'>.clear</span>
10
- <span style='color:orange'>.grid_12</span>
11
- <span style='color:green'>%p</span>
12
- Lorem ipsum dolor sit amet,
13
- consectetur adipisicing elit,
14
- sed do eiusmod tempor incididunt
15
- ut labore et dolore magna aliqua.
16
- <span style='color:orange'>.clear</span>
17
- </code></pre>
18
-
19
- You are using the 960 grid system to make you layout.
20
-
21
- ## Step 2: Add some sass
22
-
23
- Create a sass file called 'default.sass' in your views directory.
24
-
25
- <pre><code>
26
- <span style='color:orange'>body</span>
27
- <span style='color:green'>font-family:</span> arial
28
- <span style='color:green'>background-color:</span> whitesmoke
29
-
30
- <span style='color:orange'>h1</span>
31
- <span style='color:green'>color:</span> cyan
32
-
33
- <span style='color:orange'>p</span>
34
- <span style='color:green'>color:</span> green
35
-
36
- </code></pre>
37
-
38
-
39
- <pre><code>
40
- <span style='color:yellow'>= sass :default</span>
41
- <span style='color:orange'>.container_12</span>
42
- <span style='color:orange'>.grid_4</span>
43
- <span style='color:green'>%h1</span> Mercury Example
44
- <span style='color:orange'>.clear</span>
45
- <span style='color:orange'>.grid_12</span>
46
- <span style='color:green'>%p</span>
47
- Lorem ipsum dolor sit amet,
48
- consectetur adipisicing elit,
49
- sed do eiusmod tempor incididunt
50
- ut labore et dolore magna aliqua.
51
- <span style='color:orange'>.clear</span>
52
- </code></pre>
53
-
54
- ## Step 3: Add some coffee-script
55
-
56
- create a file called 'default.coffee' in the views directory
57
-
58
- <pre><code>
59
-
60
- <span style='color:green'>$(</span><span style='color:yellow'>'document'</span><span style='color:green'>).ready -></span>
61
- <span style='color:green'>$(<span style='color:yellow'>'.grid_4'</span><span style='color:green'>).css</span> <span style='color:orange'>'background-color'</span>, <span style='color:orange'>'gray'</span>
62
-
63
- </code></pre>
64
-
65
- And attach it to your index.haml file
66
-
67
- <pre><code>
68
- <span style='color:yellow'>= sass :default</span>
69
- <span style='color:yellow'>= coffee :default</span>
70
- <span style='color:orange'>.container_12</span>
71
- <span style='color:orange'>.grid_4</span>
72
- <span style='color:green'>%h1</span> Mercury Example
73
- <span style='color:orange'>.clear</span>
74
- <span style='color:orange'>.grid_12</span>
75
- <span style='color:green'>%p</span>
76
- Lorem ipsum dolor sit amet,
77
- consectetur adipisicing elit,
78
- sed do eiusmod tempor incididunt
79
- ut labore et dolore magna aliqua.
80
- <span style='color:orange'>.clear</span>
81
- </code></pre>
82
-
@@ -1,2 +0,0 @@
1
- #footer.container_12
2
- Mercury Documentation Site
@@ -1,3 +0,0 @@
1
- #header-wrapper
2
- #header.container_16
3
- %h1 Mercury Docs
data/docs/views/home.md DELETED
@@ -1,21 +0,0 @@
1
- Mercury is a gem that makes it simple to work with haml, sass, jquery, coffee-script and other tools and technologies without the hassle.
2
-
3
- ## Installation
4
-
5
- <pre><code>
6
- $ gem install mercury
7
- </code></pre>
8
-
9
- ## Create a Mercury Project
10
-
11
- <pre><code>
12
- $ mercury project_awesome
13
- </code></pre>
14
-
15
- ## Run your Mercury Project
16
-
17
- <pre><code>
18
- $ cd project_awesome
19
- $ mercury
20
- </code></pre>
21
-
@@ -1,14 +0,0 @@
1
- = sass :default
2
- = haml :header
3
- = haml :navigation
4
- = coffee :wolfgang
5
-
6
- #home-content.container_12
7
- .grid_7.prefix_2.suffix_3
8
- = markdown :home
9
-
10
-
11
- .clear
12
-
13
-
14
- = haml :footer
@@ -1,9 +0,0 @@
1
- #navigation.container_16
2
- .grid_10.prefix_2
3
- %ul
4
- %li
5
- %a{:href => '/'} Home
6
- %li
7
- %a{:href => '/example'} Example
8
- %li
9
- %a{:href => '/resources'} Resources
@@ -1,12 +0,0 @@
1
- = sass :default
2
- = haml :header
3
- = haml :navigation
4
- #content.container_12
5
- .grid_7.prefix_2.suffix_3
6
- = markdown :resources
7
-
8
-
9
- .clear
10
-
11
-
12
- = haml :footer
@@ -1,8 +0,0 @@
1
- ## Mercury allows you to easily use the following list of technologies:
2
-
3
- * [Haml](http://www.haml-lang.com)
4
- * [Sass](http://www.sass-lang.com)
5
- * [JQuery](http://www.jquery.com)
6
- * [JQueryUI](http://www.jqueryui.com)
7
- * [Coffee-Script](http://jashkenas.github.com/coffee-script)
8
- * [Markdown](http://daringfireball.net/projects/markdown/)
@@ -1,4 +0,0 @@
1
- $('document').ready ->
2
- $('#navigation li a').button()
3
-
4
-
@@ -1,374 +0,0 @@
1
- /*!
2
- * jQuery UI 1.8rc3
3
- *
4
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
5
- * Dual licensed under the MIT (MIT-LICENSE.txt)
6
- * and GPL (GPL-LICENSE.txt) licenses.
7
- *
8
- * http://docs.jquery.com/UI
9
- */
10
- * jQuery UI 1.8rc3
11
- *
12
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
13
- * Dual licensed under the MIT (MIT-LICENSE.txt)
14
- * and GPL (GPL-LICENSE.txt) licenses.
15
- *
16
- * http://docs.jquery.com/UI
17
- */
18
- jQuery.ui||(function(b){var a=b.browser.mozilla&&(parseFloat(b.browser.version)<1.9);b.ui={version:"1.8rc3",plugin:{add:function(d,e,g){var f=b.ui[d].prototype;for(var c in g){f.plugins[c]=f.plugins[c]||[];f.plugins[c].push([e,g[c]])}},call:function(c,e,d){var g=c.plugins[e];if(!g||!c.element[0].parentNode){return}for(var f=0;f<g.length;f++){if(c.options[g[f][0]]){g[f][1].apply(c.element,d)}}}},contains:function(d,c){return document.compareDocumentPosition?d.compareDocumentPosition(c)&16:d!==c&&d.contains(c)},hasScroll:function(f,d){if(b(f).css("overflow")=="hidden"){return false}var c=(d&&d=="left")?"scrollLeft":"scrollTop",e=false;if(f[c]>0){return true}f[c]=1;e=(f[c]>0);f[c]=0;return e},isOverAxis:function(d,c,e){return(d>c)&&(d<(c+e))},isOver:function(h,d,g,f,c,e){return b.ui.isOverAxis(h,g,c)&&b.ui.isOverAxis(d,f,e)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};b.fn.extend({_focus:b.fn.focus,focus:function(c,d){return typeof c==="number"?this.each(function(){var e=this;setTimeout(function(){b(e).focus();(d&&d.call(e))},c)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var c;if((b.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){c=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(b.curCSS(this,"position",1))&&(/(auto|scroll)/).test(b.curCSS(this,"overflow",1)+b.curCSS(this,"overflow-y",1)+b.curCSS(this,"overflow-x",1))}).eq(0)}else{c=this.parents().filter(function(){return(/(auto|scroll)/).test(b.curCSS(this,"overflow",1)+b.curCSS(this,"overflow-y",1)+b.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!c.length?b(document):c},zIndex:function(f){if(f!==undefined){return this.css("zIndex",f)}if(this.length){var d=b(this[0]),c,e;while(d.length&&d[0]!==document){c=d.css("position");if(c=="absolute"||c=="relative"||c=="fixed"){e=parseInt(d.css("zIndex"));if(!isNaN(e)&&e!=0){return e}}d=d.parent()}}return 0}});b.extend(b.expr[":"],{data:function(e,d,c){return !!b.data(e,c[3])},focusable:function(d){var e=d.nodeName.toLowerCase(),c=b.attr(d,"tabindex");return(/input|select|textarea|button|object/.test(e)?!d.disabled:"a"==e||"area"==e?d.href||!isNaN(c):!isNaN(c))&&!b(d)["area"==e?"parents":"closest"](":hidden").length},tabbable:function(d){var c=b.attr(d,"tabindex");return(isNaN(c)||c>=0)&&b(d).is(":focusable")}})})(jQuery);;/*!
19
- * jQuery UI Widget 1.8rc3
20
- *
21
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
22
- * Dual licensed under the MIT (MIT-LICENSE.txt)
23
- * and GPL (GPL-LICENSE.txt) licenses.
24
- *
25
- * http://docs.jquery.com/UI/Widget
26
- */
27
- * jQuery UI Widget 1.8rc3
28
- *
29
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
30
- * Dual licensed under the MIT (MIT-LICENSE.txt)
31
- * and GPL (GPL-LICENSE.txt) licenses.
32
- *
33
- * http://docs.jquery.com/UI/Widget
34
- */
35
- (function(b){var a=b.fn.remove;b.fn.remove=function(c,d){return this.each(function(){if(!d){if(!c||b.filter(c,[this]).length){b("*",this).add(this).each(function(){b(this).triggerHandler("remove")})}}return a.call(b(this),c,d)})};b.widget=function(d,f,c){var e=d.split(".")[0],h;d=d.split(".")[1];h=e+"-"+d;if(!c){c=f;f=b.Widget}b.expr[":"][h]=function(i){return !!b.data(i,d)};b[e]=b[e]||{};b[e][d]=function(i,j){if(arguments.length){this._createWidget(i,j)}};var g=new f();g.options=b.extend({},g.options);b[e][d].prototype=b.extend(true,g,{namespace:e,widgetName:d,widgetEventPrefix:b[e][d].prototype.widgetEventPrefix||d,widgetBaseClass:h},c);b.widget.bridge(d,b[e][d])};b.widget.bridge=function(d,c){b.fn[d]=function(g){var e=typeof g==="string",f=Array.prototype.slice.call(arguments,1),h=this;g=!e&&f.length?b.extend.apply(null,[true,g].concat(f)):g;if(e&&g.substring(0,1)==="_"){return h}if(e){this.each(function(){var i=b.data(this,d),j=i&&b.isFunction(i[g])?i[g].apply(i,f):i;if(j!==i&&j!==undefined){h=j;return false}})}else{this.each(function(){var i=b.data(this,d);if(i){if(g){i.option(g)}i._init()}else{b.data(this,d,new c(g,this))}})}return h}};b.Widget=function(c,d){if(arguments.length){this._createWidget(c,d)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(d,e){this.element=b(e).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(e)[this.widgetName],d);var c=this;this.element.bind("remove."+this.widgetName,function(){c.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled")},widget:function(){return this.element},option:function(e,f){var d=e,c=this;if(arguments.length===0){return b.extend({},c.options)}if(typeof e==="string"){if(f===undefined){return this.options[e]}d={};d[e]=f}b.each(d,function(g,h){c._setOption(g,h)});return c},_setOption:function(c,d){this.options[c]=d;if(c==="disabled"){this.widget()[d?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",d)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(d,e,f){var h=this.options[d];e=b.Event(e);e.type=(d===this.widgetEventPrefix?d:this.widgetEventPrefix+d).toLowerCase();f=f||{};if(e.originalEvent){for(var c=b.event.props.length,g;c;){g=b.event.props[--c];e[g]=e.originalEvent[g]}}this.element.trigger(e,f);return !(b.isFunction(h)&&h.call(this.element[0],e,f)===false||e.isDefaultPrevented())}}})(jQuery);;/*!
36
- * jQuery UI Mouse 1.8rc3
37
- *
38
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
39
- * Dual licensed under the MIT (MIT-LICENSE.txt)
40
- * and GPL (GPL-LICENSE.txt) licenses.
41
- *
42
- * http://docs.jquery.com/UI/Mouse
43
- *
44
- * Depends:
45
- * jquery.ui.widget.js
46
- */
47
- * jQuery UI Mouse 1.8rc3
48
- *
49
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
50
- * Dual licensed under the MIT (MIT-LICENSE.txt)
51
- * and GPL (GPL-LICENSE.txt) licenses.
52
- *
53
- * http://docs.jquery.com/UI/Mouse
54
- *
55
- * Depends:
56
- * jquery.ui.widget.js
57
- */
58
- (function(a){a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(c){return b._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(b._preventClickEvent){b._preventClickEvent=false;c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(d){d.originalEvent=d.originalEvent||{};if(d.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(d));this._mouseDownEvent=d;var c=this,e=(d.which==1),b=(typeof this.options.cancel=="string"?a(d.target).parents().add(d.target).filter(this.options.cancel).length:false);if(!e||b||!this._mouseCapture(d)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(d)!==false);if(!this._mouseStarted){d.preventDefault();return true}}this._mouseMoveDelegate=function(f){return c._mouseMove(f)};this._mouseUpDelegate=function(f){return c._mouseUp(f)};a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(a.browser.safari||d.preventDefault());d.originalEvent.mouseHandled=true;return true},_mouseMove:function(b){if(a.browser.msie&&!b.button){return this._mouseUp(b)}if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,b)!==false);(this._mouseStarted?this._mouseDrag(b):this._mouseUp(b))}return !this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(b.target==this._mouseDownEvent.target);this._mouseStop(b)}return false},_mouseDistanceMet:function(b){return(Math.max(Math.abs(this._mouseDownEvent.pageX-b.pageX),Math.abs(this._mouseDownEvent.pageY-b.pageY))>=this.options.distance)},_mouseDelayMet:function(b){return this.mouseDelayMet},_mouseStart:function(b){},_mouseDrag:function(b){},_mouseStop:function(b){},_mouseCapture:function(b){return true}})})(jQuery);;/*
59
- * jQuery UI Position 1.8rc3
60
- *
61
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
62
- * Dual licensed under the MIT (MIT-LICENSE.txt)
63
- * and GPL (GPL-LICENSE.txt) licenses.
64
- *
65
- * http://docs.jquery.com/UI/Position
66
- */
67
- * jQuery UI Draggable 1.8rc3
68
- *
69
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
70
- * Dual licensed under the MIT (MIT-LICENSE.txt)
71
- * and GPL (GPL-LICENSE.txt) licenses.
72
- *
73
- * http://docs.jquery.com/UI/Draggables
74
- *
75
- * Depends:
76
- * jquery.ui.core.js
77
- * jquery.ui.mouse.js
78
- * jquery.ui.widget.js
79
- */
80
- * jQuery UI Droppable 1.8rc3
81
- *
82
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
83
- * Dual licensed under the MIT (MIT-LICENSE.txt)
84
- * and GPL (GPL-LICENSE.txt) licenses.
85
- *
86
- * http://docs.jquery.com/UI/Droppables
87
- *
88
- * Depends:
89
- * jquery.ui.core.js
90
- * jquery.ui.widget.js
91
- * jquery.ui.mouse.js
92
- * jquery.ui.draggable.js
93
- */
94
- * jQuery UI Resizable 1.8rc3
95
- *
96
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
97
- * Dual licensed under the MIT (MIT-LICENSE.txt)
98
- * and GPL (GPL-LICENSE.txt) licenses.
99
- *
100
- * http://docs.jquery.com/UI/Resizables
101
- *
102
- * Depends:
103
- * jquery.ui.core.js
104
- * jquery.ui.mouse.js
105
- * jquery.ui.widget.js
106
- */
107
- * jQuery UI Selectable 1.8rc3
108
- *
109
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
110
- * Dual licensed under the MIT (MIT-LICENSE.txt)
111
- * and GPL (GPL-LICENSE.txt) licenses.
112
- *
113
- * http://docs.jquery.com/UI/Selectables
114
- *
115
- * Depends:
116
- * jquery.ui.core.js
117
- * jquery.ui.mouse.js
118
- * jquery.ui.widget.js
119
- */
120
- * jQuery UI Sortable 1.8rc3
121
- *
122
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
123
- * Dual licensed under the MIT (MIT-LICENSE.txt)
124
- * and GPL (GPL-LICENSE.txt) licenses.
125
- *
126
- * http://docs.jquery.com/UI/Sortables
127
- *
128
- * Depends:
129
- * jquery.ui.core.js
130
- * jquery.ui.mouse.js
131
- * jquery.ui.widget.js
132
- */
133
- * jQuery UI Accordion 1.8rc3
134
- *
135
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
136
- * Dual licensed under the MIT (MIT-LICENSE.txt)
137
- * and GPL (GPL-LICENSE.txt) licenses.
138
- *
139
- * http://docs.jquery.com/UI/Accordion
140
- *
141
- * Depends:
142
- * jquery.ui.core.js
143
- * jquery.ui.widget.js
144
- */
145
- * jQuery UI Autocomplete 1.8rc3
146
- *
147
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
148
- * Dual licensed under the MIT (MIT-LICENSE.txt)
149
- * and GPL (GPL-LICENSE.txt) licenses.
150
- *
151
- * http://docs.jquery.com/UI/Autocomplete
152
- *
153
- * Depends:
154
- * jquery.ui.core.js
155
- * jquery.ui.widget.js
156
- * jquery.ui.position.js
157
- */
158
- * jQuery UI Button 1.8rc3
159
- *
160
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
161
- * Dual licensed under the MIT (MIT-LICENSE.txt)
162
- * and GPL (GPL-LICENSE.txt) licenses.
163
- *
164
- * http://docs.jquery.com/UI/Button
165
- *
166
- * Depends:
167
- * jquery.ui.core.js
168
- * jquery.ui.widget.js
169
- */
170
- * jQuery UI Dialog 1.8rc3
171
- *
172
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
173
- * Dual licensed under the MIT (MIT-LICENSE.txt)
174
- * and GPL (GPL-LICENSE.txt) licenses.
175
- *
176
- * http://docs.jquery.com/UI/Dialog
177
- *
178
- * Depends:
179
- * jquery.ui.core.js
180
- * jquery.ui.widget.js
181
- * jquery.ui.button.js
182
- * jquery.ui.draggable.js
183
- * jquery.ui.mouse.js
184
- * jquery.ui.position.js
185
- * jquery.ui.resizable.js
186
- */
187
- * jQuery UI Slider 1.8rc3
188
- *
189
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
190
- * Dual licensed under the MIT (MIT-LICENSE.txt)
191
- * and GPL (GPL-LICENSE.txt) licenses.
192
- *
193
- * http://docs.jquery.com/UI/Slider
194
- *
195
- * Depends:
196
- * jquery.ui.core.js
197
- * jquery.ui.mouse.js
198
- * jquery.ui.widget.js
199
- */
200
- * jQuery UI Tabs 1.8rc3
201
- *
202
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
203
- * Dual licensed under the MIT (MIT-LICENSE.txt)
204
- * and GPL (GPL-LICENSE.txt) licenses.
205
- *
206
- * http://docs.jquery.com/UI/Tabs
207
- *
208
- * Depends:
209
- * jquery.ui.core.js
210
- * jquery.ui.widget.js
211
- */
212
- * jQuery UI Datepicker 1.8rc3
213
- *
214
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
215
- * Dual licensed under the MIT (MIT-LICENSE.txt)
216
- * and GPL (GPL-LICENSE.txt) licenses.
217
- *
218
- * http://docs.jquery.com/UI/Datepicker
219
- *
220
- * Depends:
221
- * jquery.ui.core.js
222
- */
223
- * jQuery UI Progressbar 1.8rc3
224
- *
225
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
226
- * Dual licensed under the MIT (MIT-LICENSE.txt)
227
- * and GPL (GPL-LICENSE.txt) licenses.
228
- *
229
- * http://docs.jquery.com/UI/Progressbar
230
- *
231
- * Depends:
232
- * jquery.ui.core.js
233
- * jquery.ui.widget.js
234
- */
235
- * jQuery UI Effects 1.8rc3
236
- *
237
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
238
- * Dual licensed under the MIT (MIT-LICENSE.txt)
239
- * and GPL (GPL-LICENSE.txt) licenses.
240
- *
241
- * http://docs.jquery.com/UI/Effects/
242
- */
243
- * jQuery UI Effects Blind 1.8rc3
244
- *
245
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
246
- * Dual licensed under the MIT (MIT-LICENSE.txt)
247
- * and GPL (GPL-LICENSE.txt) licenses.
248
- *
249
- * http://docs.jquery.com/UI/Effects/Blind
250
- *
251
- * Depends:
252
- * jquery.effects.core.js
253
- */
254
- * jQuery UI Effects Bounce 1.8rc3
255
- *
256
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
257
- * Dual licensed under the MIT (MIT-LICENSE.txt)
258
- * and GPL (GPL-LICENSE.txt) licenses.
259
- *
260
- * http://docs.jquery.com/UI/Effects/Bounce
261
- *
262
- * Depends:
263
- * jquery.effects.core.js
264
- */
265
- * jQuery UI Effects Clip 1.8rc3
266
- *
267
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
268
- * Dual licensed under the MIT (MIT-LICENSE.txt)
269
- * and GPL (GPL-LICENSE.txt) licenses.
270
- *
271
- * http://docs.jquery.com/UI/Effects/Clip
272
- *
273
- * Depends:
274
- * jquery.effects.core.js
275
- */
276
- * jQuery UI Effects Drop 1.8rc3
277
- *
278
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
279
- * Dual licensed under the MIT (MIT-LICENSE.txt)
280
- * and GPL (GPL-LICENSE.txt) licenses.
281
- *
282
- * http://docs.jquery.com/UI/Effects/Drop
283
- *
284
- * Depends:
285
- * jquery.effects.core.js
286
- */
287
- * jQuery UI Effects Explode 1.8rc3
288
- *
289
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
290
- * Dual licensed under the MIT (MIT-LICENSE.txt)
291
- * and GPL (GPL-LICENSE.txt) licenses.
292
- *
293
- * http://docs.jquery.com/UI/Effects/Explode
294
- *
295
- * Depends:
296
- * jquery.effects.core.js
297
- */
298
- * jQuery UI Effects Fold 1.8rc3
299
- *
300
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
301
- * Dual licensed under the MIT (MIT-LICENSE.txt)
302
- * and GPL (GPL-LICENSE.txt) licenses.
303
- *
304
- * http://docs.jquery.com/UI/Effects/Fold
305
- *
306
- * Depends:
307
- * jquery.effects.core.js
308
- */
309
- * jQuery UI Effects Highlight 1.8rc3
310
- *
311
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
312
- * Dual licensed under the MIT (MIT-LICENSE.txt)
313
- * and GPL (GPL-LICENSE.txt) licenses.
314
- *
315
- * http://docs.jquery.com/UI/Effects/Highlight
316
- *
317
- * Depends:
318
- * jquery.effects.core.js
319
- */
320
- * jQuery UI Effects Pulsate 1.8rc3
321
- *
322
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
323
- * Dual licensed under the MIT (MIT-LICENSE.txt)
324
- * and GPL (GPL-LICENSE.txt) licenses.
325
- *
326
- * http://docs.jquery.com/UI/Effects/Pulsate
327
- *
328
- * Depends:
329
- * jquery.effects.core.js
330
- */
331
- * jQuery UI Effects Scale 1.8rc3
332
- *
333
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
334
- * Dual licensed under the MIT (MIT-LICENSE.txt)
335
- * and GPL (GPL-LICENSE.txt) licenses.
336
- *
337
- * http://docs.jquery.com/UI/Effects/Scale
338
- *
339
- * Depends:
340
- * jquery.effects.core.js
341
- */
342
- * jQuery UI Effects Shake 1.8rc3
343
- *
344
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
345
- * Dual licensed under the MIT (MIT-LICENSE.txt)
346
- * and GPL (GPL-LICENSE.txt) licenses.
347
- *
348
- * http://docs.jquery.com/UI/Effects/Shake
349
- *
350
- * Depends:
351
- * jquery.effects.core.js
352
- */
353
- * jQuery UI Effects Slide 1.8rc3
354
- *
355
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
356
- * Dual licensed under the MIT (MIT-LICENSE.txt)
357
- * and GPL (GPL-LICENSE.txt) licenses.
358
- *
359
- * http://docs.jquery.com/UI/Effects/Slide
360
- *
361
- * Depends:
362
- * jquery.effects.core.js
363
- */
364
- * jQuery UI Effects Transfer 1.8rc3
365
- *
366
- * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
367
- * Dual licensed under the MIT (MIT-LICENSE.txt)
368
- * and GPL (GPL-LICENSE.txt) licenses.
369
- *
370
- * http://docs.jquery.com/UI/Effects/Transfer
371
- *
372
- * Depends:
373
- * jquery.effects.core.js
374
- */