Browse Source

Delete chancolours and querycolours actions.

Not sure why they're still in two places...
pull/315/head
Chris Smith 9 years ago
parent
commit
f9b2ef0a28
30 changed files with 0 additions and 1020 deletions
  1. 0
    75
      res/com/dmdirc/actions/defaults/chancolours/action
  2. 0
    27
      res/com/dmdirc/actions/defaults/chancolours/highlight
  3. 0
    27
      res/com/dmdirc/actions/defaults/chancolours/highlightaction
  4. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/join
  5. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/kick
  6. 0
    38
      res/com/dmdirc/actions/defaults/chancolours/misccolour
  7. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/nick
  8. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/part
  9. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/quit
  10. 0
    24
      res/com/dmdirc/actions/defaults/chancolours/text
  11. 0
    31
      res/com/dmdirc/actions/defaults/chancolours/topic
  12. 0
    55
      res/com/dmdirc/actions/defaults/querycolours/action
  13. 0
    27
      res/com/dmdirc/actions/defaults/querycolours/highlight
  14. 0
    27
      res/com/dmdirc/actions/defaults/querycolours/highlightaction
  15. 0
    24
      res/com/dmdirc/actions/defaults/querycolours/text
  16. 0
    75
      src/com/dmdirc/actions/defaults/chancolours/action
  17. 0
    27
      src/com/dmdirc/actions/defaults/chancolours/highlight
  18. 0
    27
      src/com/dmdirc/actions/defaults/chancolours/highlightaction
  19. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/join
  20. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/kick
  21. 0
    38
      src/com/dmdirc/actions/defaults/chancolours/misccolour
  22. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/nick
  23. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/part
  24. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/quit
  25. 0
    24
      src/com/dmdirc/actions/defaults/chancolours/text
  26. 0
    31
      src/com/dmdirc/actions/defaults/chancolours/topic
  27. 0
    55
      src/com/dmdirc/actions/defaults/querycolours/action
  28. 0
    27
      src/com/dmdirc/actions/defaults/querycolours/highlight
  29. 0
    27
      src/com/dmdirc/actions/defaults/querycolours/highlightaction
  30. 0
    24
      src/com/dmdirc/actions/defaults/querycolours/text

+ 0
- 75
res/com/dmdirc/actions/defaults/chancolours/action View File

@@ -1,75 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-  metadata
11
-  setting 0
12
-  setting 1
13
-  setting 2
14
-  setting 3
15
-  setting 4
16
-
17
-triggers:
18
-  CHANNEL_ACTION
19
-
20
-response:
21
-  /notify $textcolour
22
-
23
-condition 0:
24
-  argument=0
25
-  component=CHANNEL_COLOUR
26
-  target=$highlightcolour
27
-  comparison=COLOUR_NEQUALS
28
-
29
-concurrency:
30
-  group=windowcolours
31
-
32
-metadata:
33
-  description=Changes the colour of channel window names in the treeview (or other frame manager) when events occur.
34
-  author=Chris <chris@dmdirc.com>
35
-  version=10
36
-  component=7
37
-
38
-setting 0:
39
-  type=COLOUR
40
-  setting=highlightcolour
41
-  title=Highlight colour
42
-  tooltip=Colour to use when you have been highlighted
43
-  default=4
44
-
45
-setting 1:
46
-  type=COLOUR
47
-  setting=textcolour
48
-  title=Text colour
49
-  tooltip=Colour to use when someone speaks or sends an action
50
-  default=12
51
-
52
-setting 2:
53
-  type=COLOUR
54
-  setting=eventcolour
55
-  title=Event colour
56
-  tooltip=Colour to use when someone joins, parts, quits, etc
57
-  default=3
58
-
59
-setting 3:
60
-  type=COLOUR
61
-  setting=misccolour
62
-  title=Misc. colour
63
-  tooltip=Colour to use for other miscellaneous lines
64
-  default=2
65
-
66
-setting 4:
67
-  type=TEXT
68
-  setting=highlightregex
69
-  title=Highlight regex
70
-  tooltip=Regular expression to use for matching highlights
71
-  default=(?i).*\\\\Q${SERVER_MYNICKNAME}\\\\E.*
72
-
73
-# Note: \Q..\E is the regex markup to quote the contents
74
-# The actions substitutor escapes with \, so we need \\Q..\\E
75
-# Config files also allow escapes with \, so we end up with \\\\Q..\\\\E

+ 0
- 27
res/com/dmdirc/actions/defaults/chancolours/highlight View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_MESSAGE
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  channelHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 27
res/com/dmdirc/actions/defaults/chancolours/highlightaction View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_ACTION
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  channelHighlightAction
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/join View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_JOIN
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/kick View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_KICK
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 38
res/com/dmdirc/actions/defaults/chancolours/misccolour View File

@@ -1,38 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  condition 2
11
-  concurrency
12
-
13
-triggers:
14
-  CLIENT_LINE_ADDED
15
-
16
-response:
17
-  /notify $misccolour
18
-
19
-concurrency:
20
-  group=windowcolours
21
-
22
-condition 0:
23
-  argument=0
24
-  component=WINDOW_COLOUR
25
-  target=$highlightcolour
26
-  comparison=COLOUR_NEQUALS
27
-
28
-condition 1:
29
-  argument=0
30
-  component=WINDOW_COLOUR
31
-  target=$textcolour
32
-  comparison=COLOUR_NEQUALS
33
-
34
-condition 2:
35
-  argument=0
36
-  component=WINDOW_COLOUR
37
-  target=$eventcolour
38
-  comparison=COLOUR_NEQUALS

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/nick View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_NICKCHANGE
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/part View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_PART
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/quit View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_QUIT
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 24
res/com/dmdirc/actions/defaults/chancolours/text View File

@@ -1,24 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_MESSAGE
13
-
14
-response:
15
-  /notify $textcolour
16
-
17
-concurrency:
18
-  group=windowcolours
19
-
20
-condition 0:
21
-  argument=0
22
-  component=CHANNEL_COLOUR
23
-  target=$highlightcolour
24
-  comparison=COLOUR_NEQUALS

+ 0
- 31
res/com/dmdirc/actions/defaults/chancolours/topic View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_TOPICCHANGE
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 55
res/com/dmdirc/actions/defaults/querycolours/action View File

@@ -1,55 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  metadata
10
-  setting 0
11
-  setting 1
12
-  setting 2
13
-  concurrency
14
-
15
-triggers:
16
-  QUERY_ACTION
17
-
18
-response:
19
-  /notify $textcolour
20
-
21
-concurrency:
22
-  group=windowcolours
23
-
24
-condition 0:
25
-  argument=0
26
-  component=QUERY_COLOUR
27
-  target=$highlightcolour
28
-  comparison=COLOUR_NEQUALS
29
-
30
-metadata:
31
-  description=Changes the colour of query window names in the treeview (or other frame manager) when events occur.
32
-  author=Shane <shane@dmdirc.com>
33
-  version=6
34
-  component=11
35
-
36
-setting 0:
37
-  type=COLOUR
38
-  setting=highlightcolour
39
-  title=Highlight colour
40
-  tooltip=Colour to use when you have been highlighted
41
-  default=4
42
-
43
-setting 1:
44
-  type=COLOUR
45
-  setting=textcolour
46
-  title=Text colour
47
-  tooltip=Colour to use when someone speaks or sends an action
48
-  default=12
49
-
50
-setting 2:
51
-  type=TEXT
52
-  setting=highlightregex
53
-  title=Highlight regex
54
-  tooltip=Regular expression to use for matching highlights
55
-  default=(?i).*\\\\Q${SERVER_MYNICKNAME}\\\\E.*

+ 0
- 27
res/com/dmdirc/actions/defaults/querycolours/highlight View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_MESSAGE
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  queryMessageHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 27
res/com/dmdirc/actions/defaults/querycolours/highlightaction View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_ACTION
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  queryActionHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 24
res/com/dmdirc/actions/defaults/querycolours/text View File

@@ -1,24 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_MESSAGE
13
-
14
-response:
15
-  /notify $textcolour
16
-
17
-concurrency:
18
-  group=windowcolours
19
-
20
-condition 0:
21
-  argument=0
22
-  component=QUERY_COLOUR
23
-  target=$highlightcolour
24
-  comparison=COLOUR_NEQUALS

+ 0
- 75
src/com/dmdirc/actions/defaults/chancolours/action View File

@@ -1,75 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-  metadata
11
-  setting 0
12
-  setting 1
13
-  setting 2
14
-  setting 3
15
-  setting 4
16
-
17
-triggers:
18
-  CHANNEL_ACTION
19
-
20
-response:
21
-  /notify $textcolour
22
-
23
-condition 0:
24
-  argument=0
25
-  component=CHANNEL_COLOUR
26
-  target=$highlightcolour
27
-  comparison=COLOUR_NEQUALS
28
-
29
-concurrency:
30
-  group=windowcolours
31
-
32
-metadata:
33
-  description=Changes the colour of channel window names in the treeview (or other frame manager) when events occur.
34
-  author=Chris <chris@dmdirc.com>
35
-  version=10
36
-  component=7
37
-
38
-setting 0:
39
-  type=COLOUR
40
-  setting=highlightcolour
41
-  title=Highlight colour
42
-  tooltip=Colour to use when you have been highlighted
43
-  default=4
44
-
45
-setting 1:
46
-  type=COLOUR
47
-  setting=textcolour
48
-  title=Text colour
49
-  tooltip=Colour to use when someone speaks or sends an action
50
-  default=12
51
-
52
-setting 2:
53
-  type=COLOUR
54
-  setting=eventcolour
55
-  title=Event colour
56
-  tooltip=Colour to use when someone joins, parts, quits, etc
57
-  default=3
58
-
59
-setting 3:
60
-  type=COLOUR
61
-  setting=misccolour
62
-  title=Misc. colour
63
-  tooltip=Colour to use for other miscellaneous lines
64
-  default=2
65
-
66
-setting 4:
67
-  type=TEXT
68
-  setting=highlightregex
69
-  title=Highlight regex
70
-  tooltip=Regular expression to use for matching highlights
71
-  default=(?i).*\\\\Q${SERVER_MYNICKNAME}\\\\E.*
72
-
73
-# Note: \Q..\E is the regex markup to quote the contents
74
-# The actions substitutor escapes with \, so we need \\Q..\\E
75
-# Config files also allow escapes with \, so we end up with \\\\Q..\\\\E

+ 0
- 27
src/com/dmdirc/actions/defaults/chancolours/highlight View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_MESSAGE
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  channelHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 27
src/com/dmdirc/actions/defaults/chancolours/highlightaction View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_ACTION
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  channelHighlightAction
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/join View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_JOIN
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/kick View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_KICK
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 38
src/com/dmdirc/actions/defaults/chancolours/misccolour View File

@@ -1,38 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  condition 2
11
-  concurrency
12
-
13
-triggers:
14
-  CLIENT_LINE_ADDED
15
-
16
-response:
17
-  /notify $misccolour
18
-
19
-concurrency:
20
-  group=windowcolours
21
-
22
-condition 0:
23
-  argument=0
24
-  component=WINDOW_COLOUR
25
-  target=$highlightcolour
26
-  comparison=COLOUR_NEQUALS
27
-
28
-condition 1:
29
-  argument=0
30
-  component=WINDOW_COLOUR
31
-  target=$textcolour
32
-  comparison=COLOUR_NEQUALS
33
-
34
-condition 2:
35
-  argument=0
36
-  component=WINDOW_COLOUR
37
-  target=$eventcolour
38
-  comparison=COLOUR_NEQUALS

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/nick View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_NICKCHANGE
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/part View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_PART
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/quit View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_QUIT
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 24
src/com/dmdirc/actions/defaults/chancolours/text View File

@@ -1,24 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  CHANNEL_MESSAGE
13
-
14
-response:
15
-  /notify $textcolour
16
-
17
-concurrency:
18
-  group=windowcolours
19
-
20
-condition 0:
21
-  argument=0
22
-  component=CHANNEL_COLOUR
23
-  target=$highlightcolour
24
-  comparison=COLOUR_NEQUALS

+ 0
- 31
src/com/dmdirc/actions/defaults/chancolours/topic View File

@@ -1,31 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  condition 1
10
-  concurrency
11
-
12
-triggers:
13
-  CHANNEL_TOPICCHANGE
14
-
15
-response:
16
-  /notify $eventcolour
17
-
18
-concurrency:
19
-  group=windowcolours
20
-
21
-condition 0:
22
-  argument=0
23
-  component=CHANNEL_COLOUR
24
-  target=$highlightcolour
25
-  comparison=COLOUR_NEQUALS
26
-
27
-condition 1:
28
-  argument=0
29
-  component=CHANNEL_COLOUR
30
-  target=$textcolour
31
-  comparison=COLOUR_NEQUALS

+ 0
- 55
src/com/dmdirc/actions/defaults/querycolours/action View File

@@ -1,55 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  metadata
10
-  setting 0
11
-  setting 1
12
-  setting 2
13
-  concurrency
14
-
15
-triggers:
16
-  QUERY_ACTION
17
-
18
-response:
19
-  /notify $textcolour
20
-
21
-concurrency:
22
-  group=windowcolours
23
-
24
-condition 0:
25
-  argument=0
26
-  component=QUERY_COLOUR
27
-  target=$highlightcolour
28
-  comparison=COLOUR_NEQUALS
29
-
30
-metadata:
31
-  description=Changes the colour of query window names in the treeview (or other frame manager) when events occur.
32
-  author=Shane <shane@dmdirc.com>
33
-  version=6
34
-  component=11
35
-
36
-setting 0:
37
-  type=COLOUR
38
-  setting=highlightcolour
39
-  title=Highlight colour
40
-  tooltip=Colour to use when you have been highlighted
41
-  default=4
42
-
43
-setting 1:
44
-  type=COLOUR
45
-  setting=textcolour
46
-  title=Text colour
47
-  tooltip=Colour to use when someone speaks or sends an action
48
-  default=12
49
-
50
-setting 2:
51
-  type=TEXT
52
-  setting=highlightregex
53
-  title=Highlight regex
54
-  tooltip=Regular expression to use for matching highlights
55
-  default=(?i).*\\\\Q${SERVER_MYNICKNAME}\\\\E.*

+ 0
- 27
src/com/dmdirc/actions/defaults/querycolours/highlight View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_MESSAGE
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  queryMessageHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 27
src/com/dmdirc/actions/defaults/querycolours/highlightaction View File

@@ -1,27 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_ACTION
13
-
14
-response:
15
-  /notify $highlightcolour
16
-
17
-format:
18
-  queryActionHighlight
19
-
20
-concurrency:
21
-  group=windowcolours
22
-
23
-condition 0:
24
-  argument=2
25
-  component=STRING_STRING
26
-  target=$highlightregex
27
-  comparison=STRING_REGEX

+ 0
- 24
src/com/dmdirc/actions/defaults/querycolours/text View File

@@ -1,24 +0,0 @@
1
-# This is a DMDirc configuration file.
2
-# Written on: Sun Nov 25 13:32:18 GMT 2007
3
-
4
-# This section indicates which sections below take key/value
5
-# pairs, rather than a simple list. It should be placed above
6
-# any sections that take key/values.
7
-keysections:
8
-  condition 0
9
-  concurrency
10
-
11
-triggers:
12
-  QUERY_MESSAGE
13
-
14
-response:
15
-  /notify $textcolour
16
-
17
-concurrency:
18
-  group=windowcolours
19
-
20
-condition 0:
21
-  argument=0
22
-  component=QUERY_COLOUR
23
-  target=$highlightcolour
24
-  comparison=COLOUR_NEQUALS

Loading…
Cancel
Save