about summary refs log tree commit diff stats
path: root/xxxterm.c
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2010-12-23 16:51:51 +0000
committerMarco Peereboom <marco@conformal.com>2010-12-23 16:51:51 +0000
commit3f414e89dd6c219c88825e99f62943e7da6a33a8 (patch)
tree4036c8cc2b461ffa0c974ca45dfef62ae9d931f6 /xxxterm.c
parent52fc880014773f4406724d58a8bb9709bc0160a0 (diff)
downloadxombrero-3f414e89dd6c219c88825e99f62943e7da6a33a8.tar.gz
add about
Diffstat (limited to 'xxxterm.c')
-rw-r--r--xxxterm.c39
1 files changed, 38 insertions, 1 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 9ab05d3..752b4d0 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -999,6 +999,41 @@ focus(struct tab *t, struct karg *args)
 }
 
 int
+about(struct tab *t, struct karg *args)
+{
+	char			*about;
+
+	if (t == NULL)
+		errx(1, "about");
+
+
+	about = g_strdup_printf(XT_DOCTYPE
+	    "<html>"
+	    "<head>"
+	    "<title>About</title>"
+	    "</head>"
+	    "<h1>About</h1>"
+	    "<body>"
+	    "<b>Version: %s</b><p>"
+	    "Authors:"
+	    "<ul>"
+	    "<li>Marco Peereboom &lt;marco@peereboom.us&gt;</li>"
+	    "<li>Edd Barrett &lt;vext01@gmail.com&gt; </li>"
+	    "</ul>"
+	    "Copyrights and licenses can be found on the XXXterm "
+	    "<a href=\"http://opensource.conformal.com/wiki/XXXTerm\">website</a>"
+	    "</body>"
+	    "</html>",
+	    version
+	    );
+
+	webkit_web_view_load_string(t->wv, about, NULL, NULL, "");
+
+	g_free(about);
+	return (0);
+}
+
+int
 help(struct tab *t, struct karg *args)
 {
 	char			*help;
@@ -1022,7 +1057,7 @@ help(struct tab *t, struct karg *args)
 	    "</html>"
 	    ;
 
-	webkit_web_view_load_string(t->wv, help, NULL, NULL, NULL);
+	webkit_web_view_load_string(t->wv, help, NULL, NULL, "");
 
 	return (0);
 }
@@ -1991,6 +2026,8 @@ struct cmd {
 	{ "qa",			0,	quit,			{0} },
 	{ "qa!",		0,	quit,			{0} },
 	{ "help",		0,	help,			{0} },
+	{ "about",		0,	about,			{0} },
+	{ "version",		0,	about,			{0} },
 
 	/* favorites */
 	{ "fav",		0,	favorites,		{0} },