* [PATCH] contrib/vim: change URL to point to the latest syntax files
@ 2009-01-13 2:10 Markus Heidelberg
2009-01-13 7:16 ` Jeff King
0 siblings, 1 reply; 5+ messages in thread
From: Markus Heidelberg @ 2009-01-13 2:10 UTC (permalink / raw)
To: Jeff King; +Cc: git
Vim's SVN repository doesn't offer the latest runtime files, since
normally they are only updated there on a release. Though currently
there is no difference between the SVN and HTTP/FTP version of the git
syntax files.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
---
contrib/vim/README | 12 +++++++-----
1 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/contrib/vim/README b/contrib/vim/README
index c487346..fca1e17 100644
--- a/contrib/vim/README
+++ b/contrib/vim/README
@@ -5,11 +5,13 @@ automatically.
If you have an older version of vim, you can get the latest syntax
files from the vim project:
- http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/git.vim
- http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/gitcommit.vim
- http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/gitconfig.vim
- http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/gitrebase.vim
- http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/gitsendemail.vim
+ http://ftp.vim.org/pub/vim/runtime/syntax/git.vim
+ http://ftp.vim.org/pub/vim/runtime/syntax/gitcommit.vim
+ http://ftp.vim.org/pub/vim/runtime/syntax/gitconfig.vim
+ http://ftp.vim.org/pub/vim/runtime/syntax/gitrebase.vim
+ http://ftp.vim.org/pub/vim/runtime/syntax/gitsendemail.vim
+
+These files are also available via FTP at the same location.
To install:
--
1.6.1.35.g0c23
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] contrib/vim: change URL to point to the latest syntax files
2009-01-13 2:10 [PATCH] contrib/vim: change URL to point to the latest syntax files Markus Heidelberg
@ 2009-01-13 7:16 ` Jeff King
2009-01-13 7:54 ` Teemu Likonen
2009-01-13 8:06 ` Junio C Hamano
0 siblings, 2 replies; 5+ messages in thread
From: Jeff King @ 2009-01-13 7:16 UTC (permalink / raw)
To: Markus Heidelberg; +Cc: git
On Tue, Jan 13, 2009 at 03:10:26AM +0100, Markus Heidelberg wrote:
> Vim's SVN repository doesn't offer the latest runtime files, since
> normally they are only updated there on a release. Though currently
> there is no difference between the SVN and HTTP/FTP version of the git
> syntax files.
So their version control _doesn't_ have the latest version, but it is
available on the website? It's not that I don't believe you, but I don't
think I want to know the version control workflow that leads to that.
> - http://vim.svn.sourceforge.net/viewvc/vim/trunk/runtime/syntax/gitsendemail.vim
> + http://ftp.vim.org/pub/vim/runtime/syntax/git.vim
Certainly they are nicer looking URLs, and I had just assumed the
originals would be recent-ish version. So:
Acked-by: Jeff King <peff@peff.net>
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] contrib/vim: change URL to point to the latest syntax files
2009-01-13 7:16 ` Jeff King
@ 2009-01-13 7:54 ` Teemu Likonen
2009-01-13 7:56 ` Jeff King
2009-01-13 8:06 ` Junio C Hamano
1 sibling, 1 reply; 5+ messages in thread
From: Teemu Likonen @ 2009-01-13 7:54 UTC (permalink / raw)
To: Jeff King; +Cc: Markus Heidelberg, git
Jeff King (2009-01-13 02:16 -0500) wrote:
> On Tue, Jan 13, 2009 at 03:10:26AM +0100, Markus Heidelberg wrote:
>
>> Vim's SVN repository doesn't offer the latest runtime files, since
>> normally they are only updated there on a release. Though currently
>> there is no difference between the SVN and HTTP/FTP version of the
>> git syntax files.
>
> So their version control _doesn't_ have the latest version, but it is
> available on the website? It's not that I don't believe you, but I
> don't think I want to know the version control workflow that leads to
> that.
Vim is essentially just a one-man project and the maintainer doesn't use
version control system. He just piles "diff -c" -type patches on top of
the previous release and sends them to vim-dev mailing list and to some
FTP site. Then other people try to maintain VCS repositories based on
the patches and resources that are available.
Vim's bus factor: 1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] contrib/vim: change URL to point to the latest syntax files
2009-01-13 7:54 ` Teemu Likonen
@ 2009-01-13 7:56 ` Jeff King
0 siblings, 0 replies; 5+ messages in thread
From: Jeff King @ 2009-01-13 7:56 UTC (permalink / raw)
To: Teemu Likonen; +Cc: Markus Heidelberg, git
On Tue, Jan 13, 2009 at 09:54:50AM +0200, Teemu Likonen wrote:
> Vim is essentially just a one-man project and the maintainer doesn't use
> version control system. He just piles "diff -c" -type patches on top of
> the previous release and sends them to vim-dev mailing list and to some
> FTP site. Then other people try to maintain VCS repositories based on
> the patches and resources that are available.
>
> Vim's bus factor: 1
Ah. He should use git. ;)
Thanks for the explanation.
-Peff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] contrib/vim: change URL to point to the latest syntax files
2009-01-13 7:16 ` Jeff King
2009-01-13 7:54 ` Teemu Likonen
@ 2009-01-13 8:06 ` Junio C Hamano
1 sibling, 0 replies; 5+ messages in thread
From: Junio C Hamano @ 2009-01-13 8:06 UTC (permalink / raw)
To: Jeff King; +Cc: Markus Heidelberg, git
Thanks, both.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-01-13 8:07 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-13 2:10 [PATCH] contrib/vim: change URL to point to the latest syntax files Markus Heidelberg
2009-01-13 7:16 ` Jeff King
2009-01-13 7:54 ` Teemu Likonen
2009-01-13 7:56 ` Jeff King
2009-01-13 8:06 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).