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
52
53
54
55
56
57
58
59
60
61
62
63
| /*
| Language: JBoss CLI
| Author: Raphaël Parrëe <rparree@edc4it.com>
| Description: language definition jboss cli
| Website: https://docs.jboss.org/author/display/WFLY/Command+Line+Interface
| Category: config
| */
|
| function jbossCli(hljs) {
| const PARAM = {
| begin: /[\w-]+ *=/,
| returnBegin: true,
| relevance: 0,
| contains: [
| {
| className: 'attr',
| begin: /[\w-]+/
| }
| ]
| };
| const PARAMSBLOCK = {
| className: 'params',
| begin: /\(/,
| end: /\)/,
| contains: [PARAM],
| relevance: 0
| };
| const OPERATION = {
| className: 'function',
| begin: /:[\w\-.]+/,
| relevance: 0
| };
| const PATH = {
| className: 'string',
| begin: /\B([\/.])[\w\-.\/=]+/
| };
| const COMMAND_PARAMS = {
| className: 'params',
| begin: /--[\w\-=\/]+/
| };
| return {
| name: 'JBoss CLI',
| aliases: ['wildfly-cli'],
| keywords: {
| $pattern: '[a-z\-]+',
| keyword: 'alias batch cd clear command connect connection-factory connection-info data-source deploy ' +
| 'deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls ' +
| 'patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias ' +
| 'undeploy unset version xa-data-source', // module
| literal: 'true false'
| },
| contains: [
| hljs.HASH_COMMENT_MODE,
| hljs.QUOTE_STRING_MODE,
| COMMAND_PARAMS,
| OPERATION,
| PATH,
| PARAMSBLOCK
| ]
| };
| }
|
| module.exports = jbossCli;
|
|