##// END OF EJS Templates
Merge pull request #4333 from minrk/notebook-metadata...
Matthias Bussonnier -
r12917:bd66ff0f merge
parent child Browse files
Show More
@@ -60,7 +60,7 b' IPython.dialog = (function (IPython) {'
60 60 });
61 61
62 62 // destroy dialog on hide, unless explicitly asked not to
63 if (options.destroy == undefined || options.destroy) {
63 if (options.destroy === undefined || options.destroy) {
64 64 dialog.on("hidden", function () {
65 65 dialog.remove();
66 66 });
@@ -75,10 +75,69 b' IPython.dialog = (function (IPython) {'
75 75 }
76 76
77 77 return dialog.modal(options);
78 }
78 };
79
80 var edit_metadata = function (md, callback, name) {
81 name = name || "Cell";
82 var error_div = $('<div/>').css('color', 'red');
83 var message =
84 "Manually edit the JSON below to manipulate the metadata for this " + name + "." +
85 " We recommend putting custom metadata attributes in an appropriately named sub-structure," +
86 " so they don't conflict with those of others.";
87
88 var textarea = $('<textarea/>')
89 .attr('rows', '13')
90 .attr('cols', '80')
91 .attr('name', 'metadata')
92 .text(JSON.stringify(md || {}, null, 2));
93
94 var dialogform = $('<div/>').attr('title', 'Edit the metadata')
95 .append(
96 $('<form/>').append(
97 $('<fieldset/>').append(
98 $('<label/>')
99 .attr('for','metadata')
100 .text(message)
101 )
102 .append(error_div)
103 .append($('<br/>'))
104 .append(textarea)
105 )
106 );
107 var editor = CodeMirror.fromTextArea(textarea[0], {
108 lineNumbers: true,
109 matchBrackets: true,
110 indentUnit: 2,
111 autoIndent: true,
112 mode: 'application/json',
113 });
114 IPython.dialog.modal({
115 title: "Edit " + name + " Metadata",
116 body: dialogform,
117 buttons: {
118 OK: { class : "btn-primary",
119 click: function() {
120 // validate json and set it
121 var new_md;
122 try {
123 new_md = JSON.parse(editor.getValue());
124 } catch(e) {
125 console.log(e);
126 error_div.text('WARNING: Could not save invalid JSON.');
127 return false;
128 }
129 callback(new_md);
130 }
131 },
132 Cancel: {}
133 }
134 });
135 editor.refresh();
136 };
79 137
80 138 return {
81 139 modal : modal,
140 edit_metadata : edit_metadata,
82 141 };
83 142
84 143 }(IPython));
@@ -19,54 +19,10 b''
19 19 var CellToolbar = IPython.CellToolbar;
20 20
21 21 var raw_edit = function(cell){
22
23 var md = cell.metadata
24 var error_div = $('<div/>').css('color','red')
25
26 var textarea = $('<textarea/>')
27 .attr('rows','13')
28 .attr('cols','75')
29 .attr('name','metadata')
30 .text(JSON.stringify(md, null,4)||'');
31 var dialogform = $('<div/>').attr('title','Edit the metadata')
32 .append(
33 $('<form/>').append(
34 $('<fieldset/>').append(
35 $('<label/>')
36 .attr('for','metadata')
37 .text("Manually edit the JSON below to manipulate the metadata for this cell. This assumes you know what you are doing and won't complain if it breaks your notebook. We also recommend putting your metadata attributes in an appropriately named sub-structure, so they don't conflict with those of others.")
38 )
39 .append(error_div)
40 .append($('<br/>'))
41 .append(
42 textarea
43 )
44 )
45 );
46 var editor = CodeMirror.fromTextArea(textarea[0], {
47 lineNumbers: true,
48 matchBrackets: true,
49 });
50 IPython.dialog.modal({
51 title: "Edit Cell Metadata",
52 body: dialogform,
53 buttons: {
54 "OK": { class : "btn-primary",
55 click: function() {
56 //validate json and set it
57 try {
58 var json = JSON.parse(editor.getValue());
59 cell.metadata = json;
60 } catch(e) {
61 error_div.text('Warning, invalid json, not saved');
62 return false;
63 }
64 }},
65 Cancel: {}
66 }
22 IPython.dialog.edit_metadata(cell.metadata, function (md) {
23 cell.metadata = md;
67 24 });
68 editor.refresh();
69 }
25 };
70 26
71 27 var add_raw_edit_button = function(div, cell) {
72 28 var button_container = div;
@@ -78,13 +34,13 b''
78 34 return false;
79 35 });
80 36 button_container.append(button);
81 }
37 };
82 38
83 CellToolbar.register_callback('default.rawedit',add_raw_edit_button);
84 var example_preset = []
39 CellToolbar.register_callback('default.rawedit', add_raw_edit_button);
40 var example_preset = [];
85 41 example_preset.push('default.rawedit');
86 42
87 CellToolbar.register_preset('Default',example_preset);
43 CellToolbar.register_preset('Default', example_preset);
88 44 console.log('Default extension for metadata editing loaded.');
89 45
90 46 }(IPython));
@@ -136,6 +136,10 b' var IPython = (function (IPython) {'
136 136 this.element.find('#select_next').click(function () {
137 137 IPython.notebook.select_next();
138 138 });
139 this.element.find('#edit_nb_metadata').click(function () {
140 IPython.notebook.edit_metadata();
141 });
142
139 143 // View
140 144 this.element.find('#toggle_header').click(function () {
141 145 $('div#header').toggle();
@@ -437,6 +437,14 b' var IPython = (function (IPython) {'
437 437 this.element.animate({scrollTop:0}, 0);
438 438 };
439 439
440 // Edit Notebook metadata
441
442 Notebook.prototype.edit_metadata = function () {
443 var that = this;
444 IPython.dialog.edit_metadata(this.metadata, function (md) {
445 that.metadata = md;
446 }, 'Notebook');
447 };
440 448
441 449 // Cell indexing, retrieval, etc.
442 450
@@ -100,6 +100,8 b' class="notebook_app"'
100 100 <li class="divider"></li>
101 101 <li id="select_previous"><a href="#">Select Previous Cell</a></li>
102 102 <li id="select_next"><a href="#">Select Next Cell</a></li>
103 <li class="divider"></li>
104 <li id="edit_nb_metadata"><a href="#">Edit Notebook Metadata</a></li>
103 105 </ul>
104 106 </li>
105 107 <li class="dropdown"><a href="#" class="dropdown-toggle" data-toggle="dropdown">View</a>
General Comments 0
You need to be logged in to leave comments. Login now