summaryrefslogtreecommitdiff
path: root/htdocs/sources.php
blob: e57dfe60edeb8cb5543fe417ebef23863e1d119e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
// Vim Documentation
require_once("include/init.inc");
$page_title = "Vim source archives";

include("header.php");
?>
<h1>Vim source archives</h1>

If you want to join in and help developing Vim, you may want to get all the
original files.  These are also used to compile Vim for systems not mentioned
on the download page.  You need to get the archives mentioned below.
<p>
The preferred way is to use
<a href="mercurial.php">Mercurial</A>.  You can easily get the latest version 
with all the patches, or go back to an older version if you need to.
<p>
<a href="cvs.php">CVS</A> and
<a href="subversion.php">Subversion</A> only contain versions before 7.3.
<dl>
<dt><B>All files</B>&nbsp;&nbsp;&nbsp;vim-##.tar.bz2 &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-7.3.tar.bz2">vim-7.3.tar.bz2</A></dt>
<dd>
The source and runtime files together in one big bzip2 compressed archive.
Only for Vim 6.0 and later.  You can find it
<A HREF="ftp://ftp.vim.org/pub/vim/unix">in this directory</A>.
Before 7.3 this excludes the extra and lang files.
</dd>
</dl>

For Vim 7.2 and earlier (For 7.3 and later these are included in the "All" archive):
<dl>
<dt><B>Extra files</B>&nbsp;&nbsp;&nbsp;vim-##-extra.tar.gz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/extra/vim-7.2-extra.tar.gz">vim-7.2-extra.tar.gz</A></dt>
<dd>
The extra archive.  This contains source and runtime files that are not used
on Unix.
You can find them
<A HREF="ftp://ftp.vim.org/pub/vim/extra">here</A>.
</dd>
<dt><B>Translations</B>&nbsp;&nbsp;&nbsp;vim-##-lang.tar.gz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz">vim-7.2-lang.tar.gz</A></dt>
<dd>
This contains translated messages and menu files.
Only for Vim 6 and 7, you can find it
<A HREF="ftp://ftp.vim.org/pub/vim/extra">here</A>.
</dd>
</dl>

For Vim 6.x you can get the sources and runtime files separately in chunks
that fit on a floppy disk (if you still have them).
<dl>
<dt><B>Sources</B>&nbsp;&nbsp;&nbsp;vim-##-src.tar.gz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-src1.tar.gz">vim-6.4-src1.tar.gz</A> &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-src2.tar.gz">vim-6.4-src2.tar.gz</A></dt>
<dd>
The Unix source files.  You can find them
<A HREF="ftp://ftp.vim.org/pub/vim/unix">here</A>.
For Vim 6 there are two parts.  Not for Vim 7.
</dd>
<dt><B>Runtime files</B>&nbsp;&nbsp;&nbsp;vim-##-rt.tar.gz &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-rt1.tar.gz">vim-6.4-rt1.tar.gz</A> &nbsp;&nbsp;&nbsp;<A HREF="ftp://ftp.vim.org/pub/vim/unix/vim-6.4-rt2.tar.gz">vim-6.4-rt2.tar.gz</A></dt>
<dd>
The Unix runtime files.  You can find them
<A HREF="ftp://ftp.vim.org/pub/vim/unix">here</A>.
For Vim 6 there are two parts.  Not for Vim 7.
</dd>
</dl>

<?php
$google_ads = "big";
include("footer.php");
?>