-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathscript.js
107 lines (90 loc) · 2.27 KB
/
script.js
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
var autobackup = {
init: function () {
this.hide_title();
this.activate_remember_button();
this.activate_disable_dropbox_button();
this.activate_enable_dropbox_button();
},
hide_title: function () {
jQuery("div.page h1.title").remove();
},
add_memories_button: function () {
var li = jQuery("<li/>").append(
jQuery("<a/>")
.addClass("action")
.attr("href", "/doku.php?id=test:memories&do=memories")
.text("Memories")
);
jQuery("div#dokuwiki__usertools ul").prepend(li);
},
activate_remember_button: function () {
jQuery(".apply-backup").click(function () {
tr = jQuery(this).parents('tr');
timestamp = tr.find('td:first').text();
source = tr.find('td:nth-child(2)').text();
location.href = "/doku.php?do=restore&source="+source+"×tamp="+timestamp;
});
},
activate_disable_dropbox_button: function () {
jQuery("#Disable_dropbox").click(function () {
jQuery.post(
DOKU_BASE + "lib/exe/ajax.php",
{ call: 'dropbox.disable' },
function (j) {
alert(j.message);
location.reload();
},
'json'
);
});
},
activate_enable_dropbox_button: function () {
jQuery("#Enable_dropbox").click(function () {
jQuery.post(
DOKU_BASE + "lib/exe/ajax.php",
{ call: 'dropbox.enable' },
function (j) {
alert(j.message);
location.reload();
},
'json'
);
});
},
init_restore: function () {
timestamp = jQuery("#timestamp").text();
source = jQuery("#source").text();
jQuery.post(
DOKU_BASE + "lib/exe/ajax.php",
{
call: 'restore.memory',
source: source,
timestamp: timestamp
},
function (j) {
jQuery("#loading-gif-div").hide();
if ( j.error != 0 ) {
jQuery("#restore-result").text("failed!");
jQuery("#error-output").show().text(j.error_output);
} else {
jQuery("#restore-result").text("complete!");
jQuery("#restore-message span.message").text(j.message);
jQuery("#restore-message").show();
}
},
'json'
);
}
};
jQuery(document).ready(function () {
// Modify the page
if ( location.href.match(/do=memories/) != null ) {
autobackup.init();
}
if ( location.href.match(/do=restore/) != null ) {
autobackup.init_restore();
}
if ( JSINFO.user != "unknown" ) {
autobackup.add_memories_button();
}
});