-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2bbf53b
commit 97a8b61
Showing
16 changed files
with
290 additions
and
135 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,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>About - Software Artifact Analyzer</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header> | ||
<img src="assets/logo.svg" alt="SAA Logo" class="logo"> | ||
<p class="name"> Software Artifact Analyzer </p> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="features.html" >Key Features</a></li> | ||
<li><a href="guides.html">User & Developer Guides</a></li> | ||
<li><a href="highlights.html">Highlights</a></li> | ||
<li><a href="about.html" class="active">About</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main id="content"> | ||
<!-- About Page Content --> | ||
<h1>About</h1> | ||
<p>Software Artifact Analyzer (SAA) is developed and maintained by | ||
<a href="http://www.cs.bilkent.edu.tr/~ivis/">i-Vis Research Lab</a> and | ||
<a href="https://bilsen.cs.bilkent.edu.tr/">BILSEN Research Group</a> | ||
at Bilkent University. | ||
</p> | ||
<p> | ||
Feel free to contact us by <a href="mailto:[email protected]">email</a> for any questions/comments. | ||
</p> | ||
</main> | ||
</div> | ||
<script src="main.js"></script> | ||
</body> | ||
</html> |
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file not shown.
Binary file not shown.
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
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
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,52 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Highlights</title> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<header> | ||
<img src="assets/logo.svg" alt="SAA Logo" class="logo"> | ||
<p class="name"> Software Artifact Analyzer </p> | ||
<nav> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="features.html" >Key Features</a></li> | ||
<li><a href="guides.html">User & Developer Guides</a></li> | ||
<li><a href="highlights.html" class="active">Highlights</a></li> | ||
<li><a href="about.html">About</a></li> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<section id="practitioner-insights"> | ||
<h1>SAA Highlights</h1> | ||
<div class="card-container"> | ||
<div class="card"> | ||
<h3>Intuitive Visualization</h3> | ||
<p>Visual representation of a software artifact traceability graph helps you see and understand complex relationships between artifacts.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Anomaly Detection</h3> | ||
<p>The anomaly detection and reporting keep developers and management informed about potential mispractices in the development process without the need for constant manual checks.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Reviewer & Expert Recommendations</h3> | ||
<p>Automated reviewer recommendation guides developers to the best reviewers, preventing lengthy code | ||
reviews. Expert recommendation helps identify most suitale developers | ||
for specific tasks, helping management with assignments.</p> | ||
</div> | ||
<div class="card"> | ||
<h3>Easy Implementation of Analytics</h3> | ||
<p>SAA framework leverages developers with implementation of new software analytics applications, such as bus factor analysis and knowledge islands, minimizing the need for extensive implementation efforts.</p> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
<script src="main.js"></script> | ||
</div> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.