diff options
author | erdgeist <> | 2003-05-19 13:39:28 +0000 |
---|---|---|
committer | erdgeist <> | 2003-05-19 13:39:28 +0000 |
commit | 8d0390cb331ad04c45554db83f02eda7c30424ee (patch) | |
tree | 2d9816535b5e8e6e70caeaa9ffb77ff42c2f15f2 /sample-devlog.fmt | |
parent | 219938e68ecbefec3d59deb6b85f9e17f6341b57 (diff) |
Devlogs Formats
Diffstat (limited to 'sample-devlog.fmt')
-rwxr-xr-x | sample-devlog.fmt | 89 |
1 files changed, 89 insertions, 0 deletions
diff --git a/sample-devlog.fmt b/sample-devlog.fmt new file mode 100755 index 0000000..56d67f7 --- /dev/null +++ b/sample-devlog.fmt | |||
@@ -0,0 +1,89 @@ | |||
1 | # !!! This file must be named ~/.vchat/formats in order to work !!! | ||
2 | |||
3 | # please be REALLY REALLY careful here | ||
4 | # the following lines will be used as | ||
5 | # format strings | ||
6 | |||
7 | # ^ introduces a style change: | ||
8 | # TODO: ^^ == '^' | ||
9 | |||
10 | # 0 - default colorpair for window | ||
11 | # 1 - colorpair 1 RED | ||
12 | # 2 - colorpair 2 GREEN | ||
13 | # 3 - colorpair 3 YELLOW | ||
14 | # 4 - colorpair 4 BLUE | ||
15 | # 5 - colorpair 5 MAGENTA | ||
16 | # 6 - colorpair 6 CYAN | ||
17 | # 7 - colorpair 7 WHITE | ||
18 | # 8 - colorpair 8 WHITE on RED | ||
19 | # 9 - colorpair 9 WHITE on BLUE | ||
20 | # aA - alternate charset on/off | ||
21 | # bB - bold on/off | ||
22 | # dD - dim on/off | ||
23 | # iI - invisible on/off | ||
24 | # lL - blink on/off | ||
25 | # nN - normal on/off | ||
26 | # pP - protected on/off | ||
27 | # rR - reverse on/off | ||
28 | # sS - standout on/off | ||
29 | # uU - underlined on/off | ||
30 | |||
31 | # devlogs colorset | ||
32 | |||
33 | |||
34 | # normal text - normal | ||
35 | FS_PLAIN = "%s" | ||
36 | FS_CHAN = "%s" | ||
37 | FS_PRIV = "%s" | ||
38 | |||
39 | #server and global info, errors - red. | ||
40 | FS_SERV = "^1%s" | ||
41 | FS_GLOB = "^1%s" | ||
42 | FS_ERR = "^1%s" | ||
43 | |||
44 | #Stuff | ||
45 | FS_DBG = "^3%s" | ||
46 | FS_IDLE = "^8%s" | ||
47 | FS_TIME = "^2[%H:%M]^0 " | ||
48 | FS_TOPICW = "[ Channel %d: %s" | ||
49 | FS_NOTOPICW = "[ Channel %d has no topic" | ||
50 | FS_CONSOLE = "[ %s@%s:%d, use .h to get help" | ||
51 | FS_CONNECTED = "^2# Connected to '^0%s^2', port ^0%d^2 ..." | ||
52 | FS_TOPIC = "^1# Channel ^6%d^2 topic is: '^0%s^2'" | ||
53 | FS_NOTOPIC = "^1# Channel ^6%d^2 has no topic" | ||
54 | FS_CHGTOPIC = "^1# ^4%s^1 changes topic to: '^0%s^1'" | ||
55 | FS_USONLINE = "^0# Currently verpeiling: %s users" | ||
56 | FS_USMATCH = "^0# Users matching \"%s\":%s" | ||
57 | FS_SIGNON = "^1# ^4%s^1 %s" | ||
58 | FS_SIGNOFF = "^1# ^4%s^1 %s" | ||
59 | FS_JOIN = "^1# ^4%s^1 %s ^0%d" | ||
60 | FS_LEAVE = "^1# ^4%s^1 %s ^0%d" | ||
61 | FS_NICKCHANGE = "^1# ^4%s^1 ^4%s^1 %s" | ||
62 | FS_UNKNOWNMSG = "?? unknown message: %s" | ||
63 | FS_BOGUSMSG = "?? bogus message: %s" | ||
64 | |||
65 | # .u-style public urls - | ||
66 | FS_RXPUBURL = "^0[^8%s^0] %s" | ||
67 | FS_MYPUBURL = "^0[^8^u%s^U^0] %s" | ||
68 | |||
69 | # public messages - nicks -> yellow & white | ||
70 | FS_RXPUBMSG = "^0<^3%s^0> %s" | ||
71 | FS_MYPUBMSG = "^0<^7%s^0> %s" | ||
72 | FS_TXPUBMSG = "^0<^3^b%s^B^0> %s" | ||
73 | |||
74 | # private msgs - enclosed in ** or (), nick is white | ||
75 | FS_RXPRIVMSG = "^7(%s^7)^3 %s" | ||
76 | FS_TXPRIVMSG = "^1*^7%s^1*^0 %s" | ||
77 | FS_BGPRIVMSG = "^1! Bogus message, not sent." | ||
78 | |||
79 | # public actions - yellow & blue | ||
80 | FS_PUBACTION = "^1*^0 ^3%s^0 %s" | ||
81 | FS_TXPUBACTION = "^1*^0 ^4^b%s^B^0 %s" | ||
82 | FS_BGTXPUBACTION = "^1! No action taken." | ||
83 | |||
84 | FS_COMMAND = "^2## command: %s" | ||
85 | FS_LOCALCOMMAND = "^2## local command (not executed yet): %s" | ||
86 | FS_BOGUSCOMMAND = "^2## bogus command (not executed or sent): %s" | ||
87 | FS_SBINF = " [%d/%d] " | ||
88 | FS_SBINF_SCROLL = " ^8[%d/%d]^0 " | ||
89 | |||