-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploy mate-desktop/caja-dropbox to github.com/mate-desktop/caja-drop…
…box.git:gh-pages
- Loading branch information
raveit65 (via Travis CI)
committed
Feb 21, 2024
0 parents
commit c0d1c4d
Showing
99 changed files
with
60,744 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<html> | ||
<head> | ||
<title>rootdir - scan-build results</title> | ||
<link type="text/css" rel="stylesheet" href="scanview.css"/> | ||
<script src="sorttable.js"></script> | ||
<script language='javascript' type="text/javascript"> | ||
function SetDisplay(RowClass, DisplayVal) | ||
{ | ||
var Rows = document.getElementsByTagName("tr"); | ||
for ( var i = 0 ; i < Rows.length; ++i ) { | ||
if (Rows[i].className == RowClass) { | ||
Rows[i].style.display = DisplayVal; | ||
} | ||
} | ||
} | ||
|
||
function CopyCheckedStateToCheckButtons(SummaryCheckButton) { | ||
var Inputs = document.getElementsByTagName("input"); | ||
for ( var i = 0 ; i < Inputs.length; ++i ) { | ||
if (Inputs[i].type == "checkbox") { | ||
if(Inputs[i] != SummaryCheckButton) { | ||
Inputs[i].checked = SummaryCheckButton.checked; | ||
Inputs[i].onclick(); | ||
} | ||
} | ||
} | ||
} | ||
|
||
function returnObjById( id ) { | ||
if (document.getElementById) | ||
var returnVar = document.getElementById(id); | ||
else if (document.all) | ||
var returnVar = document.all[id]; | ||
else if (document.layers) | ||
var returnVar = document.layers[id]; | ||
return returnVar; | ||
} | ||
|
||
var NumUnchecked = 0; | ||
|
||
function ToggleDisplay(CheckButton, ClassName) { | ||
if (CheckButton.checked) { | ||
SetDisplay(ClassName, ""); | ||
if (--NumUnchecked == 0) { | ||
returnObjById("AllBugsCheck").checked = true; | ||
} | ||
} | ||
else { | ||
SetDisplay(ClassName, "none"); | ||
NumUnchecked++; | ||
returnObjById("AllBugsCheck").checked = false; | ||
} | ||
} | ||
</script> | ||
<!-- SUMMARYENDHEAD --> | ||
</head> | ||
<body> | ||
<h1>rootdir - scan-build results</h1> | ||
|
||
<table> | ||
<tr><th>User:</th><td>root@e4f2a4aebe6d</td></tr> | ||
<tr><th>Working Directory:</th><td>/rootdir</td></tr> | ||
<tr><th>Command Line:</th><td>make -j 2</td></tr> | ||
<tr><th>Clang Version:</th><td>clang version 12.0.0 (Fedora 12.0.0-0.3.rc1.fc34) | ||
</td></tr> | ||
<tr><th>Date:</th><td>Sat May 29 19:34:55 2021</td></tr> | ||
</table> | ||
<h2>Bug Summary</h2><table> | ||
<thead><tr><td>Bug Type</td><td>Quantity</td><td class="sorttable_nosort">Display?</td></tr></thead> | ||
<tr style="font-weight:bold"><td class="SUMM_DESC">All Bugs</td><td class="Q">2</td><td><center><input type="checkbox" id="AllBugsCheck" onClick="CopyCheckedStateToCheckButtons(this);" checked/></center></td></tr> | ||
<tr><th>Logic error</th><th colspan=2></th></tr> | ||
<tr><td class="SUMM_DESC">Cast from non-struct type to struct type</td><td class="Q">2</td><td><center><input type="checkbox" onClick="ToggleDisplay(this,'bt_logic_error_cast_from_non-struct_type_to_struct_type');" checked/></center></td></tr> | ||
</table> | ||
<h2>Reports</h2> | ||
|
||
<table class="sortable" style="table-layout:automatic"> | ||
<thead><tr> | ||
<td>Bug Group</td> | ||
<td class="sorttable_sorted">Bug Type<span id="sorttable_sortfwdind"> ▾</span></td> | ||
<td>File</td> | ||
<td>Function/Method</td> | ||
<td class="Q">Line</td> | ||
<td class="Q">Path Length</td> | ||
<td class="sorttable_nosort"></td> | ||
<!-- REPORTBUGCOL --> | ||
</tr></thead> | ||
<tbody> | ||
<tr class="bt_logic_error_cast_from_non-struct_type_to_struct_type"><td class="DESC">Logic error</td><td class="DESC">Cast from non-struct type to struct type</td><td>dropbox-command-client.c</td><td class="DESC">dropbox_command_client_force_reconnect</td><td class="Q">746</td><td class="Q">1</td><td><a href="report-7ad019.html#EndPath">View Report</a></td> | ||
<!-- REPORTBUG id="report-7ad019.html" --> | ||
</tr> | ||
<tr class="bt_logic_error_cast_from_non-struct_type_to_struct_type"><td class="DESC">Logic error</td><td class="DESC">Cast from non-struct type to struct type</td><td>dropbox-command-client.c</td><td class="DESC">dropbox_command_client_force_reconnect</td><td class="Q">746</td><td class="Q">1</td><td><a href="report-8893d3.html#EndPath">View Report</a></td> | ||
<!-- REPORTBUG id="report-8893d3.html" --> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
</body></html> |
Oops, something went wrong.