cytoplasm 0.0.7 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/javascripts/cytoplasm/cytoField.js.erb +56 -0
- data/app/assets/javascripts/cytoplasm/cytoRadio.js.erb +1 -1
- data/app/assets/javascripts/cytoplasm/cytoSelect.js.erb +67 -40
- data/app/assets/javascripts/cytoplasm/cytoplasm.js.erb +8 -6
- data/app/assets/stylesheets/cytoplasm/cytoplasm.less +10 -12
- data/app/controllers/cytoplasm/fonts_controller.rb +1 -1
- data/app/controllers/cytoplasm/settings_controller.rb +1 -1
- data/lib/cytoplasm.rb +8 -4
- data/lib/cytoplasm/ajax.rb +2 -4
- data/lib/cytoplasm/version.rb +1 -1
- data/test/dummy/app/controllers/home_controller.rb +1 -1
- data/test/dummy/log/development.log +123 -0
- data/test/dummy/tmp/cache/assets/CAC/280/sprockets%2F408a235a236b0a3aa1302733211db5ba +0 -0
- data/test/dummy/tmp/cache/assets/D03/6B0/sprockets%2Fd3cfc780201b87a3439e35c5236bb71a +0 -0
- data/test/dummy/tmp/cache/assets/D0E/7D0/sprockets%2F89200785fe2710582a6c1b8d04ae7fbe +0 -0
- data/test/dummy/tmp/cache/assets/D14/170/sprockets%2F40a7b83bb067eea7ce2c8394e1529287 +0 -0
- data/test/dummy/tmp/cache/assets/D50/750/sprockets%2F7fbcc321810c8f493f86364fee480ed9 +0 -0
- data/test/dummy/tmp/cache/assets/E69/B60/sprockets%2Ffdbf7ec615e9a92e4857cdade17f4daa +0 -0
- metadata +5 -4
@@ -0,0 +1,56 @@
|
|
1
|
+
// CytoField v0.1
|
2
|
+
// By MacKinley Smith
|
3
|
+
(function($){
|
4
|
+
var defaults = {
|
5
|
+
widget:{
|
6
|
+
field:{
|
7
|
+
|
8
|
+
}
|
9
|
+
},
|
10
|
+
events:{
|
11
|
+
create:function(cy){},
|
12
|
+
change:function(cy,event){},
|
13
|
+
destroy:function(cy){}
|
14
|
+
}
|
15
|
+
};
|
16
|
+
|
17
|
+
var methods = {
|
18
|
+
init:function(options){
|
19
|
+
return this.each(function(){
|
20
|
+
var $this = $(this);
|
21
|
+
var settings = $.extend(true,{},defaults,options);
|
22
|
+
|
23
|
+
// Setup widget
|
24
|
+
|
25
|
+
|
26
|
+
$this.data('cytoField',settings);
|
27
|
+
methods.resize.apply($this);
|
28
|
+
});
|
29
|
+
},
|
30
|
+
resize:function(){
|
31
|
+
return this.each(function(){
|
32
|
+
var $this = $(this);
|
33
|
+
var settings = $this.data('cytoField');
|
34
|
+
if (settings==null) return console.warn("You must instantiate $.cytoField before you call the resize method!");
|
35
|
+
$this.width("100%");
|
36
|
+
setTimeout(function(){
|
37
|
+
$this.width($this.width()-16);
|
38
|
+
},1);
|
39
|
+
});
|
40
|
+
},
|
41
|
+
destroy:function(){
|
42
|
+
return this.each(function(){
|
43
|
+
|
44
|
+
});
|
45
|
+
}
|
46
|
+
};
|
47
|
+
|
48
|
+
$.fn.cytoField=function(method){
|
49
|
+
if (methods[method]) return methods[method].apply(this,Array.prototype.slice.call(arguments,1));
|
50
|
+
else if (typeof method == 'object' || !method) return methods.init.apply(this,arguments);
|
51
|
+
else $.error('Method ' + method + ' does not exist on $.cytoField!');
|
52
|
+
};
|
53
|
+
|
54
|
+
$(window).resize(function(){$('.cytoField').cytoField('resize');});
|
55
|
+
$.Cytoplasm("ready",function(){$('.cytoField').cytoField();});
|
56
|
+
})(jQuery);
|
@@ -90,7 +90,7 @@
|
|
90
90
|
methods.value.apply(settings.widget.inputList.inputs.elements,[settings.widget.inputList.inputs.elements.filter(':checked').val()])
|
91
91
|
settings.events.change.apply(settings.widget.inputList.inputs.elements,[settings,e]);
|
92
92
|
})).trigger('change');
|
93
|
-
settings.widget.buttonList.buttons.elements.
|
93
|
+
settings.widget.buttonList.buttons.elements.mousedown(function(e){
|
94
94
|
e.preventDefault();
|
95
95
|
if ($(this).hasClass('active')) return false;
|
96
96
|
methods.value.apply($this,[$(this).data('cytoradio-value')]);
|
@@ -140,47 +140,59 @@
|
|
140
140
|
// Cosmetic Fixes
|
141
141
|
//if (/chrome/.test(navigator.userAgent.toLowerCase())) settings.widget.arrowButton.element.css({top:-1});
|
142
142
|
|
143
|
-
$this.data('cytoSelect',settings);
|
144
|
-
|
145
143
|
// Bindings
|
146
|
-
settings.
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
144
|
+
settings.bindings = {
|
145
|
+
select:{
|
146
|
+
"change.cytoSelect":function(e){
|
147
|
+
settings.widget.optionsList.li.elements.filter('.active').removeClass('active');
|
148
|
+
var active = settings.widget.optionsList.li.elements.filter('[data-value="'+$(this).val()+'"]').addClass('active');
|
149
|
+
settings.widget.valueButton.element.html(active.html());
|
150
|
+
settings.events.change.apply($this,[settings,e]);
|
151
|
+
}
|
151
152
|
},
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
$this.bind("change.cytoSelect",function(e){
|
165
|
-
settings.widget.optionsList.li.elements.filter('.active').removeClass('active');
|
166
|
-
var active = settings.widget.optionsList.li.elements.filter('[data-value="'+$(this).val()+'"]').addClass('active');
|
167
|
-
settings.widget.valueButton.element.html(active.html());
|
168
|
-
settings.events.change.apply($this,[settings,e]);
|
169
|
-
});
|
170
|
-
settings.widget.optionsList.element.bind({
|
171
|
-
'mouseout.cytoSelect':function(e){$(this).find('.active').trigger('mouseover');}
|
172
|
-
});
|
173
|
-
settings.widget.optionsList.li.elements.bind({
|
174
|
-
'click.cytoSelect':function(e){
|
175
|
-
e.preventDefault();
|
176
|
-
$(this).siblings('.active').removeClass('active').trigger("mouseout");
|
177
|
-
$(this).addClass('active');
|
178
|
-
methods.hideMenu.apply($this);
|
179
|
-
settings.events.change.apply($this,[settings,e]);
|
153
|
+
valueButton:{
|
154
|
+
"click.cytoSelect":function(e){
|
155
|
+
e.preventDefault();
|
156
|
+
if (settings.widget.optionsList.element.is(':visible')) methods.hideMenu.apply($this)
|
157
|
+
else methods.showMenu.apply($this);
|
158
|
+
},
|
159
|
+
"keydown.cytoSelect":function(e){
|
160
|
+
if (settings.widget.optionsList.element.is(':visible') || (e.which != 38 && e.which != 40)) return true;
|
161
|
+
e.preventDefault();
|
162
|
+
var current = settings.widget.optionsList.element.find('li.active');
|
163
|
+
$this.val(((e.which == 38) ? ((!current.is(':first-child')) ? current.prev() : current.siblings(':last-child')) : ((!current.is(':last-child')) ? current.next() : current.siblings(':first-child'))).data('value')).trigger('change.cytoSelect');
|
164
|
+
}
|
180
165
|
},
|
181
|
-
|
182
|
-
|
183
|
-
|
166
|
+
arrowButton:{
|
167
|
+
"click.cytoSelect":function(e){
|
168
|
+
e.preventDefault();
|
169
|
+
if (settings.widget.optionsList.element.is(':visible')) methods.hideMenu.apply($this)
|
170
|
+
else methods.showMenu.apply($this);
|
171
|
+
}
|
172
|
+
},
|
173
|
+
optionsList:{
|
174
|
+
'mouseout.cytoSelect':function(e){$(this).find('.active').trigger('mouseover');}
|
175
|
+
},
|
176
|
+
optionsListLi:{
|
177
|
+
'click.cytoSelect':function(e){
|
178
|
+
e.preventDefault();
|
179
|
+
$(this).siblings('.active').removeClass('active').trigger("mouseout");
|
180
|
+
$(this).addClass('active');
|
181
|
+
methods.hideMenu.apply($this);
|
182
|
+
settings.events.change.apply($this,[settings,e]);
|
183
|
+
},
|
184
|
+
'mouseover.cytoSelect':function(e){settings.widget.optionsList.li.hover.apply($(this),[settings,e]);},
|
185
|
+
'mouseout.cytoSelect':function(e){settings.widget.optionsList.li.unhover.apply($(this),[settings,e]);}
|
186
|
+
}
|
187
|
+
};
|
188
|
+
$this.data('cytoSelect',settings);
|
189
|
+
settings.widget.valueButton.element.bind(settings.bindings.valueButton);
|
190
|
+
settings.widget.arrowButton.element.bind(settings.bindings.arrowButton);
|
191
|
+
$this.bind(settings.bindings.select);
|
192
|
+
settings.widget.optionsList.element.bind(settings.bindings.optionsList);
|
193
|
+
settings.widget.optionsList.li.elements.bind(settings.bindings.optionsListLi);
|
194
|
+
|
195
|
+
// Account for optionsList scrollbar
|
184
196
|
if (settings.widget.optionsList.maxHeight <= settings.widget.optionsList.element.height()) settings.widget.optionsList.element.css({'overflow-y':'scroll',height:settings.widget.optionsList.maxHeight,'border-top':'none','border-right-color':'#bbb','border-bottom':'none'});
|
185
197
|
|
186
198
|
$this.data({'cytoSelect':settings,'cytoSelect-toggled':0});
|
@@ -192,6 +204,7 @@
|
|
192
204
|
return this.each(function(){
|
193
205
|
var $this = $(this).data('cytoSelect-toggled',0);
|
194
206
|
var settings = $this.data('cytoSelect');
|
207
|
+
if (settings==null) return console.warn("You must instanciate $.cytoSelect before calling the hideMenu method!");
|
195
208
|
|
196
209
|
var active = settings.widget.optionsList.element.find('.active');
|
197
210
|
|
@@ -199,9 +212,12 @@
|
|
199
212
|
$this.val(active.data('value'));
|
200
213
|
|
201
214
|
settings.widget.optionsList.element.hide("slide",{direction:'up'},settings.widget.optionsList.animationSpeed,function(){
|
202
|
-
settings.widget.valueButton.element.html(active.html()).css(
|
215
|
+
settings.widget.valueButton.element.html(active.html()).css('border-bottom-left-radius',3).removeClass('active');
|
203
216
|
settings.widget.arrowButton.element.css('border-bottom-right-radius',3);
|
204
217
|
settings.widget.arrowButton.img.element.attr('src',settings.widget.arrowButton.img.down);
|
218
|
+
$(this).appendTo(settings.widget.wrapper.element);
|
219
|
+
settings.widget.valueButton.element.unbind('.cytoSelect').bind(settings.bindings.valueButton);
|
220
|
+
settings.widget.arrowButton.element.unbind('.cytoSelect').bind(settings.bindings.arrowButton);
|
205
221
|
});
|
206
222
|
});
|
207
223
|
},
|
@@ -209,14 +225,25 @@
|
|
209
225
|
return this.each(function(){
|
210
226
|
var $this = $(this).data('cytoSelect-toggled',1);
|
211
227
|
var settings = $this.data('cytoSelect');
|
228
|
+
if (settings==null) return console.warn("You must instanciate $.cytoSelect before calling the showMenu method!");
|
212
229
|
|
213
230
|
var active = settings.widget.optionsList.element.find('.active');
|
214
231
|
|
215
232
|
// Skip if there aren't any list elements to show
|
216
233
|
if (!settings.widget.optionsList.li.elements.length) return false;
|
217
234
|
|
235
|
+
settings.widget.valueButton.element.unbind('.cytoSelect').bind("click.cytoSelect",function(e){e.preventDefault();});
|
236
|
+
settings.widget.arrowButton.element.unbind('.cytoSelect').bind("click.cytoSelect",function(e){e.preventDefault();});
|
237
|
+
|
238
|
+
// Move optionsList outside of wrapper
|
239
|
+
var offset = settings.widget.valueButton.element.offset();
|
240
|
+
settings.widget.optionsList.element.prependTo($('body')).css({
|
241
|
+
top:offset.top + settings.widget.valueButton.element.outerHeight(),
|
242
|
+
left:offset.left
|
243
|
+
});
|
244
|
+
|
218
245
|
// Cosmetic changes
|
219
|
-
settings.widget.valueButton.element.css(
|
246
|
+
settings.widget.valueButton.element.css('border-bottom-left-radius',0).addClass('active');
|
220
247
|
settings.widget.arrowButton.element.css('border-bottom-right-radius',0);
|
221
248
|
settings.widget.arrowButton.img.element.attr('src',settings.widget.arrowButton.img.up);
|
222
249
|
|
@@ -8,15 +8,14 @@ var Cytoplasm;
|
|
8
8
|
// Ensure that jQuery and jQuery UI get loaded
|
9
9
|
$.each(["/assets/jquery.js","/assets/jquery-ui.js"],function(i,script){if (!$('script[src="'+script+'"], script[src="'+script+'?body=1"]').is('*')) $('head').append("<script type='text/javascript' src='"+script+"'></script>");});
|
10
10
|
|
11
|
-
var fixInputs = function(){$('.cytoField').width("100%").each(function(){$(this).width($(this).width()-16);});};
|
12
|
-
$(window).resize(fixInputs);
|
13
|
-
$(document).ready(fixInputs);
|
14
|
-
|
15
11
|
$(document).ready(function(){
|
16
12
|
// Setup header
|
17
13
|
var header = $("header");
|
18
14
|
header.find('h1').click(function(){window.location = "<%=((defined? root_url) ? root_url : "/")%>";});
|
19
15
|
|
16
|
+
// Fix for cytoButtons not activating
|
17
|
+
|
18
|
+
|
20
19
|
// Setup callback messages
|
21
20
|
$.each(["success","sending","error"],function(i,v){
|
22
21
|
var $this = $('#'+v+'_message');
|
@@ -128,12 +127,15 @@ var Cytoplasm;
|
|
128
127
|
"&.labelcell":{"font-size":vars.fonts.sizes.small}
|
129
128
|
}
|
130
129
|
},
|
131
|
-
'
|
130
|
+
'.cytoField':{"font-family":vars.fonts.faces.regular},
|
132
131
|
'.cytoButton':{
|
133
132
|
border:vars.colors.plugins.cytoButton.border,
|
134
133
|
color:vars.colors.plugins.cytoButton.text,
|
135
134
|
"&:not(.active),&:not(:active)":{background:vars.colors.plugins.cytoButton.background},
|
136
|
-
"&.active,&:active":{
|
135
|
+
"&.active,&:active":{
|
136
|
+
background:reverseGradient(vars.colors.plugins.cytoButton.background),
|
137
|
+
"box-shadow":vars.layout.plugins.cytoButton.shadow
|
138
|
+
}
|
137
139
|
}
|
138
140
|
};
|
139
141
|
|
@@ -83,19 +83,23 @@ table.cytoTable {
|
|
83
83
|
}
|
84
84
|
|
85
85
|
// CytoField
|
86
|
-
|
86
|
+
.cytoField {
|
87
87
|
width:100%;
|
88
|
-
height:28px;
|
89
88
|
border:1px solid #aaa;
|
90
89
|
border-radius:5px;
|
90
|
+
font-size:14px;
|
91
|
+
box-shadow:inset 0px 0px 5px rgba(0,0,0,0.25);
|
91
92
|
|
92
|
-
&[type=
|
93
|
-
|
93
|
+
&[type=text], &[type=password], &[type=email] {
|
94
|
+
height:28px;
|
94
95
|
padding:0px 7px;
|
95
|
-
box-shadow:inset 0px 0px 5px rgba(0,0,0,0.25);
|
96
|
-
font-size:14px;
|
97
96
|
}
|
98
97
|
}
|
98
|
+
textarea.cytoField {
|
99
|
+
resize:none;
|
100
|
+
height:200px;
|
101
|
+
padding:7px;
|
102
|
+
}
|
99
103
|
|
100
104
|
// CytoButton
|
101
105
|
button, input[type=submit] {
|
@@ -107,11 +111,5 @@ button, input[type=submit] {
|
|
107
111
|
width:100%;
|
108
112
|
height:50px;
|
109
113
|
}
|
110
|
-
&.active {
|
111
|
-
box-shadow:inset 0px 0px 10px rgba(0,0,0,0.5);
|
112
|
-
}
|
113
|
-
&:active {
|
114
|
-
box-shadow:inset 0px 0px 10px rgba(0,0,0,0.5);
|
115
|
-
}
|
116
114
|
}
|
117
115
|
}
|
@@ -34,7 +34,7 @@ module Cytoplasm
|
|
34
34
|
fetch_json("https://www.googleapis.com/webfonts/v1/webfonts?key="+Cytoplasm.conf("fontloader.googlewebfonts_apikey"))["items"].each {|f| success["googlewebfonts"][f["family"]] = f}
|
35
35
|
success["imported"] = fetch_imported()
|
36
36
|
|
37
|
-
render :text => Cytoplasm::Ajax.
|
37
|
+
render :text => Cytoplasm::Ajax.success(success)
|
38
38
|
end
|
39
39
|
|
40
40
|
private
|
data/lib/cytoplasm.rb
CHANGED
@@ -44,15 +44,18 @@ module Cytoplasm
|
|
44
44
|
},
|
45
45
|
:footer => {
|
46
46
|
|
47
|
+
},
|
48
|
+
:plugins => {
|
49
|
+
:cytoButton => {
|
50
|
+
:shadow => "inset 0px 0px 10px rgba(0,0,0,0.5)"
|
51
|
+
}
|
47
52
|
}
|
48
53
|
},
|
49
54
|
:fonts => {
|
50
55
|
:faces => {
|
51
56
|
:light => "Verdana",
|
52
57
|
:regular => "Verdana",
|
53
|
-
:
|
54
|
-
:bold => "Verdana",
|
55
|
-
:xbold => "Verdana"
|
58
|
+
:bold => "Verdana"
|
56
59
|
},
|
57
60
|
:sizes => {
|
58
61
|
:small => "12px",
|
@@ -65,7 +68,7 @@ module Cytoplasm
|
|
65
68
|
:global => {
|
66
69
|
:background => "green",
|
67
70
|
:text => "black",
|
68
|
-
:accent => "
|
71
|
+
:accent => "#aaff7f"
|
69
72
|
},
|
70
73
|
:header => {
|
71
74
|
:background => "transparent",
|
@@ -126,6 +129,7 @@ module Cytoplasm
|
|
126
129
|
'cytoSlider',
|
127
130
|
'cytoUpload',
|
128
131
|
'cytoColorPicker',
|
132
|
+
'cytoField',
|
129
133
|
'cytoTable'
|
130
134
|
]
|
131
135
|
};
|
data/lib/cytoplasm/ajax.rb
CHANGED
@@ -12,8 +12,7 @@ module Cytoplasm
|
|
12
12
|
end
|
13
13
|
|
14
14
|
# instance methods to go on every controller go here
|
15
|
-
def self.
|
16
|
-
puts "Ajax Success function called!"
|
15
|
+
def self.success(message=false,data={})
|
17
16
|
output = {"status" => "OK"}
|
18
17
|
unless message.is_a? String or message==false
|
19
18
|
data = message
|
@@ -23,8 +22,7 @@ module Cytoplasm
|
|
23
22
|
data.each {|k,v| output[k] = v if data.key?(k)} unless data.empty?
|
24
23
|
return output.to_json
|
25
24
|
end
|
26
|
-
def self.
|
27
|
-
puts "Ajax Error function called!"
|
25
|
+
def self.error(message=false)
|
28
26
|
output = {"status" => "Error"}
|
29
27
|
output["message"] = message if message.is_a? String and message != ""
|
30
28
|
return output.to_json
|
data/lib/cytoplasm/version.rb
CHANGED
@@ -179028,3 +179028,126 @@ Completed 200 OK in 7ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
|
179028
179028
|
|
179029
179029
|
Started GET "/assets/cytoplasm/triangle-medium-circle-1.png" for 127.0.0.1 at 2012-12-29 17:52:46 -0500
|
179030
179030
|
Served asset /cytoplasm/triangle-medium-circle-1.png - 304 Not Modified (2ms)
|
179031
|
+
|
179032
|
+
|
179033
|
+
Started GET "/cytoplasm/" for 127.0.0.1 at 2012-12-30 13:24:25 -0500
|
179034
|
+
Connecting to database specified by database.yml
|
179035
|
+
Processing by Cytoplasm::SettingsController#index as HTML
|
179036
|
+
Rendered /Applications/XAMPP/xamppfiles/htdocs/cytoplasm/app/views/cytoplasm/settings/index.html.erb within layouts/application (2.6ms)
|
179037
|
+
Compiled cytoplasm/cytoplasm.css (24ms) (pid 62729)
|
179038
|
+
Compiled cytoplasm/cytoplasm.js (4ms) (pid 62729)
|
179039
|
+
Completed 200 OK in 960ms (Views: 959.9ms | ActiveRecord: 0.0ms)
|
179040
|
+
|
179041
|
+
|
179042
|
+
Started GET "/assets/cytoplasm/cytoplasm.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179043
|
+
Served asset /cytoplasm/cytoplasm.css - 304 Not Modified (2ms)
|
179044
|
+
|
179045
|
+
|
179046
|
+
Started GET "/assets/about.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179047
|
+
Served asset /about.css - 304 Not Modified (4ms)
|
179048
|
+
|
179049
|
+
|
179050
|
+
Started GET "/assets/docs.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179051
|
+
Served asset /docs.css - 304 Not Modified (1ms)
|
179052
|
+
|
179053
|
+
|
179054
|
+
Started GET "/assets/demos.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179055
|
+
Served asset /demos.css - 304 Not Modified (1ms)
|
179056
|
+
|
179057
|
+
|
179058
|
+
Started GET "/assets/downloads.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179059
|
+
Served asset /downloads.css - 304 Not Modified (1ms)
|
179060
|
+
|
179061
|
+
|
179062
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179063
|
+
Served asset /application.css - 304 Not Modified (8ms)
|
179064
|
+
|
179065
|
+
|
179066
|
+
Started GET "/assets/home.css?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179067
|
+
Served asset /home.css - 200 OK (1ms)
|
179068
|
+
|
179069
|
+
|
179070
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:26 -0500
|
179071
|
+
Served asset /jquery.js - 304 Not Modified (268ms)
|
179072
|
+
|
179073
|
+
|
179074
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179075
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
179076
|
+
|
179077
|
+
|
179078
|
+
Started GET "/assets/about.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179079
|
+
Served asset /about.js - 304 Not Modified (2ms)
|
179080
|
+
|
179081
|
+
|
179082
|
+
Started GET "/assets/demos.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179083
|
+
Served asset /demos.js - 304 Not Modified (1ms)
|
179084
|
+
|
179085
|
+
|
179086
|
+
Started GET "/assets/downloads.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179087
|
+
Served asset /downloads.js - 304 Not Modified (1ms)
|
179088
|
+
|
179089
|
+
|
179090
|
+
Started GET "/assets/docs.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179091
|
+
Served asset /docs.js - 304 Not Modified (1ms)
|
179092
|
+
|
179093
|
+
|
179094
|
+
Started GET "/assets/home.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179095
|
+
Served asset /home.js - 200 OK (1ms)
|
179096
|
+
|
179097
|
+
|
179098
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179099
|
+
Served asset /application.js - 304 Not Modified (25ms)
|
179100
|
+
|
179101
|
+
|
179102
|
+
Started GET "/assets/cytoplasm/less-1.3.1.min.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179103
|
+
Served asset /cytoplasm/less-1.3.1.min.js - 304 Not Modified (3ms)
|
179104
|
+
|
179105
|
+
|
179106
|
+
Started GET "/assets/cytoplasm/cytoplasm.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179107
|
+
Served asset /cytoplasm/cytoplasm.js - 200 OK (23ms)
|
179108
|
+
|
179109
|
+
|
179110
|
+
Started GET "/assets/cytoplasm/jquery.ba-throttle-debounce.min.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179111
|
+
Served asset /cytoplasm/jquery.ba-throttle-debounce.min.js - 304 Not Modified (2ms)
|
179112
|
+
|
179113
|
+
|
179114
|
+
Started GET "/assets/cytoplasm/jquery.color.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179115
|
+
Served asset /cytoplasm/jquery.color.js - 304 Not Modified (4ms)
|
179116
|
+
|
179117
|
+
|
179118
|
+
Started GET "/assets/cytoplasm/cytoAjax.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179119
|
+
Served asset /cytoplasm/cytoAjax.js - 304 Not Modified (4ms)
|
179120
|
+
|
179121
|
+
|
179122
|
+
Started GET "/assets/cytoplasm/cytoSelect.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179123
|
+
Served asset /cytoplasm/cytoSelect.js - 304 Not Modified (2ms)
|
179124
|
+
|
179125
|
+
|
179126
|
+
Started GET "/assets/cytoplasm/cytoSlider.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179127
|
+
Served asset /cytoplasm/cytoSlider.js - 304 Not Modified (2ms)
|
179128
|
+
|
179129
|
+
|
179130
|
+
Started GET "/assets/cytoplasm/cytoRadio.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179131
|
+
Served asset /cytoplasm/cytoRadio.js - 304 Not Modified (2ms)
|
179132
|
+
|
179133
|
+
|
179134
|
+
Started GET "/assets/cytoplasm/cytoUpload.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179135
|
+
Served asset /cytoplasm/cytoUpload.js - 304 Not Modified (2ms)
|
179136
|
+
|
179137
|
+
|
179138
|
+
Started GET "/assets/cytoplasm/cytoColorPicker.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179139
|
+
Served asset /cytoplasm/cytoColorPicker.js - 304 Not Modified (2ms)
|
179140
|
+
|
179141
|
+
|
179142
|
+
Started GET "/assets/cytoplasm/cytoTable.js?body=1" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179143
|
+
Served asset /cytoplasm/cytoTable.js - 304 Not Modified (4ms)
|
179144
|
+
|
179145
|
+
|
179146
|
+
Started GET "/assets/jquery-ui.js?_=1356891867234" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179147
|
+
Served asset /jquery-ui.js - 200 OK (166ms)
|
179148
|
+
|
179149
|
+
|
179150
|
+
Started GET "/cytoplasm/settings/fetch" for 127.0.0.1 at 2012-12-30 13:24:27 -0500
|
179151
|
+
Processing by Cytoplasm::SettingsController#fetch as HTML
|
179152
|
+
Rendered text template (0.0ms)
|
179153
|
+
Completed 200 OK in 217ms (Views: 83.9ms | ActiveRecord: 0.0ms)
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cytoplasm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.9
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-12-
|
12
|
+
date: 2012-12-30 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -126,6 +126,7 @@ files:
|
|
126
126
|
- app/assets/images/cytoplasm/triangle-medium-circle-4.png
|
127
127
|
- app/assets/javascripts/cytoplasm/cytoAjax.js.erb
|
128
128
|
- app/assets/javascripts/cytoplasm/cytoColorPicker.js.erb
|
129
|
+
- app/assets/javascripts/cytoplasm/cytoField.js.erb
|
129
130
|
- app/assets/javascripts/cytoplasm/cytoplasm.js.erb
|
130
131
|
- app/assets/javascripts/cytoplasm/cytoRadio.js.erb
|
131
132
|
- app/assets/javascripts/cytoplasm/cytoSelect.js.erb
|
@@ -314,7 +315,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
314
315
|
version: '0'
|
315
316
|
segments:
|
316
317
|
- 0
|
317
|
-
hash:
|
318
|
+
hash: -2978160605376738982
|
318
319
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
319
320
|
none: false
|
320
321
|
requirements:
|
@@ -323,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
323
324
|
version: '0'
|
324
325
|
segments:
|
325
326
|
- 0
|
326
|
-
hash:
|
327
|
+
hash: -2978160605376738982
|
327
328
|
requirements: []
|
328
329
|
rubyforge_project:
|
329
330
|
rubygems_version: 1.8.24
|