summaryrefslogtreecommitdiffstatshomepage
ModeNameSize
-rw-r--r--.gitignore141logstatsplain
-rw-r--r--.gitmodules78logstatsplain
-rw-r--r--COPYING18009logstatsplain
-rw-r--r--Makefile3952logstatsplain
-rw-r--r--README3107logstatsplain
-rw-r--r--cache.c10183logstatsplain
-rw-r--r--cache.h1032logstatsplain
-rw-r--r--cgit-doc.css42logstatsplain
-rw-r--r--cgit.c18561logstatsplain
-rw-r--r--cgit.css8007logstatsplain
-rw-r--r--cgit.h6041logstatsplain
-rw-r--r--cgit.png1840logstatsplain
-rw-r--r--cgitrc.5.txt14406logstatsplain
-rw-r--r--cmd.c3463logstatsplain
-rw-r--r--cmd.h271logstatsplain
-rw-r--r--configfile.c1426logstatsplain
-rw-r--r--configfile.h220logstatsplain
d---------filters93logstatsplain
-rwxr-xr-xgen-version.sh392logstatsplain
m---------git @ e276f010logstats
-rw-r--r--html.c4954logstatsplain
-rw-r--r--html.h870logstatsplain
-rw-r--r--parsing.c4499logstatsplain
-rw-r--r--scan-tree.c3258logstatsplain
-rw-r--r--scan-tree.h62logstatsplain
-rw-r--r--shared.c9674logstatsplain
d---------tests549logstatsplain
-rw-r--r--ui-atom.c3028logstatsplain
-rw-r--r--ui-atom.h112logstatsplain
-rw-r--r--ui-blob.c1828logstatsplain
-rw-r--r--ui-blob.h137logstatsplain
-rw-r--r--ui-clone.c2414logstatsplain
-rw-r--r--ui-clone.h211logstatsplain
-rw-r--r--ui-commit.c3328logstatsplain
-rw-r--r--ui-commit.h109logstatsplain
-rw-r--r--ui-diff.c8324logstatsplain
-rw-r--r--ui-diff.h259logstatsplain
-rw-r--r--ui-log.c6063logstatsplain
-rw-r--r--ui-log.h237logstatsplain
-rw-r--r--ui-patch.c3296logstatsplain
-rw-r--r--ui-patch.h105logstatsplain
-rw-r--r--ui-plain.c2076logstatsplain
-rw-r--r--ui-plain.h120logstatsplain
-rw-r--r--ui-refs.c5799logstatsplain
-rw-r--r--ui-refs.h182logstatsplain
-rw-r--r--ui-repolist.c6773logstatsplain
-rw-r--r--ui-repolist.h146logstatsplain
-rw-r--r--ui-shared.c19032logstatsplain
-rw-r--r--ui-shared.h2404logstatsplain
-rw-r--r--ui-snapshot.c4692logstatsplain
-rw-r--r--ui-snapshot.h191logstatsplain
-rw-r--r--ui-stats.c9612logstatsplain
-rw-r--r--ui-stats.h582logstatsplain
-rw-r--r--ui-summary.c2156logstatsplain
-rw-r--r--ui-summary.h152logstatsplain
-rw-r--r--ui-tag.c2069logstatsplain
-rw-r--r--ui-tag.h101logstatsplain
-rw-r--r--ui-tree.c6590logstatsplain
-rw-r--r--ui-tree.h119logstatsplain
/span> rev.commit_format = CMIT_FMT_DEFAULT; rev.verbose_header = 1; rev.show_root_diff = 0; rev.max_count = max_count; setup_revisions(argc, argv, &rev, NULL); prepare_revision_walk(&rev); host = cgit_hosturl(); ctx.page.mimetype = "text/xml"; ctx.page.charset = "utf-8"; cgit_print_http_headers(); html("<feed xmlns='http://www.w3.org/2005/Atom'>\n"); html("<title>"); html_txt(ctx.repo->name); if (path) { html("/"); html_txt(path); } if (tip && !ctx.qry.show_all) { html(", branch "); html_txt(tip); } html("</title>\n"); html("<subtitle>"); html_txt(ctx.repo->desc); html("</subtitle>\n"); if (host) { char *repourl = cgit_repourl(ctx.repo->url); html("<link rel='alternate' type='text/html' href='"); html(cgit_httpscheme()); html_attr(host); html_attr(repourl); html("'/>\n"); free(repourl); } while ((commit = get_revision(&rev)) != NULL) { add_entry(commit, host); free_commit_buffer(the_repository->parsed_objects, commit); free_commit_list(commit->parents); commit->parents = NULL; } html("</feed>\n"); free(host); }