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

« back to all changes in this revision

Viewing changes to www/media/browser/listing.js

  • Committer: mattgiuca
  • Date: 2008-02-28 08:10:34 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:611
"New File" now works. (This is a MUCH better replacement for having to go to
the editor and save a file).
listing.js: Added action_newfile.
browser.js: Calls action_newfile when "New File" is chosen.
fileservice_lib/action: Now the "putfile" action accepts blank data (which is
    how newfile works - also fixes a bug where the editor can't save an empty
    file).

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
    return false;
64
64
}
65
65
 
 
66
function action_newfile()
 
67
{
 
68
    var path = prompt("New file name?");
 
69
    if (path == null) return;
 
70
    /* "Upload" a blank file */
 
71
    do_action("putfile", current_path, {"path":path, "data":""});
 
72
    return false;
 
73
}
 
74
 
66
75
function action_copy(files)
67
76
{
68
77
    do_action("copy", current_path, {"path":files});