2011-11-07 17:00:44 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: xml.vim
|
2017-09-15 14:04:16 -04:00
|
|
|
"Description: Syntax checking plugin for syntastic
|
2011-11-07 17:00:44 -05:00
|
|
|
"Maintainer: Sebastian Kusnier <sebastian at kusnier dot net>
|
|
|
|
"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-03-20 05:31:45 -04:00
|
|
|
|
2015-03-25 12:44:34 -04:00
|
|
|
if exists('g:loaded_syntastic_xml_xmllint_checker')
|
2013-02-21 10:50:41 -05:00
|
|
|
finish
|
|
|
|
endif
|
2014-01-03 04:29:08 -05:00
|
|
|
let g:loaded_syntastic_xml_xmllint_checker = 1
|
|
|
|
|
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
2011-12-14 08:58:44 -05:00
|
|
|
|
|
|
|
" You can use a local installation of DTDs to significantly speed up validation
|
|
|
|
" and allow you to validate XML data without network access, see xmlcatalog(1)
|
|
|
|
" and http://www.xmlsoft.org/catalog.html for more information.
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_xml_xmllint_GetLocList() dict
|
2015-02-09 11:34:26 -05:00
|
|
|
let makeprg = self.makeprgBuild({
|
2015-02-10 03:42:13 -05:00
|
|
|
\ 'args': '--xinclude --postvalid',
|
2015-02-09 11:34:26 -05:00
|
|
|
\ 'args_after': '--noout' })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-05-14 12:36:20 -04:00
|
|
|
let errorformat=
|
|
|
|
\ '%E%f:%l: error : %m,' .
|
|
|
|
\ '%-G%f:%l: validity error : Validation failed: no DTD found %m,' .
|
|
|
|
\ '%W%f:%l: warning : %m,' .
|
|
|
|
\ '%W%f:%l: validity warning : %m,' .
|
|
|
|
\ '%E%f:%l: validity error : %m,' .
|
|
|
|
\ '%E%f:%l: parser error : %m,' .
|
|
|
|
\ '%E%f:%l: %m,' .
|
|
|
|
\ '%-Z%p^,' .
|
|
|
|
\ '%-G%.%#'
|
2011-11-07 17:00:44 -05:00
|
|
|
|
2013-05-31 14:05:45 -04:00
|
|
|
return SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
2013-07-12 01:08:41 -04:00
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'returns': [0, 1, 2, 3, 4, 5] })
|
2011-11-07 17:00:44 -05:00
|
|
|
endfunction
|
2013-01-27 15:08:30 -05:00
|
|
|
|
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'xml',
|
|
|
|
\ 'name': 'xmllint'})
|
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:
|