blob: 4a85651250ca722b6b18aa004d937534bcbca632 (
plain)
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
|
<div class="modal-head">
<h2>{{t 'help'}}</h2>
</div>
<div class="modal-body modal-container">
<div class="shortcuts-section">
<a href="http://www.sonarqube.org" target="sonar">Community</a> -
<a href="http://www.sonarqube.org/documentation" target="sonar_doc">Documentation</a> -
<a href="http://www.sonarqube.org/support" target="support">Get Support</a> -
<a href="http://redirect.sonarsource.com/doc/plugin-library.html" target="plugins">Plugins</a> -
<a href="{{link '/api_documentation'}}">Web Service API</a>
</div>
<div class="shortcuts-section">
<h2>{{t 'shortcuts.modal_title'}}</h2>
<h3 class="shortcuts-section-title">{{t 'shortcuts.section.global'}}</h3>
<ul class="shortcuts-list">
<li><span class="shortcut-button">s</span> {{t 'shortcuts.section.global.search'}}</li>
<li><span class="shortcut-button">?</span> {{t 'shortcuts.section.global.shortcuts'}}</li>
</ul>
</div>
<div class="shortcuts-section">
<h3 class="shortcuts-section-title">{{t 'shortcuts.section.issues'}}</h3>
<ul class="shortcuts-list">
<li><span class="shortcut-button">↑</span> <span class="shortcut-button">↓</span> {{t 'shortcuts.section.issues.navigate_between_issues'}}</li>
<li><span class="shortcut-button">→</span> {{t 'shortcuts.section.issues.open_details'}}</li>
<li><span class="shortcut-button">←</span> {{t 'shortcuts.section.issues.return_to_list'}}</li>
<li><span class="shortcut-button">f</span> {{t 'shortcuts.section.issue.do_transition'}}</li>
<li><span class="shortcut-button">a</span> {{t 'shortcuts.section.issue.assign'}}</li>
<li><span class="shortcut-button">m</span> {{t 'shortcuts.section.issue.assign_to_me'}}</li>
<li><span class="shortcut-button">p</span> {{t 'shortcuts.section.issue.plan'}}</li>
<li><span class="shortcut-button">i</span> {{t 'shortcuts.section.issue.change_severity'}}</li>
<li><span class="shortcut-button">o</span> {{t 'shortcuts.section.issue.comment'}}</li>
<li><span class="shortcut-button">t</span> {{t 'shortcuts.section.issue.change_tags'}}</li>
</ul>
</div>
<div class="shortcuts-section">
<h3 class="shortcuts-section-title">{{t 'shortcuts.section.rules'}}</h3>
<ul class="shortcuts-list">
<li><span class="shortcut-button">↑</span> <span class="shortcut-button">↓</span> {{t 'shortcuts.section.rules.navigate_between_rules'}}</li>
<li><span class="shortcut-button">→</span> {{t 'shortcuts.section.rules.open_details'}}</li>
<li><span class="shortcut-button">←</span> {{t 'shortcuts.section.rules.return_to_list'}}</li>
</ul>
</div>
</div>
<div class="modal-foot">
<a class="js-modal-close" href="#">{{t 'close'}}</a>
</div>
|