On Mon, Jan 10, 2011 at 3:12 PM, Risanecek <[email protected]> wrote: > * In our earlier setup (1 SVN <-> 1 Trac), every commit to SVN got > instantly visualized in the source browser/timeline. Now I have to > manually issue trac-admin <path> repository resync SVNREPO, which is > quite bad. The idea to put this command into post-hook is also quite > bad (every post-hook will get slower and slower). There must be an "at > least as elegant as before way" - howto?
I think I figured it out. It seems a ------- #!/bin/sh REP="$1" REV="$2" trac-admin <tracpath> changeset added $REP $REV -------- post-commit for every managed repository (can be links) does the trick. Any ideas on the CSS and the I18N part of the original posting? Richard -- You received this message because you are subscribed to the Google Groups "Trac Users" group. 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/trac-users?hl=en.
