annotate runtime/syntax/usserverlog.vim @ 5218:4ceacc1b0054 v7.4a.035

updated for version 7.4a.035 Problem: Fix in patch 7.4a.032 is not tested. Solution: Add test.
author Bram Moolenaar <bram@vim.org>
date Wed, 17 Jul 2013 22:35:39 +0200
parents ceb5f21cda79
children 42bf9264e64e
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4992
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
1 " Vim syntax file
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
2 " Language: Innovation Data Processing usserver.log file
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
3 " Maintainer: Rob Owens <rowens@fdrinnovation.com>
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
4 " Latest Revision: 2013-06-17
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
5
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
6 " Quit when a syntax file was already loaded
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
7 if exists("b:current_syntax")
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
8 finish
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
9 endif
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
10
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
11 " Date:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
12 syn match usserver_Date /\u\l\l \u\l\l\s\{1,2}\d\{1,2} \d\d:\d\d:\d\d \d\d\d\d/
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
13 " Msg Types:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
14 syn match usserver_MsgD /Msg #\(Agt\|PC\|Srv\)\d\{4,5}D/ nextgroup=usserver_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
15 syn match usserver_MsgE /Msg #\(Agt\|PC\|Srv\)\d\{4,5}E/ nextgroup=usserver_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
16 syn match usserver_MsgI /Msg #\(Agt\|PC\|Srv\)\d\{4,5}I/ nextgroup=usserver_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
17 syn match usserver_MsgW /Msg #\(Agt\|PC\|Srv\)\d\{4,5}W/ nextgroup=usserver_Process skipwhite
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
18 " Processes:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
19 syn region usserver_Process start="(" end=")" contained
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
20 " IP Address:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
21 syn match usserver_IPaddr /\( \|(\)\zs\d\{1,3}\.\d\{1,3}\.\d\{1,3}\.\d\{1,3}/
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
22 " Profile:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
23 syn region usserver_Profile start="Profile name \zs" end="\"\S\{1,8}\""
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
24 syn region usserver_Profile start=" Profile: \zs" end="\S\{1,8}"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
25 syn region usserver_Profile start=", profile: \zs" end="\S\{1,8}\ze,"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
26 syn region usserver_Profile start=" profile \zs" end="\S\{1,8}"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
27 syn region usserver_Profile start=" Profile: \zs" end="\ze, "
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
28 syn region usserver_Profile start="Backup Profile: \zs" end="\ze Version date"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
29 syn region usserver_Profile start="Full of \zs" end="\ze$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
30 syn region usserver_Profile start="Incr. of \zs" end="\ze$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
31 syn region usserver_Profile start="Profile=\zs" end="\S\{1,8}\ze,"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
32 " Target:
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
33 syn region usserver_Target start="Computer: \zs" end="\ze[\]\)]"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
34 syn region usserver_Target start="Computer name \zs" end="\ze,"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
35 syn region usserver_Target start="Registration add request successful \zs" end="$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
36 syn region usserver_Target start="request to registered name \zs" end=" "
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
37 syn region usserver_Target start=", sending to \zs" end="$"
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
38
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
39 hi def link usserver_Date Underlined
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
40 hi def link usserver_MsgD Type
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
41 hi def link usserver_MsgE Error
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
42 hi def link usserver_MsgW Constant
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
43 hi def link usserver_Process Statement
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
44 hi def link usserver_IPaddr Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
45 hi def link usserver_Profile Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
46 hi def link usserver_Target Identifier
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
47
ceb5f21cda79 Update runtime files.
Bram Moolenaar <bram@vim.org>
parents:
diff changeset
48 let b:current_syntax = "usserver"