aboutsummaryrefslogtreecommitdiff
blob: aa025e464054732fd8ef4ddb4718c2395353d642 (plain)
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
/**
  Sets the count of lines if more than 5 or less than 50.
*/
function lines(id, amount) {
//  if ($(id).rows > 0 && $(id).rows <= 50) {
      $(id).rows += amount;
//  }
}

/**
  Toggles extra-wide input fields
**/
function toggleWide(id) {
  if ($(id).style.width == "140%") {
    $(id).style.width = "";
    $(id + "-widebtn").childNodes[1].src = "/images/icons/more_width.png";
    $(id + "-widebtn").title = "More columns";
  } else {
    $(id).style.width = "140%";
    $(id + "-widebtn").childNodes[1].src = "/images/icons/less_width.png";
    $(id + "-widebtn").title = "Fewer columns";
  }
}

function addBugDialog(glsaid) {
  Modalbox.show("/glsa/"+glsaid+"/addbug", {title: "Add bugs", width: 600});
}

function backgroundDialog() {
  Modalbox.show("/tools/background/?id=dev-lang/ruby", {title: "Get background", width: 600});
}


function getClientWidth() {
  return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
}

function buginfo(bugid) {
  Modalbox.show("/bug/" + bugid, {title: "Bug " + bugid, width: 800});
}

/** Marks a bug row as deleted **/
function markBugAsDeleted(bug) {
  $('bug-' + bug).className = 'delbug';
  
  var minus = new Image();
  minus.src = '/images/icons/minus-small.png';
  minus.alt = 'This bug will be removed when saving';
  
  $('bug-' + bug).getElementsByTagName('td')[0].appendChild(minus);
}

function markEntryAsDeleted(elem, type) {
  if (elem.up('.entry').hasClassName('delbug')) {
    elem.up('.entry').select('input[type=hidden][value=ignore]').each(function(s) { s.remove() });
  } else {
    var hiddenField = document.createElement("input");
    hiddenField.name = "glsa[" + type + "][][ignore]";
    hiddenField.type = "hidden";
    hiddenField.value = "ignore";
    elem.up('.entry').appendChild(hiddenField);
  }
  elem.up('.entry').toggleClassName("delbug");
}

function generateResolution() {
  $('resolution').value = "";
  resolution = "";
  for (i = 0; i < $('packages_table').select('.entry').length; i++) {
    if ($('packages_table').down(".entry", i).select('input[type=hidden][value=ignore]').length > 0)
      continue;
    
    atom = $('packages_table').down(".entry", i).down("#glsa_package__atom").value;
    name = atom.split("/")[1];
    comp = $('packages_table').down(".entry", i).down("#glsa_package__unaffected_version_comp").value;
    version = $('packages_table').down(".entry", i).down("#glsa_package__unaffected_version").value;
       
    resolution += "All " + name + " users should upgrade to the latest version:\n\n\
<code>\n\
# emerge --sync\n\
# emerge --ask --oneshot --verbose \"" + comp + atom + "-" + version + "\"</code>\n\n";
  }
  
  
  $('resolution').value = resolution;
}

function generateDescription() {
  // This code is pretty ugly. You have been warned.
  // cnt is the number of 'entry's
  // act_cnt is cnt minus the number of to be ignored 'entry's
  // i is used to walk down into the i'th entry element
  // act_i is used to keep track of how many packages have been / will be added
  
  name = "";
  cnt = $('packages_table').select('.entry').length;
  act_cnt = cnt - $('packages_table').select('.entry input[type=hidden][value=ignore]').length;
  
  act_i = 0;
  for (i = 0; i < cnt; i++) {
    if ($('packages_table').down(".entry", i).select('input[type=hidden][value=ignore]').length > 0)
      continue;
    
        atom = $('packages_table').down(".entry", i).down("#glsa_package__atom").value;
    if (act_cnt > 1 && act_i == act_cnt - 1) {
      name += ", and ";
    } else if (act_cnt > 1 && act_i != 0) {
      name += ", ";
    }
    act_i++;
    name += atom.split("/")[1];
  }
    
  $('description').value = "Multiple vulnerabilities have been discovered in " + name + ". Please view the CVE identifiers referenced below for details.";
}
//document.observe('dom:loaded', function() {
                        
//});