aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 4f47c50..0838e18 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -73,6 +73,14 @@ const char *cgit_rooturl()
73 return ctx.cfg.script_name; 73 return ctx.cfg.script_name;
74} 74}
75 75
76const char *cgit_loginurl()
77{
78 static const char *login_url = 0;
79 if (!login_url)
80 login_url = fmtalloc("%s?p=login", cgit_rooturl());
81 return login_url;
82}
83
76char *cgit_repourl(const char *reponame) 84char *cgit_repourl(const char *reponame)
77{ 85{
78 if (ctx.cfg.virtual_root) 86 if (ctx.cfg.virtual_root)