rails_admin_content 0.1.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.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +38 -0
  3. data/Rakefile +7 -0
  4. data/app/assets/javascripts/develop/manages.js.coffee +96 -0
  5. data/app/assets/javascripts/rails_admin_content.js +22 -0
  6. data/app/assets/stylesheets/develop/manages.css.scss +38 -0
  7. data/app/assets/stylesheets/rails_admin_content.css +19 -0
  8. data/app/assets/stylesheets/site.css +479 -0
  9. data/app/controllers/application_controller.rb +3 -0
  10. data/app/controllers/rails_admin_content/develop/application_controller.rb +5 -0
  11. data/app/controllers/rails_admin_content/develop/manages_controller.rb +77 -0
  12. data/app/views/layouts/rails_admin_content/admin.html.slim +58 -0
  13. data/app/views/rails_admin_content/develop/manages/_content.html.slim +21 -0
  14. data/app/views/rails_admin_content/develop/manages/_filter.html.slim +25 -0
  15. data/app/views/rails_admin_content/develop/manages/_form.html.slim +5 -0
  16. data/app/views/rails_admin_content/develop/manages/_menv.html.slim +8 -0
  17. data/app/views/rails_admin_content/develop/manages/_navbar.html.slim +34 -0
  18. data/app/views/rails_admin_content/develop/manages/details.html.slim +18 -0
  19. data/app/views/rails_admin_content/develop/manages/edit.html.slim +16 -0
  20. data/app/views/rails_admin_content/develop/manages/edit_column.html.slim +30 -0
  21. data/app/views/rails_admin_content/develop/manages/index.html.slim +2 -0
  22. data/app/views/rails_admin_content/develop/manages/new.html.slim +10 -0
  23. data/app/views/rails_admin_content/develop/manages/query.html.slim +24 -0
  24. data/app/views/rails_admin_content/develop/manages/show.html.slim +27 -0
  25. data/config/routes.rb +12 -0
  26. data/lib/assets/codemirror/charisma-app.css +501 -0
  27. data/lib/assets/codemirror/codemirror.css +249 -0
  28. data/lib/assets/codemirror/codemirror.js +5637 -0
  29. data/lib/assets/codemirror/javascript.js +471 -0
  30. data/lib/assets/codemirror/matchbrackets.js +82 -0
  31. data/lib/assets/codemirror/midnight.css +52 -0
  32. data/lib/assets/codemirror/solarized.css +207 -0
  33. data/lib/assets/codemirror/sql.js +267 -0
  34. data/lib/assets/codemirror/twilight.css +26 -0
  35. data/lib/assets/images/add.png +0 -0
  36. data/lib/assets/images/column.png +0 -0
  37. data/lib/assets/images/content.png +0 -0
  38. data/lib/assets/images/details.png +0 -0
  39. data/lib/assets/images/file.png +0 -0
  40. data/lib/assets/images/home.png +0 -0
  41. data/lib/assets/images/search.png +0 -0
  42. data/lib/assets/images/setting.png +0 -0
  43. data/lib/assets/images/user.png +0 -0
  44. data/lib/assets/javascripts/bootstrap/bootstrap-alert.js +100 -0
  45. data/lib/assets/javascripts/jquery/dyndatetime/calendar_zh.js +128 -0
  46. data/lib/assets/javascripts/jquery/dyndatetime/dynDateTime.js +2011 -0
  47. data/lib/assets/javascripts/jquery/editable.js +31 -0
  48. data/lib/assets/javascripts/jquery/jquery.jeditable.js +543 -0
  49. data/lib/assets/stylesheets/bootstrap/bootstrap-app.css +5255 -0
  50. data/lib/assets/stylesheets/dyndatetime/calendar-system.css +251 -0
  51. data/lib/assets/stylesheets/dyndatetime/skins/aqua/active-bg.gif +0 -0
  52. data/lib/assets/stylesheets/dyndatetime/skins/aqua/dark-bg.gif +0 -0
  53. data/lib/assets/stylesheets/dyndatetime/skins/aqua/hover-bg.gif +0 -0
  54. data/lib/assets/stylesheets/dyndatetime/skins/aqua/menuarrow.gif +0 -0
  55. data/lib/assets/stylesheets/dyndatetime/skins/aqua/normal-bg.gif +0 -0
  56. data/lib/assets/stylesheets/dyndatetime/skins/aqua/rowhover-bg.gif +0 -0
  57. data/lib/assets/stylesheets/dyndatetime/skins/aqua/status-bg.gif +0 -0
  58. data/lib/assets/stylesheets/dyndatetime/skins/aqua/theme.css +236 -0
  59. data/lib/assets/stylesheets/dyndatetime/skins/aqua/title-bg.gif +0 -0
  60. data/lib/assets/stylesheets/dyndatetime/skins/aqua/today-bg.gif +0 -0
  61. data/lib/rails_admin_content/client.rb +93 -0
  62. data/lib/rails_admin_content/engine.rb +12 -0
  63. data/lib/rails_admin_content/helper.rb +65 -0
  64. data/lib/rails_admin_content/mysql/adapters/client.rb +18 -0
  65. data/lib/rails_admin_content/paginate.rb +53 -0
  66. data/lib/rails_admin_content/version.rb +3 -0
  67. data/lib/rails_admin_content.rb +5 -0
  68. metadata +180 -0
@@ -0,0 +1,31 @@
1
+ $(function(){
2
+ $('.editable').map(function(){
3
+ $(this).data('original', $(this).attr('data-title'));
4
+ });
5
+ $('.editable').editable(function(value, settings) {
6
+ $(this).data('value', value);
7
+ if (value == $(this).data('original')) return value.substring(0,10) + "..";
8
+ params = $(this).data('params') || {};
9
+ params["value"] = value;
10
+ params["field"] = $(this).data('field');
11
+ params["table"] = $(this).data('table');
12
+ $.ajax({
13
+ url: $(this).data('url'),
14
+ type: 'put',
15
+ dataType: 'html',
16
+ data: params,
17
+ context: this,
18
+ beforeSend: function(){ $(this).html('<img src="/assets/loading.gif" style="width:16px;height:16px;" />'); },
19
+ success: function(){ $(this).html((h = $(this).data('value').substring(0,10) + "..") && h != '' ? h : settings['placeholder']); $(this).data('original', $(this).data('value')); $(this).attr('data-title', $(this).data('value')); },
20
+ error: function(){ $(this).html((h = $(this).data('original')) && h != '' ? h : settings['placeholder']); alert('提交失败'); }
21
+ });
22
+ }, {
23
+ data: function(){ return $(this).data('original'); },
24
+ submit: '✔',
25
+ cancel: '✘',
26
+ type: 'textarea',
27
+ placeholder: '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;',
28
+ tooltip: '点击修改...',
29
+ onblur: 'ignore'
30
+ });
31
+ })
@@ -0,0 +1,543 @@
1
+ /*
2
+ * Jeditable - jQuery in place edit plugin
3
+ *
4
+ * Copyright (c) 2006-2009 Mika Tuupola, Dylan Verheul
5
+ *
6
+ * Licensed under the MIT license:
7
+ * http://www.opensource.org/licenses/mit-license.php
8
+ *
9
+ * Project home:
10
+ * http://www.appelsiini.net/projects/jeditable
11
+ *
12
+ * Based on editable by Dylan Verheul <dylan_at_dyve.net>:
13
+ * http://www.dyve.net/jquery/?editable
14
+ *
15
+ */
16
+
17
+ /**
18
+ * Version 1.7.1
19
+ *
20
+ * ** means there is basic unit tests for this parameter.
21
+ *
22
+ * @name Jeditable
23
+ * @type jQuery
24
+ * @param String target (POST) URL or function to send edited content to **
25
+ * @param Hash options additional options
26
+ * @param String options[method] method to use to send edited content (POST or PUT) **
27
+ * @param Function options[callback] Function to run after submitting edited content **
28
+ * @param String options[name] POST parameter name of edited content
29
+ * @param String options[id] POST parameter name of edited div id
30
+ * @param Hash options[submitdata] Extra parameters to send when submitting edited content.
31
+ * @param String options[type] text, textarea or select (or any 3rd party input type) **
32
+ * @param Integer options[rows] number of rows if using textarea **
33
+ * @param Integer options[cols] number of columns if using textarea **
34
+ * @param Mixed options[height] 'auto', 'none' or height in pixels **
35
+ * @param Mixed options[width] 'auto', 'none' or width in pixels **
36
+ * @param String options[loadurl] URL to fetch input content before editing **
37
+ * @param String options[loadtype] Request type for load url. Should be GET or POST.
38
+ * @param String options[loadtext] Text to display while loading external content.
39
+ * @param Mixed options[loaddata] Extra parameters to pass when fetching content before editing.
40
+ * @param Mixed options[data] Or content given as paramameter. String or function.**
41
+ * @param String options[indicator] indicator html to show when saving
42
+ * @param String options[tooltip] optional tooltip text via title attribute **
43
+ * @param String options[event] jQuery event such as 'click' of 'dblclick' **
44
+ * @param String options[submit] submit button value, empty means no button **
45
+ * @param String options[cancel] cancel button value, empty means no button **
46
+ * @param String options[cssclass] CSS class to apply to input form. 'inherit' to copy from parent. **
47
+ * @param String options[style] Style to apply to input form 'inherit' to copy from parent. **
48
+ * @param String options[select] true or false, when true text is highlighted ??
49
+ * @param String options[placeholder] Placeholder text or html to insert when element is empty. **
50
+ * @param String options[onblur] 'cancel', 'submit', 'ignore' or function ??
51
+ *
52
+ * @param Function options[onsubmit] function(settings, original) { ... } called before submit
53
+ * @param Function options[onreset] function(settings, original) { ... } called before reset
54
+ * @param Function options[onerror] function(settings, original, xhr) { ... } called on error
55
+ *
56
+ * @param Hash options[ajaxoptions] jQuery Ajax options. See docs.jquery.com.
57
+ *
58
+ */
59
+
60
+ (function($) {
61
+
62
+ $.fn.editable = function(target, options) {
63
+
64
+ if ('disable' == target) {
65
+ $(this).data('disabled.editable', true);
66
+ return;
67
+ }
68
+ if ('enable' == target) {
69
+ $(this).data('disabled.editable', false);
70
+ return;
71
+ }
72
+ if ('destroy' == target) {
73
+ $(this)
74
+ .unbind($(this).data('event.editable'))
75
+ .removeData('disabled.editable')
76
+ .removeData('event.editable');
77
+ return;
78
+ }
79
+
80
+ var settings = $.extend({}, $.fn.editable.defaults, {target:target}, options);
81
+
82
+ /* setup some functions */
83
+ var plugin = $.editable.types[settings.type].plugin || function() { };
84
+ var submit = $.editable.types[settings.type].submit || function() { };
85
+ var buttons = $.editable.types[settings.type].buttons
86
+ || $.editable.types['defaults'].buttons;
87
+ var content = $.editable.types[settings.type].content
88
+ || $.editable.types['defaults'].content;
89
+ var element = $.editable.types[settings.type].element
90
+ || $.editable.types['defaults'].element;
91
+ var reset = $.editable.types[settings.type].reset
92
+ || $.editable.types['defaults'].reset;
93
+ var callback = settings.callback || function() { };
94
+ var onedit = settings.onedit || function() { };
95
+ var onsubmit = settings.onsubmit || function() { };
96
+ var onreset = settings.onreset || function() { };
97
+ var onerror = settings.onerror || reset;
98
+
99
+ /* show tooltip */
100
+ if (settings.tooltip) {
101
+ $(this).attr('title', settings.tooltip);
102
+ }
103
+
104
+ settings.autowidth = 'auto' == settings.width;
105
+ settings.autoheight = 'auto' == settings.height;
106
+
107
+ return this.each(function() {
108
+
109
+ /* save this to self because this changes when scope changes */
110
+ var self = this;
111
+
112
+ /* inlined block elements lose their width and height after first edit */
113
+ /* save them for later use as workaround */
114
+ var savedwidth = $(self).width();
115
+ var savedheight = $(self).height();
116
+
117
+ /* save so it can be later used by $.editable('destroy') */
118
+ $(this).data('event.editable', settings.event);
119
+
120
+ /* if element is empty add something clickable (if requested) */
121
+ if (!$.trim($(this).html())) {
122
+ $(this).html(settings.placeholder);
123
+ }
124
+
125
+ $(this).bind(settings.event, function(e) {
126
+
127
+ /* abort if disabled for this element */
128
+ if (true === $(this).data('disabled.editable')) {
129
+ return;
130
+ }
131
+
132
+ /* prevent throwing an exeption if edit field is clicked again */
133
+ if (self.editing) {
134
+ return;
135
+ }
136
+
137
+ /* abort if onedit hook returns false */
138
+ if (false === onedit.apply(this, [settings, self])) {
139
+ return;
140
+ }
141
+
142
+ /* prevent default action and bubbling */
143
+ e.preventDefault();
144
+ e.stopPropagation();
145
+
146
+ /* remove tooltip */
147
+ if (settings.tooltip) {
148
+ $(self).removeAttr('title');
149
+ }
150
+
151
+ /* figure out how wide and tall we are, saved width and height */
152
+ /* are workaround for http://dev.jquery.com/ticket/2190 */
153
+ if (0 == $(self).width()) {
154
+ //$(self).css('visibility', 'hidden');
155
+ settings.width = savedwidth;
156
+ settings.height = savedheight;
157
+ } else {
158
+ if (settings.width != 'none') {
159
+ settings.width =
160
+ settings.autowidth ? $(self).width() : settings.width;
161
+ }
162
+ if (settings.height != 'none') {
163
+ settings.height =
164
+ settings.autoheight ? $(self).height() : settings.height;
165
+ }
166
+ }
167
+ //$(this).css('visibility', '');
168
+
169
+ /* remove placeholder text, replace is here because of IE */
170
+ if ($(this).html().toLowerCase().replace(/(;|")/g, '') ==
171
+ settings.placeholder.toLowerCase().replace(/(;|")/g, '')) {
172
+ $(this).html('');
173
+ }
174
+
175
+ self.editing = true;
176
+ self.revert = $(self).html();
177
+ $(self).html('');
178
+
179
+ /* create the form object */
180
+ var form = $('<form />');
181
+
182
+ /* apply css or style or both */
183
+ if (settings.cssclass) {
184
+ if ('inherit' == settings.cssclass) {
185
+ form.attr('class', $(self).attr('class'));
186
+ } else {
187
+ form.attr('class', settings.cssclass);
188
+ }
189
+ }
190
+
191
+ if (settings.style) {
192
+ if ('inherit' == settings.style) {
193
+ form.attr('style', $(self).attr('style'));
194
+ /* IE needs the second line or display wont be inherited */
195
+ form.css('display', $(self).css('display'));
196
+ } else {
197
+ form.attr('style', settings.style);
198
+ }
199
+ }
200
+
201
+ /* add main input element to form and store it in input */
202
+ var input = element.apply(form, [settings, self]);
203
+
204
+ /* set input content via POST, GET, given data or existing value */
205
+ var input_content;
206
+
207
+ if (settings.loadurl) {
208
+ var t = setTimeout(function() {
209
+ input.disabled = true;
210
+ content.apply(form, [settings.loadtext, settings, self]);
211
+ }, 100);
212
+
213
+ var loaddata = {};
214
+ loaddata[settings.id] = self.id;
215
+ if ($.isFunction(settings.loaddata)) {
216
+ $.extend(loaddata, settings.loaddata.apply(self, [self.revert, settings]));
217
+ } else {
218
+ $.extend(loaddata, settings.loaddata);
219
+ }
220
+ $.ajax({
221
+ type : settings.loadtype,
222
+ url : settings.loadurl,
223
+ data : loaddata,
224
+ async : false,
225
+ success: function(result) {
226
+ window.clearTimeout(t);
227
+ input_content = result;
228
+ input.disabled = false;
229
+ }
230
+ });
231
+ } else if (settings.data) {
232
+ input_content = settings.data;
233
+ if ($.isFunction(settings.data)) {
234
+ input_content = settings.data.apply(self, [self.revert, settings]);
235
+ }
236
+ } else {
237
+ input_content = self.revert;
238
+ }
239
+ content.apply(form, [input_content, settings, self]);
240
+
241
+ input.attr('name', settings.name);
242
+
243
+ /* add buttons to the form */
244
+ buttons.apply(form, [settings, self]);
245
+
246
+ /* add created form to self */
247
+ $(self).append(form);
248
+
249
+ /* attach 3rd party plugin if requested */
250
+ plugin.apply(form, [settings, self]);
251
+
252
+ /* focus to first visible form element */
253
+ $(':input:visible:enabled:first', form).focus();
254
+
255
+ /* highlight input contents when requested */
256
+ if (settings.select) {
257
+ input.select();
258
+ }
259
+
260
+ /* discard changes if pressing esc */
261
+ input.keydown(function(e) {
262
+ if (e.keyCode == 27) {
263
+ e.preventDefault();
264
+ //self.reset();
265
+ reset.apply(form, [settings, self]);
266
+ }
267
+ });
268
+
269
+ /* discard, submit or nothing with changes when clicking outside */
270
+ /* do nothing is usable when navigating with tab */
271
+ var t;
272
+ if ('cancel' == settings.onblur) {
273
+ input.blur(function(e) {
274
+ /* prevent canceling if submit was clicked */
275
+ t = setTimeout(function() {
276
+ reset.apply(form, [settings, self]);
277
+ }, 500);
278
+ });
279
+ } else if ('submit' == settings.onblur) {
280
+ input.blur(function(e) {
281
+ /* prevent double submit if submit was clicked */
282
+ t = setTimeout(function() {
283
+ form.submit();
284
+ }, 200);
285
+ });
286
+ } else if ($.isFunction(settings.onblur)) {
287
+ input.blur(function(e) {
288
+ settings.onblur.apply(self, [input.val(), settings]);
289
+ });
290
+ } else {
291
+ input.blur(function(e) {
292
+ /* TODO: maybe something here */
293
+ });
294
+ }
295
+
296
+ form.submit(function(e) {
297
+
298
+ if (t) {
299
+ clearTimeout(t);
300
+ }
301
+
302
+ /* do no submit */
303
+ e.preventDefault();
304
+
305
+ /* call before submit hook. */
306
+ /* if it returns false abort submitting */
307
+ if (false !== onsubmit.apply(form, [settings, self])) {
308
+ /* custom inputs call before submit hook. */
309
+ /* if it returns false abort submitting */
310
+ if (false !== submit.apply(form, [settings, self])) {
311
+
312
+ /* check if given target is function */
313
+ if ($.isFunction(settings.target)) {
314
+ var str = settings.target.apply(self, [input.val(), settings]);
315
+ $(self).html(str);
316
+ self.editing = false;
317
+ callback.apply(self, [self.innerHTML, settings]);
318
+ /* TODO: this is not dry */
319
+ if (!$.trim($(self).html())) {
320
+ $(self).html(settings.placeholder);
321
+ }
322
+ } else {
323
+ /* add edited content and id of edited element to POST */
324
+ var submitdata = {};
325
+ submitdata[settings.name] = input.val();
326
+ submitdata[settings.id] = self.id;
327
+ /* add extra data to be POST:ed */
328
+ if ($.isFunction(settings.submitdata)) {
329
+ $.extend(submitdata, settings.submitdata.apply(self, [self.revert, settings]));
330
+ } else {
331
+ $.extend(submitdata, settings.submitdata);
332
+ }
333
+
334
+ /* quick and dirty PUT support */
335
+ if ('PUT' == settings.method) {
336
+ submitdata['_method'] = 'put';
337
+ }
338
+
339
+ /* show the saving indicator */
340
+ $(self).html(settings.indicator);
341
+
342
+ /* defaults for ajaxoptions */
343
+ var ajaxoptions = {
344
+ type : 'POST',
345
+ data : submitdata,
346
+ dataType: 'html',
347
+ url : settings.target,
348
+ success : function(result, status) {
349
+ if (ajaxoptions.dataType == 'html') {
350
+ $(self).html(result);
351
+ }
352
+ self.editing = false;
353
+ callback.apply(self, [result, settings]);
354
+ if (!$.trim($(self).html())) {
355
+ $(self).html(settings.placeholder);
356
+ }
357
+ },
358
+ error : function(xhr, status, error) {
359
+ onerror.apply(form, [settings, self, xhr]);
360
+ }
361
+ };
362
+
363
+ /* override with what is given in settings.ajaxoptions */
364
+ $.extend(ajaxoptions, settings.ajaxoptions);
365
+ $.ajax(ajaxoptions);
366
+
367
+ }
368
+ }
369
+ }
370
+
371
+ /* show tooltip again */
372
+ $(self).attr('title', settings.tooltip);
373
+
374
+ return false;
375
+ });
376
+ });
377
+
378
+ /* privileged methods */
379
+ this.reset = function(form) {
380
+ /* prevent calling reset twice when blurring */
381
+ if (this.editing) {
382
+ /* before reset hook, if it returns false abort reseting */
383
+ if (false !== onreset.apply(form, [settings, self])) {
384
+ $(self).html(self.revert);
385
+ self.editing = false;
386
+ if (!$.trim($(self).html())) {
387
+ $(self).html(settings.placeholder);
388
+ }
389
+ /* show tooltip again */
390
+ if (settings.tooltip) {
391
+ $(self).attr('title', settings.tooltip);
392
+ }
393
+ }
394
+ }
395
+ };
396
+ });
397
+
398
+ };
399
+
400
+
401
+ $.editable = {
402
+ types: {
403
+ defaults: {
404
+ element : function(settings, original) {
405
+ var input = $('<input type="hidden"></input>');
406
+ $(this).append(input);
407
+ return(input);
408
+ },
409
+ content : function(string, settings, original) {
410
+ $(':input:first', this).val(string);
411
+ },
412
+ reset : function(settings, original) {
413
+ original.reset(this);
414
+ },
415
+ buttons : function(settings, original) {
416
+ var form = this;
417
+ if (settings.submit) {
418
+ /* if given html string use that */
419
+ if (settings.submit.match(/>$/)) {
420
+ var submit = $(settings.submit).click(function() {
421
+ if (submit.attr("type") != "submit") {
422
+ form.submit();
423
+ }
424
+ });
425
+ /* otherwise use button with given string as text */
426
+ } else {
427
+ var submit = $('<button type="submit" />');
428
+ submit.html(settings.submit);
429
+ }
430
+ $(this).append(submit);
431
+ }
432
+ if (settings.cancel) {
433
+ /* if given html string use that */
434
+ if (settings.cancel.match(/>$/)) {
435
+ var cancel = $(settings.cancel);
436
+ /* otherwise use button with given string as text */
437
+ } else {
438
+ var cancel = $('<button type="cancel" />');
439
+ cancel.html(settings.cancel);
440
+ }
441
+ $(this).append(cancel);
442
+
443
+ $(cancel).click(function(event) {
444
+ //original.reset();
445
+ if ($.isFunction($.editable.types[settings.type].reset)) {
446
+ var reset = $.editable.types[settings.type].reset;
447
+ } else {
448
+ var reset = $.editable.types['defaults'].reset;
449
+ }
450
+ reset.apply(form, [settings, original]);
451
+ return false;
452
+ });
453
+ }
454
+ }
455
+ },
456
+ text: {
457
+ element : function(settings, original) {
458
+ var input = $('<input />');
459
+ if (settings.width != 'none') { input.width(settings.width); }
460
+ if (settings.height != 'none') { input.height(settings.height); }
461
+ /* https://bugzilla.mozilla.org/show_bug.cgi?id=236791 */
462
+ //input[0].setAttribute('autocomplete','off');
463
+ input.attr('autocomplete','off');
464
+ $(this).append(input);
465
+ return(input);
466
+ }
467
+ },
468
+ textarea: {
469
+ element : function(settings, original) {
470
+ var textarea = $('<textarea />');
471
+ if (settings.rows) {
472
+ textarea.attr('rows', settings.rows);
473
+ } else if (settings.height != "none") {
474
+ textarea.height(settings.height);
475
+ }
476
+ if (settings.cols) {
477
+ textarea.attr('cols', settings.cols);
478
+ } else if (settings.width != "none") {
479
+ textarea.width(settings.width);
480
+ }
481
+ $(this).append(textarea);
482
+ return(textarea);
483
+ }
484
+ },
485
+ select: {
486
+ element : function(settings, original) {
487
+ var select = $('<select />');
488
+ $(this).append(select);
489
+ return(select);
490
+ },
491
+ content : function(data, settings, original) {
492
+ /* If it is string assume it is json. */
493
+ if (String == data.constructor) {
494
+ eval ('var json = ' + data);
495
+ } else {
496
+ /* Otherwise assume it is a hash already. */
497
+ var json = data;
498
+ }
499
+ for (var key in json) {
500
+ if (!json.hasOwnProperty(key)) {
501
+ continue;
502
+ }
503
+ if ('selected' == key) {
504
+ continue;
505
+ }
506
+ var option = $('<option />').val(key).append(json[key]);
507
+ $('select', this).append(option);
508
+ }
509
+ /* Loop option again to set selected. IE needed this... */
510
+ $('select', this).children().each(function() {
511
+ if ($(this).val() == json['selected'] ||
512
+ $(this).text() == $.trim(original.revert)) {
513
+ $(this).attr('selected', 'selected');
514
+ }
515
+ });
516
+ }
517
+ }
518
+ },
519
+
520
+ /* Add new input type */
521
+ addInputType: function(name, input) {
522
+ $.editable.types[name] = input;
523
+ }
524
+ };
525
+
526
+ // publicly accessible defaults
527
+ $.fn.editable.defaults = {
528
+ name : 'value',
529
+ id : 'id',
530
+ type : 'text',
531
+ width : 'auto',
532
+ height : 'auto',
533
+ event : 'click.editable',
534
+ onblur : 'cancel',
535
+ loadtype : 'GET',
536
+ loadtext : 'Loading...',
537
+ placeholder: 'Click to edit',
538
+ loaddata : {},
539
+ submitdata : {},
540
+ ajaxoptions: {}
541
+ };
542
+
543
+ })(jQuery);