mirror of
https://git.zx2c4.com/cgit
synced 2025-06-30 13:24:32 +02:00
global: replace references to 'sha1' with 'oid'
For some time now sha1 is considered broken and upstream is working to replace it with sha256. Replace all references to 'sha1' with 'oid', just as upstream does. Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
629659d2cf
commit
779631c6dc
13 changed files with 66 additions and 66 deletions
|
@ -48,7 +48,7 @@ static void emit_blame_entry_hash(struct blame_entry *ent)
|
|||
unsigned long line = 0;
|
||||
|
||||
char *detail = emit_suspect_detail(suspect);
|
||||
html("<span class='sha1'>");
|
||||
html("<span class='oid'>");
|
||||
cgit_commit_link(find_unique_abbrev(oid, DEFAULT_ABBREV), detail,
|
||||
NULL, ctx.qry.head, oid_to_hex(oid), suspect->path);
|
||||
html("</span>");
|
||||
|
@ -256,7 +256,7 @@ static int basedir_len(const char *path)
|
|||
|
||||
void cgit_print_blame(void)
|
||||
{
|
||||
const char *rev = ctx.qry.sha1;
|
||||
const char *rev = ctx.qry.oid;
|
||||
struct object_id oid;
|
||||
struct commit *commit;
|
||||
struct pathspec_item path_items = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue