2013-04-05 04:47:17 -04:00
|
|
|
"============================================================================
|
|
|
|
"File: validator.vim
|
2017-09-15 14:04:16 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
2013-04-05 04:47:17 -04:00
|
|
|
"Maintainer: LCD 47 <lcd047 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.
|
|
|
|
"
|
|
|
|
"============================================================================
|
|
|
|
|
2015-03-25 12:44:34 -04:00
|
|
|
if exists('g:loaded_syntastic_html_validator_checker')
|
2013-04-05 04:47:17 -04:00
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let g:loaded_syntastic_html_validator_checker=1
|
|
|
|
|
2019-01-22 08:06:50 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2013-04-05 04:47:17 -04:00
|
|
|
|
2019-01-22 08:06:50 -05:00
|
|
|
" Constants {{{1
|
2013-04-05 04:47:17 -04:00
|
|
|
|
2019-01-22 08:06:50 -05:00
|
|
|
let s:DEFAULTS = {
|
|
|
|
\ 'api': 'https://validator.nu/',
|
|
|
|
\ 'nsfilter': '',
|
|
|
|
\ 'parser': '',
|
|
|
|
\ 'schema': '' }
|
2013-04-05 04:47:17 -04:00
|
|
|
|
2019-01-22 08:06:50 -05:00
|
|
|
let s:CONTENT_TYPE = {
|
|
|
|
\ 'html': 'text/html',
|
|
|
|
\ 'svg': 'image/svg+xml',
|
|
|
|
\ 'xhtm': 'application/xhtml+xml' }
|
|
|
|
|
|
|
|
" }}}1
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2019-01-22 08:06:50 -05:00
|
|
|
" @vimlint(EVL101, 1, l:api)
|
|
|
|
" @vimlint(EVL101, 1, l:nsfilter)
|
|
|
|
" @vimlint(EVL101, 1, l:parser)
|
|
|
|
" @vimlint(EVL101, 1, l:schema)
|
|
|
|
function! SyntaxCheckers_html_validator_GetLocList() dict " {{{1
|
2017-02-15 01:48:45 -05:00
|
|
|
let buf = bufnr('')
|
2019-01-22 08:06:50 -05:00
|
|
|
let type = self.getFiletype()
|
2017-02-15 01:48:45 -05:00
|
|
|
let fname = syntastic#util#shescape(fnamemodify(bufname(buf), ':p'))
|
2019-01-22 08:06:50 -05:00
|
|
|
|
|
|
|
for key in keys(s:DEFAULTS)
|
|
|
|
let l:{key} = syntastic#util#var(type . '_validator_' . key, get(s:DEFAULTS, key))
|
|
|
|
endfor
|
|
|
|
let ctype = get(s:CONTENT_TYPE, type, '')
|
|
|
|
|
|
|
|
" vint: -ProhibitUsingUndeclaredVariable
|
2015-03-15 13:43:50 -04:00
|
|
|
let makeprg = self.getExecEscaped() . ' -q -L -s --compressed -F out=gnu -F asciiquotes=yes' .
|
2019-01-22 08:06:50 -05:00
|
|
|
\ (nsfilter !=# '' ? ' -F nsfilter=' . syntastic#util#shescape(nsfilter) : '') .
|
|
|
|
\ (parser !=# '' ? ' -F parser=' . parser : '') .
|
|
|
|
\ (schema !=# '' ? ' -F schema=' . syntastic#util#shescape(schema) : '') .
|
|
|
|
\ ' -F doc=@' . fname .
|
|
|
|
\ (ctype !=# '' ? '\;type=' . ctype : '') .
|
|
|
|
\ '\;filename=' . fname .
|
|
|
|
\ ' ' . api
|
|
|
|
" vint: ProhibitUsingUndeclaredVariable
|
2013-08-01 06:50:50 -04:00
|
|
|
|
2013-04-05 04:47:17 -04:00
|
|
|
let errorformat =
|
|
|
|
\ '%E"%f":%l: %trror: %m,' .
|
|
|
|
\ '%E"%f":%l-%\d%\+: %trror: %m,' .
|
|
|
|
\ '%E"%f":%l%\%.%c: %trror: %m,' .
|
|
|
|
\ '%E"%f":%l%\%.%c-%\d%\+%\%.%\d%\+: %trror: %m,' .
|
|
|
|
\ '%E"%f":%l: %trror fatal: %m,' .
|
|
|
|
\ '%E"%f":%l-%\d%\+: %trror fatal: %m,' .
|
|
|
|
\ '%E"%f":%l%\%.%c: %trror fatal: %m,' .
|
|
|
|
\ '%E"%f":%l%\%.%c-%\d%\+%\%.%\d%\+: %trror fatal: %m,' .
|
|
|
|
\ '%W"%f":%l: info %tarning: %m,' .
|
|
|
|
\ '%W"%f":%l-%\d%\+: info %tarning: %m,' .
|
|
|
|
\ '%W"%f":%l%\%.%c: info %tarning: %m,' .
|
|
|
|
\ '%W"%f":%l%\%.%c-%\d%\+%\%.%\d%\+: info %tarning: %m'
|
2013-08-01 06:50:50 -04:00
|
|
|
|
2013-08-01 06:40:29 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2014-02-26 03:31:38 -05:00
|
|
|
\ 'preprocess': 'validator',
|
2013-08-01 06:50:50 -04:00
|
|
|
\ 'returns': [0] })
|
2019-01-22 08:06:50 -05:00
|
|
|
endfunction " }}}1
|
|
|
|
" @vimlint(EVL101, 0, l:schema)
|
|
|
|
" @vimlint(EVL101, 0, l:parser)
|
|
|
|
" @vimlint(EVL101, 0, l:nsfilter)
|
|
|
|
" @vimlint(EVL101, 0, l:api)
|
2013-04-05 04:47:17 -04:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'html',
|
2014-01-03 03:43:01 -05:00
|
|
|
\ 'name': 'validator',
|
|
|
|
\ 'exec': 'curl' })
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
2015-01-04 05:46:54 -05:00
|
|
|
" vim: set sw=4 sts=4 et fdm=marker:
|