| 1 | Index: htdocs/css/code.css |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- htdocs/css/code.css (revision 804) |
|---|
| 4 | +++ htdocs/css/code.css (working copy) |
|---|
| 5 | @@ -180,3 +180,17 @@ |
|---|
| 6 | .yaml_keyword { color: #880088; } |
|---|
| 7 | .yaml_number { color: #880000; } |
|---|
| 8 | .yaml_reference { color: #008888; } |
|---|
| 9 | +.v_comment { color: gray; font-style: italic; } |
|---|
| 10 | +.v_commentline { color: red; font-style: italic; } |
|---|
| 11 | +.v_commentlinebang { color: red; font-style: italic; } |
|---|
| 12 | +.v_default { } |
|---|
| 13 | +.v_identifier { color: black; } |
|---|
| 14 | +.v_number { color: #009999; } |
|---|
| 15 | +.v_operator{color: black;} |
|---|
| 16 | +.v_preprocessor{color: #009999;} |
|---|
| 17 | +.v_string{color: olive;} |
|---|
| 18 | +.v_stringeol{color: olive;} |
|---|
| 19 | +.v_user{ color: blue; font-weight: bold; } |
|---|
| 20 | +.v_word { color: navy; font-weight: bold; } |
|---|
| 21 | +.v_word2 { color: green; font-weight: bold; } |
|---|
| 22 | +.v_word3{color: navy;font-weight: bold;} |
|---|
| 23 | Index: trac/mimeviewers/silvercity.py |
|---|
| 24 | =================================================================== |
|---|
| 25 | --- trac/mimeviewers/silvercity.py (revision 804) |
|---|
| 26 | +++ trac/mimeviewers/silvercity.py (working copy) |
|---|
| 27 | @@ -44,6 +44,7 @@ |
|---|
| 28 | (1, 'text/x-python'), |
|---|
| 29 | (1, 'text/x-ruby'), |
|---|
| 30 | (1, 'text/x-sql'), |
|---|
| 31 | + (1, 'text/x-verilog'), |
|---|
| 32 | (1, 'text/xml'), |
|---|
| 33 | (1, 'text/xslt'), |
|---|
| 34 | (1, 'application/x-test'), |
|---|
| 35 | @@ -66,6 +67,7 @@ |
|---|
| 36 | 'text/x-python':['Python'], |
|---|
| 37 | 'text/x-ruby':['Ruby'], |
|---|
| 38 | 'text/x-sql':['SQL'], |
|---|
| 39 | + 'text/x-verilog':['Verilog'], |
|---|
| 40 | 'text/xml':['XML'], |
|---|
| 41 | 'text/xslt':['XSLT'], |
|---|
| 42 | 'image/svg+xml':['XML'], |
|---|