List for cgit developers and users
 help / color / mirror / Atom feed
* [PATCH 1/1] ui-shared: Simplify cgit_print_error_page() logic
@ 2016-05-11 17:50 wub
  2016-05-11 18:31 ` john
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: wub @ 2016-05-11 17:50 UTC (permalink / raw)


---
This may be a little controversial, but right now is there a reason not
to do this?

 ui-shared.c | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/ui-shared.c b/ui-shared.c
index 9a38aa9..d9541f0 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -792,13 +792,11 @@ void cgit_print_error_page(int code, const char *msg, const char *fmt, ...)
 	ctx.page.expires = ctx.cfg.cache_dynamic_ttl;
 	ctx.page.status = code;
 	ctx.page.statusmsg = msg;
-	cgit_print_http_headers();
-	cgit_print_docstart();
-	cgit_print_pageheader();
+	cgit_print_layout_start()
 	va_start(ap, fmt);
 	cgit_vprint_error(fmt, ap);
 	va_end(ap);
-	cgit_print_docend();
+	cgit_print_layout_end();
 }
 
 void cgit_print_layout_start(void)
-- 
2.8.1



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-12 15:38 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-05-11 17:50 [PATCH 1/1] ui-shared: Simplify cgit_print_error_page() logic wub
2016-05-11 18:31 ` john
2016-05-12 15:26 ` Jason
2016-05-12 15:38 ` Jason

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).