Re: Using rsync to create two versions of the same software.

2010-06-21 Thread Lisa Kachold
On Tue, Jun 15, 2010 at 11:51 AM, Bryan O'Neal < bryan.on...@theonealandassociates.com> wrote: > I agree SVN for version control, but for available features I just have a > config file. For java you use a JNDI lookup or parse the XML based config > file directly or JDBc to your dab based config wh

Re: Using rsync to create two versions of the same software.

2010-06-15 Thread Bryan O'Neal
I agree SVN for version control, but for available features I just have a config file. For java you use a JNDI lookup or parse the XML based config file directly or JDBc to your dab based config what ever floats your boat, but basically you just set a variable - free = no - and then check the state

Re: Using rsync to create two versions of the same software.

2010-06-15 Thread Eric Cope
I use SVN for that. Specifically, EXPORT. Then I use a script clean out directories, then pass my PHP through the PHP compiler as a last time double check things compile. Eric On Tue, Jun 15, 2010 at 10:44 AM, keith smith wrote: > > Hi All, > > In the old days of writing desktop applications, w

Using rsync to create two versions of the same software.

2010-06-15 Thread keith smith
Hi All, In the old days of writing desktop applications, when one wanted to make two versions of the same app - one free or demo and the other with all the features, all one had to do was add a switch to include (run) or exclude (not run) the code to create either version and compile. Now tha