Dear all, http://lyx.sourceforge.net is up and running. I just changed one line in farmconfig.php and added a .htaccess file. The content has not been updated.
Although there are ssh access to user webspace, there is only sftp and rsync access to project webspace. This makes it difficult to use subversion to store web contents. I am not complete sure about the process, but I guess you can: 1. make changes through the web interface. 2. rsync to get a copy of the webpage. This will also copy the .svn directory. > rsync -avP -e ssh -r username,l...@web.sourceforge.net:htdocs/ htdocs/ > rsync -avP -e ssh -r username,l...@web.sourceforge.net:persistent/ persistent/ 3. check out changes > cd htdocs > svn ci 'blah' If you make changes locally. You can rsync the change to the web, > rsync -avP -e ssh -r htdocs/ username,l...@web.sourceforge.net:htdocs/ > rsync -avP -e ssh -r persistent/ username,l...@web.sourceforge.net:persistent/ If it is a bad idea to keep .svn over the web, we can check out from the subversion repository and upload using rsync with options --exclude='.svn' --delete-excluded. Christian, could you please have a look at this? Thanks. Bo