Re: [Vim-latex-devel] site CVS
Brought to you by:
srinathava,
tmaas
From: Mikolaj M. <mi...@wp...> - 2002-12-14 22:55:36
|
On Fri, Dec 13, 2002 at 10:17:56PM -0800, Srinath Avadhanula wrote: > Hello! > I just got done with an exam. So a little time for vimming. I will > mostly do the outstanding things like the web-page cvs screw up and a > few other things. I will also put this new version of imaps.vim into a > new branch which I shall call... lets see... I think we can remove package and template directories from site CVS. Not from site but from CVS. Better solution to update this files will be running cron with script like that: ------------ #!/bin/sh # download cvs tarball from its place to our home directory wget -q http://cvs1.sourceforge.net/cvstarballs/vim-latex-cvsroot.tar.gz # move it to proper place of www directory cp vim-latex-cvsroot.tar.gz /home/groups/v/vim/vim-latex/htdocs/packages # now, we have to go there cd /home/groups/v/vim/vim-latex/htdocs/packages # here is a hack, I can't believe this is not possible with simple # switch but also I am not able to find it in tar docs. tar -zxf vim-latex-cvsroot.tar.gz vimfiles/ftplugin/latex-suite/packages/ cp -f vimfiles/ftplugin/latex-suite/packages/* . rm -rf vimfiles/ vim-latex-cvsroot.tar.gz ------------- I did not tested it fully (wget works). Next steps are impossible because I do not have permissions. Big plus there is only one place where package files (also templates) are. |