• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 @licstart  The following is the entire license notice for the JavaScript code in this file.
3
4 The MIT License (MIT)
5
6 Copyright (C) 1997-2020 by Dimitri van Heesch
7
8 Permission is hereby granted, free of charge, to any person obtaining a copy of this software
9 and associated documentation files (the "Software"), to deal in the Software without restriction,
10 including without limitation the rights to use, copy, modify, merge, publish, distribute,
11 sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
12 furnished to do so, subject to the following conditions:
13
14 The above copyright notice and this permission notice shall be included in all copies or
15 substantial portions of the Software.
16
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
18 BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 @licend  The above is the entire license notice for the JavaScript code in this file
24 */
25function toggleVisibility(linkObj)
26{
27 var base = $(linkObj).attr('id');
28 var summary = $('#'+base+'-summary');
29 var content = $('#'+base+'-content');
30 var trigger = $('#'+base+'-trigger');
31 var src=$(trigger).attr('src');
32 if (content.is(':visible')===true) {
33   content.hide();
34   summary.show();
35   $(linkObj).addClass('closed').removeClass('opened');
36   $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png');
37 } else {
38   content.show();
39   summary.hide();
40   $(linkObj).removeClass('closed').addClass('opened');
41   $(trigger).attr('src',src.substring(0,src.length-10)+'open.png');
42 }
43 return false;
44}
45
46function updateStripes()
47{
48  $('table.directory tr').
49       removeClass('even').filter(':visible:even').addClass('even');
50  $('table.directory tr').
51       removeClass('odd').filter(':visible:odd').addClass('odd');
52}
53
54function toggleLevel(level)
55{
56  $('table.directory tr').each(function() {
57    var l = this.id.split('_').length-1;
58    var i = $('#img'+this.id.substring(3));
59    var a = $('#arr'+this.id.substring(3));
60    if (l<level+1) {
61      i.removeClass('iconfopen iconfclosed').addClass('iconfopen');
62      a.html('&#9660;');
63      $(this).show();
64    } else if (l==level+1) {
65      i.removeClass('iconfclosed iconfopen').addClass('iconfclosed');
66      a.html('&#9658;');
67      $(this).show();
68    } else {
69      $(this).hide();
70    }
71  });
72  updateStripes();
73}
74
75function toggleFolder(id)
76{
77  // the clicked row
78  var currentRow = $('#row_'+id);
79
80  // all rows after the clicked row
81  var rows = currentRow.nextAll("tr");
82
83  var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub
84
85  // only match elements AFTER this one (can't hide elements before)
86  var childRows = rows.filter(function() { return this.id.match(re); });
87
88  // first row is visible we are HIDING
89  if (childRows.filter(':first').is(':visible')===true) {
90    // replace down arrow by right arrow for current row
91    var currentRowSpans = currentRow.find("span");
92    currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
93    currentRowSpans.filter(".arrow").html('&#9658;');
94    rows.filter("[id^=row_"+id+"]").hide(); // hide all children
95  } else { // we are SHOWING
96    // replace right arrow by down arrow for current row
97    var currentRowSpans = currentRow.find("span");
98    currentRowSpans.filter(".iconfclosed").removeClass("iconfclosed").addClass("iconfopen");
99    currentRowSpans.filter(".arrow").html('&#9660;');
100    // replace down arrows by right arrows for child rows
101    var childRowsSpans = childRows.find("span");
102    childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
103    childRowsSpans.filter(".arrow").html('&#9658;');
104    childRows.show(); //show all children
105  }
106  updateStripes();
107}
108
109
110function toggleInherit(id)
111{
112  var rows = $('tr.inherit.'+id);
113  var img = $('tr.inherit_header.'+id+' img');
114  var src = $(img).attr('src');
115  if (rows.filter(':first').is(':visible')===true) {
116    rows.css('display','none');
117    $(img).attr('src',src.substring(0,src.length-8)+'closed.png');
118  } else {
119    rows.css('display','table-row'); // using show() causes jump in firefox
120    $(img).attr('src',src.substring(0,src.length-10)+'open.png');
121  }
122}
123/* @license-end */
124