Hi, I have a few questions regarding Agilo's subversion integration 0. Does it use Trac's subversion integration or does it do something else or does it build on top of Trac? 1. Does it work if my Subversion repository is running on Windows on a different box? 2. Can I setup integration for specific projects? 3. If yes to 2, does it support multiple subfolders in Subversion? 4. How stable is this feature. I would hate to bring down the Subversion repository or Agilo because of this? 5. How do I go about setting up the integration, do I have to do anything in trac.ini in addition to setting up the hooks in Subversion
pre-commit hook Following an example of a pre-commit hook. #!/bin/sh REPOS="$1" TXN="$2" # Make sure that the log message contains some text. SVNLOOK=/usr/bin/svnlook PYTHON_EGG_CACHE=/var/cache/python TRAC_ENV="/var/lib/trac/test" LOG=`$SVNLOOK log -t "$TXN" "$REPOS"` /where/ever/is/agilo_svn_hook_commit.py -s pre -e "$TRAC_ENV" \ "$LOG" || exit 1 post-commit hook Following and example of a post-commit hook. #!/bin/sh REPOS="$1" REV="$2" TRAC_ENV='/var/lib/trac/test/' /var/lib/svn/local/hooks/agilo_svn_hook_commit.py -s post \ -e "$TRAC_ENV" -r "$REV" || exit 1 --~--~---------~--~----~------------~-------~--~----~ Follow Agilo on Twitter: http://twitter.com/agiloforscrum ----- You received this message because you are subscribed to the Google Groups "Agilo for Scrum" group. This group is moderated by agile42 GmbH http://www.agile42.com and is focused in supporting Agilo for Scrum users. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/agilo?hl=en -~----------~----~----~----~------~----~------~--~---

