Re: [gitorious] Gitorious local install - how to configure Clone push URL

2012-04-12 Thread Marius Mårnes Mathiesen
Did you restart the script/poller process after setting this value? - Marius On Tue, Apr 3, 2012 at 9:42 PM, Srdan Dukic srdan.du...@gmail.com wrote: Hi, Thanks for that. Have found that setting, however, it's set to: gitorious_host: gitorious.company.internal and on the web page it

Re: [gitorious] Gitorious local install attempting to write ssh keys to /home/root/.ssh/authorized_keys

2012-04-12 Thread Marius Mårnes Mathiesen
On Fri, Apr 6, 2012 at 1:46 PM, Kelketek Titikilik Rritaa kelke...@gmail.com wrote: There should be a setting in your config/gitorious.yaml file concerning which user is being used. You may also need to specifically specify the home environment variable in environment.rb with a line like:

Re: [gitorious] Merge Requests for Branches

2012-04-12 Thread Marius Mårnes Mathiesen
On Thu, Apr 5, 2012 at 5:43 PM, JayP bosox...@gmail.com wrote: Hi, Any plans of adding merge requests to branches? I think it would be good to at least have the option. Github allows for this so thought it would be a good thing to have since some teams use this as a form of telling other

Re: [gitorious] Merge Requests for Branches

2012-04-12 Thread JayP
Hi Marius, Yes I mean submitting a merge request to another branch in the same repository. For our case it would be a remote branch in repositoryA and I want to submit a merge request from my remote branch to master on repositoryA. I agree that having all these extra clones is extra overhead

[gitorious] Inline Comments Needed

2012-04-12 Thread JayP
Hi, It would be nice to have the ability to make inline comments on merge requests as well as directly in the source code. Any chance this could be put in the next release? Thanks, Jay -- To post to this group, send email to gitorious@googlegroups.com To unsubscribe from this group, send

Re: [gitorious] Inline Comments Needed

2012-04-12 Thread Marius Mårnes Mathiesen
On Thu, Apr 12, 2012 at 2:37 PM, JayP bosox...@gmail.com wrote: It would be nice to have the ability to make inline comments on merge requests as well as directly in the source code. Any chance this could be put in the next release? Jay, Clicking the line numbers in the diff of a merge

Re: [gitorious] Inline Comments Needed

2012-04-12 Thread JayP
Yeah sorry the merge requests have this feature but it would be nice to have that ability in the commit diff as well. And if you implement merge request branch to branch that it has inline comments as well. Thanks, Jay -- To post to this group, send email to gitorious@googlegroups.com To

[gitorious] Re: How to remove user from gitorious

2012-04-12 Thread Everson Alves da Silva
after removing the user as specified, ( the user had no commits but was allowed into a project), I'm getting: A ActionView::TemplateError occurred in project_memberships#index: undefined method `human_name' for NilClass:Class On line #3 of

[gitorious] Kerberos authentication

2012-04-12 Thread Ken Dreyer
I recently hacked Kerberos authentication onto the Gitorious web interface. In conjunction with Apache's mod_auth_kerb, the Rails app pulls the username out of request.env['REMOTE_USER'] and uses that in a manner similar to the current code's OpenID handling: If the user doesn't yet exist in

Re: [gitorious] Kerberos authentication

2012-04-12 Thread Ken Dreyer
On Wed, Apr 11, 2012 at 8:10 PM, Ken Dreyer ktdre...@ktdreyer.com wrote: I recently hacked Kerberos authentication onto the Gitorious web interface. I ended up implementing this in a less hackish way, with a proper Gitorious::Authentication::KerberosAuthentication module. The core code changes