Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ron Wilson
On Fri, Feb 4, 2011 at 5:55 PM, Ondrej Nemecek wrote: > Unfortunately I have no command line access on server and no chance to > run cron jobs there :-( As long as your webserver file tree is a duplicate of your local staging file tree, then you could the output of "fossil update" in your staging

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Brian Smith
On Fri, Feb 4, 2011 at 2:40 PM, Mike Meyer wrote: > On Fri, 4 Feb 2011 13:44:18 -0800 > Brian Smith wrote: > >> For some personal sites, what I do is I actually have the fossil repo >> opened in the web directory. >> It's .htaccess'd off so that you can't get at it, even if you know it's >> ther

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ondrej Nemecek
Unfortunately I have no command line access on server and no chance to run cron jobs there :-( Dne 4.2.2011 22:44, Brian Smith napsal(a): > For some personal sites, what I do is I actually have the fossil repo > opened in the web directory. > It's .htaccess'd off so that you can't get at it, ev

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Mike Meyer
On Fri, 4 Feb 2011 13:44:18 -0800 Brian Smith wrote: > For some personal sites, what I do is I actually have the fossil repo > opened in the web directory. > It's .htaccess'd off so that you can't get at it, even if you know it's there. Any particular reason to keep the repo in the web directory

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ondrej Nemecek
Thanks - this is what I looked for! I see update_cmd in fossil source and It should not be complicated add upload procedure directly into fossil. But I don't know what is preffered way to add some functionallity and whether authors want or plan to do it. Dne 4.2.2011 22:29, Joshua Paine napsal

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Brian Smith
For some personal sites, what I do is I actually have the fossil repo opened in the web directory. It's .htaccess'd off so that you can't get at it, even if you know it's there. Then, I've got a cronjob that once every 15 minutes does a 'fossil update release'. Where 'release' is just a tag that I

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ondrej Nemecek
It's good idea, bud I'd like to deploy any version of source tree independently of commit. Of cource - I must know the version on the server and I must deal with deleted files etc. Dne 4.2.2011 21:57, Clark Christensen napsal(a): > I do this myself. > > I wrote a Perl program to take the outpu

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Joshua Paine
On 02/04/2011 04:11 PM, Ondrej Nemecek wrote: > Is there some simple way to list files changed between two versions? > Then can be upload procedure easily scripted (using common > command-line ftp client). `fossil update -n VERSION` shows a list of file changes made when updating to VERSION from

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ondrej Nemecek
So there is no currently feature as git-ftp etc? This should be very usefull. Is there some simple way to list files changed between two versions? Then can be upload procedure easily scripted (using common command-line ftp client). O. Dne 4.2.2011 18:17, Lluís Batlle i Rossell napsal(a): > On

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Clark Christensen
sl-deploy prod". Just have to remember to deploy before the commit. For the Unix target (prod), it knows to issue a chmod to set *.cgi as executable. -Clark - Original Message From: Ondrej Nemecek To: fossil-users@lists.fossil-scm.org Sent: Fri, February 4, 2011 9:12:46 AM Subj

Re: [fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Lluís Batlle i Rossell
On Fri, Feb 04, 2011 at 06:12:46PM +0100, Ondrej Nemecek wrote: > > Hi to all, > > let say we have web site, which sources are managed using fossil. This > web site is running on server and document root can be accessed via ftp. > > Is there some way to use fossil to deploy changed files to ser

[fossil-users] Deploying A Web Application with Fossil and FTP

2011-02-04 Thread Ondrej Nemecek
Hi to all, let say we have web site, which sources are managed using fossil. This web site is running on server and document root can be accessed via ftp. Is there some way to use fossil to deploy changed files to server? It meens to upload specified branch to server via ftp? If not, could be