Akelos Framework v1 forum archive. This forum is no longer maintained. To report bugs please visit https://github.com/akelos/akelos/issues
    • CommentAuthoralake
     

    I've added a page to the Wiki: Getting started with Subversion. It shows how to use Subversion in the development of Akelos projects.

    One difficulty is that when a project is created, certain files are deleted and others added. Also, when a script/generate is run, files are created. The programmer must now go behind Akelos and issue ''svn delete'' and ''svn add'' statements on the command line to tell Subversion what was done.

    This can be automated by changing the Akelos source to look for ".svn" files to know whether the project is under Subversion control. If it is, file operations can be done with Subversion commands instead of the normal commands.

    alan.lake@lakeinfoworks.com

    • CommentAuthorKaste
     

    IMHO this is worth an "enhancement ticket" in our TRAC. See if you can patch the generator-script. Sounds cool.

    • CommentAuthoralake
     
    Well, I think I found the places where the changes should be, but I'm not experienced enough with PHP to make the changes. One place is in lib/Ak.php in the function Ak::file_put_contents. The other place would be in lib/AkFtp.php in the function AkFtp::put_contents.

    Any whiz kids able to help?