Subject | Hash | Author | Date (UTC) |
---|---|---|---|
rg_git_from_to: if to is empty, ignore it. | 310506eab4b45a96cd75b69cfe72c54c7c5aa0e6 | Catalin(ux) M. BOIE | 2019-09-17 19:30:44 |
TODO changes | 25a5232ed436fe23e7f21c8caa6934d3bfcbd6d7 | Catalin(ux) M. BOIE | 2019-09-17 19:25:33 |
Did some debug changes for git | 25fbc904e16076cc6117a1bb900326344dba9d37 | Catalin(ux) M. BOIE | 2019-09-17 19:24:23 |
Add rg_log_sid value to all push methods, to be able to identify the log from the user reports | 4111a8a6ba1e100b3e01d277b2bc7968df9639b1 | Catalin(ux) M. BOIE | 2019-09-17 19:06:32 |
AUTHORS file update | 69efc5c7617404728506b380a57cf8336a45c2fc | Catalin(ux) M. BOIE | 2019-09-17 19:03:59 |
Added TLS1.3 to the list of protocols for nginx | c9fe2cc833c1a9636eab4baa2c388b2ea073ecbb | Catalin(ux) M. BOIE | 2019-09-17 19:03:23 |
History updates | 3de26500d13dc1eafa00fa4721704c5cfe372fd7 | Catalin(ux) M. BOIE | 2019-09-17 19:01:08 |
Destroy confirmation link after use | 6794a957bf695525b1a171eb6b602d228fd0f725 | Catalin(ux) M. BOIE | 2019-04-01 17:41:47 |
Show rg_log_sid into the user output to help identifying the logs | f272e87bcb5fef0e34459c5025b3d4bc796dab6d | Catalin(ux) M. BOIE | 2018-08-29 21:40:36 |
SELinux updates | 04b76e731f34762838434e8412e283be7360d188 | Catalin(ux) M. BOIE | 2018-08-29 21:36:29 |
Corrected wrong help for ssh 2fa | 04f8223c0c8fc585d3c7882c17ba4ecb7c22d0b5 | Catalin(ux) M. BOIE | 2018-08-29 21:36:16 |
ldap changes | 89e6848701e4c27d0f089393c7591302c45c57d4 | Catalin(ux) M. BOIE | 2018-08-29 21:35:56 |
Allow login token to be appended to the password | 8a5b003845f54d2771beaec7b14b96b2029ee9db | Catalin(ux) M. BOIE | 2018-08-29 21:35:16 |
Cosmetic changes for the theme | e8ed0db5fd9b41c5a63e1e171adb615a33817da8 | Catalin(ux) M. BOIE | 2018-08-29 21:32:36 |
samples updated | b42d3dd5947ae9bcf3994854219e759d93abcafa | Catalin(ux) M. BOIE | 2018-08-29 21:32:03 |
docker updates | f26097f046666d3ab5ca96e69f6fc458188a33ed | Catalin(ux) M. BOIE | 2018-08-29 21:31:16 |
Cosmetic changes | d5069178bed9736db02c3233e95564ad7b429e17 | Catalin(ux) M. BOIE | 2018-08-29 21:30:42 |
tests: added helper for totp enrollment | bad21ca093b427b200b3fbdcf2a2e1dd1820f93a | Catalin(ux) M. BOIE | 2018-08-29 20:59:17 |
Store the timestamp of the deletion for a repo, not 1 | e761b36efaa37fc3c453e8382127e340bc736bc7 | Catalin(ux) M. BOIE | 2018-06-04 18:00:35 |
totp: urlencode must be used when building the url for 2fa | f85ea05bf4b456cc0430e78f2705347dc79343ae | Catalin(ux) M. BOIE | 2018-05-29 17:39:06 |
File | Lines added | Lines deleted |
---|---|---|
inc/git.inc.php | 5 | 0 |
File inc/git.inc.php changed (mode: 100644) (index aa164be..b6d2e82) | |||
... | ... | function rg_git_from_to($from, $to) | |
111 | 111 | } else if (strcmp($from, $rg_git_zero) == 0) { | } else if (strcmp($from, $rg_git_zero) == 0) { |
112 | 112 | rg_log('from zero'); | rg_log('from zero'); |
113 | 113 | $from_to = $rg_git_empty . '..' . $to; | $from_to = $rg_git_empty . '..' . $to; |
114 | } else if (empty($to)) { | ||
115 | rg_log('to empty'); | ||
116 | $from_to = $from; | ||
114 | 117 | } else { | } else { |
115 | 118 | $from_to = $from . '..' . $to; | $from_to = $from . '..' . $to; |
116 | 119 | } | } |
... | ... | function rg_git_ls_tree($repo_path, $tree, $path) | |
676 | 679 | ||
677 | 680 | /* | /* |
678 | 681 | * Transforms a diff into an array (ready for rg_git_diff) | * Transforms a diff into an array (ready for rg_git_diff) |
682 | * @out - will come populated (by rg_git_log_simple) with an array indexed by | ||
683 | * file name: flags, lines_add, lines_del, changes, oversize_diff. | ||
679 | 684 | * @out - will be populated with the chunks | * @out - will be populated with the chunks |
680 | 685 | */ | */ |
681 | 686 | function rg_git_diff2array($diff, &$out) | function rg_git_diff2array($diff, &$out) |