File inc/git.inc.php changed (mode: 100644) (index c63f455..058ca02) |
... |
... |
function rg_git_diff2array($diff, &$extra) |
580 |
580 |
continue; |
continue; |
581 |
581 |
} |
} |
582 |
582 |
|
|
|
583 |
|
if (strncmp($line, "Binary files", 12) == 0) { |
|
584 |
|
continue; |
|
585 |
|
} |
|
586 |
|
|
583 |
587 |
if (strncmp($line, "index ", 6) == 0) { |
if (strncmp($line, "index ", 6) == 0) { |
584 |
588 |
$rest = substr($line, 6); |
$rest = substr($line, 6); |
585 |
589 |
$_t = explode(' ', $rest); |
$_t = explode(' ', $rest); |
File inc/user/repo-page.php changed (mode: 100644) (index b2b7553..e1133d0) |
... |
... |
if (strcmp($_subop, "history") == 0) { |
184 |
184 |
if ($log === FALSE) { |
if ($log === FALSE) { |
185 |
185 |
$_repo_body .= rg_template("repo/not_init.html", $rg); |
$_repo_body .= rg_template("repo/not_init.html", $rg); |
186 |
186 |
} else { |
} else { |
187 |
|
rg_log_ml("DEBUG: log: " . print_r($log, TRUE)); |
|
|
187 |
|
//rg_log_ml("DEBUG: log: " . print_r($log, TRUE)); |
188 |
188 |
$_repo_body .= rg_git_log_template($log, "repo/log", $rg); |
$_repo_body .= rg_git_log_template($log, "repo/log", $rg); |
189 |
189 |
} |
} |
190 |
190 |
|
|