-
Notifications
You must be signed in to change notification settings - Fork 14
/
test-suite.xhtml
51 lines (43 loc) · 1.85 KB
/
test-suite.xhtml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
layout: verovio
title: Test suite
verovio: false
active: tools
tools-active: test-suite
---
<div class="row">
<div class="col-md-3 sidebar-offcanvas" id="sidebar" role="navigation">
<div class="panel panel-default">
{% include other-sidebar.html %}
</div>
<div class="panel panel-default">
<div class="list-group sublist-group">
{% assign categories = "" | split: ',' %}
{% for collection in site.collections %}
{% if collection.label == "tests" %}
{% for file in collection.files %}
{% assign path = file.path | split: '/' %}
{% assign categories = categories | push: path[1] %}
{% endfor %}
{% endif %}
{% endfor %}
{% assign categories = categories | uniq | sort %}
{% for category in categories %}
<a class="list-group-item" href="{{ site.baseurl }}/test-suite.xhtml?cat={{category}}">{{ category | capitalize }}</a>
{% endfor %}
</div>
</div>
</div>
<div class="col-md-9">
<div class="panel-body">
<h3>Feature test suite</h3>
<p>
This section provides a test suite for some of the features of Verovio. Select a category in the submenu on the left to see example files rendered with the latest develop version of the <a href="{{ site.baseurl }}/javascript.xhtml">JavaScript toolkit</a>.
</p>
<p>
It is also possible to compare these tests, or selected files, with previous versions in the <a href="{{ site.baseurl }}/comparison.xhtml">comparison page</a>.
</p>
</div>
{%include test-version.html %}
</div>
</div>