File size: 2,419 Bytes
f67f72f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
define([
    'jquery',
    'base/js/namespace',
    'base/js/events'
], function(
    $,
    IPython,
    events
) {
    "use strict";

    // define default values for config parameters
    var params = {
        autosavetime_set_starting_interval : false,
        autosavetime_starting_interval : 2,
        autosavetime_show_selector : true
    };

    // update params with any specified in the server's config file
    var update_params = function() {
        var config = IPython.notebook.config;
        for (var key in params) {
            if (config.data.hasOwnProperty(key))
                params[key] = config.data[key];
        }
    };

    var initialize = function () {
        update_params();

        var si = params.autosavetime_starting_interval;
        var set_si = params.autosavetime_set_starting_interval;

        if (params.autosavetime_show_selector) {
            var select = $('<select class="ui-widget-content"/>');
            select.change(function() {
                 var interval = parseInt($(this).val(), 10) * 60 * 1000;
                 IPython.notebook.set_autosave_interval(interval);
            });

            var thresholds = [0,2,5,10,15,20,30,60];

            if (set_si && thresholds.indexOf(si) < 0) thresholds.push(si);

            thresholds.sort(function(a, b) { return a-b; });

            for (var i in thresholds) {
                var thr = thresholds[i];
                select.append($('<option/>').attr('value', thr).text(thr));
            }

            select.find('option[value="2"]').text('2 (default)');
            select.find('option[value="0"]').text('off');

            if (set_si) select.val(si);

            IPython.toolbar.element.append(
                $('<label class="navbar-text"/>').text('Autosave interval (min):')
            ).append(select);
        }

        events.on("autosave_enabled.Notebook", function(event, value) {
            if (set_si) {
                IPython.notebook.set_autosave_interval(si * 60 * 1000);
            }
            else {
                if (params.autosavetime_show_selector) {
                    select.val(parseInt(value, 10) / 60 / 1000);
                }
            }
        });
    };

    var load_ipython_extension = function() {
        return IPython.notebook.config.loaded.then(initialize);
    };

    return {
        load_ipython_extension : load_ipython_extension
    };
});