+
+ if (!cgit_query_head) {
+ cgit_query_head = xstrdup(find_default_branch(cgit_repo));
+ cgit_repo->defbranch = cgit_query_head;
+ }
+
+ if (!cgit_query_head) {
+ cgit_print_docstart(title, item);
+ cgit_print_pageheader(title, 0);
+ cgit_print_error("Repository seems to be empty");
+ cgit_print_docend();
+ return;
+ }
+
+ if (get_sha1(cgit_query_head, sha1)) {
+ tmp = xstrdup(cgit_query_head);
+ cgit_query_head = cgit_repo->defbranch;
+ cgit_print_docstart(title, item);
+ cgit_print_pageheader(title, 0);
+ cgit_print_error(fmt("Invalid branch: %s", tmp));
+ cgit_print_docend();
+ return;
+ }
+
+ if ((cgit_cmd == CMD_SNAPSHOT) && cgit_repo->snapshots) {
+ cgit_print_snapshot(item, cgit_query_head, cgit_query_sha1,
+ cgit_repobasename(cgit_repo->url),
+ cgit_query_path,
+ cgit_repo->snapshots );
+ return;
+ }
+
+ if (cgit_cmd == CMD_PATCH) {
+ cgit_print_patch(cgit_query_sha1, item);
+ return;
+ }
+
+ if (cgit_cmd == CMD_BLOB) {
+ cgit_print_blob(item, cgit_query_sha1, cgit_query_path);
+ return;
+ }
+
+ show_search = (cgit_cmd == CMD_LOG);