aboutsummaryrefslogtreecommitdiff
path: root/dialogs.c
diff options
context:
space:
mode:
authortenox <as@tenoware.com>2017-01-13 01:10:48 -0800
committertenox <as@tenoware.com>2017-01-13 01:10:48 -0800
commitc1a3a46007249c6de1c461b38a03ded6297df6de (patch)
tree2f235ca952425f4fcbc07c2243556c8c04c03c26 /dialogs.c
parent036ed644dd334ce5113eac503d5e14c5bee2b8ca (diff)
downloadwfm-c1a3a46007249c6de1c461b38a03ded6297df6de.tar.gz
initial git support
Diffstat (limited to 'dialogs.c')
-rw-r--r--dialogs.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/dialogs.c b/dialogs.c
index 6ebad0d..7926a26 100644
--- a/dialogs.c
+++ b/dialogs.c
@@ -246,8 +246,11 @@ void about(void) {
"Server Side RFC 1321 implementation by L. Peter Deutsch<BR>\n"
"Client Side RFC 1321 implementation by Paul Johnston<BR>\n"
"Icons by Yusuke Kamiyamane<BR>\n"
+#ifdef WFMGIT
+ "Uses libgit2 library<BR>\n"
+#endif
"URL Encoding routines by Fred Bulback<BR>\n"
- "Copyright &copy; 1994-2016 by Antoni Sawicki<BR>\n"
+ "Copyright &copy; 1994-2017 by Antoni Sawicki<BR>\n"
"Copyright &copy; 1996-2011 by Thomas Boutell and Boutell.Com, Inc.<BR>\n"
"Copyright &copy; 2002 by Aladdin Enterprises<BR>\n"
"Copyright &copy; 1999-2009 by Paul Johnston<BR>\n"
@@ -258,6 +261,7 @@ void about(void) {
"Server: %s<BR>\n"
"User Agent: %s<BR>\n"
"JavaScript Level: %d<BR>\n"
+ "Git Support: %s (%s)<BR>\n"
"&nbsp;<P>\n"
"&nbsp;<P>\n"
"</TD>\n"
@@ -274,7 +278,14 @@ void about(void) {
"<TR><TD COLSPAN=3 BGCOLOR=\"#EEEEEE\">&nbsp;</TD></TR>\n"
"</TABLE>\n"
"</TD></TR></TABLE>\n</BODY></HTML>\n",
- ICONSURL, TAGLINE, VERSION, __DATE__, __TIME__, __VERSION__, cgiServerSoftware, cgiUserAgent, js, cgiScriptName, virt_dirname, token);
+ ICONSURL, TAGLINE, VERSION, __DATE__, __TIME__, __VERSION__, cgiServerSoftware, cgiUserAgent, js,
+#ifdef WFMGIT
+ "Yes"
+#else
+ "No"
+#endif
+ , (repo_check()) ? "Oo Repo Present" : "Repo OK",
+ cgiScriptName, virt_dirname, token);
}