Results 37 comments of John Kubiatowicz

This is a bug in code that was added to redmine version 1.2.2. I've already submitted a fix (and it will appear in 1.3.1). If you want to patch early,...

Actually, the same issue exists in the plugin file: redmine_git_hosting/app/views/repositories/_git_urls.erb. Change: ``` Window.onload = setGitUrlOnload ``` To: ``` Event.observe(window,"load",setGitUrlOnLoad) ``` As it is, the redmine_git_hosting plugin will mess with anything...

I've fixed these issues (and a bunch of others) in my master branch. Please given them a try: https://github.com/kubitron/redmine_git_hosting

I'll assume that this is a good thing :-).

Note that I've added another commit to this branch which makes a slight fix and adds a DB index (make sure to run db:migrate_plugins afterwards).

You probably need to make sure that password info is properly forwarded to the plugin. I don't use passenger, but for fcgid (an apache plugin), I needed to have something...

The plugin does create a repository, but one without any commits (i.e. it exists, but is empty). As a result, you still need to follow the instructions on the repository...

I've turned this into a pull request to make it easier.

The current version of this plugin (or mine, if you want stability) allows access to repositories like this -- using the http(s) URL syntax: git clone https://[email protected]/parent1/parent2/repo.git Don't know if...

This version of the plugin is known not to be compatible with Redmine 1.3. You should try my version to see if it works better for you (it works fine...