From 2809d5565cc9548c01fbb44be96d1aa66c3447b9 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse Date: Wed, 3 Jul 2013 14:30:29 +0200 Subject: [PATCH] Build request web page and improved navigation topbar. --- buildrequests.html | 152 +++++++++++++++++++++++++++++++++++++++++++++ cmsgit | 3 + externals.html | 17 ++++- index.html | 9 ++- 4 files changed, 176 insertions(+), 5 deletions(-) create mode 100644 buildrequests.html diff --git a/buildrequests.html b/buildrequests.html new file mode 100644 index 0000000..ed3f842 --- /dev/null +++ b/buildrequests.html @@ -0,0 +1,152 @@ + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + + + + +
IdReleasePackageRepositoryArchitecturePKGTOOLSCMSDISTMachine
+
+
+ + + + + diff --git a/cmsgit b/cmsgit index 60586f8..774037f 100755 --- a/cmsgit +++ b/cmsgit @@ -375,6 +375,9 @@ if __name__ == "__main__": elif pathInfo.startswith("/buildRequestor"): f = open("build-request.html") httpReply("text/html", etag, htmlHeader, open("default.css"), "", f, "") + elif pathInfo.startswith("/buildrequests"): + f = open("buildrequests.html") + httpReply("text/html", etag, htmlHeader, open("default.css"), "", f, "") elif pathInfo.startswith("/externals"): f = open("externals.html") httpReply("text/html", etag, htmlHeader, open("default.css"), "", f, "") diff --git a/externals.html b/externals.html index 42fb450..b02d81a 100644 --- a/externals.html +++ b/externals.html @@ -4,7 +4,17 @@ '); }); diff --git a/index.html b/index.html index 70af9fc..c8d80d8 100644 --- a/index.html +++ b/index.html @@ -4,6 +4,11 @@