Skip to content

Commit ebef09a

Browse files
authored
Merge pull request #12 from Anas-Elhounsri/main
Added tool page to link the projects associated or used in CODEMETASOFT
2 parents f9a5f27 + 8ecb8dd commit ebef09a

3 files changed

Lines changed: 177 additions & 0 deletions

File tree

website/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
<ul>
6161
<li class="active"><a href="index.html">Home</a></li>
6262
<li class><a href="publications.html">Publications</a></li>
63+
<li class><a href="tools.html">Tooling</a></li>
6364
<!--<li class="has-dropdown">
6465
<a href="blog.html">Blog</a>
6566
<ul class="dropdown">

website/publications.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@
6464
<ul>
6565
<li class><a href="index.html">Home</a></li>
6666
<li class="active"><a href="publications.html">Publications</a></li>
67+
<li class><a href="tools.html">Tooling</a></li>
6768
</ul>
6869
</div>
6970
</div>

website/tools.html

Lines changed: 175 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,175 @@
1+
<!DOCTYPE HTML>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<!-- <title>Scientific Software Knowledge Graphs</title> -->
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
<meta name="keywords" content="scientific software, knowledge graph, reproducibility, reusability" />
9+
10+
<!--
11+
//////////////////////////////////////////////////////
12+
13+
FREE HTML5 TEMPLATE
14+
DESIGNED & DEVELOPED by FreeHTML5.co
15+
Website: http://freehtml5.co/
16+
17+
Content adapted by Daniel Garijo
18+
19+
//////////////////////////////////////////////////////
20+
-->
21+
22+
23+
24+
<!-- <link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,500,700,800" rel="stylesheet"> -->
25+
<link href="https://fonts.googleapis.com/css?family=Inconsolata:400,700" rel="stylesheet">
26+
27+
<!-- Animate.css -->
28+
<link rel="stylesheet" href="css/animate.css">
29+
<!-- Icomoon Icon Fonts-->
30+
<link rel="stylesheet" href="css/icomoon.css">
31+
<!-- Bootstrap -->
32+
<link rel="stylesheet" href="css/bootstrap.css">
33+
<!-- Flexslider -->
34+
<link rel="stylesheet" href="css/flexslider.css">
35+
36+
<!-- Theme style -->
37+
<link rel="stylesheet" href="css/style.css">
38+
39+
<!-- Modernizr JS -->
40+
<script src="js/modernizr-2.6.2.min.js"></script>
41+
42+
<!-- FOR IE9 below -->
43+
<!--[if lt IE 9]>
44+
<script src="js/respond.min.js"></script>
45+
<![endif]-->
46+
47+
</head>
48+
<body>
49+
50+
<div class="fh5co-loader"></div>
51+
52+
<div id="page">
53+
<nav class="fh5co-nav" role="navigation">
54+
<div class="top-menu">
55+
<div class="container">
56+
<div class="row">
57+
<div class="col-xs-3">
58+
<!-- <div id="fh5co-logo"><a href="index.html">SciSoft-KG<span>.</span></a></div> -->
59+
</div>
60+
<div class="col-xs-9 text-right menu-1">
61+
<ul>
62+
<li class><a href="index.html">Home</a></li>
63+
<li class><a href="publications.html">Publications</a></li>
64+
<li class="active"><a href="tools.html">Tooling</a></li>
65+
</ul>
66+
</div>
67+
</div>
68+
69+
</div>
70+
</div>
71+
</nav>
72+
73+
<!-- fh5co-wireframe fh5co-features-->
74+
<div id="fh5co-wireframe">
75+
<div class="container">
76+
<div class="row animate-box">
77+
<div class="col-md-8 col-md-offset-2 text-center fh5co-heading">
78+
<h2>Project Tools</h2>
79+
</div>
80+
</div>
81+
82+
<div class="row">
83+
<div class="col-md-6 animate-box">
84+
<div class="user-frame" style="margin-bottom: 30px;">
85+
<h3>Autocodemeta</h3>
86+
<p>A web-based application designed to simplify the creation of standardized software descriptions by automatically pulling data
87+
from repository URLs to generate a codemeta.json file. It allows users to input a link from platforms like GitHub or GitLab
88+
and then uses that information to populate mandatory and optional fields, such as license details, funding sources, and author
89+
information.</p>
90+
<p><a href="https://autocodemeta.linkeddata.es/">Link to the tool</a></p>
91+
</div>
92+
</div>
93+
94+
<div class="col-md-6 animate-box">
95+
<div class="user-frame" style="margin-bottom: 30px;">
96+
<h3>sw-metadata-bot</h3>
97+
<p>This is the bot that complement the tool <a href="https://github.com/SoftwareUnderstanding/RsMetaCheck">RsMetaCheck</a>, it pushes issues
98+
to the repository with reports generated by RsMetaCheck with pitfalls like missing license details, alongside suggestions to
99+
let the creators know what needs to be updated. This keep the project's documentation clear and reliable so that it can be used
100+
without running into errors caused by outdated or missing information.</p>
101+
<p><a href="https://github.com/SoftwareUnderstanding/sw-metadata-bot">Link to the tool</a></p>
102+
</div>
103+
</div>
104+
</div>
105+
106+
<div class="row">
107+
<div class="col-md-6 animate-box">
108+
<div class="user-frame" style="margin-bottom: 30px;">
109+
<h3>RSMetacheck</h3>
110+
<p> This project provides an automated tool for detecting common metadata quality issues (pitfalls & Warnings) in software repositories.
111+
The tool analyzes <a href="https://github.com/KnowledgeCaptureAndDiscovery/somef">SoMEF</a> (Software Metadata Extraction Framework)
112+
output files to identify 29 different types of metadata quality issues across multiple programming languages. </p>
113+
<p><a href="https://github.com/SoftwareUnderstanding/RsMetaCheck">Link to the tool</a></p>
114+
</div>
115+
</div>
116+
117+
<div class="col-md-6 animate-box">
118+
<div class="user-frame" style="margin-bottom: 30px;">
119+
<h3>SoMEF</h3>
120+
<p>Command-line tool that uses machine learning and regular expressions to automatically extract extensive metadata from a project's
121+
documentation and configuration files. It scans files to identify technical details such as installation
122+
instructions, as well as metadata like citation preferences.
123+
It is designed to help build knowledge graphs of scientific software, making it easier to understand the
124+
requirements and functions of codebases.</p>
125+
<p><a href="https://github.com/KnowledgeCaptureAndDiscovery/somef">Link to the tool</a></p>
126+
</div>
127+
</div>
128+
129+
</div>
130+
</div>
131+
</div>
132+
<div class="row copyright">
133+
<div class="col-md-12 text-center">
134+
<p>
135+
<!--<small class="block">&copy; 2016 Free HTML5. All Rights Reserved.</small> -->
136+
<small class="block">This page was built on a free template designed by <a href="http://freehtml5.co/" target="_blank">FreeHTML5.co</a> (&copy; 2016 Free HTML5)</small>
137+
</p>
138+
</div>
139+
</div>
140+
141+
</div>
142+
</footer>
143+
</div>
144+
<footer id="site-footer">
145+
<div class="footer-container">
146+
<p class="oscars-logo">
147+
<a href="https://oscars-project.eu/">
148+
<img src="media/OSCARS-logo.png" alt="Funding Organization Logo" class="footer-logo">
149+
</a>
150+
</p>
151+
<p class="acknowledgment">
152+
The authors acknowledge the OSCARS project, which has received funding from the European Commission's Horizon Europe Research and Innovation programme under grant agreement No. 101129751
153+
</p>
154+
</div>
155+
</footer>
156+
157+
<div class="gototop js-top">
158+
<a href="#" class="js-gotop"><i class="icon-arrow-up22"></i></a>
159+
</div>
160+
161+
<!-- jQuery -->
162+
<script src="js/jquery.min.js"></script>
163+
<!-- jQuery Easing -->
164+
<script src="js/jquery.easing.1.3.js"></script>
165+
<!-- Bootstrap -->
166+
<script src="js/bootstrap.min.js"></script>
167+
<!-- Waypoints -->
168+
<script src="js/jquery.waypoints.min.js"></script>
169+
<!-- Flexslider -->
170+
<script src="js/jquery.flexslider-min.js"></script>
171+
<!-- Main -->
172+
<script src="js/main.js"></script>
173+
174+
</body>
175+
</html>

0 commit comments

Comments
 (0)