2012-05-01 10:14:42 -04:00
|
|
|
"============================================================================
|
2012-05-01 10:23:22 -04:00
|
|
|
"File: w3.vim
|
2012-05-01 10:14:42 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Maintainer: Martin Grenfell <martin.grenfell at gmail dot com>
|
|
|
|
"License: This program is free software. It comes without any warranty,
|
|
|
|
" to the extent permitted by applicable law. You can redistribute
|
|
|
|
" it and/or modify it under the terms of the Do What The Fuck You
|
|
|
|
" Want To Public License, Version 2, as published by Sam Hocevar.
|
|
|
|
" See http://sam.zoy.org/wtfpl/COPYING for more details.
|
|
|
|
"
|
|
|
|
"============================================================================
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_html_w3_checker")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_html_w3_checker=1
|
|
|
|
|
2013-01-27 15:08:30 -05:00
|
|
|
function! SyntaxCheckers_html_w3_IsAvailable()
|
|
|
|
return executable('curl') && executable('sed')
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! SyntaxCheckers_html_w3_GetLocList()
|
2012-05-01 10:14:42 -04:00
|
|
|
let makeprg2="curl -s -F output=text -F \"uploaded_file=@".expand('%:p').";type=text/html\" http://validator.w3.org/check \\| sed -n -e '/\<em\>Line\.\*/ \{ N; s/\\n//; N; s/\\n//; /msg/p; \}' -e ''/msg_warn/p'' -e ''/msg_info/p'' \\| sed -e 's/[ ]\\+/ /g' -e 's/\<[\^\>]\*\>//g' -e 's/\^[ ]//g'"
|
|
|
|
let errorformat2='Line %l\, Column %c: %m'
|
2013-04-15 04:21:52 -04:00
|
|
|
let loclist = SyntasticMake({ 'makeprg': makeprg2, 'errorformat': errorformat2, 'defaults': {'bufnr': bufnr("")} })
|
2012-05-01 10:14:42 -04:00
|
|
|
|
2013-04-15 04:21:52 -04:00
|
|
|
for n in range(len(loclist))
|
|
|
|
let loclist[n]['type'] = loclist[n]['lnum'] ? 'E' : 'W'
|
|
|
|
endfor
|
2012-05-01 10:14:42 -04:00
|
|
|
|
|
|
|
return loclist
|
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'html',
|
|
|
|
\ 'name': 'w3'})
|
|
|
|
|