mercury 0.4.1 → 0.5.0

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.
data/Mercury.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{mercury}
8
- s.version = "0.4.1"
8
+ s.version = "0.5.0"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Tom Wilson"]
@@ -30,9 +30,24 @@ Gem::Specification.new do |s|
30
30
  "lib/mercury.rb",
31
31
  "lib/public/favicon.ico",
32
32
  "lib/public/javascripts/jquery-1.4.2.min.js",
33
+ "lib/public/javascripts/jquery-ui-1.8rc2.custom.min.js",
33
34
  "lib/public/stylesheets/960.css",
34
35
  "lib/public/stylesheets/app.css",
35
36
  "lib/public/stylesheets/reset.css",
37
+ "lib/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png",
38
+ "lib/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png",
39
+ "lib/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png",
40
+ "lib/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png",
41
+ "lib/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png",
42
+ "lib/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png",
43
+ "lib/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png",
44
+ "lib/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png",
45
+ "lib/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png",
46
+ "lib/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png",
47
+ "lib/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png",
48
+ "lib/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png",
49
+ "lib/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png",
50
+ "lib/public/stylesheets/smoothness/jquery-ui-1.8rc2.custom.css",
36
51
  "lib/public/stylesheets/text.css",
37
52
  "lib/views/index.haml",
38
53
  "lib/views/layout.haml",
data/README.rdoc CHANGED
@@ -1,6 +1,15 @@
1
1
  = Mercury
2
2
 
3
- Mercury is a gem that create a small web application that makes it very easy for you to generate wireframes in your favorite editor. Basically you create a "views" folder and start building your haml files in any kind of structure you would like. Then run rackup in the root folder and you are running a wireframe server on port 9292.
3
+ Mercury is a command line application that makes it dirt simple to create
4
+ html forms(wireframes) using the following technology:
5
+
6
+ * haml
7
+ * jquery
8
+ * jquery-ui
9
+
10
+ == Why
11
+
12
+ Using textmate, haml, and jquery to create slick ui designs is a great and fluid process, but the hassel of creating a rails, sinatra or other web framework app to present them was a waste of time. So with mercury you use the haml, jquery, jquery-ui, with just a simple command. You don't have to know ruby, all you have to do is to run "mercury [myproject]", open the views folder and start creating .haml files.
4
13
 
5
14
  == Install
6
15
 
@@ -11,21 +20,7 @@ Mercury is a gem that create a small web application that makes it very easy for
11
20
 
12
21
  # Create a new folder for your project
13
22
 
14
- mkdir my_wireframes
15
-
16
- # Create a new file called "config.ru"
17
-
18
- cd my_wireframes
19
- touch config.ru
20
-
21
- # open this file in a text editor and add the following code
22
-
23
- require 'mercury'
24
- run Mercury
25
-
26
- # Create a folder called views
27
-
28
- mkdir views
23
+ mercury [project]
29
24
 
30
25
  # Create your erb or haml files
31
26
 
@@ -35,7 +30,7 @@ Mercury is a gem that create a small web application that makes it very easy for
35
30
 
36
31
  ===
37
32
 
38
- # then create a wire frame
33
+ # then create a wire frame form
39
34
 
40
35
  touch test.haml
41
36
 
@@ -58,15 +53,15 @@ Mercury is a gem that create a small web application that makes it very easy for
58
53
  %td
59
54
  %textarea{:style => 'height:40px; width:490px'}
60
55
 
61
- ===
56
+ ===Run Server
62
57
 
63
58
  # cd back to the root directory
64
59
 
65
60
  cd ..
66
61
 
67
- # run rackup
62
+ # run
68
63
 
69
- rackup
64
+ mercury
70
65
 
71
66
  # now navigate to localhost:9292
72
67
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.5.0
data/lib/mercury.rb CHANGED
@@ -1,8 +1,9 @@
1
1
  require 'sinatra'
2
2
  require 'haml'
3
+ require 'fileutils'
3
4
 
4
5
  class Mercury < Sinatra::Default
5
- set :root, %x["pwd"].gsub("\n",'')
6
+ set :root, FileUtils.pwd.gsub("\n",'')
6
7
  set :public, File.dirname(__FILE__) + '/public'
7
8
 
8
9
  get '/*' do
@@ -0,0 +1,374 @@
1
+ /*!
2
+ * jQuery UI 1.8rc2
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.8rc2
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.8rc2",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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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.8rc2
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
+ */
@@ -32,4 +32,17 @@ table.show {
32
32
  padding:10px;
33
33
  border:2px solid #d5d0d2;
34
34
 
35
+ }
36
+
37
+ #wrap a {
38
+ color:#150029;
39
+ font-size:1.2em;
40
+ text-decoration:none;
41
+ padding:5px;
42
+ background-color:#E6E6E6;
43
+ }
44
+
45
+ #wrap a:hover {
46
+ background-color:#150029;
47
+ color:#fff;
35
48
  }
@@ -0,0 +1,479 @@
1
+ /*
2
+ * jQuery UI CSS Framework
3
+ * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
4
+ * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
5
+ */
6
+
7
+ /* Layout helpers
8
+ ----------------------------------*/
9
+ .ui-helper-hidden { display: none; }
10
+ .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
11
+ .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
12
+ .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
13
+ .ui-helper-clearfix { display: inline-block; }
14
+ /* required comment for clearfix to work in Opera \*/
15
+ * html .ui-helper-clearfix { height:1%; }
16
+ .ui-helper-clearfix { display:block; }
17
+ /* end clearfix */
18
+ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
19
+
20
+
21
+ /* Interaction Cues
22
+ ----------------------------------*/
23
+ .ui-state-disabled { cursor: default !important; }
24
+
25
+
26
+ /* Icons
27
+ ----------------------------------*/
28
+
29
+ /* states and images */
30
+ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
31
+
32
+
33
+ /* Misc visuals
34
+ ----------------------------------*/
35
+
36
+ /* Overlays */
37
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
38
+
39
+
40
+ /*
41
+ * jQuery UI CSS Framework
42
+ * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
43
+ * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
44
+ * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Verdana,Arial,sans-serif&fwDefault=normal&fsDefault=1.1em&cornerRadius=4px&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=75&borderColorHeader=aaaaaa&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=75&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=75&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=65&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
45
+ */
46
+
47
+
48
+ /* Component containers
49
+ ----------------------------------*/
50
+ .ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 1.1em; }
51
+ .ui-widget .ui-widget { font-size: 1em; }
52
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Verdana,Arial,sans-serif; font-size: 1em; }
53
+ .ui-widget-content { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x; color: #222222; }
54
+ .ui-widget-content a { color: #222222; }
55
+ .ui-widget-header { border: 1px solid #aaaaaa; background: #cccccc url(images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
56
+ .ui-widget-header a { color: #222222; }
57
+
58
+ /* Interaction states
59
+ ----------------------------------*/
60
+ .ui-state-default, .ui-widget-content .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url(images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #555555; }
61
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
62
+ .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus { border: 1px solid #999999; background: #dadada url(images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
63
+ .ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
64
+ .ui-state-active, .ui-widget-content .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x; font-weight: normal; color: #212121; }
65
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
66
+ .ui-widget :active { outline: none; }
67
+
68
+ /* Interaction Cues
69
+ ----------------------------------*/
70
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee url(images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x; color: #363636; }
71
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a { color: #363636; }
72
+ .ui-state-error, .ui-widget-content .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
73
+ .ui-state-error a, .ui-widget-content .ui-state-error a { color: #cd0a0a; }
74
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text { color: #cd0a0a; }
75
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary { font-weight: bold; }
76
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
77
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
78
+
79
+ /* Icons
80
+ ----------------------------------*/
81
+
82
+ /* states and images */
83
+ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_222222_256x240.png); }
84
+ .ui-widget-content .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
85
+ .ui-widget-header .ui-icon {background-image: url(images/ui-icons_222222_256x240.png); }
86
+ .ui-state-default .ui-icon { background-image: url(images/ui-icons_888888_256x240.png); }
87
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
88
+ .ui-state-active .ui-icon {background-image: url(images/ui-icons_454545_256x240.png); }
89
+ .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
90
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
91
+
92
+ /* positioning */
93
+ .ui-icon-carat-1-n { background-position: 0 0; }
94
+ .ui-icon-carat-1-ne { background-position: -16px 0; }
95
+ .ui-icon-carat-1-e { background-position: -32px 0; }
96
+ .ui-icon-carat-1-se { background-position: -48px 0; }
97
+ .ui-icon-carat-1-s { background-position: -64px 0; }
98
+ .ui-icon-carat-1-sw { background-position: -80px 0; }
99
+ .ui-icon-carat-1-w { background-position: -96px 0; }
100
+ .ui-icon-carat-1-nw { background-position: -112px 0; }
101
+ .ui-icon-carat-2-n-s { background-position: -128px 0; }
102
+ .ui-icon-carat-2-e-w { background-position: -144px 0; }
103
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
104
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
105
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
106
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
107
+ .ui-icon-triangle-1-s { background-position: -64px -16px; }
108
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
109
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
110
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
111
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
112
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
113
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
114
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
115
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
116
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
117
+ .ui-icon-arrow-1-s { background-position: -64px -32px; }
118
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
119
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
120
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
121
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
122
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
123
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
124
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
125
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
126
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
127
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
128
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
129
+ .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
130
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
131
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
132
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
133
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
134
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
135
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
136
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
137
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
138
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
139
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
140
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
141
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
142
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
143
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
144
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
145
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
146
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
147
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
148
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
149
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
150
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
151
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
152
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
153
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
154
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
155
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
156
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
157
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
158
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
159
+ .ui-icon-extlink { background-position: -32px -80px; }
160
+ .ui-icon-newwin { background-position: -48px -80px; }
161
+ .ui-icon-refresh { background-position: -64px -80px; }
162
+ .ui-icon-shuffle { background-position: -80px -80px; }
163
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
164
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
165
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
166
+ .ui-icon-folder-open { background-position: -16px -96px; }
167
+ .ui-icon-document { background-position: -32px -96px; }
168
+ .ui-icon-document-b { background-position: -48px -96px; }
169
+ .ui-icon-note { background-position: -64px -96px; }
170
+ .ui-icon-mail-closed { background-position: -80px -96px; }
171
+ .ui-icon-mail-open { background-position: -96px -96px; }
172
+ .ui-icon-suitcase { background-position: -112px -96px; }
173
+ .ui-icon-comment { background-position: -128px -96px; }
174
+ .ui-icon-person { background-position: -144px -96px; }
175
+ .ui-icon-print { background-position: -160px -96px; }
176
+ .ui-icon-trash { background-position: -176px -96px; }
177
+ .ui-icon-locked { background-position: -192px -96px; }
178
+ .ui-icon-unlocked { background-position: -208px -96px; }
179
+ .ui-icon-bookmark { background-position: -224px -96px; }
180
+ .ui-icon-tag { background-position: -240px -96px; }
181
+ .ui-icon-home { background-position: 0 -112px; }
182
+ .ui-icon-flag { background-position: -16px -112px; }
183
+ .ui-icon-calendar { background-position: -32px -112px; }
184
+ .ui-icon-cart { background-position: -48px -112px; }
185
+ .ui-icon-pencil { background-position: -64px -112px; }
186
+ .ui-icon-clock { background-position: -80px -112px; }
187
+ .ui-icon-disk { background-position: -96px -112px; }
188
+ .ui-icon-calculator { background-position: -112px -112px; }
189
+ .ui-icon-zoomin { background-position: -128px -112px; }
190
+ .ui-icon-zoomout { background-position: -144px -112px; }
191
+ .ui-icon-search { background-position: -160px -112px; }
192
+ .ui-icon-wrench { background-position: -176px -112px; }
193
+ .ui-icon-gear { background-position: -192px -112px; }
194
+ .ui-icon-heart { background-position: -208px -112px; }
195
+ .ui-icon-star { background-position: -224px -112px; }
196
+ .ui-icon-link { background-position: -240px -112px; }
197
+ .ui-icon-cancel { background-position: 0 -128px; }
198
+ .ui-icon-plus { background-position: -16px -128px; }
199
+ .ui-icon-plusthick { background-position: -32px -128px; }
200
+ .ui-icon-minus { background-position: -48px -128px; }
201
+ .ui-icon-minusthick { background-position: -64px -128px; }
202
+ .ui-icon-close { background-position: -80px -128px; }
203
+ .ui-icon-closethick { background-position: -96px -128px; }
204
+ .ui-icon-key { background-position: -112px -128px; }
205
+ .ui-icon-lightbulb { background-position: -128px -128px; }
206
+ .ui-icon-scissors { background-position: -144px -128px; }
207
+ .ui-icon-clipboard { background-position: -160px -128px; }
208
+ .ui-icon-copy { background-position: -176px -128px; }
209
+ .ui-icon-contact { background-position: -192px -128px; }
210
+ .ui-icon-image { background-position: -208px -128px; }
211
+ .ui-icon-video { background-position: -224px -128px; }
212
+ .ui-icon-script { background-position: -240px -128px; }
213
+ .ui-icon-alert { background-position: 0 -144px; }
214
+ .ui-icon-info { background-position: -16px -144px; }
215
+ .ui-icon-notice { background-position: -32px -144px; }
216
+ .ui-icon-help { background-position: -48px -144px; }
217
+ .ui-icon-check { background-position: -64px -144px; }
218
+ .ui-icon-bullet { background-position: -80px -144px; }
219
+ .ui-icon-radio-off { background-position: -96px -144px; }
220
+ .ui-icon-radio-on { background-position: -112px -144px; }
221
+ .ui-icon-pin-w { background-position: -128px -144px; }
222
+ .ui-icon-pin-s { background-position: -144px -144px; }
223
+ .ui-icon-play { background-position: 0 -160px; }
224
+ .ui-icon-pause { background-position: -16px -160px; }
225
+ .ui-icon-seek-next { background-position: -32px -160px; }
226
+ .ui-icon-seek-prev { background-position: -48px -160px; }
227
+ .ui-icon-seek-end { background-position: -64px -160px; }
228
+ .ui-icon-seek-start { background-position: -80px -160px; }
229
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
230
+ .ui-icon-seek-first { background-position: -80px -160px; }
231
+ .ui-icon-stop { background-position: -96px -160px; }
232
+ .ui-icon-eject { background-position: -112px -160px; }
233
+ .ui-icon-volume-off { background-position: -128px -160px; }
234
+ .ui-icon-volume-on { background-position: -144px -160px; }
235
+ .ui-icon-power { background-position: 0 -176px; }
236
+ .ui-icon-signal-diag { background-position: -16px -176px; }
237
+ .ui-icon-signal { background-position: -32px -176px; }
238
+ .ui-icon-battery-0 { background-position: -48px -176px; }
239
+ .ui-icon-battery-1 { background-position: -64px -176px; }
240
+ .ui-icon-battery-2 { background-position: -80px -176px; }
241
+ .ui-icon-battery-3 { background-position: -96px -176px; }
242
+ .ui-icon-circle-plus { background-position: 0 -192px; }
243
+ .ui-icon-circle-minus { background-position: -16px -192px; }
244
+ .ui-icon-circle-close { background-position: -32px -192px; }
245
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
246
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
247
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
248
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
249
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
250
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
251
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
252
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
253
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
254
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
255
+ .ui-icon-circle-check { background-position: -208px -192px; }
256
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
257
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
258
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
259
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
260
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
261
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
262
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
263
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
264
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
265
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
266
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
267
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
268
+
269
+
270
+ /* Misc visuals
271
+ ----------------------------------*/
272
+
273
+ /* Corner radius */
274
+ .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; }
275
+ .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
276
+ .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
277
+ .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
278
+ .ui-corner-top { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; }
279
+ .ui-corner-bottom { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
280
+ .ui-corner-right { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; border-top-right-radius: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }
281
+ .ui-corner-left { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; border-top-left-radius: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
282
+ .ui-corner-all { -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; }
283
+
284
+ /* Overlays */
285
+ .ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
286
+ .ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/* Resizable
287
+ ----------------------------------*/
288
+ .ui-resizable { position: relative;}
289
+ .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
290
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
291
+ .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
292
+ .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
293
+ .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
294
+ .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
295
+ .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
296
+ .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
297
+ .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
298
+ .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Accordion
299
+ ----------------------------------*/
300
+ .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
301
+ .ui-accordion .ui-accordion-li-fix { display: inline; }
302
+ .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
303
+ .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
304
+ .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
305
+ .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
306
+ .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
307
+ .ui-accordion .ui-accordion-content-active { display: block; }/* Autocomplete
308
+ ----------------------------------*/
309
+ .ui-autocomplete { position: absolute; cursor: default; }
310
+ .ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; }
311
+
312
+ /* workarounds */
313
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
314
+
315
+ /* Menu
316
+ ----------------------------------*/
317
+ .ui-menu {
318
+ list-style:none;
319
+ padding: 2px;
320
+ margin: 0;
321
+ display:block;
322
+ }
323
+ .ui-menu .ui-menu {
324
+ margin-top: -3px;
325
+ }
326
+ .ui-menu .ui-menu-item {
327
+ margin:0;
328
+ padding: 0;
329
+ width: 100%;
330
+ }
331
+ .ui-menu .ui-menu-item a {
332
+ text-decoration:none;
333
+ display:block;
334
+ padding:.2em .4em;
335
+ line-height:1.5;
336
+ }
337
+ .ui-menu .ui-menu-item a.ui-state-hover,
338
+ .ui-menu .ui-menu-item a.ui-state-active {
339
+ margin: -1px;
340
+ }
341
+ /* Button
342
+ ----------------------------------*/
343
+
344
+ .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
345
+ .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
346
+ button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
347
+ .ui-button-icons-only { width: 3em; }
348
+ button.ui-button-icons-only { width: 3.2em; }
349
+
350
+ /*button text element */
351
+ .ui-button .ui-button-text { display: block; line-height: 1.4; }
352
+ .ui-button-text-only .ui-button-text { padding: .4em 1em; }
353
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
354
+ .ui-button-text-icon .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 1.8em; }
355
+ .ui-button-text-icons .ui-button-text { padding-right: 1.8em; }
356
+ /* no icon support for input elements, provide padding by default */
357
+ input.ui-button { padding: .4em 1em; }
358
+
359
+ /*button icon element(s) */
360
+ .ui-button-icon-only .ui-icon, .ui-button-text-icon .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
361
+ .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
362
+ .ui-button-text-icon .ui-icon-primary, .ui-button-text-icons .ui-icon-primary, .ui-button-icons-only .ui-icon-primary { left: .5em; }
363
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
364
+
365
+ /*button sets*/
366
+ .ui-button-set { margin-right: 7px; }
367
+ .ui-button-set .ui-button { margin-left: 0; margin-right: -.3em; }
368
+
369
+ /* workarounds */
370
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
371
+
372
+
373
+
374
+
375
+
376
+ /* Dialog
377
+ ----------------------------------*/
378
+ .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; }
379
+ .ui-dialog .ui-dialog-titlebar { padding: .5em 1em .3em; position: relative; }
380
+ .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .2em 0; }
381
+ .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
382
+ .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
383
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
384
+ .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
385
+ .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
386
+ .ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
387
+ .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
388
+ .ui-draggable .ui-dialog-titlebar { cursor: move; }
389
+ /* Slider
390
+ ----------------------------------*/
391
+ .ui-slider { position: relative; text-align: left; }
392
+ .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
393
+ .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
394
+
395
+ .ui-slider-horizontal { height: .8em; }
396
+ .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
397
+ .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
398
+ .ui-slider-horizontal .ui-slider-range-min { left: 0; }
399
+ .ui-slider-horizontal .ui-slider-range-max { right: 0; }
400
+
401
+ .ui-slider-vertical { width: .8em; height: 100px; }
402
+ .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
403
+ .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
404
+ .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
405
+ .ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
406
+ ----------------------------------*/
407
+ .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
408
+ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
409
+ .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 0; border-bottom: 0 !important; padding: 0; white-space: nowrap; }
410
+ .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
411
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected { margin-bottom: 0; padding-bottom: 1px; }
412
+ .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
413
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
414
+ .ui-tabs .ui-tabs-panel { display: block; border: 0; padding: 1em 1.4em; background: none; }
415
+ .ui-tabs .ui-tabs-hide { display: none !important; }
416
+ /* Datepicker
417
+ ----------------------------------*/
418
+ .ui-datepicker { width: 17em; padding: .2em .2em 0; }
419
+ .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
420
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
421
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
422
+ .ui-datepicker .ui-datepicker-prev { left:2px; }
423
+ .ui-datepicker .ui-datepicker-next { right:2px; }
424
+ .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
425
+ .ui-datepicker .ui-datepicker-next-hover { right:1px; }
426
+ .ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span { display: block; position: absolute; left: 50%; margin-left: -8px; top: 50%; margin-top: -8px; }
427
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
428
+ .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
429
+ .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
430
+ .ui-datepicker select.ui-datepicker-month,
431
+ .ui-datepicker select.ui-datepicker-year { width: 49%;}
432
+ .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
433
+ .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
434
+ .ui-datepicker td { border: 0; padding: 1px; }
435
+ .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
436
+ .ui-datepicker .ui-datepicker-buttonpane { background-image: none; margin: .7em 0 0 0; padding:0 .2em; border-left: 0; border-right: 0; border-bottom: 0; }
437
+ .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
438
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
439
+
440
+ /* with multiple calendars */
441
+ .ui-datepicker.ui-datepicker-multi { width:auto; }
442
+ .ui-datepicker-multi .ui-datepicker-group { float:left; }
443
+ .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
444
+ .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
445
+ .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
446
+ .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
447
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
448
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
449
+ .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
450
+ .ui-datepicker-row-break { clear:both; width:100%; }
451
+
452
+ /* RTL support */
453
+ .ui-datepicker-rtl { direction: rtl; }
454
+ .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
455
+ .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
456
+ .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
457
+ .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
458
+ .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
459
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
460
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
461
+ .ui-datepicker-rtl .ui-datepicker-group { float:right; }
462
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
463
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
464
+
465
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
466
+ .ui-datepicker-cover {
467
+ display: none; /*sorry for IE5*/
468
+ display/**/: block; /*sorry for IE5*/
469
+ position: absolute; /*must have*/
470
+ z-index: -1; /*must have*/
471
+ filter: mask(); /*must have*/
472
+ top: -4px; /*must have*/
473
+ left: -4px; /*must have*/
474
+ width: 200px; /*must have*/
475
+ height: 200px; /*must have*/
476
+ }/* Progressbar
477
+ ----------------------------------*/
478
+ .ui-progressbar { height:2em; text-align: left; }
479
+ .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
data/lib/views/index.haml CHANGED
@@ -1,10 +1,9 @@
1
- .grid_16
2
- %p Welcome
1
+ #wrap.grid_16
2
+ %p Wireframe Mockups
3
3
 
4
- %ul
5
4
  - Dir.glob('views/**/*.haml').each do |f|
6
5
  - unless f =~ /index/ or f =~ /layout/
7
- %li
6
+ .grid_2
8
7
  %a{:href => f.gsub(/views/,'').match(/(.*).haml$/)[1]}= f.match(/\/(.*).haml$/)[1]
9
8
 
10
9
 
@@ -2,7 +2,7 @@
2
2
  %html{ :xmlns => "http://www.w3.org/1999/xhtml", :lang => "en", 'xml:lang' => "en" }
3
3
  %head
4
4
  %title Mercury
5
- - ['reset','text','960','app'].each do |css|
5
+ - ['reset','text','960','smoothness/jquery-ui-1.8rc2.custom', 'app'].each do |css|
6
6
  %link{ :href => "/stylesheets/#{css}.css", :rel => "stylesheet", :type => "text/css", :media => "screen", :charset => "utf-8" }
7
7
  %body
8
8
  #header
@@ -20,5 +20,5 @@
20
20
  .grid_4.prefix_8
21
21
  %p Jack Russell Software Company, LLC
22
22
 
23
- - ['jquery-1.4.2.min'].each do |js|
23
+ - ['jquery-1.4.2.min', 'jquery-ui-1.8rc2.custom.min'].each do |js|
24
24
  %script{:src => "/javascripts/#{js}.js", :type => 'text/javascript'}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mercury
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.1
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tom Wilson
@@ -53,9 +53,24 @@ files:
53
53
  - lib/mercury.rb
54
54
  - lib/public/favicon.ico
55
55
  - lib/public/javascripts/jquery-1.4.2.min.js
56
+ - lib/public/javascripts/jquery-ui-1.8rc2.custom.min.js
56
57
  - lib/public/stylesheets/960.css
57
58
  - lib/public/stylesheets/app.css
58
59
  - lib/public/stylesheets/reset.css
60
+ - lib/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
61
+ - lib/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
62
+ - lib/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
63
+ - lib/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
64
+ - lib/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png
65
+ - lib/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
66
+ - lib/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
67
+ - lib/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
68
+ - lib/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png
69
+ - lib/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png
70
+ - lib/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png
71
+ - lib/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png
72
+ - lib/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png
73
+ - lib/public/stylesheets/smoothness/jquery-ui-1.8rc2.custom.css
59
74
  - lib/public/stylesheets/text.css
60
75
  - lib/views/index.haml
61
76
  - lib/views/layout.haml