For some reason it's using a semicolon (;) to separate the URL fragments instead of an ampersand (&). Also noticed that the commit hash is shortened which is fine, but it needs to remain the full hash string in the URL.
| Comment | File | Size | Author |
|---|---|---|---|
| #5 | 0001-webviewer_url_handler-plugin-for-GitPHP-added.patch | 3.25 KB | asanchez75 |
| patch_commit_e273a48a3ffc.patch | 3.74 KB | markhalliwell |
Comments
Comment #1
marvil07 commentedYep, the default behaviour of gitweb is to have one big string as GET paramenter as the filter, just like drupal use
/, gitweb use;.You always can implement a new webviewer_url_handler plugin to change its behaviour.
Comment #2
markhalliwellOhh... I'm thinking of/using GitPHP (http://xiphux.com/programming/gitphp/) which uses ampersands (like it should be) instead of semi-colons. Would it be possible to include this as an option rather than simply closing this?
Comment #3
marvil07 commentedSure, patches welcome for the new plugin ;-)
Comment #4
sdboyer commentedBiiiig +1 for new plugins :)
Comment #5
asanchez75 commentedwebviewer_url_handler plugin for GitPHP added
Comment #6
marvil07 commentedAdam has been working today at a local sprint. I hope to get this reviewed in the following hours and get in after it :-)
Comment #7
marvil07 commentedSo, I end up doing one change first on versioncontrol, but after it and tweaking a little the last patch, I end up pushing this on two commits: 7439bfa and bf7c4ae.
Thanks for the new plugin!