Skip to content

Commit 7696ce6

Browse files
committed
Update docs
1 parent 312b482 commit 7696ce6

File tree

7 files changed

+46
-9
lines changed

7 files changed

+46
-9
lines changed

doc/web-api/cron-trigger.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The CronTrigger endpoint allows for an integration job to be scheduled by creati
1010

1111
### Parameters
1212

13+
<div class="table-responsive">
1314
<table class="table table-bordered">
1415
<thead><tr><th>Param</th><th>Type</th><th>Details</th></tr></thead>
1516
<tbody>
@@ -35,6 +36,7 @@ The CronTrigger endpoint allows for an integration job to be scheduled by creati
3536
</tr>
3637
</tbody>
3738
</table>
39+
</div>
3840

3941
### Get a List of CronTriggers
4042
GET api/CronTrigger

doc/web-api/job-type.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,26 @@ currentSubMenu: job-type
88

99
A list of registered Job types.
1010

11+
### Parameters
12+
13+
<div class="table-responsive">
14+
<table class="table table-bordered">
15+
<thead><tr><th>Param</th><th>Type</th><th>Details</th></tr></thead>
16+
<tbody>
17+
<tr>
18+
<td>Name</td>
19+
<td><span class="label label-info">string</span></td></td>
20+
<td>The name of the integration job class.</td>
21+
</tr>
22+
<tr>
23+
<td>FullName</td>
24+
<td><span class="label label-info">string</span></td></td>
25+
<td>The fully qualified name (namespace + class) of the integration job class.</td>
26+
</tr>
27+
</tbody>
28+
</table>
29+
</div>
30+
1131
### Get a List of JobTypes
1232
GET api/JobType
1333
```sh

doc/web-api/simple-trigger.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The SimpleTrigger endpoint allows for an integration job to be scheduled by crea
1010

1111
### Parameters
1212

13+
<div class="table-responsive">
1314
<table class="table table-bordered">
1415
<thead><tr><th>Param</th><th>Type</th><th>Details</th></tr></thead>
1516
<tbody>
@@ -39,6 +40,7 @@ The SimpleTrigger endpoint allows for an integration job to be scheduled by crea
3940
</tr>
4041
</tbody>
4142
</table>
43+
</div>
4244

4345
### Get a List of SimpleTriggers
4446
GET api/SimpleTrigger

doc/web-api/time-zone.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ The TimeZone endpoint allows for the retrieval of a system's TimeZone list, prov
1010

1111
### Parameters
1212

13+
<div class="table-responsive">
1314
<table class="table table-bordered">
1415
<thead><tr><th>Param</th><th>Type</th><th>Details</th></tr></thead>
1516
<tbody>
@@ -21,6 +22,7 @@ The TimeZone endpoint allows for the retrieval of a system's TimeZone list, prov
2122
</tr>
2223
</tbody>
2324
</table>
25+
</div>
2426

2527
### Get a List of TimeZones
2628
GET api/TimeZone

doc/website/default.twig

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
{% if menu is defined %}
3030
<div id="menu-navbar" class="collapse navbar-collapse">
3131
<ul class="nav navbar-nav">
32-
{{ include('menu-items.twig') }}
32+
{% include 'menu-items.twig' with { 'nestSubItems': 'false' } %}
3333
</ul>
3434
</div>
3535
{% endif %}
@@ -41,7 +41,7 @@
4141
{% if menu is defined %}
4242
<nav id="sidebar" class="col-sm-3 col-lg-2" role="navigation">
4343
<ul class="nav nav-pills nav-stacked">
44-
{{ include('menu-items.twig') }}
44+
{% include 'menu-items.twig' with { 'nestSubItems': 'true' } %}
4545
</ul>
4646
</nav>
4747
{% endif %}
@@ -63,10 +63,9 @@
6363
</div>
6464
</footer>
6565

66-
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
67-
<script src="bower_components/jquery/dist/jquery.min.js"></script>
68-
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
69-
<script src="bower_components/highlightjs/highlight.pack.js"></script>
66+
<script src="{{ baseUrl }}/bower_components/jquery/dist/jquery.min.js"></script>
67+
<script src="{{ baseUrl }}/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
68+
<script src="{{ baseUrl }}/bower_components/highlightjs/highlight.pack.js"></script>
7069

7170
<script>
7271
$(function() {

doc/website/home.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
{% if menu is defined %}
3131
<div id="menu-navbar" class="collapse navbar-collapse">
3232
<ul class="nav navbar-nav">
33-
{{ include('menu-items.twig') }}
33+
{% include 'menu-items.twig' with { 'nestSubItems': 'false' } %}
3434
</ul>
3535
</div>
3636
{% endif %}
@@ -47,7 +47,7 @@
4747
<section id="content">
4848
<div class="row text-center jumbo-nav-icons">
4949
{% for itemId, item in menu.items if itemId != 'home' %}
50-
<div class="col-md-4">
50+
<div class="col-sm-4">
5151
<a href="{{ item.absoluteUrl|default(baseUrl ~ '/' ~ item.relativeUrl) }}">
5252
<span class="{{ item.iconClass }} fa-5x"></span>
5353
<br>

doc/website/menu-items.twig

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,19 @@
55
<span>{{ item.text|raw }}</span>
66
</a>
77
</li>
8-
{% if item.items is defined %}
8+
9+
{% if item.items is defined and nestSubItems == 'false' %}
10+
{% for subItemId, subItem in item.items %}
11+
<li class="{{ subItemId == currentMenu ? 'active' }}">
12+
<a href="{{ subItem.absoluteUrl|default(baseUrl ~ '/' ~ subItem.relativeUrl) }}">
13+
<span class="{{ subItem.iconClass }}"></span>
14+
<span>{{ subItem.text|raw }}</span>
15+
</a>
16+
</li>
17+
{% endfor %}
18+
{% endif %}
19+
20+
{% if item.items is defined and nestSubItems == 'true' %}
921
{% for subItemId, subItem in item.items %}
1022
<li>
1123
<ul class="nav nav-pills nav-stacked nav-sub-items">

0 commit comments

Comments
 (0)