Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
chore: Update tools information in about page (#172)
Browse files Browse the repository at this point in the history
* Add information about tex2svg
* Add information about utftex
* Update license link for idnits
  • Loading branch information
kesara committed Aug 15, 2023
1 parent cba008a commit edf5539
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 15 additions & 1 deletion www/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ <h1 class="text-center">About Author Tools</h1>
<a href="https://github.com/ietf-tools/idnits">idnits</a>
</th>
<td><span id="spanIdnits"></span></td>
<td><a href="https://github.com/ietf-tools/idnits/raw/main/copyright">GNU General Public License</a></td>
<td><a href="https://github.com/ietf-tools/idnits/raw/v2/copyright">GNU General Public License</a></td>
</tr>
<tr>
<th scope="row">
Expand Down Expand Up @@ -170,6 +170,20 @@ <h1 class="text-center">About Author Tools</h1>
<td><span id="spanRfcdiff"></span></td>
<td><a href="https://github.com/ietf-tools/rfcdiff/blob/main/rfcdiff#L64-L83">GNU General Public License</a></td>
</tr>
<tr>
<th scope="row">
<a href="https://github.com/mathjax/MathJax-demos-node">tex2svg</a>
</th>
<td><span id="spanTex2svg"></span></td>
<td><a href="https://github.com/mathjax/MathJax-demos-node/raw/master/LICENSE">Apache License</a></td>
</tr>
<tr>
<th scope="row">
<a href="https://github.com/bartp5/libtexprintf">utftex</a>
</th>
<td><span id="spanUtftex"></span></td>
<td><a href="https://github.com/bartp5/libtexprintf/raw/main/COPYING">GNU General Public License</a></td>
</tr>
</tbody>
</table>
</div>
Expand Down
2 changes: 2 additions & 0 deletions www/scripts/about.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ fetch(request)
document.getElementById('spanBap').innerHTML = json.versions.bap;
document.getElementById('spanSvgcheck').innerHTML = json.versions.svgcheck;
document.getElementById('spanRfcdiff').innerHTML = json.versions.rfcdiff;
document.getElementById('spanTex2svg').innerHTML = json.versions.tex2svg;
document.getElementById('spanUtftex').innerHTML = json.versions.utftex;
})
.catch(error => {
alertError.style.display = 'block';
Expand Down

0 comments on commit edf5539

Please sign in to comment.