blob: ab1c807f54ddffac97f9c23795215b129a6a83ae [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>
3" Last Change: 2010 July 15
4"
5" Additional contributors:
6"
7" 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
15"
16" 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 Moolenaar071d4272004-06-13 20:20:40 +000025" Number lines when explicitely requested or when `number' is set
Bram Moolenaarb02cbe32010-07-11 22:38:52 +020026if exists("g:html_number_lines")
Bram Moolenaar071d4272004-06-13 20:20:40 +000027 let s:numblines = html_number_lines
28else
29 let s:numblines = &number
30endif
31
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020032let s:end=line('$')
33" default to using the progress bar
34if exists("g:html_no_progress")
35 let s:html_no_progress = g:html_no_progress
36else
37 let s:html_no_progress = 0
38endif
39
Bram Moolenaar313b7232007-05-05 17:56:55 +000040" Font
Bram Moolenaarb02cbe32010-07-11 22:38:52 +020041if exists("g:html_font")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020042 let s:htmlfont = "'". html_font . "', monospace"
Bram Moolenaar313b7232007-05-05 17:56:55 +000043else
44 let s:htmlfont = "monospace"
45endif
46
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020047" do any option overrides that are needed for current user settings
48let s:old_html_settings = tohtml#OverrideUserSettings()
Bram Moolenaar5c736222010-01-06 20:54:52 +010049
Bram Moolenaar071d4272004-06-13 20:20:40 +000050" When not in gui we can only guess the colors.
51if has("gui_running")
52 let s:whatterm = "gui"
53else
54 let s:whatterm = "cterm"
55 if &t_Co == 8
Bram Moolenaar313b7232007-05-05 17:56:55 +000056 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 +000057 else
Bram Moolenaar313b7232007-05-05 17:56:55 +000058 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"}
59
60 " Colors for 88 and 256 come from xterm.
61 if &t_Co == 88
62 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"})
63 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"})
64 elseif &t_Co == 256
65 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"})
66 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"})
67 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"})
68 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"})
69 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"})
70 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +000071 endif
72endif
73
74" Return good color specification: in GUI no transformation is done, in
Bram Moolenaar313b7232007-05-05 17:56:55 +000075" terminal return RGB values of known colors and empty string for unknown
Bram Moolenaar071d4272004-06-13 20:20:40 +000076if s:whatterm == "gui"
77 function! s:HtmlColor(color)
78 return a:color
79 endfun
80else
81 function! s:HtmlColor(color)
Bram Moolenaar313b7232007-05-05 17:56:55 +000082 if has_key(s:cterm_color, a:color)
83 return s:cterm_color[a:color]
Bram Moolenaar071d4272004-06-13 20:20:40 +000084 else
85 return ""
86 endif
87 endfun
88endif
89
Bram Moolenaar349b2fb2010-07-16 20:35:36 +020090if !exists("g:html_use_css")
Bram Moolenaar071d4272004-06-13 20:20:40 +000091 " Return opening HTML tag for given highlight id
92 function! s:HtmlOpening(id)
93 let a = ""
94 if synIDattr(a:id, "inverse")
95 " For inverse, we always must set both colors (and exchange them)
96 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
97 let a = a . '<span style="background-color: ' . ( x != "" ? x : s:fgc ) . '">'
98 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
99 let a = a . '<font color="' . ( x != "" ? x : s:bgc ) . '">'
100 else
101 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
102 if x != "" | let a = a . '<span style="background-color: ' . x . '">' | endif
103 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
104 if x != "" | let a = a . '<font color="' . x . '">' | endif
105 endif
106 if synIDattr(a:id, "bold") | let a = a . "<b>" | endif
107 if synIDattr(a:id, "italic") | let a = a . "<i>" | endif
108 if synIDattr(a:id, "underline") | let a = a . "<u>" | endif
109 return a
110 endfun
111
112 " Return closing HTML tag for given highlight id
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200113 function! s:HtmlClosing(id)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000114 let a = ""
115 if synIDattr(a:id, "underline") | let a = a . "</u>" | endif
116 if synIDattr(a:id, "italic") | let a = a . "</i>" | endif
117 if synIDattr(a:id, "bold") | let a = a . "</b>" | endif
118 if synIDattr(a:id, "inverse")
119 let a = a . '</font></span>'
120 else
121 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
122 if x != "" | let a = a . '</font>' | endif
123 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
124 if x != "" | let a = a . '</span>' | endif
125 endif
126 return a
127 endfun
128endif
129
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000130" Return HTML valid characters enclosed in a span of class style_name with
131" unprintable characters expanded and double spaces replaced as necessary.
132function! s:HtmlFormat(text, style_name)
133 " Replace unprintable characters
134 let formatted = strtrans(a:text)
135
136 " Replace the reserved html characters
137 let formatted = substitute(substitute(substitute(substitute(substitute(formatted, '&', '\&amp;', 'g'), '<', '\&lt;', 'g'), '>', '\&gt;', 'g'), '"', '\&quot;', 'g'), "\x0c", '<hr class="PAGE-BREAK">', 'g')
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000138
Bram Moolenaar8424a622006-04-19 21:23:36 +0000139 " Replace double spaces and leading spaces
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000140 if ' ' != s:HtmlSpace
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000141 let formatted = substitute(formatted, ' ', s:HtmlSpace . s:HtmlSpace, 'g')
Bram Moolenaar8424a622006-04-19 21:23:36 +0000142 let formatted = substitute(formatted, '^ ', s:HtmlSpace, 'g')
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000143 endif
144
145 " Enclose in a span of class style_name
146 let formatted = '<span class="' . a:style_name . '">' . formatted . '</span>'
147
148 " Add the class to class list if it's not there yet
149 let s:id = hlID(a:style_name)
150 if stridx(s:idlist, "," . s:id . ",") == -1
151 let s:idlist = s:idlist . s:id . ","
152 endif
153
154 return formatted
155endfun
156
Bram Moolenaar071d4272004-06-13 20:20:40 +0000157" Return CSS style describing given highlight id (can be empty)
158function! s:CSS1(id)
159 let a = ""
160 if synIDattr(a:id, "inverse")
161 " For inverse, we always must set both colors (and exchange them)
162 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
163 let a = a . "color: " . ( x != "" ? x : s:bgc ) . "; "
164 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
165 let a = a . "background-color: " . ( x != "" ? x : s:fgc ) . "; "
166 else
167 let x = s:HtmlColor(synIDattr(a:id, "fg#", s:whatterm))
168 if x != "" | let a = a . "color: " . x . "; " | endif
169 let x = s:HtmlColor(synIDattr(a:id, "bg#", s:whatterm))
170 if x != "" | let a = a . "background-color: " . x . "; " | endif
171 endif
172 if synIDattr(a:id, "bold") | let a = a . "font-weight: bold; " | endif
173 if synIDattr(a:id, "italic") | let a = a . "font-style: italic; " | endif
174 if synIDattr(a:id, "underline") | let a = a . "text-decoration: underline; " | endif
175 return a
176endfun
177
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200178if exists("g:html_dynamic_folds")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100179 " compares two folds as stored in our list of folds
180 " A fold is "less" than another if it starts at an earlier line number,
181 " or ends at a later line number, ties broken by fold level
182 function! s:FoldCompare(f1, f2)
183 if a:f1.firstline != a:f2.firstline
184 " put it before if it starts earlier
185 return a:f1.firstline - a:f2.firstline
186 elseif a:f1.lastline != a:f2.lastline
187 " put it before if it ends later
188 return a:f2.lastline - a:f1.lastline
189 else
190 " if folds begin and end on the same lines, put lowest fold level first
191 return a:f1.level - a:f2.level
192 endif
193 endfunction
194
195endif
196
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197" Figure out proper MIME charset from the 'encoding' option.
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200198if exists("g:html_use_encoding")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200199 let s:html_encoding = g:html_use_encoding
Bram Moolenaar071d4272004-06-13 20:20:40 +0000200else
201 let s:vim_encoding = &encoding
202 if s:vim_encoding =~ '^8bit\|^2byte'
203 let s:vim_encoding = substitute(s:vim_encoding, '^8bit-\|^2byte-', '', '')
204 endif
205 if s:vim_encoding == 'latin1'
206 let s:html_encoding = 'iso-8859-1'
207 elseif s:vim_encoding =~ "^cp12"
208 let s:html_encoding = substitute(s:vim_encoding, 'cp', 'windows-', '')
Bram Moolenaar446cb832008-06-24 21:56:24 +0000209 elseif s:vim_encoding == 'sjis' || s:vim_encoding == 'cp932'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000210 let s:html_encoding = 'Shift_JIS'
Bram Moolenaar446cb832008-06-24 21:56:24 +0000211 elseif s:vim_encoding == 'big5' || s:vim_encoding == 'cp950'
Bram Moolenaar241a8aa2005-12-06 20:04:44 +0000212 let s:html_encoding = "Big5"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000213 elseif s:vim_encoding == 'euc-cn'
214 let s:html_encoding = 'GB_2312-80'
215 elseif s:vim_encoding == 'euc-tw'
216 let s:html_encoding = ""
217 elseif s:vim_encoding =~ '^euc\|^iso\|^koi'
218 let s:html_encoding = substitute(s:vim_encoding, '.*', '\U\0', '')
219 elseif s:vim_encoding == 'cp949'
220 let s:html_encoding = 'KS_C_5601-1987'
221 elseif s:vim_encoding == 'cp936'
222 let s:html_encoding = 'GBK'
223 elseif s:vim_encoding =~ '^ucs\|^utf'
224 let s:html_encoding = 'UTF-8'
225 else
226 let s:html_encoding = ""
227 endif
228endif
229
230
231" Set some options to make it work faster.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000232" Don't report changes for :substitute, there will be many of them.
233let s:old_title = &title
234let s:old_icon = &icon
235let s:old_et = &l:et
236let s:old_report = &report
237let s:old_search = @/
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200238let s:old_more = &more
Bram Moolenaar071d4272004-06-13 20:20:40 +0000239set notitle noicon
240setlocal et
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200241set nomore
Bram Moolenaar071d4272004-06-13 20:20:40 +0000242set report=1000000
243
244" Split window to create a buffer with the HTML file.
245let s:orgbufnr = winbufnr(0)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200246let s:origwin_stl = &l:stl
Bram Moolenaar071d4272004-06-13 20:20:40 +0000247if expand("%") == ""
248 new Untitled.html
249else
250 new %.html
251endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200252
253" Resize the new window to very small in order to make it draw faster
254let s:old_winheight = winheight(0)
255let s:old_winfixheight = &l:winfixheight
256if s:old_winheight > 2
257 resize 1 " leave enough room to view one line at a time
258 norm! G
259 norm! zt
260endif
261setlocal winfixheight
262
263let s:newwin_stl = &l:stl
264
265" on the new window, set the least time-consuming fold method
266let s:old_fdm = &foldmethod
267setlocal foldmethod=manual
268
Bram Moolenaar071d4272004-06-13 20:20:40 +0000269let s:newwin = winnr()
270let s:orgwin = bufwinnr(s:orgbufnr)
271
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200272setlocal modifiable
Bram Moolenaar071d4272004-06-13 20:20:40 +0000273%d
274let s:old_paste = &paste
275set paste
276let s:old_magic = &magic
277set magic
278
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200279let s:lines = []
280
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200281if exists("g:use_xhtml")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000282 if s:html_encoding != ""
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200283 call add(s:lines, "<?xml version=\"1.0\" encoding=\"" . s:html_encoding . "\"?>")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000284 else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200285 call add(s:lines, "<?xml version=\"1.0\"?>")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000286 endif
Bram Moolenaar313b7232007-05-05 17:56:55 +0000287 let s:tag_close = ' />'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000288else
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000289 let s:tag_close = '>'
290endif
291
Bram Moolenaar5c736222010-01-06 20:54:52 +0100292" Cache html_no_pre in case we have to turn it on for non-css mode
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200293if exists("g:html_no_pre")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200294 let s:old_html_no_pre = g:html_no_pre
Bram Moolenaar313b7232007-05-05 17:56:55 +0000295endif
296
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200297if !exists("g:html_use_css")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100298 " Can't put font tags in <pre>
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200299 let g:html_no_pre=1
Bram Moolenaar313b7232007-05-05 17:56:55 +0000300endif
301
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000302let s:HtmlSpace = ' '
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000303let s:LeadingSpace = ' '
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000304let s:HtmlEndline = ''
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200305if exists("g:html_no_pre")
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000306 let s:HtmlEndline = '<br' . s:tag_close
Bram Moolenaare37d50a2008-08-06 17:06:04 +0000307 let s:LeadingSpace = '&nbsp;'
Bram Moolenaarc1e37902006-04-18 21:55:01 +0000308 let s:HtmlSpace = '\' . s:LeadingSpace
Bram Moolenaar071d4272004-06-13 20:20:40 +0000309endif
310
311" HTML header, with the title and generator ;-). Left free space for the CSS,
312" to be filled at the end.
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200313call extend(s:lines, [
314 \"<html>",
315 \"<head>",
316 \("<title>".expand("%:p:~")."</title>"),
317 \("<meta name=\"Generator\" content=\"Vim/".v:version/100.".".v:version%100.'"'.s:tag_close),
318 \])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000319if s:html_encoding != ""
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200320 call add(s:lines, "<meta http-equiv=\"content-type\" content=\"text/html; charset=" . s:html_encoding . '"' . s:tag_close)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000321endif
Bram Moolenaar313b7232007-05-05 17:56:55 +0000322
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200323if exists("g:html_use_css")
324 if exists("g:html_dynamic_folds")
325 if exists("g:html_hover_unfold")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100326 " if we are doing hover_unfold, use css 2 with css 1 fallback for IE6
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200327 call extend(s:lines, [
328 \ "<style type=\"text/css\">",
329 \ "<!--",
330 \ ".FoldColumn { text-decoration: none; white-space: pre; }",
331 \ "",
332 \ "body * { margin: 0; padding: 0; }", "",
333 \ ".open-fold > .Folded { display: none; }",
334 \ ".open-fold > .fulltext { display: inline; }",
335 \ ".closed-fold > .fulltext { display: none; }",
336 \ ".closed-fold > .Folded { display: inline; }",
337 \ "",
338 \ ".open-fold > .toggle-open { display: none; }",
339 \ ".open-fold > .toggle-closed { display: inline; }",
340 \ ".closed-fold > .toggle-open { display: inline; }",
341 \ ".closed-fold > .toggle-closed { display: none; }",
342 \ "", "",
343 \ '/* opening a fold while hovering won''t be supported by IE6 and other',
344 \ "similar browsers, but it should fail gracefully. */",
345 \ ".closed-fold:hover > .fulltext { display: inline; }",
346 \ ".closed-fold:hover > .toggle-filler { display: none; }",
347 \ ".closed-fold:hover > .Folded { display: none; }",
348 \ '-->',
349 \ '<style>',
350 \ "<!--[if lt IE 7]><style type=\"text/css\">",
351 \ ".open-fold .Folded { display: none; }",
352 \ ".open-fold .fulltext { display: inline; }",
353 \ ".open-fold .toggle-open { display: none; }",
354 \ ".closed-fold .toggle-closed { display: inline; }",
355 \ "",
356 \ ".closed-fold .fulltext { display: none; }",
357 \ ".closed-fold .Folded { display: inline; }",
358 \ ".closed-fold .toggle-open { display: inline; }",
359 \ ".closed-fold .toggle-closed { display: none; }",
360 \ "</style>",
361 \ "<![endif]-->",
362 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100363 else
364 " if we aren't doing hover_unfold, use CSS 1 only
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200365 call extend(s:lines, [
366 \ "<style type=\"text/css\">",
367 \ "<!--",
368 \ ".FoldColumn { text-decoration: none; white-space: pre; }",
369 \ ".open-fold .Folded { display: none; }",
370 \ ".open-fold .fulltext { display: inline; }",
371 \ ".open-fold .toggle-open { display: none; }",
372 \ ".closed-fold .toggle-closed { display: inline; }",
373 \ "",
374 \ ".closed-fold .fulltext { display: none; }",
375 \ ".closed-fold .Folded { display: inline; }",
376 \ ".closed-fold .toggle-open { display: inline; }",
377 \ ".closed-fold .toggle-closed { display: none; }",
378 \ '-->',
379 \ '</style>'
380 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100381 endif
382 else
383 " if we aren't doing any dynamic folding, no need for any special rules
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200384 call extend(s:lines, [
385 \ "<style type=\"text/css\">",
386 \ "<!--",
387 \ '-->',
388 \ "</style>",
389 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100390 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000391endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100392
393" insert javascript to toggle folds open and closed
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200394if exists("g:html_dynamic_folds")
395 call extend(s:lines, [
396 \ "",
397 \ "<script type='text/javascript'>",
398 \ "<!--",
399 \ "function toggleFold(objID)",
400 \ "{",
401 \ " var fold;",
402 \ " fold = document.getElementById(objID);",
403 \ " if(fold.className == 'closed-fold')",
404 \ " {",
405 \ " fold.className = 'open-fold';",
406 \ " }",
407 \ " else if (fold.className == 'open-fold')",
408 \ " {",
409 \ " fold.className = 'closed-fold';",
410 \ " }",
411 \ "}",
412 \ '-->',
413 \ "</script>"
414 \])
Bram Moolenaar5c736222010-01-06 20:54:52 +0100415endif
416
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200417if exists("g:html_no_pre")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200418 call extend(s:lines, ["</head>", "<body>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000419else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200420 call extend(s:lines, ["</head>", "<body>", "<pre>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000421endif
422
423exe s:orgwin . "wincmd w"
424
425" List of all id's
426let s:idlist = ","
427
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200428" set up progress bar in the status line
429if !s:html_no_progress && has("statusline")
430 " ProgressBar Indicator
431 let s:progressbar={}
432
433 " Progessbar specific functions
434 func! s:ProgressBar(title, max_value, winnr)
435 let pgb=copy(s:progressbar)
436 let pgb.title = a:title.' '
437 let pgb.max_value = a:max_value
438 let pgb.winnr = a:winnr
439 let pgb.cur_value = 0
440 let pgb.items = { 'title' : { 'color' : 'Statusline' },
441 \'bar' : { 'color' : 'Statusline' , 'fillcolor' : 'DiffDelete' , 'bg' : 'Statusline' } ,
442 \'counter' : { 'color' : 'Statusline' } }
443 let pgb.last_value = 0
444 let pgb.needs_redraw = 0
445 " Note that you must use len(split) instead of len() if you want to use
446 " unicode in title.
447 "
448 " Subtract 3 for spacing around the title.
449 " Subtract 4 for the percentage display.
450 " Subtract 2 for spacing before this.
451 " Subtract 2 more for the '|' on either side of the progress bar
452 let pgb.subtractedlen=len(split(pgb.title, '\zs'))+3+4+2+2
453 let pgb.max_len = 0
454 set laststatus=2
455 return pgb
456 endfun
457
458 " Function: progressbar.calculate_ticks() {{{1
459 func! s:progressbar.calculate_ticks(pb_len)
460 if a:pb_len<=0
461 let pb_len = 100
462 else
463 let pb_len = a:pb_len
464 endif
465 let self.progress_ticks = map(range(pb_len+1), "v:val * self.max_value / pb_len")
466 endfun
467
468 "Function: progressbar.paint()
469 func! s:progressbar.paint()
470 " Recalculate widths.
471 let max_len = winwidth(self.winnr)
472 let pb_len = 0
473 " always true on first call because of initial value of self.max_len
474 if max_len != self.max_len
475 let self.max_len = max_len
476
477 " Progressbar length
478 let pb_len = max_len - self.subtractedlen
479
480 call self.calculate_ticks(pb_len)
481
482 let self.needs_redraw = 1
483 let cur_value = 0
484 let self.pb_len = pb_len
485 else
486 " start searching at the last found index to make the search for the
487 " appropriate tick value normally take 0 or 1 comparisons
488 let cur_value = self.last_value
489 let pb_len = self.pb_len
490 endif
491
492 let cur_val_max = pb_len > 0 ? pb_len : 100
493
494 " find the current progress bar position based on precalculated thresholds
495 while cur_value < cur_val_max && self.cur_value > self.progress_ticks[cur_value]
496 let cur_value += 1
497 endwhile
498
499 " update progress bar
500 if self.last_value != cur_value || self.needs_redraw || self.cur_value == self.max_value
501 let self.needs_redraw = 1
502 let self.last_value = cur_value
503
504 let t_color = self.items.title.color
505 let b_fcolor = self.items.bar.fillcolor
506 let b_color = self.items.bar.color
507 let c_color = self.items.counter.color
508
509 let stl = "%#".t_color."#%-( ".self.title." %)".
510 \"%#".b_color."#".
511 \(pb_len>0 ?
512 \ ('|%#'.b_fcolor."#%-(".repeat(" ",cur_value)."%)".
513 \ '%#'.b_color."#".repeat(" ",pb_len-cur_value)."|"):
514 \ ('')).
515 \"%=%#".c_color."#%( ".printf("%3.d ",100*self.cur_value/self.max_value)."%% %)"
516 call setwinvar(self.winnr, '&stl', stl)
517 endif
518 endfun
519
520 func! s:progressbar.incr( ... )
521 let self.cur_value += (a:0 ? a:1 : 1)
522 " if we were making a general-purpose progress bar, we'd need to limit to a
523 " lower limit as well, but since we always increment with a positive value
524 " in this script, we only need limit the upper value
525 let self.cur_value = (self.cur_value > self.max_value ? self.max_value : self.cur_value)
526 call self.paint()
527 endfun
528 " }}}
529 if exists("g:html_dynamic_folds")
530 " to process folds we make two passes through each line
531 let s:pgb = s:ProgressBar("Processing folds:", line('$')*2, s:orgwin)
532 endif
533else
534 let s:html_no_progress=1
535endif
536
Bram Moolenaar5c736222010-01-06 20:54:52 +0100537" First do some preprocessing for dynamic folding. Do this for the entire file
538" so we don't accidentally start within a closed fold or something.
539let s:allfolds = []
540
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200541if exists("g:html_dynamic_folds")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100542 let s:lnum = 1
543 let s:end = line('$')
544 " save the fold text and set it to the default so we can find fold levels
545 let s:foldtext_save = &foldtext
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200546 setlocal foldtext&
Bram Moolenaar5c736222010-01-06 20:54:52 +0100547
548 " we will set the foldcolumn in the html to the greater of the maximum fold
549 " level and the current foldcolumn setting
550 let s:foldcolumn = &foldcolumn
551
552 " get all info needed to describe currently closed folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200553 while s:lnum <= s:end
Bram Moolenaar5c736222010-01-06 20:54:52 +0100554 if foldclosed(s:lnum) == s:lnum
555 " default fold text has '+-' and then a number of dashes equal to fold
556 " level, so subtract 2 from index of first non-dash after the dashes
557 " in order to get the fold level of the current fold
558 let s:level = match(foldtextresult(s:lnum), '+-*\zs[^-]') - 2
559 if s:level+1 > s:foldcolumn
560 let s:foldcolumn = s:level+1
561 endif
562 " store fold info for later use
563 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
564 call add(s:allfolds, s:newfold)
565 " open the fold so we can find any contained folds
566 execute s:lnum."foldopen"
567 else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200568 if !s:html_no_progress
569 call s:pgb.incr()
570 if s:pgb.needs_redraw
571 redrawstatus
572 let s:pgb.needs_redraw = 0
573 endif
574 endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100575 let s:lnum = s:lnum + 1
576 endif
577 endwhile
578
579 " close all folds to get info for originally open folds
580 silent! %foldclose!
581 let s:lnum = 1
582
583 " the originally open folds will be all folds we encounter that aren't
584 " already in the list of closed folds
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200585 while s:lnum <= s:end
Bram Moolenaar5c736222010-01-06 20:54:52 +0100586 if foldclosed(s:lnum) == s:lnum
587 " default fold text has '+-' and then a number of dashes equal to fold
588 " level, so subtract 2 from index of first non-dash after the dashes
589 " in order to get the fold level of the current fold
590 let s:level = match(foldtextresult(s:lnum), '+-*\zs[^-]') - 2
591 if s:level+1 > s:foldcolumn
592 let s:foldcolumn = s:level+1
593 endif
594 let s:newfold = {'firstline': s:lnum, 'lastline': foldclosedend(s:lnum), 'level': s:level,'type': "closed-fold"}
595 " only add the fold if we don't already have it
596 if empty(s:allfolds) || index(s:allfolds, s:newfold) == -1
597 let s:newfold.type = "open-fold"
598 call add(s:allfolds, s:newfold)
599 endif
600 " open the fold so we can find any contained folds
601 execute s:lnum."foldopen"
602 else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200603 if !s:html_no_progress
604 call s:pgb.incr()
605 if s:pgb.needs_redraw
606 redrawstatus
607 let s:pgb.needs_redraw = 0
608 endif
609 endif
Bram Moolenaar5c736222010-01-06 20:54:52 +0100610 let s:lnum = s:lnum + 1
611 endif
612 endwhile
613
614 " sort the folds so that we only ever need to look at the first item in the
615 " list of folds
616 call sort(s:allfolds, "s:FoldCompare")
617
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200618 let &l:foldtext = s:foldtext_save
Bram Moolenaar5c736222010-01-06 20:54:52 +0100619 unlet s:foldtext_save
620
621 " close all folds again so we can get the fold text as we go
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200622 silent! %foldclose!
Bram Moolenaar5c736222010-01-06 20:54:52 +0100623endif
624
625" Now loop over all lines in the original text to convert to html.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000626" Use html_start_line and html_end_line if they are set.
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200627if exists("g:html_start_line")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000628 let s:lnum = html_start_line
629 if s:lnum < 1 || s:lnum > line("$")
630 let s:lnum = 1
631 endif
632else
633 let s:lnum = 1
634endif
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200635if exists("g:html_end_line")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000636 let s:end = html_end_line
637 if s:end < s:lnum || s:end > line("$")
638 let s:end = line("$")
639 endif
640else
641 let s:end = line("$")
642endif
643
Bram Moolenaar5c736222010-01-06 20:54:52 +0100644" stack to keep track of all the folds containing the current line
645let s:foldstack = []
646
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200647if !s:html_no_progress
648 let s:pgb = s:ProgressBar("Processing lines:", s:end - s:lnum + 1, s:orgwin)
649endif
650
Bram Moolenaar5c736222010-01-06 20:54:52 +0100651if s:numblines
652 let s:margin = strlen(s:end) + 1
653else
654 let s:margin = 0
655endif
656
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200657if has('folding') && !exists('g:html_ignore_folding')
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000658 let s:foldfillchar = &fillchars[matchend(&fillchars, 'fold:')]
659 if s:foldfillchar == ''
660 let s:foldfillchar = '-'
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000661 endif
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000662endif
663let s:difffillchar = &fillchars[matchend(&fillchars, 'diff:')]
664if s:difffillchar == ''
665 let s:difffillchar = '-'
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000666endif
667
Bram Moolenaar5c736222010-01-06 20:54:52 +0100668let s:foldId = 0
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000669
Bram Moolenaar071d4272004-06-13 20:20:40 +0000670while s:lnum <= s:end
671
Bram Moolenaar47136d72004-10-12 20:02:24 +0000672 " If there are filler lines for diff mode, show these above the line.
673 let s:filler = diff_filler(s:lnum)
674 if s:filler > 0
675 let s:n = s:filler
676 while s:n > 0
Bram Moolenaar5c736222010-01-06 20:54:52 +0100677 let s:new = repeat(s:difffillchar, 3)
Bram Moolenaar47136d72004-10-12 20:02:24 +0000678
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200679 if s:n > 2 && s:n < s:filler && !exists("g:html_whole_filler")
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000680 let s:new = s:new . " " . s:filler . " inserted lines "
681 let s:n = 2
682 endif
683
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200684 if !exists("g:html_no_pre")
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000685 " HTML line wrapping is off--go ahead and fill to the margin
Bram Moolenaar5c736222010-01-06 20:54:52 +0100686 let s:new = s:new . repeat(s:difffillchar, &columns - strlen(s:new) - s:margin)
687 else
688 let s:new = s:new . repeat(s:difffillchar, 3)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000689 endif
690
691 let s:new = s:HtmlFormat(s:new, "DiffDelete")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100692 if s:numblines
693 " Indent if line numbering is on; must be after escaping.
694 let s:new = repeat(s:LeadingSpace, s:margin) . s:new
695 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200696 call add(s:lines, s:new.s:HtmlEndline)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000697
Bram Moolenaar47136d72004-10-12 20:02:24 +0000698 let s:n = s:n - 1
699 endwhile
700 unlet s:n
701 endif
702 unlet s:filler
703
704 " Start the line with the line number.
705 if s:numblines
Bram Moolenaar5c736222010-01-06 20:54:52 +0100706 let s:numcol = repeat(' ', s:margin - 1 - strlen(s:lnum)) . s:lnum . ' '
Bram Moolenaar47136d72004-10-12 20:02:24 +0000707 else
Bram Moolenaar5c736222010-01-06 20:54:52 +0100708 let s:numcol = ""
Bram Moolenaar47136d72004-10-12 20:02:24 +0000709 endif
710
Bram Moolenaar5c736222010-01-06 20:54:52 +0100711 let s:new = ""
712
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200713 if has('folding') && !exists('g:html_ignore_folding') && foldclosed(s:lnum) > -1 && !exists('g:html_dynamic_folds')
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000714 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100715 " This is the beginning of a folded block (with no dynamic folding)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000716 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100717 let s:new = s:numcol . foldtextresult(s:lnum)
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200718 if !exists("g:html_no_pre")
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000719 " HTML line wrapping is off--go ahead and fill to the margin
720 let s:new = s:new . repeat(s:foldfillchar, &columns - strlen(s:new))
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000721 endif
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000722
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000723 let s:new = s:HtmlFormat(s:new, "Folded")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000724
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000725 " Skip to the end of the fold
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200726 let s:new_lnum = foldclosedend(s:lnum)
727
728 if !s:html_no_progress
729 call s:pgb.incr(s:new_lnum - s:lnum)
730 endif
731
732 let s:lnum = s:new_lnum
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000733
734 else
735 "
Bram Moolenaar5c736222010-01-06 20:54:52 +0100736 " A line that is not folded, or doing dynamic folding.
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000737 "
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000738 let s:line = getline(s:lnum)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000739 let s:len = strlen(s:line)
740
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200741 if exists("g:html_dynamic_folds")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100742 " First insert a closing for any open folds that end on this line
743 while !empty(s:foldstack) && get(s:foldstack,0).lastline == s:lnum-1
744 let s:new = s:new."</span></span>"
745 call remove(s:foldstack, 0)
746 endwhile
747
748 " Now insert an opening any new folds that start on this line
749 let s:firstfold = 1
750 while !empty(s:allfolds) && get(s:allfolds,0).firstline == s:lnum
751 let s:foldId = s:foldId + 1
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200752 let s:new .= "<span id='"
753 let s:new .= (exists('g:html_diff_win_num') ? "win".g:html_diff_win_num : "")
754 let s:new .= "fold".s:foldId."' class='".s:allfolds[0].type."'>"
755
Bram Moolenaar5c736222010-01-06 20:54:52 +0100756
757 " Unless disabled, add a fold column for the opening line of a fold.
758 "
759 " Note that dynamic folds require using css so we just use css to take
760 " care of the leading spaces rather than using &nbsp; in the case of
761 " html_no_pre to make it easier
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200762 if !exists("g:html_no_foldcolumn")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100763 " add fold column that can open the new fold
764 if s:allfolds[0].level > 1 && s:firstfold
765 let s:new = s:new . "<a class='toggle-open FoldColumn' href='javascript:toggleFold(\"fold".s:foldstack[0].id."\")'>"
766 let s:new = s:new . repeat('|', s:allfolds[0].level - 1) . "</a>"
767 endif
768 let s:new = s:new . "<a class='toggle-open FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>+</a>"
769 let s:new = s:new . "<a class='toggle-open "
770 " If this is not the last fold we're opening on this line, we need
771 " to keep the filler spaces hidden if the fold is opened by mouse
772 " hover. If it is the last fold to open in the line, we shouldn't hide
773 " them, so don't apply the toggle-filler class.
774 if get(s:allfolds, 1, {'firstline': 0}).firstline == s:lnum
775 let s:new = s:new . "toggle-filler "
776 endif
777 let s:new = s:new . "FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>"
778 let s:new = s:new . repeat(" ", s:foldcolumn - s:allfolds[0].level) . "</a>"
779
780 " add fold column that can close the new fold
781 let s:new = s:new . "<a class='toggle-closed FoldColumn' href='javascript:toggleFold(\"fold".s:foldId."\")'>"
782 if s:firstfold
783 let s:new = s:new . repeat('|', s:allfolds[0].level - 1)
784 endif
785 let s:new = s:new . "-"
786 " only add spaces if we aren't opening another fold on the same line
787 if get(s:allfolds, 1, {'firstline': 0}).firstline != s:lnum
788 let s:new = s:new . repeat(" ", s:foldcolumn - s:allfolds[0].level)
789 endif
790 let s:new = s:new . "</a>"
791 let s:firstfold = 0
792 endif
793
794 " add fold text, moving the span ending to the next line so collapsing
795 " of folds works correctly
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200796 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 +0100797 let s:new = s:new . "<span class='fulltext'>"
798
799 " open the fold now that we have the fold text to allow retrieval of
800 " fold text for subsequent folds
801 execute s:lnum."foldopen"
802 call insert(s:foldstack, remove(s:allfolds,0))
803 let s:foldstack[0].id = s:foldId
804 endwhile
805
806 " Unless disabled, add a fold column for other lines.
807 "
808 " Note that dynamic folds require using css so we just use css to take
809 " care of the leading spaces rather than using &nbsp; in the case of
810 " html_no_pre to make it easier
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200811 if !exists("g:html_no_foldcolumn")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100812 if empty(s:foldstack)
813 " add the empty foldcolumn for unfolded lines
814 let s:new = s:new . s:HtmlFormat(repeat(' ', s:foldcolumn), "FoldColumn")
815 else
816 " add the fold column for folds not on the opening line
817 if get(s:foldstack, 0).firstline < s:lnum
818 let s:new = s:new . "<a class='FoldColumn' href='javascript:toggleFold(\"fold".s:foldstack[0].id."\")'>"
819 let s:new = s:new . repeat('|', s:foldstack[0].level)
820 let s:new = s:new . repeat(' ', s:foldcolumn - s:foldstack[0].level) . "</a>"
821 endif
822 endif
823 endif
824 endif
825
826 " Now continue with the unfolded line text
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000827 if s:numblines
Bram Moolenaar5c736222010-01-06 20:54:52 +0100828 let s:new = s:new . s:HtmlFormat(s:numcol, "lnr")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000829 endif
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000830
Bram Moolenaar47136d72004-10-12 20:02:24 +0000831 " Get the diff attribute, if any.
832 let s:diffattr = diff_hlID(s:lnum, 1)
833
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000834 " Loop over each character in the line
835 let s:col = 1
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000836 while s:col <= s:len || (s:col == 1 && s:diffattr)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000837 let s:startcol = s:col " The start column for processing text
Bram Moolenaar47136d72004-10-12 20:02:24 +0000838 if s:diffattr
839 let s:id = diff_hlID(s:lnum, s:col)
840 let s:col = s:col + 1
841 " Speed loop (it's small - that's the trick)
842 " Go along till we find a change in hlID
843 while s:col <= s:len && s:id == diff_hlID(s:lnum, s:col) | let s:col = s:col + 1 | endwhile
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200844 if s:len < &columns && !exists("g:html_no_pre")
Bram Moolenaar47136d72004-10-12 20:02:24 +0000845 " Add spaces at the end to mark the changed line.
Bram Moolenaar5c736222010-01-06 20:54:52 +0100846 let s:line = s:line . repeat(' ', &columns - virtcol([s:lnum, s:len]) - s:margin)
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000847 let s:len = &columns
848 endif
Bram Moolenaar47136d72004-10-12 20:02:24 +0000849 else
850 let s:id = synID(s:lnum, s:col, 1)
851 let s:col = s:col + 1
852 " Speed loop (it's small - that's the trick)
853 " Go along till we find a change in synID
854 while s:col <= s:len && s:id == synID(s:lnum, s:col, 1) | let s:col = s:col + 1 | endwhile
855 endif
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000856
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000857 " Expand tabs
858 let s:expandedtab = strpart(s:line, s:startcol - 1, s:col - s:startcol)
Bram Moolenaar5c736222010-01-06 20:54:52 +0100859 let s:offset = 0
860 let s:idx = stridx(s:expandedtab, "\t")
861 while s:idx >= 0
862 if has("multi_byte_encoding")
863 if s:startcol + s:idx == 1
864 let s:i = &ts
865 else
866 if s:idx == 0
867 let s:prevc = matchstr(s:line, '.\%' . (s:startcol + s:idx + s:offset) . 'c')
868 else
869 let s:prevc = matchstr(s:expandedtab, '.\%' . (s:idx + 1) . 'c')
870 endif
871 let s:vcol = virtcol([s:lnum, s:startcol + s:idx + s:offset - len(s:prevc)])
872 let s:i = &ts - (s:vcol % &ts)
873 endif
874 let s:offset -= s:i - 1
875 else
876 let s:i = &ts - ((s:idx + s:startcol - 1) % &ts)
877 endif
878 let s:expandedtab = substitute(s:expandedtab, '\t', repeat(' ', s:i), '')
879 let s:idx = stridx(s:expandedtab, "\t")
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000880 endwhile
881
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000882 " Output the text with the same synID, with class set to {s:id_name}
883 let s:id = synIDtrans(s:id)
884 let s:id_name = synIDattr(s:id, "name", s:whatterm)
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +0000885 let s:new = s:new . s:HtmlFormat(s:expandedtab, s:id_name)
Bram Moolenaar7b0294c2004-10-11 10:16:09 +0000886 endwhile
887 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000888
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200889 call extend(s:lines, split(s:new.s:HtmlEndline, '\n'))
890 if !s:html_no_progress && s:pgb.needs_redraw
891 redrawstatus
892 let s:pgb.needs_redraw = 0
893 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 let s:lnum = s:lnum + 1
Bram Moolenaar313b7232007-05-05 17:56:55 +0000895
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200896 if !s:html_no_progress
897 call s:pgb.incr()
898 endif
899endwhile
900
901if exists("g:html_dynamic_folds")
Bram Moolenaar5c736222010-01-06 20:54:52 +0100902 " finish off any open folds
903 while !empty(s:foldstack)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200904 let s:lines[-1].="</span></span>"
Bram Moolenaar5c736222010-01-06 20:54:52 +0100905 call remove(s:foldstack, 0)
906 endwhile
907
908 " add fold column to the style list if not already there
909 let s:id = hlID('FoldColumn')
910 if stridx(s:idlist, "," . s:id . ",") == -1
911 let s:idlist = s:idlist . s:id . ","
912 endif
913endif
914
Bram Moolenaar313b7232007-05-05 17:56:55 +0000915" Close off the font tag that encapsulates the whole <body>
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200916if !exists("g:html_use_css")
917 let s:lines[-1].="</font>"
Bram Moolenaar313b7232007-05-05 17:56:55 +0000918endif
919
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200920if exists("g:html_no_pre")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200921 call extend(s:lines, ["</body>", "</html>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000922else
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200923 call extend(s:lines, ["</pre>", "</body>", "</html>"])
Bram Moolenaar071d4272004-06-13 20:20:40 +0000924endif
925
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200926exe s:newwin . "wincmd w"
927call setline(1, s:lines)
928unlet s:lines
Bram Moolenaar071d4272004-06-13 20:20:40 +0000929
930" Now, when we finally know which, we define the colors and styles
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200931if exists("g:html_use_css")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000932 1;/<style type="text/+1
933endif
934
935" Find out the background and foreground color.
936let s:fgc = s:HtmlColor(synIDattr(hlID("Normal"), "fg#", s:whatterm))
937let s:bgc = s:HtmlColor(synIDattr(hlID("Normal"), "bg#", s:whatterm))
938if s:fgc == ""
939 let s:fgc = ( &background == "dark" ? "#ffffff" : "#000000" )
940endif
941if s:bgc == ""
942 let s:bgc = ( &background == "dark" ? "#000000" : "#ffffff" )
943endif
944
945" Normal/global attributes
946" For Netscape 4, set <body> attributes too, though, strictly speaking, it's
947" incorrect.
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200948if exists("g:html_use_css")
Bram Moolenaarb02cbe32010-07-11 22:38:52 +0200949 if exists("g:html_no_pre")
Bram Moolenaar313b7232007-05-05 17:56:55 +0000950 execute "normal! A\nbody { color: " . s:fgc . "; background-color: " . s:bgc . "; font-family: ". s:htmlfont ."; }\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000951 else
Bram Moolenaar313b7232007-05-05 17:56:55 +0000952 execute "normal! A\npre { font-family: ". s:htmlfont ."; color: " . s:fgc . "; background-color: " . s:bgc . "; }\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +0000953 yank
954 put
955 execute "normal! ^cwbody\e"
956 endif
957else
Bram Moolenaar5c736222010-01-06 20:54:52 +0100958 execute '%s:<body>:<body bgcolor="' . s:bgc . '" text="' . s:fgc . '"><font face="'. s:htmlfont .'">'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000959endif
960
961" Line numbering attributes
962if s:numblines
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200963 if exists("g:html_use_css")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000964 execute "normal! A\n.lnr { " . s:CSS1(hlID("LineNr")) . "}\e"
965 else
Bram Moolenaar8424a622006-04-19 21:23:36 +0000966 execute '%s+^<span class="lnr">\([^<]*\)</span>+' . s:HtmlOpening(hlID("LineNr")) . '\1' . s:HtmlClosing(hlID("LineNr")) . '+g'
Bram Moolenaar071d4272004-06-13 20:20:40 +0000967 endif
968endif
969
970" Gather attributes for all other classes
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200971let s:idlist_str = s:idlist
972unlet s:idlist
973let s:idlist = split(s:idlist_str, ',')
974if !s:html_no_progress && !empty(s:idlist)
975 let s:pgb = s:ProgressBar("Processing classes:", len(s:idlist),s:newwin)
976endif
977while !empty(s:idlist)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000978 let s:attr = ""
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200979 let s:id = remove(s:idlist, 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000980 let s:attr = s:CSS1(s:id)
981 let s:id_name = synIDattr(s:id, "name", s:whatterm)
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200982
Bram Moolenaar071d4272004-06-13 20:20:40 +0000983 " If the class has some attributes, export the style, otherwise DELETE all
984 " its occurences to make the HTML shorter
985 if s:attr != ""
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200986 if exists("g:html_use_css")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000987 execute "normal! A\n." . s:id_name . " { " . s:attr . "}"
988 else
989 execute '%s+<span class="' . s:id_name . '">\([^<]*\)</span>+' . s:HtmlOpening(s:id) . '\1' . s:HtmlClosing(s:id) . '+g'
990 endif
991 else
Bram Moolenaar313b7232007-05-05 17:56:55 +0000992 execute '%s+<span class="' . s:id_name . '">\([^<]*\)</span>+\1+ge'
Bram Moolenaar5c736222010-01-06 20:54:52 +0100993 if exists("s:html_use_css")
Bram Moolenaar071d4272004-06-13 20:20:40 +0000994 1;/<style type="text/+1
995 endif
996 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +0200997
998 if !s:html_no_progress
999 call s:pgb.incr()
1000 if s:pgb.needs_redraw
1001 redrawstatus
1002 let s:pgb.needs_redraw = 0
1003 sleep 50m
1004 endif
1005 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001006endwhile
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001007unlet s:idlist_str
Bram Moolenaar071d4272004-06-13 20:20:40 +00001008
1009" Add hyperlinks
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001010%s+\(https\=://\S\{-}\)\(\([.,;:}]\=\(\s\|$\)\)\|[\\"'<>]\|&gt;\|&lt;\|&quot;\)+<a href="\1">\1</a>\2+ge
Bram Moolenaar071d4272004-06-13 20:20:40 +00001011
1012" The DTD
Bram Moolenaarb02cbe32010-07-11 22:38:52 +02001013if exists("g:use_xhtml")
Bram Moolenaar313b7232007-05-05 17:56:55 +00001014 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\">\e"
1015else
1016 exe "normal! gg0i<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n\e"
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001017endif
1018
Bram Moolenaarb02cbe32010-07-11 22:38:52 +02001019if exists("g:use_xhtml")
Bram Moolenaar1cd871b2004-12-19 22:46:22 +00001020 exe "normal! gg/<html/e\na xmlns=\"http://www.w3.org/1999/xhtml\"\e"
Bram Moolenaar071d4272004-06-13 20:20:40 +00001021endif
1022
1023" Cleanup
1024%s:\s\+$::e
1025
1026" Restore old settings
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001027let &l:foldmethod = s:old_fdm
Bram Moolenaar071d4272004-06-13 20:20:40 +00001028let &report = s:old_report
1029let &title = s:old_title
1030let &icon = s:old_icon
1031let &paste = s:old_paste
1032let &magic = s:old_magic
1033let @/ = s:old_search
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001034let &more = s:old_more
Bram Moolenaar071d4272004-06-13 20:20:40 +00001035exe s:orgwin . "wincmd w"
1036let &l:et = s:old_et
1037exe s:newwin . "wincmd w"
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001038exec 'resize' s:old_winheight
1039let &l:winfixheight = s:old_winfixheight
Bram Moolenaar071d4272004-06-13 20:20:40 +00001040
Bram Moolenaar313b7232007-05-05 17:56:55 +00001041" Reset old <pre> settings
1042if exists("s:old_html_no_pre")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001043 let g:html_no_pre = s:old_html_no_pre
Bram Moolenaar313b7232007-05-05 17:56:55 +00001044 unlet s:old_html_no_pre
Bram Moolenaarb02cbe32010-07-11 22:38:52 +02001045elseif exists("g:html_no_pre")
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001046 unlet g:html_no_pre
Bram Moolenaar313b7232007-05-05 17:56:55 +00001047endif
1048
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001049call setwinvar(s:orgwin,'&stl', s:origwin_stl)
1050call setwinvar(s:newwin,'&stl', s:newwin_stl)
1051let &ls=s:ls
1052
Bram Moolenaar071d4272004-06-13 20:20:40 +00001053" Save a little bit of memory (worth doing?)
Bram Moolenaar313b7232007-05-05 17:56:55 +00001054unlet s:htmlfont
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001055unlet s:old_et s:old_paste s:old_icon s:old_report s:old_title s:old_search s:old_magic s:old_more s:old_fdm s:old_winheight s:old_winfixheight
1056unlet s:whatterm s:idlist s:lnum s:end s:margin s:fgc s:bgc
Bram Moolenaar35a9aaa2004-10-24 19:23:07 +00001057unlet! s:col s:id s:attr s:len s:line s:new s:expandedtab s:numblines
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001058unlet! s:orgwin s:newwin s:orgbufnr s:idx s:i s:offset s:ls s:origwin_stl s:newwin_stl
Bram Moolenaar05159a02005-02-26 23:04:13 +00001059if !v:profiling
1060 delfunc s:HtmlColor
1061 delfunc s:HtmlFormat
1062 delfunc s:CSS1
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001063 if !exists("g:html_use_css")
Bram Moolenaar05159a02005-02-26 23:04:13 +00001064 delfunc s:HtmlOpening
1065 delfunc s:HtmlClosing
1066 endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001067 if exists("g:html_dynamic_folds")
1068 delfunc s:FoldCompare
1069 endif
1070
1071 if !s:html_no_progress
1072 delfunc s:ProgressBar
1073 delfunc s:progressbar.paint
1074 delfunc s:progressbar.incr
1075 unlet s:pgb s:progressbar
1076 endif
Bram Moolenaar071d4272004-06-13 20:20:40 +00001077endif
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001078
1079unlet! s:new_lnum s:diffattr s:difffillchar s:foldfillchar s:HtmlSpace s:LeadingSpace s:HtmlEndline s:firstfold s:foldcolumn
Bram Moolenaar5c736222010-01-06 20:54:52 +01001080unlet s:foldstack s:allfolds s:foldId s:numcol
1081
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001082unlet! s:html_no_progress
Bram Moolenaar5c736222010-01-06 20:54:52 +01001083
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001084call tohtml#RestoreUserSettings(s:old_html_settings)
1085unlet s:old_html_settings
Bram Moolenaar5c736222010-01-06 20:54:52 +01001086
1087let &cpo = s:cpo_sav
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001088unlet! s:cpo_sav
Bram Moolenaar5c736222010-01-06 20:54:52 +01001089
Bram Moolenaar349b2fb2010-07-16 20:35:36 +02001090" Make sure any patches will probably use consistent indent
1091" vim: noet sw=2 sts=2