Merge branch 'jo/dirlink'
* jo/dirlink: Rename dirlink to gitlink. Conflicts: ui-tree.c Signed-off-by: Lars Hjemli <hjemli@gmail.com>
This commit is contained in:
کامیت
ff13396926
2
html.c
2
html.c
@ -158,7 +158,7 @@ void html_filemode(unsigned short mode)
|
|||||||
html("d");
|
html("d");
|
||||||
else if (S_ISLNK(mode))
|
else if (S_ISLNK(mode))
|
||||||
html("l");
|
html("l");
|
||||||
else if (S_ISDIRLNK(mode))
|
else if (S_ISGITLINK(mode))
|
||||||
html("m");
|
html("m");
|
||||||
else
|
else
|
||||||
html("-");
|
html("-");
|
||||||
|
@ -37,7 +37,7 @@ static void header(unsigned char *sha1, char *path1, int mode1,
|
|||||||
char *abbrev1, *abbrev2;
|
char *abbrev1, *abbrev2;
|
||||||
int subproject;
|
int subproject;
|
||||||
|
|
||||||
subproject = (S_ISDIRLNK(mode1) || S_ISDIRLNK(mode2));
|
subproject = (S_ISGITLINK(mode1) || S_ISGITLINK(mode2));
|
||||||
html("<div class='head'>");
|
html("<div class='head'>");
|
||||||
html("diff --git a/");
|
html("diff --git a/");
|
||||||
html_txt(path1);
|
html_txt(path1);
|
||||||
@ -78,10 +78,10 @@ static void filepair_cb(struct diff_filepair *pair)
|
|||||||
{
|
{
|
||||||
header(pair->one->sha1, pair->one->path, pair->one->mode,
|
header(pair->one->sha1, pair->one->path, pair->one->mode,
|
||||||
pair->two->sha1, pair->two->path, pair->two->mode);
|
pair->two->sha1, pair->two->path, pair->two->mode);
|
||||||
if (S_ISDIRLNK(pair->one->mode) || S_ISDIRLNK(pair->two->mode)) {
|
if (S_ISGITLINK(pair->one->mode) || S_ISGITLINK(pair->two->mode)) {
|
||||||
if (S_ISDIRLNK(pair->one->mode))
|
if (S_ISGITLINK(pair->one->mode))
|
||||||
print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
|
print_line(fmt("-Subproject %s", sha1_to_hex(pair->one->sha1)), 52);
|
||||||
if (S_ISDIRLNK(pair->two->mode))
|
if (S_ISGITLINK(pair->two->mode))
|
||||||
print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
|
print_line(fmt("+Subproject %s", sha1_to_hex(pair->two->sha1)), 52);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -68,7 +68,7 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
|
|||||||
cgit_query_path ? "/" : "", name);
|
cgit_query_path ? "/" : "", name);
|
||||||
|
|
||||||
type = sha1_object_info(sha1, &size);
|
type = sha1_object_info(sha1, &size);
|
||||||
if (type == OBJ_BAD && !S_ISDIRLNK(mode)) {
|
if (type == OBJ_BAD && !S_ISGITLINK(mode)) {
|
||||||
htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
|
htmlf("<tr><td colspan='3'>Bad object: %s %s</td></tr>",
|
||||||
name,
|
name,
|
||||||
sha1_to_hex(sha1));
|
sha1_to_hex(sha1));
|
||||||
@ -78,7 +78,7 @@ static int ls_item(const unsigned char *sha1, const char *base, int baselen,
|
|||||||
html("<tr><td class='ls-mode'>");
|
html("<tr><td class='ls-mode'>");
|
||||||
html_filemode(mode);
|
html_filemode(mode);
|
||||||
html("</td><td>");
|
html("</td><td>");
|
||||||
if (S_ISDIRLNK(mode)) {
|
if (S_ISGITLINK(mode)) {
|
||||||
htmlf("<a class='ls-mod' href='");
|
htmlf("<a class='ls-mod' href='");
|
||||||
html_attr(fmt(cgit_repo->module_link,
|
html_attr(fmt(cgit_repo->module_link,
|
||||||
name,
|
name,
|
||||||
|
بارگذاری…
مرجع در شماره جدید
Block a user