Files
xrpl-dev-portal/tool/template-xrp-ledger-toml-checker.html
Rome Reginelli 97f8b45872 TOML checker: permit long TLDs
Longest [top-level domain in use today](https://data.iana.org/TLD/tlds-alpha-by-domain.txt) is 24 characters long (`XN--VERMGENSBERATUNG-PWB`) so I extended the TLD portion of the field validation to that length, with hyphens allowed in the middle but not the beginning or end of the TLD.
2019-07-15 15:20:58 -07:00

33 lines
1.4 KiB
HTML

{% extends "template-base.html" %}
{% block main %}
<section class="container-fluid p-3">
<h1>xrp-ledger.toml Checker</h1>
<p>If you run an XRP Ledger validator or use the XRP Ledger for your business, you can provide information about your usage of the XRP Ledger to the world in a machine-readable <a href="https://developers.ripple.com/xrp-ledger-toml.html"><code>xrp-ledger.toml</code> file</a>.</p>
<p>This tool allows you to verify that your <code>xrp-ledger.toml</code> file is syntactically
correct and deployed properly.</p><br/>
<form id="domain-entry">
<div class="input-group">
<input id="domain" type="text" class="form-control" required
placeholder="example.com (Domain name to check)"
pattern="^([a-zA-Z0-9]([a-zA-Z0-9\-]{0,61}[a-zA-Z0-9])?\.)+[a-zA-Z][a-zA-Z-]{0,22}[a-zA-Z]$"><br>
<button class="btn btn-primary form-control">Check toml file</button>
</div><!--/.input-group-->
</form>
<div id="result">
<h5 class='result-title'>Result</h5>
<ul id="log">
</ul>
</div>
</section>
{% endblock %}
{% block endbody %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.11/lodash.js"></script>
<script type="application/javascript" src="assets/js/ripple-lib-1.2.4-min.js"></script>
<script type='text/javascript' src='assets/vendor/iarna-toml-parse.js'></script>
<script type='text/javascript' src='assets/js/xrp-ledger-toml-checker.js'></script>
{% endblock %}