Feature #1063
repository auto-update should be called on opening activity
Status: | New | Start date: | 2008-04-15 | |
---|---|---|---|---|
Priority: | Normal | Due date: | ||
Assignee: | - | % Done: | 0% | |
Category: | SCM | |||
Target version: | - | |||
Resolution: |
Description
Hello,
I'm using redmine with a remote svn repository, and I do get automatic repository updates on visiting the "Repository" page - but only there.
When just looking at the "Activity" page for a project, no auto-update is performed - so I don't see new changes in the repository.
So maybe '@project.repository.fetch_changesets if Setting.autofetch_changesets?
' should be added to the ProjectsController.activity function, too?
Related issues
History
#1
Updated by Luca Pireddu about 14 years ago
- File autofetch_commits_for_activity.patch
added
I would also like to see this feature. Maybe a patch like this would be sufficient?
#2
Updated by Eike Bernhardt almost 14 years ago
- File redmine-autoupdate.diff
added
One small thing seems to be missing - when you want to use "Overall activity", no project is selected - so @project is Nil.
Attached is a changed patch, which checks if @project is set - not really nice, since no fetching of source changes happens then - but this is enough for me.
#3
Updated by Thomas Löber almost 14 years ago
Or you could call Repository.fetch_changesets
in case @project
is nil
.
#4
Updated by Eike Bernhardt almost 14 years ago
- File redmine-autoupdate-v2.patch
added
Thats even better .. see redmine-autoupdate-v2.patch - works for me.
#5
Updated by Nick Phillips over 12 years ago
The patch works for me, as far as it goes, but it really needs to work through subprojects too...
#6
Updated by Dipan Mehta about 9 years ago
+1. This must be integrated.