~azzar1/unity/add-show-desktop-key

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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/* browser.js
 * Client-side interaction for both file browser and editor.
 * PROOF-OF-CONCEPT ONLY
 *
 * Author: Matt Giuca
 */

var gpathlist;

/* Removes all children of a given element */
function removechildren(elem)
{
    while (elem.lastChild != null)
        elem.removeChild(elem.lastChild);
}

/* Clears all dynamic data from the page, so it can be refilled. */
function clearfiles()
{
    path = document.getElementById("path");
    removechildren(path);
    files = document.getElementById("files");
    removechildren(files);
}

function makebutton(text, action)
{
    button = document.createElement("input");
    button.setAttribute("type", "button");
    button.setAttribute("value", text);
    button.setAttribute("onclick", action);
    return button;
}

/* Makes a TD element with text in it */
function maketd(text)
{
    td = document.createElement("td");
    td.appendChild(document.createTextNode(text));
    return td;
}

function maketdwithlink(text, href, onclick)
{
    td = document.createElement("td");
    link = document.createElement("a");
    link.setAttribute("href", href);
    if (onclick != null)
        link.setAttribute("onclick", onclick);
    link.appendChild(document.createTextNode(text));
    td.appendChild(link);
    return td;
}

/* file is a listing object, with fields as returned by the server. */
function maketdwithactions(file)
{
    td = document.createElement("td");
    if (!file.isdir)
    {
        td.appendChild(makebutton("Delete", "rm(\"" + file.filename + "\")"));
        td.appendChild(makebutton("Rename", "rename(\"" + file.filename + "\")"));
        td.appendChild(makebutton("Edit", "edit(\"" + file.filename + "\")"));
    }
    if (file.svnstatus == "unversioned")
        td.appendChild(makebutton("Add", "svnadd(\"" + file.filename + "\")"));
    else if (file.svnstatus == "added" || file.svnstatus == "modified")
        td.appendChild(makebutton("Commit", "svncommit(\"" + file.filename + "\")"));
    return td;
}

/* Converts a list of directories into a path name, with a slash at the end */
function pathlisttopath(pathlist)
{
    ret = "";
    for each (dir in pathlist)
    {
        ret += dir + "/";
    }
    return ret;
}

function presentpath(pathlist)
{
    path = document.getElementById("path");
    gpathlist = pathlist;
    pathlist = ["home"].concat(pathlist);
    navlist = [];
    home = true;

    /* Create all of the paths */
    for each (dir in pathlist)
    {
        if (home == false)
            navlist.push(dir);
        home = false;
        /* Make an 'a' element */
        link = document.createElement("a");
        link.setAttribute("href", "#");
        link.setAttribute("onclick", "nav(" + JSON.stringify(navlist) + ")");
        link.appendChild(document.createTextNode(dir));
        path.appendChild(link);
        path.appendChild(document.createTextNode("/"));
    }
}

/* Presents a directory listing to the page.
 * pathlist is an array of strings, the names of the directories in the path.
 * listing is a list of objects where each object is a file (containing
 * several fields about the file).
 */
function presentlisting(pathlist, listing)
{
    presentpath(pathlist);
    files = document.getElementById("files");

    /* Create all of the files */
    for each (file in listing)
    {
        /* Make a 'tr' element */
        row = document.createElement("tr");
        if (file.isdir)
        {
            row.appendChild(maketd("dir"));
            navlink = JSON.stringify(navlist.concat([file.filename]));
            navlink = "nav(" + navlink + ")";
            row.appendChild(maketdwithlink(file.filename, "#", navlink));
        }
        else
        {
            row.appendChild(maketd("file"));
            row.appendChild(maketd(file.filename));
        }
        row.appendChild(maketd(file.svnstatus));
        row.appendChild(maketd(file.size));
        row.appendChild(maketd(file.mtime));
        row.appendChild(maketdwithactions(file));
        files.appendChild(row);
    }
}

/* AJAX */

function obj_to_query_string(pagename, obj)
{
    var hadone = false;
    qs = pagename;
    for (key in obj)
    {
        vals = obj[key];
        // vals can be an array, to make multiple args with the same name
        // To handle this, make non-array objects into an array, then loop
        if (!(vals instanceof Array))
            vals = [vals];
        for each (val in vals)
        {
            if (hadone == false)
            {
                qs += "?";
                hadone = true;
            }
            else
                qs += "&";
            qs += encodeURI(key) + "=" + encodeURI(val);
        }
    }
    return qs;
}

/* ACTIONS */

function nav(pathlist)
{
    gpathlist = pathlist;
    refresh();
}

function refresh()
{ 
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/ls", {"path" : path});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

function rm(filename)
{
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/rm",
        {"path" : path, "filename" : filename});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

function rename(fromfilename)
{
    tofilename = prompt("Rename file \"" + fromfilename + "\" to?");
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/rename",
        {"path" : path, "fromfilename" : fromfilename,
        "tofilename" : tofilename});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

/* filenames is a list of filenames */
function svnadd(filenames)
{
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/svnadd",
        {"path" : path, "filename" : filenames});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

/* filenames is a list of filenames */
function svncommit(filenames)
{
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/svncommit",
        {"path" : path, "filename" : filenames});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

function svncommitall()
{
    path = pathlisttopath(gpathlist);
    url = obj_to_query_string("files.py/svncommit",
        {"path" : path, "commitall" : "yes"});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
    else
    {
        clearfiles();
        presentlisting(gpathlist, listing);
    }
}

function newfile()
{
    window.location = "edit.html";
}

function edit(filename)
{
    window.location = "edit.html?filename="
        + pathlisttopath(gpathlist) + filename;
}

function savefile()
{
    filename = document.getElementById("filename").value;
    data = document.getElementById("data").value;
    url = obj_to_query_string("files.py/putfile",
        {"path" : "", "filename" : filename, "data" : data});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
}

function loadfile()
{
    filename = document.getElementById("filename").value;
    if (filename == null || filename == "")
        return;
    url = obj_to_query_string("files.py/getfile",
        {"path" : "", "filename" : filename});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    document.getElementById("data").value = xmlhttp.responseText;
}

function saveandcommit()
{
    filename = document.getElementById("filename").value;
    data = document.getElementById("data").value;
    url = obj_to_query_string("files.py/putfile",
        {"path" : "", "filename" : filename, "data" : data});
    var xmlhttp =  new XMLHttpRequest();
        // false -> SYNCHRONOUS (wait for response)
        // (No need for a callback function)
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");
    
    url = obj_to_query_string("files.py/svncommit",
        {"path" : "", "filename" : filename});
    xmlhttp.open("GET", url, false);
    xmlhttp.send("");

    listing = JSON.parse(xmlhttp.responseText);
    if (listing == null)
        alert("An error occured");
    else if ("error" in listing)
        alert("Error: " + listing.error);
}

/* Called on page load */
function init_browser()
{
    gpathlist = [];
    refresh();
}

function init_edit()
{
    document.getElementById("filename").value = getURLParam("filename");
    loadfile();
}

/* BORROWED CODE */

/* http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z */
function getURLParam(strParamName){
  var strReturn = "";
  var strHref = window.location.href;
  if ( strHref.indexOf("?") > -1 ){
    var strQueryString = strHref.substr(strHref.indexOf("?"));
    var aQueryString = strQueryString.split("&");
    for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
      if (
aQueryString[iParam].indexOf(strParamName.toLowerCase() + "=") > -1 ){
        var aParam = aQueryString[iParam].split("=");
        strReturn = aParam[1];
        break;
      }
    }
  }
  return decodeURI(strReturn);
}