Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Typo | b0b945bb27ce33e5065de0e59aca757b92852c60 | Catalin(ux) M. BOIE | 2016-09-21 16:54:13 |
git remote change was replaced with git remote set-url | 06d39d3519b2d026a4fe425586a64822cf430d4b | Catalin(ux) M. BOIE | 2016-09-21 16:53:49 |
Lots of fixes for html/css to adapt to any device | 8558dc5641c14bd49187ef40eea4d2f58f56b337 | Catalin(ux) M. BOIE | 2016-09-21 16:52:59 |
Author file update | 4face2cce133cc994efc67a1721a5260af3ab2a1 | Catalin(ux) M. BOIE | 2016-09-21 16:51:04 |
duilder fixes (USR was not defined) | fd5ff1e7c3d974714570237c323ece393aaaa85b | Catalin(ux) M. BOIE | 2016-09-21 16:50:39 |
Autodetect admin e-mail based on host name | 52901d8c0f73af6e909738ac8bc1cf331787e55e | Catalin(ux) M. BOIE | 2016-09-20 02:43:55 |
When ssh host nmae is autodetected, it must not also use the http port | c5dea927e57df2ac32a34037c5c36d829dc9356f | Catalin(ux) M. BOIE | 2016-09-19 16:25:14 |
Adapt a little bit the install guide because of php-fpm | cd6a0d9755dfb7b2a8b283e53d838b9724f22697 | Catalin(ux) M. BOIE | 2016-09-17 10:45:59 |
Bump version to 0.56 | 5c2c03e15864ebe466ac4dd3f8b0d761c363b13e | Catalin(ux) M. BOIE | 2016-09-17 10:45:16 |
Debian: adapt a little bit the dependencies | 47f680a9e0330a360919b33255a403d1d99e47fc | Catalin(ux) M. BOIE | 2016-09-17 10:44:43 |
Now is safe to install rocketgit on a multiuser machine | 5e945f6440609d2da3240acde977ca60b9e94b97 | Catalin(ux) M. BOIE | 2016-09-17 10:23:30 |
Big (bulk) update: fetch/push by http(s) | e771f072b8b8393b8e40283ee87c663025407d70 | Catalin(ux) M. BOIE | 2016-09-17 10:22:17 |
Redo css for clone urls and added http url | f7db12862aa048feba85411fd64a2a97403c2e66 | Catalin(ux) M. BOIE | 2016-09-17 10:14:49 |
Corrected url for refs and path rights | 551f1cfd002bb44a5b1448f83a9cd8341aded9d6 | Catalin(ux) M. BOIE | 2016-09-07 03:39:28 |
rg_exec has new parameters: two callbacks for stdout and stderr | b25e97c24a24f00d3e6e36652ffc0b9c9bf0e241 | Catalin(ux) M. BOIE | 2016-09-05 16:47:02 |
We do not run update-server-info in post-update hook anymore because we do not support dumb protocol | f580e2b006e60369265f3a2e660cb8af0701312d | Catalin(ux) M. BOIE | 2016-09-04 15:03:24 |
apikeys: we need to init some vars | 84bfd35c59c1e8458be7250aff6c1059afb1f204 | Catalin(ux) M. BOIE | 2016-08-28 05:25:44 |
Spell checkings and ommisions | 1e41a427ee47b128cd9385c3ed27565c67d27029 | Catalin(ux) M. BOIE | 2016-08-28 05:17:11 |
rg_exec function permits stdout streaming | 37e9c670be82c66970a3972aee87af34553eec98 | Catalin(ux) M. BOIE | 2016-08-28 05:15:26 |
Added tutorials infrastructure and the first tutorial about CI | 3fe5fc6d3dafa859e4e20c853f355dec279630b0 | Catalin(ux) M. BOIE | 2016-08-28 05:12:09 |
File | Lines added | Lines deleted |
---|---|---|
scripts/remote.php | 2 | 2 |
File scripts/remote.php changed (mode: 100644) (index 3b8d13c..7267125) | |||
... | ... | if (isset($_SERVER['SSH_CONNECTION'])) { | |
165 | 165 | $ip = rg_fix_ip(getenv("REMOTE_HOST")); | $ip = rg_fix_ip(getenv("REMOTE_HOST")); |
166 | 166 | } | } |
167 | 167 | ||
168 | if (strncasecmp($cmd_repo, "git-upload-pack", 15) == 0) { | ||
168 | if (strncasecmp($cmd_repo, 'git-upload-pack', 15) == 0) { | ||
169 | 169 | $cmd = 'git-upload-pack'; | $cmd = 'git-upload-pack'; |
170 | } else if (strncasecmp($cmd_repo ', "git-receive-pack', 16) == 0) { | ||
170 | } else if (strncasecmp($cmd_repo, 'git-receive-pack', 16) == 0) { | ||
171 | 171 | $cmd = 'git-receive-pack'; | $cmd = 'git-receive-pack'; |
172 | 172 | } else { | } else { |
173 | 173 | $cmd = $cmd_repo; | $cmd = $cmd_repo; |