Search page drag & drop
Updated search page to support drag&drop and client-side file hashing (sha1 only) Updated static folder to contain js, css and lib categories Updated service and backend to provide batch lookup for sha1 lists. Updated relevant files for inclusion of CryptoJS library.
Test Plan
Updated relevant tests to reflect changes. Tests requiring POST data currently do not pass, to be continued.
Migrated from D4 (view on Phabricator)
Merge request reports
Activity
mentioned in commit swh/infra/ci-cd/debs/universal-ctags@f55152c0
mentioned in commit swh/infra/ci-cd/debs/universal-ctags@0445c9ee
mentioned in commit swh/infra/ci-cd/debs/universal-ctags@482e6a6d
closing, as @jbertran should be submitted as a new diff (not called "test" :-))
10 10 from swh.web.ui.exc import NotFoundExc 11 11 12 12 13 def lookup_multiple_hashes(hashes): 25 25 .flash { background: #cee5F5; padding: 0.5em; 26 26 border: 1px solid #aacbe2; } 27 27 .error { background: #f0d6d6; padding: 0.5em; } 28 /*.dropbox { text-align: center; width: 80%; height: 10%; }*/ 28 29 30 .file-found { color: #23BA49; } 31 .file-nfound { color: #FF4747; } - swh/web/ui/static/js/filedrop.js 0 → 100644
- swh/web/ui/static/js/filedrop.js 0 → 100644
120 121 function bind_reader(filereader, filename, searchForm) { 122 filereader.onloadend = function(evt) { 123 if (evt.target.readyState == FileReader.DONE){ 124 return fileReadDone(evt.target.result, filename, searchForm); 125 } 126 }; 127 } 128 129 function make_row(name) { 130 return "<div class='span3'>"+name+"</div>"; 131 } 132 133 function fileReadDone(buffer, fname, searchForm) { 134 135 function bytesToWords(bytes) { 3 3 <head> 4 4 <meta charset="utf-8"> 5 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0">
Please register or sign in to reply