Skip to content

Commit e270c82

Browse files
committed
Replace HTTP with HTTPS
1 parent 76e95c6 commit e270c82

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

CHANGELOG.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ This is the Changelog for the [unicode.vim] plugin
141141

142142
## [0.05] - 2010-04-19
143143
- Apr 19, 2010: Created a public repository for this plugin at
144-
http://github.com/chrisbra/unicode.vim
144+
https://github.com/chrisbra/unicode.vim
145145

146146
## [0.04] - 2010-02-01
147147
- Use UnicodeData.txt to generate Data (Index.txt does not contain all glyphs).
@@ -185,8 +185,8 @@ This is the Changelog for the [unicode.vim] plugin
185185
[:UnicodeSearch]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L154-L166
186186
[:UnicodeTable]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L169-L171
187187
[PlugMakeDigraph]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L342-L367
188-
[GLVS]: http://vimhelp.appspot.com/pi_getscript.txt.html#:GLVS
189-
[QuitPre]: http://vimhelp.appspot.com/autocmd.txt.html#QuitPre
188+
[GLVS]: https://vimhelp.appspot.com/pi_getscript.txt.html#:GLVS
189+
[QuitPre]: https://vimhelp.appspot.com/autocmd.txt.html#QuitPre
190190
[i_Ctrl-X_CTRL-G]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L313-L327
191191
[unicode#Digraph]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L428-L431
192192
[unicode#FindUnicodeBy()]: https://github.com/chrisbra/unicode.vim/blob/b86ed79b7f84805c757f662e05b0e64814fdf105/doc/unicode.txt#L389-L407

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ See also the following screencast, that shows several features available:
2828
### Installation
2929
Use the plugin manager of your choice. Or download the [stable][] version of the plugin, edit it with Vim (`vim unicode-XXX.vmb`) and simply source it (`:so %`). Restart and take a look at the help (`:h unicode-plugin`)
3030

31-
[stable]: http://www.vim.org/scripts/script.php?script_id=2822
31+
[stable]: https://www.vim.org/scripts/script.php?script_id=2822
3232

3333
### Usage
3434
Once installed, take a look at the help at `:h unicode-plugin`

autoload/unicode.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
" ---------------------------------------------------------------------
1111
" initialize Variables {{{1
1212
let s:unicode_URL = get(g:, 'Unicode_URL',
13-
\ 'http://www.unicode.org/Public/UNIDATA/UnicodeData.txt')
13+
\ 'https://www.unicode.org/Public/UNIDATA/UnicodeData.txt')
1414
if has("nvim")
1515
" default: ~/.local/share/nvim/site/unicode/
1616
let s:data_directory =
@@ -531,7 +531,7 @@ fu! unicode#PrintUnicodeTable(force) abort "{{{2
531531
let html = <sid>GetHtmlEntity(value, 0)
532532
let codep = printf('U+%04X', value)
533533
let name .= (name[-1:]==?' ' ? '' : ' ') " add trailing whitespace
534-
let output += [printf("%-7s%-8s%-18s%-57shttp://unicode-table.com/en/%04X/",
534+
let output += [printf("%-7s%-8s%-18s%-57shttps://unicode-table.com/en/%04X/",
535535
\ strtrans(nr2char(value)), codep, html, name.dig, value)]
536536
endfor
537537
" Find Window or create a new window

doc/unicode.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ easily. It serves 3 main purposes:
5050
characters into their corresponding digraph value.
5151

5252
The unicode.vim Plugin uses the data available from the Unicode
53-
Consortium's website (http://www.unicode.org) to let you enter Unicode
53+
Consortium's website (https://www.unicode.org) to let you enter Unicode
5454
characters using a completion function.
5555

5656
By default the plugin stores the file UnicodeData.txt from
57-
http://www.unicode.org/Public/UNIDATA/UnicodeData.txt (alternatively you can
57+
https://www.unicode.org/Public/UNIDATA/UnicodeData.txt (alternatively you can
5858
download it from ftp://ftp.unicode.org/Public/UNIDATA/UnicodeData.txt)
5959
in the data directory. The plugin tries to download the file using |netrw|.
6060
If this is unsuccessful, or you do not have |netrw| enabled, download the file
@@ -323,7 +323,7 @@ stopped so you can only complete the so far matched unicode chars.
323323
If you would like to specify a different URL from which to download
324324
UnicodeData.txt, enter the URL as: >
325325
326-
:let g:Unicode_URL='http:....'
326+
:let g:Unicode_URL='https:....'
327327
328328
To force downloading the file from that new URL, enter >
329329

post.pl

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ ()
4040
}
4141

4242
my $mech=WWW::Mechanize->new(autocheck => 1);
43-
$mech->get("http://www.vim.org/login.php");
43+
$mech->get("https://www.vim.org/login.php");
4444
$mech->submit_form(
4545
form_name => "login",
4646
with_fields => {
4747
userName => $userpasswordpair[0],
4848
password => $userpasswordpair[1],
4949
},
5050
);
51-
$mech->get("http://www.vim.org/scripts/script.php?script_id=$sid");
51+
$mech->get("https://www.vim.org/scripts/script.php?script_id=$sid");
5252
$mech->follow_link(text => 'upload new version');
5353
$mech->form_name("script");
5454
$mech->field(script_file => $file);

syntax/unicode.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ syn match UnicodeHeader /\%(^\%1l.*\)\|\%(^\%>2l\S\+\)/ " highlight Heading an
1414
syn match UnicodeDigraph /\%>1l(\zs\(\S\+\s*\)\+\ze)/ " highlight html and digraph
1515
syn match UnicodeHtmlEntity /&\w*;\|&#x\x\+;/ " highlight html
1616
syn match UnicodeCodepoint /U+\x\+/ " highlight U+FFFE
17-
syn match UnicodeLink /http:.*$/ " highlight html link
17+
syn match UnicodeLink /https:.*$/ " highlight html link
1818

1919
hi def link UnicodeHeader Title
2020
hi def link UnicodeDigraph Statement

0 commit comments

Comments
 (0)