Skip to content
Snippets Groups Projects

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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
9 9 python3-setuptools,
10 10 python3-swh.core,
11 11 python3-swh.storage (>= 0.0.33~),
12 python3-vcversioner
12 python3-vcversioner,
13 libjs-cryptojs
  • 1 1 [main]
    2 2 # the dedicated storage arguments (comma separated list of values)
    3 storage_args = http://localhost:5000/
    3 storage_args = http://uffizi:5002/
  • 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; }
  • 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%; }*/
  • 1 /**
    2 * Search page management
    3 */
    4
    5 $.fn.extend({
  • 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) {
    • Please add a comment about why this conversion is needed and what it does. Otherwise I'm sure we'll forget :)

      Also: this is here because, in the end, the same conversion function is not actually part of cryptoJs, right?

    • Please register or sign in to reply
  • 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">
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading