mirror of
https://github.com/neovim/neovim.git
synced 2025-11-05 02:04:29 +00:00
vim-patch:b23c1fc59650 (#28702)
runtime(doc): Add Makefile for the Vim documentation on Windows (vim/vim#13467)
* Makefile for the Vim documentation on Windows
* Corrected comments
b23c1fc596
Co-authored-by: Restorer <69863286+RestorerZ@users.noreply.github.com>
This commit is contained in:
@@ -6,21 +6,41 @@
|
|||||||
" Written by Christian Brabandt.
|
" Written by Christian Brabandt.
|
||||||
|
|
||||||
func Test_check_URLs()
|
func Test_check_URLs()
|
||||||
|
"20.10.23, added by Restorer
|
||||||
if has("win32")
|
if has("win32")
|
||||||
echoerr "Doesn't work on MS-Windows"
|
let s:outdev = 'nul'
|
||||||
return
|
else
|
||||||
|
let s:outdev = '/dev/null'
|
||||||
endif
|
endif
|
||||||
|
" Restorer: For Windows users. If "curl" or "weget" is installed on the system
|
||||||
|
" but not in %PATH%, add the full routes for them to this environment variable.
|
||||||
if executable('curl')
|
if executable('curl')
|
||||||
" Note: does not follow redirects!
|
" Note: does not follow redirects!
|
||||||
let s:command = 'curl --silent --fail --output /dev/null --head '
|
let s:command1 = 'curl --silent --fail --output ' ..s:outdev.. ' --head '
|
||||||
|
let s:command2 = ""
|
||||||
elseif executable('wget')
|
elseif executable('wget')
|
||||||
" Note: only allow a couple of redirects
|
" Note: only allow a couple of redirects
|
||||||
let s:command = 'wget --quiet -S --spider --max-redirect=2 --timeout=5 --tries=2 -O /dev/null '
|
let s:command1 = 'wget --quiet -S --spider --max-redirect=2 --timeout=5 --tries=2 -O ' ..s:outdev.. ' '
|
||||||
|
let s:command2 = ""
|
||||||
|
elseif has("win32") "20.10.23, added by Restorer
|
||||||
|
if executable('powershell')
|
||||||
|
if 2 == system('powershell -nologo -noprofile "$psversiontable.psversion.major"')
|
||||||
|
echoerr 'To work in OS Windows requires the program "PowerShell" version 3.0 or higher'
|
||||||
|
return
|
||||||
|
endif
|
||||||
|
let s:command1 =
|
||||||
|
\ "powershell -nologo -noprofile \"{[Net.ServicePointManager]::SecurityProtocol = 'Tls12, Tls11, Tls, Ssl3'};try{(Invoke-WebRequest -MaximumRedirection 2 -TimeoutSec 5 -Uri "
|
||||||
|
let s:command2 = ').StatusCode}catch{exit [int]$Error[0].Exception.Status}"'
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
echoerr 'Only works when "curl" or "wget" is available'
|
echoerr 'Only works when "curl" or "wget", or "powershell" is available'
|
||||||
return
|
return
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
" Do the testing.
|
||||||
|
set report =999
|
||||||
|
set nomore shm +=s
|
||||||
|
|
||||||
let pat='\(https\?\|ftp\)://[^\t* ]\+'
|
let pat='\(https\?\|ftp\)://[^\t* ]\+'
|
||||||
exe 'helpgrep' pat
|
exe 'helpgrep' pat
|
||||||
helpclose
|
helpclose
|
||||||
@@ -36,22 +56,21 @@ func Test_check_URLs()
|
|||||||
put =urls
|
put =urls
|
||||||
" remove some more invalid items
|
" remove some more invalid items
|
||||||
" empty lines
|
" empty lines
|
||||||
v/./d
|
"20.10.23, Restorer: '_' is a little faster, see `:h global`
|
||||||
|
v/./d _
|
||||||
" remove # anchors
|
" remove # anchors
|
||||||
%s/#.*$//e
|
%s/#.*$//e
|
||||||
" remove trailing stuff (parenthesis, dot, comma, quotes), but only for HTTP
|
" remove trailing stuff (parenthesis, dot, comma, quotes), but only for HTTP
|
||||||
" links
|
" links
|
||||||
g/^h/s#[.,)'"/>][:.]\?$##
|
g/^h/s#[.),'"`/>][:.,]\?$##
|
||||||
g#^[hf]t\?tp:/\(/\?\.*\)$#d
|
g#^[hf]t\?tp:/\(/\?\.*\)$#d _
|
||||||
silent! g/ftp://,$/d
|
silent! g/ftp://,$/d _
|
||||||
silent! g/=$/d
|
silent! g/=$/d _
|
||||||
let a = getline(1,'$')
|
let a = getline(1,'$')
|
||||||
let a = uniq(sort(a))
|
let a = uniq(sort(a))
|
||||||
%d
|
%d _
|
||||||
call setline(1, a)
|
call setline(1, a)
|
||||||
|
|
||||||
" Do the testing.
|
|
||||||
set nomore
|
|
||||||
%s/.*/\=TestURL(submatch(0))/
|
%s/.*/\=TestURL(submatch(0))/
|
||||||
|
|
||||||
" highlight the failures
|
" highlight the failures
|
||||||
@@ -61,8 +80,10 @@ endfunc
|
|||||||
func TestURL(url)
|
func TestURL(url)
|
||||||
" Relies on the return code to determine whether a page is valid
|
" Relies on the return code to determine whether a page is valid
|
||||||
echom printf("Testing URL: %d/%d %s", line('.'), line('$'), a:url)
|
echom printf("Testing URL: %d/%d %s", line('.'), line('$'), a:url)
|
||||||
call system(s:command . shellescape(a:url))
|
call system(s:command1 .. shellescape(a:url) .. s:command2)
|
||||||
return printf("%s %d", a:url, v:shell_error)
|
return printf("%s %d", a:url, v:shell_error)
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
call Test_check_URLs()
|
call Test_check_URLs()
|
||||||
|
|
||||||
|
" vim: sw=2 sts=2 et
|
||||||
|
|||||||
Reference in New Issue
Block a user