blob: 9dfed26e7bd86b30c3373cd3973f6181ac062352 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim syntax support file
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02002" Maintainer: Ben Fritz <fritzophrenic@gmail.com>
Bram Moolenaar251e1912011-06-19 05:09:16 +02003" Last Change: 2011 May 27
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02004"
5" Additional contributors:
6"
Bram Moolenaar7510fe72010-07-25 12:46:44 +02007" Original by Bram Moolenaar <Bram@vim.org>
8" Modified by David Ne\v{c}as (Yeti) <yeti@physics.muni.cz>
9" XHTML support by Panagiotis Issaris <takis@lumumba.luc.ac.be>
10" Made w3 compliant by Edd Barrett <vext01@gmail.com>
11" Added html_font. Edd Barrett <vext01@gmail.com>
12" Progress bar based off code from "progressbar widget" plugin by
13" Andreas Politz, heavily modified:
14" http://www.vim.org/scripts/script.php?script_id=2006
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020015"
Bram Moolenaar7510fe72010-07-25 12:46:44 +020016" See Mercurial change logs for more!
Bram Moolenaar071d4272004-06-13 20:20:40 +000017
18" Transform a file into HTML, using the current syntax highlighting.
19
Bram Moolenaar5c736222010-01-06 20:54:52 +010020" this file uses line continuations
21let s:cpo_sav = &cpo
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020022let s:ls = &ls
Bram Moolenaar5c736222010-01-06 20:54:52 +010023set cpo-=C
24
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020025let s:end=line('$')
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020026
Bram Moolenaar313b7232007-05-05 17:56:55 +000027" Font
Bram Moolenaarb02cbe32010-07-11 22:38:52 +020028if exists("g:html_font")
Bram Moolenaar076e8b22010-08-05 21:54:00 +020029 let s:htmlfont = "'". g:html_font . "', monospace"
Bram Moolenaar313b7232007-05-05 17:56:55 +000030else
31 let s:htmlfont = "monospace"
32endif
33
Bram Moolenaar076e8b22010-08-05 21:54:00 +020034let s:settings = tohtml#GetUserSettings()
Bram Moolenaar5c736222010-01-06 20:54:52 +010035
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +020036" Whitespace
37if s:settings.pre_wrap
38 let s:whitespace = "white-space: pre-wrap; "
39else
40 let s:whitespace = ""
41endif
42
Bram Moolenaar071d4272004-06-13 20:20:40 +000043" When not in gui we can only guess the colors.
44if has("gui_running")
45 let s:whatterm = "gui"
46else
47 let s:whatterm = "cterm"
48 if &t_Co == 8
Bram Moolenaar313b7232007-05-05 17:56:55 +000049 let s:cterm_color = {0: "#808080", 1: "#ff6060", 2: "#00ff00", 3: "#ffff00", 4: "#8080ff", 5: "#ff40ff", 6: "#00ffff", 7: "#ffffff"}
Bram Moolenaar071d4272004-06-13 20:20:40 +000050 else
Bram Moolenaar313b7232007-05-05 17:56:55 +000051 let s:cterm_color = {0: "#000000", 1: "#c00000", 2: "#008000", 3: "#804000", 4: "#0000c0", 5: "#c000c0", 6: "#008080", 7: "#c0c0c0", 8: "#808080", 9: "#ff6060", 10: "#00ff00", 11: "#ffff00", 12: "#8080ff", 13: "#ff40ff", 14: "#00ffff", 15: "#ffffff"}
52
53 " Colors for 88 and 256 come from xterm.
54 if &t_Co == 88
55 call extend(s:cterm_color, {16: "#000000", 17: "#00008b", 18: "#0000cd", 19: "#0000ff", 20: "#008b00", 21: "#008b8b", 22: "#008bcd", 23: "#008bff", 24: "#00cd00", 25: "#00cd8b", 26: "#00cdcd", 27: "#00cdff", 28: "#00ff00", 29: "#00ff8b", 30: "#00ffcd", 31: "#00ffff", 32: "#8b0000", 33: "#8b008b", 34: "#8b00cd", 35: "#8b00ff", 36: "#8b8b00", 37: "#8b8b8b", 38: "#8b8bcd", 39: "#8b8bff", 40: "#8bcd00", 41: "#8bcd8b", 42: "#8bcdcd", 43: "#8bcdff", 44: "#8bff00", 45: "#8bff8b", 46: "#8bffcd", 47: "#8bffff", 48: "#cd0000", 49: "#cd008b", 50: "#cd00cd", 51: "#cd00ff", 52: "#cd8b00", 53: "#cd8b8b", 54: "#cd8bcd", 55: "#cd8bff", 56: "#cdcd00", 57: "#cdcd8b", 58: "#cdcdcd", 59: "#cdcdff", 60: "#cdff00", 61: "#cdff8b", 62: "#cdffcd", 63: "#cdffff", 64: "#ff0000"})
56 call extend(s:cterm_color, {65: "#ff008b", 66: "#ff00cd", 67: "#ff00ff", 68: "#ff8b00", 69: "#ff8b8b", 70: "#ff8bcd", 71: "#ff8bff", 72: "#ffcd00", 73: "#ffcd8b", 74: "#ffcdcd", 75: "#ffcdff", 76: "#ffff00", 77: "#ffff8b", 78: "#ffffcd", 79: "#ffffff", 80: "#2e2e2e", 81: "#5c5c5c", 82: "#737373", 83: "#8b8b8b", 84: "#a2a2a2", 85: "#b9b9b9", 86: "#d0d0d0", 87: "#e7e7e7"})
57 elseif &t_Co == 256
58 call extend(s:cterm_color, {16: "#000000", 17: "#00005f", 18: "#000087", 19: "#0000af", 20: "#0000d7", 21: "#0000ff", 22: "#005f00", 23: "#005f5f", 24: "#005f87", 25: "#005faf", 26: "#005fd7", 27: "#005fff", 28: "#008700", 29: "#00875f", 30: "#008787", 31: "#0087af", 32: "#0087d7", 33: "#0087ff", 34: "#00af00", 35: "#00af5f", 36: "#00af87", 37: "#00afaf", 38: "#00afd7", 39: "#00afff", 40: "#00d700", 41: "#00d75f", 42: "#00d787", 43: "#00d7af", 44: "#00d7d7", 45: "#00d7ff", 46: "#00ff00", 47: "#00ff5f", 48: "#00ff87", 49: "#00ffaf", 50: "#00ffd7", 51: "#00ffff", 52: "#5f0000", 53: "#5f005f", 54: "#5f0087", 55: "#5f00af", 56: "#5f00d7", 57: "#5f00ff", 58: "#5f5f00", 59: "#5f5f5f", 60: "#5f5f87", 61: "#5f5faf", 62: "#5f5fd7", 63: "#5f5fff", 64: "#5f8700"})
59 call extend(s:cterm_color, {65: "#5f875f", 66: "#5f8787", 67: "#5f87af", 68: "#5f87d7", 69: "#5f87ff", 70: "#5faf00", 71: "#5faf5f", 72: "#5faf87", 73: "#5fafaf", 74: "#5fafd7", 75: "#5fafff", 76: "#5fd700", 77: "#5fd75f", 78: "#5fd787", 79: "#5fd7af", 80: "#5fd7d7", 81: "#5fd7ff", 82: "#5fff00", 83: "#5fff5f", 84: "#5fff87", 85: "#5fffaf", 86: "#5fffd7", 87: "#5fffff", 88: "#870000", 89: "#87005f", 90: "#870087", 91: "#8700af", 92: "#8700d7", 93: "#8700ff", 94: "#875f00", 95: "#875f5f", 96: "#875f87", 97: "#875faf", 98: "#875fd7", 99: "#875fff", 100: "#878700", 101: "#87875f", 102: "#878787", 103: "#8787af", 104: "#8787d7", 105: "#8787ff", 106: "#87af00", 107: "#87af5f", 108: "#87af87", 109: "#87afaf", 110: "#87afd7", 111: "#87afff", 112: "#87d700"})
60 call extend(s:cterm_color, {113: "#87d75f", 114: "#87d787", 115: "#87d7af", 116: "#87d7d7", 117: "#87d7ff", 118: "#87ff00", 119: "#87ff5f", 120: "#87ff87", 121: "#87ffaf", 122: "#87ffd7", 123: "#87ffff", 124: "#af0000", 125: "#af005f", 126: "#af0087", 127: "#af00af", 128: "#af00d7", 129: "#af00ff", 130: "#af5f00", 131: "#af5f5f", 132: "#af5f87", 133: "#af5faf", 134: "#af5fd7", 135: "#af5fff", 136: "#af8700", 137: "#af875f", 138: "#af8787", 139: "#af87af", 140: "#af87d7", 141: "#af87ff", 142: "#afaf00", 143: "#afaf5f", 144: "#afaf87", 145: "#afafaf", 146: "#afafd7", 147: "#afafff", 148: "#afd700", 149: "#afd75f", 150: "#afd787", 151: "#afd7af", 152: "#afd7d7", 153: "#afd7ff", 154: "#afff00", 155: "#afff5f", 156: "#afff87", 157: "#afffaf", 158: "#afffd7"})
61 call extend(s:cterm_color, {159: "#afffff", 160: "#d70000", 161: "#d7005f", 162: "#d70087", 163: "#d700af", 164: "#d700d7", 165: "#d700ff", 166: "#d75f00", 167: "#d75f5f", 168: "#d75f87", 169: "#d75faf", 170: "#d75fd7", 171: "#d75fff", 172: "#d78700", 173: "#d7875f", 174: "#d78787", 175: "#d787af", 176: "#d787d7", 177: "#d787ff", 178: "#d7af00", 179: "#d7af5f", 180: "#d7af87", 181: "#d7afaf", 182: "#d7afd7", 183: "#d7afff", 184: "#d7d700", 185: "#d7d75f", 186: "#d7d787", 187: "#d7d7af", 188: "#d7d7d7", 189: "#d7d7ff", 190: "#d7ff00", 191: "#d7ff5f", 192: "#d7ff87", 193: "#d7ffaf", 194: "#d7ffd7", 195: "#d7ffff", 196: "#ff0000", 197: "#ff005f", 198: "#ff0087", 199: "#ff00af", 200: "#ff00d7", 201: "#ff00ff", 202: "#ff5f00", 203: "#ff5f5f", 204: "#ff5f87"})
62 call extend(s:cterm_color, {205: "#ff5faf", 206: "#ff5fd7", 207: "#ff5fff", 208: "#ff8700", 209: "#ff875f", 210: "#ff8787", 211: "#ff87af", 212: "#ff87d7", 213: "#ff87ff", 214: "#ffaf00", 215: "#ffaf5f", 216: "#ffaf87", 217: "#ffafaf", 218: "#ffafd7", 219: "#ffafff", 220: "#ffd700", 221: "#ffd75f", 222: "#ffd787", 223: "#ffd7af", 224: "#ffd7d7", 225: "#ffd7ff", 226: "#ffff00", 227: "#ffff5f", 228: "#ffff87", 229: "#ffffaf", 230: "#ffffd7", 231: "#ffffff", 232: "#080808", 233: "#121212", 234: "#1c1c1c", 235: "#262626", 236: "#303030", 237: "#3a3a3a", 238: "#444444", 239: "#4e4e4e", 240: "#585858", 241: "#626262", 242: "#6c6c6c", 243: "#767676", 244: "#808080", 245: "#8a8a8a", 246: "#949494", 247: "#9e9e9e", 248: "#a8a8a8", 249: "#b2b2b2", 250: "#bcbcbc", 251: "#c6c6c6", 252: "#d0d0d0", 253: "#dadada", 254: "#e4e4e4", 255: "#eeeeee"})
63 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000064 endif
65endif
66
67" Return good color specification: in GUI no transformation is done, in
Bram Moolenaar313b7232007-05-05 17:56:55 +000068" terminal return RGB values of known colors and empty string for unknown
Bram Moolenaar071d4272004-06-13 20:20:40 +000069if s:whatterm == "gui"
70 function! s:HtmlColor(color)
71 return a:color
72 endfun
73else
74 function! s:HtmlColor(color)
Bram Moolenaar313b7232007-05-05 17:56:55 +000075 if has_key(s:cterm_color, a:color)
76 return s:cterm_color[a:color]
Bram Moolenaar071d4272004-06-13 20:20:40 +000077 else
78 return ""
79 endif
80 endfun
81endif
82
Bram Moolenaarbebca9d2010-08-07 15:47:30 +020083if !s:settings.use_css
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 " Return opening HTML tag for given highlight id
85 function! s:HtmlOpening(id)
86 let a = ""
87 if synIDattr(a:id, "inverse")
88 " For inverse, we always must set both colors (and exchange them)
89 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
90 let a = a . '<span style="background-color: ' . ( x != "" ? x : s:fgc ) . '">'
91 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
92 let a = a . '<font color="' . ( x != "" ? x : s:bgc ) . '">'
93 else
94 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
95 if x != "" | let a = a . '<span style="background-color: ' . x . '">' | endif
96 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
97 if x != "" | let a = a . '<font color="' . x . '">' | endif
98 endif
99 if synIDattr(a:id, "bold") | let a = a . "<b>" | endif
100 if synIDattr(a:id, "italic") | let a = a . "<i>" | endif
101 if synIDattr(a:id, "underline") | let a = a . "<u>" | endif
102 return a
103 endfun
104
105 " Return closing HTML tag for given highlight id
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200106 function! s:HtmlClosing(id)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000107 let a = ""
108 if synIDattr(a:id, "underline") | let a = a . "</u>" | endif
109 if synIDattr(a:id, "italic") | let a = a . "</i>" | endif
110 if synIDattr(a:id, "bold") | let a = a . "</b>" | endif
111 if synIDattr(a:id, "inverse")
112 let a = a . '</font></span>'
113 else
114 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
115 if x != "" | let a = a . '</font>' | endif
116 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
117 if x != "" | let a = a . '</span>' | endif
118 endif
119 return a
120 endfun
121endif
122
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000123" Return HTML valid characters enclosed in a span of class style_name with
124" unprintable characters expanded and double spaces replaced as necessary.
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200125function! s:HtmlFormat(text, style_name, diff_style_name)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000126 " Replace unprintable characters
127 let formatted = strtrans(a:text)
128
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200129 " separate the two classes by a space to apply them both if there is a diff
130 " style name
131 let l:style_name = a:style_name . (a:diff_style_name == '' ? '' : ' ') . a:diff_style_name
132
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000133 " Replace the reserved html characters
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100134 let formatted = substitute(formatted, '&', '\&amp;', 'g')
135 let formatted = substitute(formatted, '<', '\&lt;', 'g')
136 let formatted = substitute(formatted, '>', '\&gt;', 'g')
137 let formatted = substitute(formatted, '"', '\&quot;', 'g')
138 " TODO: Use &apos; for "'"?
139
140 " Replace a "form feed" character with HTML to do a page break
141 let formatted = substitute(formatted, "\x0c", '<hr class="PAGE-BREAK">', 'g')
142
143 " Mangle modelines so Vim doesn't try to use HTML text as a modeline if
144 " editing this file in the future
145 let formatted = substitute(formatted, '\v(\s+%(vim?|ex)):', '\1\&#0058;', 'g')
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000146
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200147 " Replace double spaces, leading spaces, and trailing spaces if needed
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000148 if ' ' != s:HtmlSpace
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000149 let formatted = substitute(formatted, ' ', s:HtmlSpace . s:HtmlSpace, 'g')
Bram Moolenaar8424a622006-04-19 21:23:36 +0000150 let formatted = substitute(formatted, '^ ', s:HtmlSpace, 'g')
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200151 let formatted = substitute(formatted, ' \+$', s:HtmlSpace, 'g')
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000152 endif
153
154 " Enclose in a span of class style_name
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200155 let formatted = '<span class="' . l:style_name . '">' . formatted . '</span>'
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000156
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200157 " Add the class to class list if it's not there yet.
158 " Add normal groups to the beginning so diff groups can override them.
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000159 let s:id = hlID(a:style_name)
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200160 if index(s:idlist, s:id ) == -1
161 if a:style_name =~ 'Diff\%(Add\|Change\|Delete\|Text\)'
162 call add(s:idlist, s:id)
163 else
164 call insert(s:idlist, s:id)
165 endif
166 endif
167
168 " Add the diff highlight class to class list if used and it's not there yet.
169 " Add diff groups to the end so they override the other highlighting.
170 if a:diff_style_name != ""
171 let s:diff_id = hlID(a:diff_style_name)
172 if index(s:idlist, s:diff_id) == -1
173 call add(s:idlist, s:diff_id)
174 endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000175 endif
176
177 return formatted
178endfun
179
Bram Moolenaar071d4272004-06-13 20:20:40 +0000180" Return CSS style describing given highlight id (can be empty)
181function! s:CSS1(id)
182 let a = ""
183 if synIDattr(a:id, "inverse")
184 " For inverse, we always must set both colors (and exchange them)
185 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
186 let a = a . "color: " . ( x != "" ? x : s:bgc ) . "; "
187 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
188 let a = a . "background-color: " . ( x != "" ? x : s:fgc ) . "; "
189 else
190 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
191 if x != "" | let a = a . "color: " . x . "; " | endif
192 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
193 if x != "" | let a = a . "background-color: " . x . "; " | endif
194 endif
195 if synIDattr(a:id, "bold") | let a = a . "font-weight: bold; " | endif
196 if synIDattr(a:id, "italic") | let a = a . "font-style: italic; " | endif
197 if synIDattr(a:id, "underline") | let a = a . "text-decoration: underline; " | endif
198 return a
199endfun
200
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200201if s:settings.dynamic_folds
Bram Moolenaar5c736222010-01-06 20:54:52 +0100202 " compares two folds as stored in our list of folds
203 " A fold is "less" than another if it starts at an earlier line number,
204 " or ends at a later line number, ties broken by fold level
205 function! s:FoldCompare(f1, f2)
206 if a:f1.firstline != a:f2.firstline
207 " put it before if it starts earlier
208 return a:f1.firstline - a:f2.firstline
209 elseif a:f1.lastline != a:f2.lastline
210 " put it before if it ends later
211 return a:f2.lastline - a:f1.lastline
212 else
213 " if folds begin and end on the same lines, put lowest fold level first
214 return a:f1.level - a:f2.level
215 endif
216 endfunction
217
218endif
219
Bram Moolenaar071d4272004-06-13 20:20:40 +0000220
221" Set some options to make it work faster.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000222" Don't report changes for :substitute, there will be many of them.
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200223" Don't change other windows; turn off scroll bind temporarily
Bram Moolenaar071d4272004-06-13 20:20:40 +0000224let s:old_title = &title
225let s:old_icon = &icon
226let s:old_et = &l:et
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200227let s:old_bind = &l:scrollbind
Bram Moolenaar071d4272004-06-13 20:20:40 +0000228let s:old_report = &report
229let s:old_search = @/
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200230let s:old_more = &more
Bram Moolenaar071d4272004-06-13 20:20:40 +0000231set notitle noicon
232setlocal et
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200233set nomore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000234set report=1000000
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200235setlocal noscrollbind
Bram Moolenaar071d4272004-06-13 20:20:40 +0000236
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200237if exists(':ownsyntax') && exists('w:current_syntax')
238 let s:current_syntax = w:current_syntax
239elseif exists('b:current_syntax')
240 let s:current_syntax = b:current_syntax
241else
242 let s:current_syntax = 'none'
243endif
244
245if s:current_syntax == ''
246 let s:current_syntax = 'none'
247endif
248
Bram Moolenaar071d4272004-06-13 20:20:40 +0000249" Split window to create a buffer with the HTML file.
250let s:orgbufnr = winbufnr(0)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200251let s:origwin_stl = &l:stl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000252if expand("%") == ""
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200253 exec 'new Untitled.'.(s:settings.use_xhtml ? 'x' : '').'html'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254else
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200255 exec 'new %.'.(s:settings.use_xhtml ? 'x' : '').'html'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000256endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200257
258" Resize the new window to very small in order to make it draw faster
259let s:old_winheight = winheight(0)
260let s:old_winfixheight = &l:winfixheight
261if s:old_winheight > 2
262 resize 1 " leave enough room to view one line at a time
263 norm! G
264 norm! zt
265endif
266setlocal winfixheight
267
268let s:newwin_stl = &l:stl
269
270" on the new window, set the least time-consuming fold method
271let s:old_fdm = &foldmethod
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200272let s:old_fen = &foldenable
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200273setlocal foldmethod=manual
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200274setlocal nofoldenable
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200275
Bram Moolenaar071d4272004-06-13 20:20:40 +0000276let s:newwin = winnr()
277let s:orgwin = bufwinnr(s:orgbufnr)
278
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200279setlocal modifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000280%d
281let s:old_paste = &paste
282set paste
283let s:old_magic = &magic
284set magic
285
Bram Moolenaar166af9b2010-11-16 20:34:40 +0100286" set the fileencoding to match the charset we'll be using
287let &l:fileencoding=s:settings.vim_encoding
288
289" According to http://www.w3.org/TR/html4/charset.html#doc-char-set, the byte
290" order mark is highly recommend on the web when using multibyte encodings. But,
291" it is not a good idea to include it on UTF-8 files. Otherwise, let Vim
292" determine when it is actually inserted.
293if s:settings.vim_encoding == 'utf-8'
294 setlocal nobomb
295else
296 setlocal bomb
297endif
298
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200299let s:lines = []
300
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200301if s:settings.use_xhtml
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200302 if s:settings.encoding != ""
303 call add(s:lines, "<?xml version=\"1.0\" encoding=\"" . s:settings.encoding . "\"?>")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000304 else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200305 call add(s:lines, "<?xml version=\"1.0\"?>")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000306 endif
Bram Moolenaar313b7232007-05-05 17:56:55 +0000307 let s:tag_close = ' />'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000308else
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000309 let s:tag_close = '>'
310endif
311
312let s:HtmlSpace = ' '
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000313let s:LeadingSpace = ' '
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000314let s:HtmlEndline = ''
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200315if s:settings.no_pre
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000316 let s:HtmlEndline = '<br' . s:tag_close
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000317 let s:LeadingSpace = '&nbsp;'
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000318 let s:HtmlSpace = '\' . s:LeadingSpace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319endif
320
321" HTML header, with the title and generator ;-). Left free space for the CSS,
322" to be filled at the end.
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200323call extend(s:lines, [
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200324 \ "<html>",
325 \ "<head>"])
326" include encoding as close to the top as possible, but only if not already
327" contained in XML information (to avoid haggling over content type)
328if s:settings.encoding != "" && !s:settings.use_xhtml
329 call add(s:lines, "<meta http-equiv=\"content-type\" content=\"text/html; charset=" . s:settings.encoding . '"' . s:tag_close)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000330endif
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200331call extend(s:lines, [
332 \ ("<title>".expand("%:p:~")."</title>"),
333 \ ("<meta name=\"Generator\" content=\"Vim/".v:version/100.".".v:version%100.'"'.s:tag_close),
334 \ ("<meta name=\"plugin-version\" content=\"".g:loaded_2html_plugin.'"'.s:tag_close)
335 \ ])
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200336call add(s:lines, '<meta name="syntax" content="'.s:current_syntax.'"'.s:tag_close)
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200337call add(s:lines, '<meta name="settings" content="'.
338 \ join(filter(keys(s:settings),'s:settings[v:val]'),',').
339 \ '"'.s:tag_close)
Bram Moolenaar313b7232007-05-05 17:56:55 +0000340
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200341if s:settings.use_css
342 if s:settings.dynamic_folds
343 if s:settings.hover_unfold
Bram Moolenaar5c736222010-01-06 20:54:52 +0100344 " if we are doing hover_unfold, use css 2 with css 1 fallback for IE6
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200345 call extend(s:lines, [
346 \ "<style type=\"text/css\">",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200347 \ s:settings.use_xhtml ? "" : "<!--",
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200348 \ ".FoldColumn { text-decoration: none; white-space: pre; }",
349 \ "",
350 \ "body * { margin: 0; padding: 0; }", "",
351 \ ".open-fold > .Folded { display: none; }",
352 \ ".open-fold > .fulltext { display: inline; }",
353 \ ".closed-fold > .fulltext { display: none; }",
354 \ ".closed-fold > .Folded { display: inline; }",
355 \ "",
356 \ ".open-fold > .toggle-open { display: none; }",
357 \ ".open-fold > .toggle-closed { display: inline; }",
358 \ ".closed-fold > .toggle-open { display: inline; }",
359 \ ".closed-fold > .toggle-closed { display: none; }",
360 \ "", "",
361 \ '/* opening a fold while hovering won''t be supported by IE6 and other',
362 \ "similar browsers, but it should fail gracefully. */",
363 \ ".closed-fold:hover > .fulltext { display: inline; }",
364 \ ".closed-fold:hover > .toggle-filler { display: none; }",
365 \ ".closed-fold:hover > .Folded { display: none; }",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200366 \ s:settings.use_xhtml ? "" : '-->',
Bram Moolenaar8df7f882010-08-13 11:30:02 +0200367 \ '</style>'])
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200368 " TODO: IE7 doesn't *actually* support XHTML, maybe we should remove this.
369 " But if it's served up as tag soup, maybe the following will work, so
370 " leave it in for now.
371 call extend(s:lines, [
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200372 \ "<!--[if lt IE 7]><style type=\"text/css\">",
373 \ ".open-fold .Folded { display: none; }",
374 \ ".open-fold .fulltext { display: inline; }",
375 \ ".open-fold .toggle-open { display: none; }",
376 \ ".closed-fold .toggle-closed { display: inline; }",
377 \ "",
378 \ ".closed-fold .fulltext { display: none; }",
379 \ ".closed-fold .Folded { display: inline; }",
380 \ ".closed-fold .toggle-open { display: inline; }",
381 \ ".closed-fold .toggle-closed { display: none; }",
382 \ "</style>",
383 \ "<![endif]-->",
384 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100385 else
386 " if we aren't doing hover_unfold, use CSS 1 only
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200387 call extend(s:lines, [
388 \ "<style type=\"text/css\">",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200389 \ s:settings.use_xhtml ? "" :"<!--",
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200390 \ ".FoldColumn { text-decoration: none; white-space: pre; }",
391 \ ".open-fold .Folded { display: none; }",
392 \ ".open-fold .fulltext { display: inline; }",
393 \ ".open-fold .toggle-open { display: none; }",
394 \ ".closed-fold .toggle-closed { display: inline; }",
395 \ "",
396 \ ".closed-fold .fulltext { display: none; }",
397 \ ".closed-fold .Folded { display: inline; }",
398 \ ".closed-fold .toggle-open { display: inline; }",
399 \ ".closed-fold .toggle-closed { display: none; }",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200400 \ s:settings.use_xhtml ? "" : '-->',
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200401 \ '</style>'
402 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100403 endif
404 else
405 " if we aren't doing any dynamic folding, no need for any special rules
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200406 call extend(s:lines, [
407 \ "<style type=\"text/css\">",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200408 \ s:settings.use_xhtml ? "" : "<!--",
409 \ s:settings.use_xhtml ? "" : '-->',
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200410 \ "</style>",
411 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100412 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100414
415" insert javascript to toggle folds open and closed
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200416if s:settings.dynamic_folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200417 call extend(s:lines, [
418 \ "",
419 \ "<script type='text/javascript'>",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200420 \ s:settings.use_xhtml ? '//<![CDATA[' : "<!--",
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200421 \ "function toggleFold(objID)",
422 \ "{",
423 \ " var fold;",
424 \ " fold = document.getElementById(objID);",
425 \ " if(fold.className == 'closed-fold')",
426 \ " {",
427 \ " fold.className = 'open-fold';",
428 \ " }",
429 \ " else if (fold.className == 'open-fold')",
430 \ " {",
431 \ " fold.className = 'closed-fold';",
432 \ " }",
433 \ "}",
Bram Moolenaarbebca9d2010-08-07 15:47:30 +0200434 \ s:settings.use_xhtml ? '//]]>' : '-->',
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200435 \ "</script>"
436 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100437endif
438
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200439if s:settings.no_pre
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200440 call extend(s:lines, ["</head>", "<body>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000441else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200442 call extend(s:lines, ["</head>", "<body>", "<pre>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000443endif
444
445exe s:orgwin . "wincmd w"
446
447" List of all id's
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200448let s:idlist = []
Bram Moolenaar071d4272004-06-13 20:20:40 +0000449
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200450" set up progress bar in the status line
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200451if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200452 " ProgressBar Indicator
453 let s:progressbar={}
454
455 " Progessbar specific functions
456 func! s:ProgressBar(title, max_value, winnr)
457 let pgb=copy(s:progressbar)
458 let pgb.title = a:title.' '
459 let pgb.max_value = a:max_value
460 let pgb.winnr = a:winnr
461 let pgb.cur_value = 0
462 let pgb.items = { 'title' : { 'color' : 'Statusline' },
463 \'bar' : { 'color' : 'Statusline' , 'fillcolor' : 'DiffDelete' , 'bg' : 'Statusline' } ,
464 \'counter' : { 'color' : 'Statusline' } }
465 let pgb.last_value = 0
466 let pgb.needs_redraw = 0
467 " Note that you must use len(split) instead of len() if you want to use
468 " unicode in title.
469 "
470 " Subtract 3 for spacing around the title.
471 " Subtract 4 for the percentage display.
472 " Subtract 2 for spacing before this.
473 " Subtract 2 more for the '|' on either side of the progress bar
474 let pgb.subtractedlen=len(split(pgb.title, '\zs'))+3+4+2+2
475 let pgb.max_len = 0
476 set laststatus=2
477 return pgb
478 endfun
479
480 " Function: progressbar.calculate_ticks() {{{1
481 func! s:progressbar.calculate_ticks(pb_len)
482 if a:pb_len<=0
483 let pb_len = 100
484 else
485 let pb_len = a:pb_len
486 endif
487 let self.progress_ticks = map(range(pb_len+1), "v:val * self.max_value / pb_len")
488 endfun
489
490 "Function: progressbar.paint()
491 func! s:progressbar.paint()
492 " Recalculate widths.
493 let max_len = winwidth(self.winnr)
494 let pb_len = 0
495 " always true on first call because of initial value of self.max_len
496 if max_len != self.max_len
497 let self.max_len = max_len
498
499 " Progressbar length
500 let pb_len = max_len - self.subtractedlen
501
502 call self.calculate_ticks(pb_len)
503
504 let self.needs_redraw = 1
505 let cur_value = 0
506 let self.pb_len = pb_len
507 else
508 " start searching at the last found index to make the search for the
509 " appropriate tick value normally take 0 or 1 comparisons
510 let cur_value = self.last_value
511 let pb_len = self.pb_len
512 endif
513
514 let cur_val_max = pb_len > 0 ? pb_len : 100
515
516 " find the current progress bar position based on precalculated thresholds
517 while cur_value < cur_val_max && self.cur_value > self.progress_ticks[cur_value]
518 let cur_value += 1
519 endwhile
520
521 " update progress bar
522 if self.last_value != cur_value || self.needs_redraw || self.cur_value == self.max_value
523 let self.needs_redraw = 1
524 let self.last_value = cur_value
525
526 let t_color = self.items.title.color
527 let b_fcolor = self.items.bar.fillcolor
528 let b_color = self.items.bar.color
529 let c_color = self.items.counter.color
530
531 let stl = "%#".t_color."#%-( ".self.title." %)".
532 \"%#".b_color."#".
533 \(pb_len>0 ?
534 \ ('|%#'.b_fcolor."#%-(".repeat(" ",cur_value)."%)".
535 \ '%#'.b_color."#".repeat(" ",pb_len-cur_value)."|"):
536 \ ('')).
537 \"%=%#".c_color."#%( ".printf("%3.d ",100*self.cur_value/self.max_value)."%% %)"
538 call setwinvar(self.winnr, '&stl', stl)
539 endif
540 endfun
541
542 func! s:progressbar.incr( ... )
543 let self.cur_value += (a:0 ? a:1 : 1)
544 " if we were making a general-purpose progress bar, we'd need to limit to a
545 " lower limit as well, but since we always increment with a positive value
546 " in this script, we only need limit the upper value
547 let self.cur_value = (self.cur_value > self.max_value ? self.max_value : self.cur_value)
548 call self.paint()
549 endfun
550 " }}}
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200551 if s:settings.dynamic_folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200552 " to process folds we make two passes through each line
553 let s:pgb = s:ProgressBar("Processing folds:", line('$')*2, s:orgwin)
554 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200555endif
556
Bram Moolenaar5c736222010-01-06 20:54:52 +0100557" First do some preprocessing for dynamic folding. Do this for the entire file
558" so we don't accidentally start within a closed fold or something.
559let s:allfolds = []
560
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200561if s:settings.dynamic_folds
Bram Moolenaar5c736222010-01-06 20:54:52 +0100562 let s:lnum = 1
563 let s:end = line('$')
564 " save the fold text and set it to the default so we can find fold levels
565 let s:foldtext_save = &foldtext
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200566 setlocal foldtext&
Bram Moolenaar5c736222010-01-06 20:54:52 +0100567
568 " we will set the foldcolumn in the html to the greater of the maximum fold
569 " level and the current foldcolumn setting
570 let s:foldcolumn = &foldcolumn
571
572 " get all info needed to describe currently closed folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200573 while s:lnum <= s:end
Bram Moolenaar5c736222010-01-06 20:54:52 +0100574 if foldclosed(s:lnum) == s:lnum
575 " default fold text has '+-' and then a number of dashes equal to fold
576 " level, so subtract 2 from index of first non-dash after the dashes
577 " in order to get the fold level of the current fold
578 let s:level = match(foldtextresult(s:lnum), '+-*\zs[^-]') - 2
Bram Moolenaar5c736222010-01-06 20:54:52 +0100579 " store fold info for later use
580 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
581 call add(s:allfolds, s:newfold)
582 " open the fold so we can find any contained folds
583 execute s:lnum."foldopen"
584 else
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200585 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200586 call s:pgb.incr()
587 if s:pgb.needs_redraw
588 redrawstatus
589 let s:pgb.needs_redraw = 0
590 endif
591 endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100592 let s:lnum = s:lnum + 1
593 endif
594 endwhile
595
596 " close all folds to get info for originally open folds
597 silent! %foldclose!
598 let s:lnum = 1
599
600 " the originally open folds will be all folds we encounter that aren't
601 " already in the list of closed folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200602 while s:lnum <= s:end
Bram Moolenaar5c736222010-01-06 20:54:52 +0100603 if foldclosed(s:lnum) == s:lnum
604 " default fold text has '+-' and then a number of dashes equal to fold
605 " level, so subtract 2 from index of first non-dash after the dashes
606 " in order to get the fold level of the current fold
607 let s:level = match(foldtextresult(s:lnum), '+-*\zs[^-]') - 2
Bram Moolenaar5c736222010-01-06 20:54:52 +0100608 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
609 " only add the fold if we don't already have it
610 if empty(s:allfolds) || index(s:allfolds, s:newfold) == -1
611 let s:newfold.type = "open-fold"
612 call add(s:allfolds, s:newfold)
613 endif
614 " open the fold so we can find any contained folds
615 execute s:lnum."foldopen"
616 else
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200617 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200618 call s:pgb.incr()
619 if s:pgb.needs_redraw
620 redrawstatus
621 let s:pgb.needs_redraw = 0
622 endif
623 endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100624 let s:lnum = s:lnum + 1
625 endif
626 endwhile
627
628 " sort the folds so that we only ever need to look at the first item in the
629 " list of folds
630 call sort(s:allfolds, "s:FoldCompare")
631
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200632 let &l:foldtext = s:foldtext_save
Bram Moolenaar5c736222010-01-06 20:54:52 +0100633 unlet s:foldtext_save
634
635 " close all folds again so we can get the fold text as we go
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200636 silent! %foldclose!
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100637
Bram Moolenaar251e1912011-06-19 05:09:16 +0200638 " Go through and remove folds we don't need to (or cannot) process in the
639 " current conversion range
640 "
641 " If a fold is removed which contains other folds, which are included, we need
642 " to adjust the level of the included folds as used by the conversion logic
643 " (avoiding special cases is good)
644 "
645 " Note any time we remove a fold, either all of the included folds are in it,
646 " or none of them, because we only remove a fold if neither its start nor its
647 " end are within the conversion range.
648 let leveladjust = 0
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100649 for afold in s:allfolds
650 let removed = 0
651 if exists("g:html_start_line") && exists("g:html_end_line")
652 if afold.firstline < g:html_start_line
Bram Moolenaar251e1912011-06-19 05:09:16 +0200653 if afold.lastline <= g:html_end_line && afold.lastline >= g:html_start_line
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100654 " if a fold starts before the range to convert but stops within the
655 " range, we need to include it. Make it start on the first converted
656 " line.
657 let afold.firstline = g:html_start_line
658 else
659 " if the fold lies outside the range or the start and stop enclose
660 " the entire range, don't bother parsing it
661 call remove(s:allfolds, index(s:allfolds, afold))
662 let removed = 1
Bram Moolenaar251e1912011-06-19 05:09:16 +0200663 if afold.lastline > g:html_end_line
664 let leveladjust += 1
665 endif
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100666 endif
667 elseif afold.firstline > g:html_end_line
668 " If the entire fold lies outside the range we need to remove it.
669 call remove(s:allfolds, index(s:allfolds, afold))
670 let removed = 1
671 endif
672 elseif exists("g:html_start_line")
673 if afold.firstline < g:html_start_line
674 " if there is no last line, but there is a first line, the end of the
675 " fold will always lie within the region of interest, so keep it
676 let afold.firstline = g:html_start_line
677 endif
678 elseif exists("g:html_end_line")
679 " if there is no first line we default to the first line in the buffer so
680 " the fold start will always be included if the fold itself is included.
681 " If however the entire fold lies outside the range we need to remove it.
682 if afold.firstline > g:html_end_line
683 call remove(s:allfolds, index(s:allfolds, afold))
684 let removed = 1
685 endif
686 endif
687 if !removed
Bram Moolenaar251e1912011-06-19 05:09:16 +0200688 let afold.level -= leveladjust
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100689 if afold.level+1 > s:foldcolumn
690 let s:foldcolumn = afold.level+1
691 endif
692 endif
693 endfor
Bram Moolenaar251e1912011-06-19 05:09:16 +0200694
695 " if we've removed folds containing the conversion range from processing,
696 " getting foldtext as we go won't know to open the removed folds, so the
697 " foldtext would be wrong; open them now.
698 "
699 " Note that only when a start and an end line is specified will a fold
700 " containing the current range ever be removed.
701 while leveladjust > 0
702 exe g:html_start_line."foldopen"
703 let leveladjust -= 1
704 endwhile
Bram Moolenaar5c736222010-01-06 20:54:52 +0100705endif
706
707" Now loop over all lines in the original text to convert to html.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000708" Use html_start_line and html_end_line if they are set.
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200709if exists("g:html_start_line")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000710 let s:lnum = html_start_line
711 if s:lnum < 1 || s:lnum > line("$")
712 let s:lnum = 1
713 endif
714else
715 let s:lnum = 1
716endif
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200717if exists("g:html_end_line")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000718 let s:end = html_end_line
719 if s:end < s:lnum || s:end > line("$")
720 let s:end = line("$")
721 endif
722else
723 let s:end = line("$")
724endif
725
Bram Moolenaar5c736222010-01-06 20:54:52 +0100726" stack to keep track of all the folds containing the current line
727let s:foldstack = []
728
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200729if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200730 let s:pgb = s:ProgressBar("Processing lines:", s:end - s:lnum + 1, s:orgwin)
731endif
732
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200733if s:settings.number_lines
Bram Moolenaar5c736222010-01-06 20:54:52 +0100734 let s:margin = strlen(s:end) + 1
735else
736 let s:margin = 0
737endif
738
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200739if has('folding') && !s:settings.ignore_folding
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000740 let s:foldfillchar = &fillchars[matchend(&fillchars, 'fold:')]
741 if s:foldfillchar == ''
742 let s:foldfillchar = '-'
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000743 endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000744endif
745let s:difffillchar = &fillchars[matchend(&fillchars, 'diff:')]
746if s:difffillchar == ''
747 let s:difffillchar = '-'
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000748endif
749
Bram Moolenaar5c736222010-01-06 20:54:52 +0100750let s:foldId = 0
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000751
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100752if !s:settings.expand_tabs
753 " If keeping tabs, add them to printable characters so we keep them when
754 " formatting text (strtrans() doesn't replace printable chars)
755 let s:old_isprint = &isprint
756 setlocal isprint+=9
757endif
758
Bram Moolenaar071d4272004-06-13 20:20:40 +0000759while s:lnum <= s:end
760
Bram Moolenaar47136d72004-10-12 20:02:24 +0000761 " If there are filler lines for diff mode, show these above the line.
762 let s:filler = diff_filler(s:lnum)
763 if s:filler > 0
764 let s:n = s:filler
765 while s:n > 0
Bram Moolenaar5c736222010-01-06 20:54:52 +0100766 let s:new = repeat(s:difffillchar, 3)
Bram Moolenaar47136d72004-10-12 20:02:24 +0000767
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200768 if s:n > 2 && s:n < s:filler && !s:settings.whole_filler
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000769 let s:new = s:new . " " . s:filler . " inserted lines "
770 let s:n = 2
771 endif
772
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200773 if !s:settings.no_pre
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000774 " HTML line wrapping is off--go ahead and fill to the margin
Bram Moolenaar5c736222010-01-06 20:54:52 +0100775 let s:new = s:new . repeat(s:difffillchar, &columns - strlen(s:new) - s:margin)
776 else
777 let s:new = s:new . repeat(s:difffillchar, 3)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000778 endif
779
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200780 let s:new = s:HtmlFormat(s:new, "DiffDelete", "")
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200781 if s:settings.number_lines
Bram Moolenaar5c736222010-01-06 20:54:52 +0100782 " Indent if line numbering is on; must be after escaping.
783 let s:new = repeat(s:LeadingSpace, s:margin) . s:new
784 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200785 call add(s:lines, s:new.s:HtmlEndline)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000786
Bram Moolenaar47136d72004-10-12 20:02:24 +0000787 let s:n = s:n - 1
788 endwhile
789 unlet s:n
790 endif
791 unlet s:filler
792
793 " Start the line with the line number.
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200794 if s:settings.number_lines
Bram Moolenaar5c736222010-01-06 20:54:52 +0100795 let s:numcol = repeat(' ', s:margin - 1 - strlen(s:lnum)) . s:lnum . ' '
Bram Moolenaar47136d72004-10-12 20:02:24 +0000796 else
Bram Moolenaar5c736222010-01-06 20:54:52 +0100797 let s:numcol = ""
Bram Moolenaar47136d72004-10-12 20:02:24 +0000798 endif
799
Bram Moolenaar5c736222010-01-06 20:54:52 +0100800 let s:new = ""
801
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200802 if has('folding') && !s:settings.ignore_folding && foldclosed(s:lnum) > -1 && !s:settings.dynamic_folds
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000803 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100804 " This is the beginning of a folded block (with no dynamic folding)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000805 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100806 let s:new = s:numcol . foldtextresult(s:lnum)
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200807 if !s:settings.no_pre
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000808 " HTML line wrapping is off--go ahead and fill to the margin
809 let s:new = s:new . repeat(s:foldfillchar, &columns - strlen(s:new))
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000810 endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000811
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200812 let s:new = s:HtmlFormat(s:new, "Folded", "")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000813
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000814 " Skip to the end of the fold
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200815 let s:new_lnum = foldclosedend(s:lnum)
816
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200817 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200818 call s:pgb.incr(s:new_lnum - s:lnum)
819 endif
820
821 let s:lnum = s:new_lnum
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000822
823 else
824 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100825 " A line that is not folded, or doing dynamic folding.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000826 "
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000827 let s:line = getline(s:lnum)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000828 let s:len = strlen(s:line)
829
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200830 if s:settings.dynamic_folds
Bram Moolenaar5c736222010-01-06 20:54:52 +0100831 " First insert a closing for any open folds that end on this line
832 while !empty(s:foldstack) && get(s:foldstack,0).lastline == s:lnum-1
833 let s:new = s:new."</span></span>"
834 call remove(s:foldstack, 0)
835 endwhile
836
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100837 " Now insert an opening for any new folds that start on this line
Bram Moolenaar5c736222010-01-06 20:54:52 +0100838 let s:firstfold = 1
839 while !empty(s:allfolds) && get(s:allfolds,0).firstline == s:lnum
840 let s:foldId = s:foldId + 1
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200841 let s:new .= "<span id='"
842 let s:new .= (exists('g:html_diff_win_num') ? "win".g:html_diff_win_num : "")
843 let s:new .= "fold".s:foldId."' class='".s:allfolds[0].type."'>"
844
Bram Moolenaar5c736222010-01-06 20:54:52 +0100845
846 " Unless disabled, add a fold column for the opening line of a fold.
847 "
848 " Note that dynamic folds require using css so we just use css to take
849 " care of the leading spaces rather than using &nbsp; in the case of
850 " html_no_pre to make it easier
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200851 if !s:settings.no_foldcolumn
Bram Moolenaar5c736222010-01-06 20:54:52 +0100852 " add fold column that can open the new fold
853 if s:allfolds[0].level > 1 && s:firstfold
854 let s:new = s:new . "<a class='toggle-open FoldColumn' href='javascript:toggleFold(\"fold".s:foldstack[0].id."\")'>"
855 let s:new = s:new . repeat('|', s:allfolds[0].level - 1) . "</a>"
856 endif
857 let s:new = s:new . "<a class='toggle-open FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>+</a>"
858 let s:new = s:new . "<a class='toggle-open "
859 " If this is not the last fold we're opening on this line, we need
860 " to keep the filler spaces hidden if the fold is opened by mouse
861 " hover. If it is the last fold to open in the line, we shouldn't hide
862 " them, so don't apply the toggle-filler class.
863 if get(s:allfolds, 1, {'firstline': 0}).firstline == s:lnum
864 let s:new = s:new . "toggle-filler "
865 endif
866 let s:new = s:new . "FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>"
867 let s:new = s:new . repeat(" ", s:foldcolumn - s:allfolds[0].level) . "</a>"
868
869 " add fold column that can close the new fold
870 let s:new = s:new . "<a class='toggle-closed FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>"
871 if s:firstfold
872 let s:new = s:new . repeat('|', s:allfolds[0].level - 1)
873 endif
874 let s:new = s:new . "-"
875 " only add spaces if we aren't opening another fold on the same line
876 if get(s:allfolds, 1, {'firstline': 0}).firstline != s:lnum
877 let s:new = s:new . repeat(" ", s:foldcolumn - s:allfolds[0].level)
878 endif
879 let s:new = s:new . "</a>"
880 let s:firstfold = 0
881 endif
882
883 " add fold text, moving the span ending to the next line so collapsing
884 " of folds works correctly
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200885 let s:new = s:new . substitute(s:HtmlFormat(s:numcol . foldtextresult(s:lnum), "Folded", ""), '</span>', s:HtmlEndline.'\n\0', '')
Bram Moolenaar5c736222010-01-06 20:54:52 +0100886 let s:new = s:new . "<span class='fulltext'>"
887
888 " open the fold now that we have the fold text to allow retrieval of
889 " fold text for subsequent folds
890 execute s:lnum."foldopen"
891 call insert(s:foldstack, remove(s:allfolds,0))
892 let s:foldstack[0].id = s:foldId
893 endwhile
894
895 " Unless disabled, add a fold column for other lines.
896 "
897 " Note that dynamic folds require using css so we just use css to take
898 " care of the leading spaces rather than using &nbsp; in the case of
899 " html_no_pre to make it easier
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200900 if !s:settings.no_foldcolumn
Bram Moolenaar5c736222010-01-06 20:54:52 +0100901 if empty(s:foldstack)
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200902 " add the empty foldcolumn for unfolded lines if there is a fold
903 " column at all
904 if s:foldcolumn > 0
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200905 let s:new = s:new . s:HtmlFormat(repeat(' ', s:foldcolumn), "FoldColumn", "")
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200906 endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100907 else
908 " add the fold column for folds not on the opening line
909 if get(s:foldstack, 0).firstline < s:lnum
910 let s:new = s:new . "<a class='FoldColumn' href='javascript:toggleFold(\"fold".s:foldstack[0].id."\")'>"
911 let s:new = s:new . repeat('|', s:foldstack[0].level)
912 let s:new = s:new . repeat(' ', s:foldcolumn - s:foldstack[0].level) . "</a>"
913 endif
914 endif
915 endif
916 endif
917
918 " Now continue with the unfolded line text
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200919 if s:settings.number_lines
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200920 " TODO: why not use the real highlight name here?
921 let s:new = s:new . s:HtmlFormat(s:numcol, "lnr", "")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922 endif
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000923
Bram Moolenaar47136d72004-10-12 20:02:24 +0000924 " Get the diff attribute, if any.
925 let s:diffattr = diff_hlID(s:lnum, 1)
926
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200927 " initialize conceal info to act like not concealed, just in case
928 let s:concealinfo = [0, '']
929
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000930 " Loop over each character in the line
931 let s:col = 1
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200932
933 " most of the time we won't use the diff_id, initialize to zero
934 let s:diff_id = 0
935 let s:diff_id_name = ""
936
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000937 while s:col <= s:len || (s:col == 1 && s:diffattr)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000938 let s:startcol = s:col " The start column for processing text
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200939 if !s:settings.ignore_conceal && has('conceal')
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200940 let s:concealinfo = synconcealed(s:lnum, s:col)
941 endif
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200942 if !s:settings.ignore_conceal && s:concealinfo[0]
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200943 let s:col = s:col + 1
944 " Speed loop (it's small - that's the trick)
945 " Go along till we find a change in the match sequence number (ending
946 " the specific concealed region) or until there are no more concealed
947 " characters.
948 while s:col <= s:len && s:concealinfo == synconcealed(s:lnum, s:col) | let s:col = s:col + 1 | endwhile
949 elseif s:diffattr
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200950 let s:diff_id = diff_hlID(s:lnum, s:col)
951 let s:id = synID(s:lnum, s:col, 1)
Bram Moolenaar47136d72004-10-12 20:02:24 +0000952 let s:col = s:col + 1
953 " Speed loop (it's small - that's the trick)
954 " Go along till we find a change in hlID
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200955 while s:col <= s:len && s:id == synID(s:lnum, s:col, 1)
956 \ && s:diff_id == diff_hlID(s:lnum, s:col) |
957 \ let s:col = s:col + 1 |
958 \ endwhile
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200959 if s:len < &columns && !s:settings.no_pre
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +0200960 " Add spaces at the end of the raw text line to extend the changed
961 " line to the full width.
Bram Moolenaar5c736222010-01-06 20:54:52 +0100962 let s:line = s:line . repeat(' ', &columns - virtcol([s:lnum, s:len]) - s:margin)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000963 let s:len = &columns
964 endif
Bram Moolenaar47136d72004-10-12 20:02:24 +0000965 else
966 let s:id = synID(s:lnum, s:col, 1)
967 let s:col = s:col + 1
968 " Speed loop (it's small - that's the trick)
969 " Go along till we find a change in synID
970 while s:col <= s:len && s:id == synID(s:lnum, s:col, 1) | let s:col = s:col + 1 | endwhile
971 endif
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000972
Bram Moolenaar076e8b22010-08-05 21:54:00 +0200973 if s:settings.ignore_conceal || !s:concealinfo[0]
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100974 " Expand tabs if needed
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200975 let s:expandedtab = strpart(s:line, s:startcol - 1, s:col - s:startcol)
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100976 if s:settings.expand_tabs
977 let s:offset = 0
Bram Moolenaar7510fe72010-07-25 12:46:44 +0200978 let s:idx = stridx(s:expandedtab, "\t")
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +0100979 while s:idx >= 0
980 if has("multi_byte_encoding")
981 if s:startcol + s:idx == 1
982 let s:i = &ts
983 else
984 if s:idx == 0
985 let s:prevc = matchstr(s:line, '.\%' . (s:startcol + s:idx + s:offset) . 'c')
986 else
987 let s:prevc = matchstr(s:expandedtab, '.\%' . (s:idx + 1) . 'c')
988 endif
989 let s:vcol = virtcol([s:lnum, s:startcol + s:idx + s:offset - len(s:prevc)])
990 let s:i = &ts - (s:vcol % &ts)
991 endif
992 let s:offset -= s:i - 1
993 else
994 let s:i = &ts - ((s:idx + s:startcol - 1) % &ts)
995 endif
996 let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', s:i), '')
997 let s:idx = stridx(s:expandedtab, "\t")
998 endwhile
999 end
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00001000
Bram Moolenaar7510fe72010-07-25 12:46:44 +02001001 " get the highlight group name to use
1002 let s:id = synIDtrans(s:id)
1003 let s:id_name = synIDattr(s:id, "name", s:whatterm)
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001004 if s:diff_id
1005 let s:diff_id_name = synIDattr(s:diff_id, "name", s:whatterm)
1006 endif
Bram Moolenaar7510fe72010-07-25 12:46:44 +02001007 else
1008 " use Conceal highlighting for concealed text
1009 let s:id_name = 'Conceal'
1010 let s:expandedtab = s:concealinfo[1]
1011 endif
1012
1013 " Output the text with the same synID, with class set to {s:id_name},
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001014 " unless it has been concealed completely.
Bram Moolenaar7510fe72010-07-25 12:46:44 +02001015 if strlen(s:expandedtab) > 0
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001016 let s:new = s:new . s:HtmlFormat(s:expandedtab, s:id_name, s:diff_id_name)
Bram Moolenaar7510fe72010-07-25 12:46:44 +02001017 endif
Bram Moolenaar7b0294c2004-10-11 10:16:09 +00001018 endwhile
1019 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020
Bram Moolenaar7510fe72010-07-25 12:46:44 +02001021 call extend(s:lines, split(s:new.s:HtmlEndline, '\n', 1))
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001022 if !s:settings.no_progress && s:pgb.needs_redraw
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001023 redrawstatus
1024 let s:pgb.needs_redraw = 0
1025 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001026 let s:lnum = s:lnum + 1
Bram Moolenaar313b7232007-05-05 17:56:55 +00001027
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001028 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001029 call s:pgb.incr()
1030 endif
1031endwhile
1032
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001033if s:settings.dynamic_folds
Bram Moolenaar5c736222010-01-06 20:54:52 +01001034 " finish off any open folds
1035 while !empty(s:foldstack)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001036 let s:lines[-1].="</span></span>"
Bram Moolenaar5c736222010-01-06 20:54:52 +01001037 call remove(s:foldstack, 0)
1038 endwhile
1039
1040 " add fold column to the style list if not already there
1041 let s:id = hlID('FoldColumn')
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001042 if index(s:idlist, s:id) == -1
1043 call insert(s:idlist, s:id)
Bram Moolenaar5c736222010-01-06 20:54:52 +01001044 endif
1045endif
1046
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001047if s:settings.no_pre
1048 if !s:settings.use_css
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001049 " Close off the font tag that encapsulates the whole <body>
Bram Moolenaarbebca9d2010-08-07 15:47:30 +02001050 call extend(s:lines, ["</font>", "</body>", "</html>"])
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001051 else
1052 call extend(s:lines, ["</body>", "</html>"])
1053 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001054else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001055 call extend(s:lines, ["</pre>", "</body>", "</html>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +00001056endif
1057
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001058exe s:newwin . "wincmd w"
1059call setline(1, s:lines)
1060unlet s:lines
Bram Moolenaar071d4272004-06-13 20:20:40 +00001061
1062" Now, when we finally know which, we define the colors and styles
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001063if s:settings.use_css
Bram Moolenaar071d4272004-06-13 20:20:40 +00001064 1;/<style type="text/+1
1065endif
1066
1067" Find out the background and foreground color.
1068let s:fgc = s:HtmlColor(synIDattr(hlID("Normal"), "fg#", s:whatterm))
1069let s:bgc = s:HtmlColor(synIDattr(hlID("Normal"), "bg#", s:whatterm))
1070if s:fgc == ""
1071 let s:fgc = ( &background == "dark" ? "#ffffff" : "#000000" )
1072endif
1073if s:bgc == ""
1074 let s:bgc = ( &background == "dark" ? "#000000" : "#ffffff" )
1075endif
1076
1077" Normal/global attributes
1078" For Netscape 4, set <body> attributes too, though, strictly speaking, it's
1079" incorrect.
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001080if s:settings.use_css
1081 if s:settings.no_pre
Bram Moolenaar313b7232007-05-05 17:56:55 +00001082 execute "normal! A\nbody { color: " . s:fgc . "; background-color: " . s:bgc . "; font-family: ". s:htmlfont ."; }\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001083 else
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +02001084 execute "normal! A\npre { " . s:whitespace . "font-family: ". s:htmlfont ."; color: " . s:fgc . "; background-color: " . s:bgc . "; }\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001085 yank
1086 put
1087 execute "normal! ^cwbody\e"
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +02001088 " body should not have the wrap formatting, only the pre section
1089 if s:whitespace != ''
1090 exec 's#'.s:whitespace
1091 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001092 endif
1093else
Bram Moolenaarbebca9d2010-08-07 15:47:30 +02001094 execute '%s:<body>:<body bgcolor="' . s:bgc . '" text="' . s:fgc . '">\r<font face="'. s:htmlfont .'">'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001095endif
1096
1097" Line numbering attributes
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001098if s:settings.number_lines
1099 if s:settings.use_css
Bram Moolenaar071d4272004-06-13 20:20:40 +00001100 execute "normal! A\n.lnr { " . s:CSS1(hlID("LineNr")) . "}\e"
1101 else
Bram Moolenaar8424a622006-04-19 21:23:36 +00001102 execute '%s+^<span class="lnr">\([^<]*\)</span>+' . s:HtmlOpening(hlID("LineNr")) . '\1' . s:HtmlClosing(hlID("LineNr")) . '+g'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001103 endif
1104endif
1105
1106" Gather attributes for all other classes
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001107if !s:settings.no_progress && !empty(s:idlist)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001108 let s:pgb = s:ProgressBar("Processing classes:", len(s:idlist),s:newwin)
1109endif
1110while !empty(s:idlist)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001111 let s:attr = ""
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001112 let s:id = remove(s:idlist, 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001113 let s:attr = s:CSS1(s:id)
1114 let s:id_name = synIDattr(s:id, "name", s:whatterm)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001115
Bram Moolenaar071d4272004-06-13 20:20:40 +00001116 " If the class has some attributes, export the style, otherwise DELETE all
1117 " its occurences to make the HTML shorter
1118 if s:attr != ""
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001119 if s:settings.use_css
Bram Moolenaar071d4272004-06-13 20:20:40 +00001120 execute "normal! A\n." . s:id_name . " { " . s:attr . "}"
1121 else
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001122 " replace spans of just this class name with non-CSS style markup
1123 execute '%s+<span class="' . s:id_name . '">\([^<]*\)</span>+' . s:HtmlOpening(s:id) . '\1' . s:HtmlClosing(s:id) . '+ge'
1124 " Replace spans of this class name AND a diff class with non-CSS style
1125 " markup surrounding a span of just the diff class. The diff class will
1126 " be handled later because we know that information is at the end.
1127 execute '%s+<span class="' . s:id_name . ' \(Diff\%(Add\|Change\|Delete\|Text\)\)">\([^<]*\)</span>+' . s:HtmlOpening(s:id) . '<span class="\1">\2</span>' . s:HtmlClosing(s:id) . '+ge'
Bram Moolenaar071d4272004-06-13 20:20:40 +00001128 endif
1129 else
Bram Moolenaar313b7232007-05-05 17:56:55 +00001130 execute '%s+<span class="' . s:id_name . '">\([^<]*\)</span>+\1+ge'
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001131 execute '%s+<span class="' . s:id_name . ' \(Diff\%(Add\|Change\|Delete\|Text\)\)">\([^<]*\)</span>+<span class="\1">\2</span>+ge'
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001132 if s:settings.use_css
Bram Moolenaar8ada2cc2010-07-29 20:43:36 +02001133 1;/<\/style>/-2
Bram Moolenaar071d4272004-06-13 20:20:40 +00001134 endif
1135 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001136
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001137 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001138 call s:pgb.incr()
1139 if s:pgb.needs_redraw
1140 redrawstatus
1141 let s:pgb.needs_redraw = 0
Bram Moolenaarbebca9d2010-08-07 15:47:30 +02001142 " TODO: sleep here to show the progress bar, but only if total time spent
1143 " so far on this step is < 1 second? Too slow for batch runs like the test
1144 " suite to sleep all the time. Maybe there's no good reason to sleep at
1145 " all.
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001146 endif
1147 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001148endwhile
1149
1150" Add hyperlinks
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001151%s+\(https\=://\S\{-}\)\(\([.,;:}]\=\(\s\|$\)\)\|[\\"'<>]\|&gt;\|&lt;\|&quot;\)+<a href="\1">\1</a>\2+ge
Bram Moolenaar071d4272004-06-13 20:20:40 +00001152
1153" The DTD
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001154if s:settings.use_xhtml
1155 exe "normal! gg$a\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">"
1156elseif s:settings.use_css && !s:settings.no_pre
1157 exe "normal! gg0i<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\n"
Bram Moolenaar313b7232007-05-05 17:56:55 +00001158else
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001159 exe "normal! gg0i<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n"
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001160endif
1161
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001162if s:settings.use_xhtml
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001163 exe "normal! gg/<html/e\na xmlns=\"http://www.w3.org/1999/xhtml\"\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001164endif
1165
1166" Cleanup
1167%s:\s\+$::e
1168
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001169" Restore old settings (new window first)
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001170let &l:foldenable = s:old_fen
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001171let &l:foldmethod = s:old_fdm
Bram Moolenaar071d4272004-06-13 20:20:40 +00001172let &report = s:old_report
1173let &title = s:old_title
1174let &icon = s:old_icon
1175let &paste = s:old_paste
1176let &magic = s:old_magic
1177let @/ = s:old_search
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001178let &more = s:old_more
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001179
1180" switch to original window to restore those settings
Bram Moolenaar071d4272004-06-13 20:20:40 +00001181exe s:orgwin . "wincmd w"
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001182
1183if !s:settings.expand_tabs
1184 let &l:isprint = s:old_isprint
1185endif
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001186let &l:stl = s:origwin_stl
Bram Moolenaar071d4272004-06-13 20:20:40 +00001187let &l:et = s:old_et
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001188let &l:scrollbind = s:old_bind
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001189
1190" and back to the new window again to end there
Bram Moolenaar071d4272004-06-13 20:20:40 +00001191exe s:newwin . "wincmd w"
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001192
Bram Moolenaar166af9b2010-11-16 20:34:40 +01001193let &l:stl = s:newwin_stl
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001194exec 'resize' s:old_winheight
1195let &l:winfixheight = s:old_winfixheight
Bram Moolenaar071d4272004-06-13 20:20:40 +00001196
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001197let &ls=s:ls
1198
Bram Moolenaar071d4272004-06-13 20:20:40 +00001199" Save a little bit of memory (worth doing?)
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +02001200unlet s:htmlfont s:whitespace
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001201unlet s:old_et s:old_paste s:old_icon s:old_report s:old_title s:old_search
1202unlet s:old_magic s:old_more s:old_fdm s:old_fen s:old_winheight
Bram Moolenaar2a8a3ec2011-01-08 16:06:37 +01001203unlet! s:old_isprint
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001204unlet s:whatterm s:idlist s:lnum s:end s:margin s:fgc s:bgc s:old_winfixheight
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001205unlet! s:col s:id s:attr s:len s:line s:new s:expandedtab s:concealinfo
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001206unlet! s:orgwin s:newwin s:orgbufnr s:idx s:i s:offset s:ls s:origwin_stl
1207unlet! s:newwin_stl s:current_syntax
Bram Moolenaar05159a02005-02-26 23:04:13 +00001208if !v:profiling
1209 delfunc s:HtmlColor
1210 delfunc s:HtmlFormat
1211 delfunc s:CSS1
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001212 if !s:settings.use_css
Bram Moolenaar05159a02005-02-26 23:04:13 +00001213 delfunc s:HtmlOpening
1214 delfunc s:HtmlClosing
1215 endif
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001216 if s:settings.dynamic_folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001217 delfunc s:FoldCompare
1218 endif
1219
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001220 if !s:settings.no_progress
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001221 delfunc s:ProgressBar
1222 delfunc s:progressbar.paint
1223 delfunc s:progressbar.incr
1224 unlet s:pgb s:progressbar
1225 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001226endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001227
Bram Moolenaar8df7f882010-08-13 11:30:02 +02001228unlet! s:new_lnum s:diffattr s:difffillchar s:foldfillchar s:HtmlSpace
1229unlet! s:LeadingSpace s:HtmlEndline s:firstfold s:foldcolumn
Bram Moolenaar076e8b22010-08-05 21:54:00 +02001230unlet s:foldstack s:allfolds s:foldId s:numcol s:settings
Bram Moolenaar5c736222010-01-06 20:54:52 +01001231
1232let &cpo = s:cpo_sav
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001233unlet! s:cpo_sav
Bram Moolenaar5c736222010-01-06 20:54:52 +01001234
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001235" Make sure any patches will probably use consistent indent
Bram Moolenaar7c86f4c2010-07-18 14:07:22 +02001236" vim: ts=8 sw=2 sts=2 noet