From e0cc81ef759b22e79c516bf5dbc6207c45447e4f Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sat, 1 Dec 2012 18:27:37 -0600 Subject: Generate status page with new pubs.opengroup.org urls. --- scripts/mkstatus.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'scripts/mkstatus.py') diff --git a/scripts/mkstatus.py b/scripts/mkstatus.py index 2ec2152c..6c24d1a1 100755 --- a/scripts/mkstatus.py +++ b/scripts/mkstatus.py @@ -23,13 +23,13 @@ pending=[] done=[] outfile=open("www/status.gen", "w") -outfile.write("

All commands

\n") +outfile.write("

All commands

\n") blah=list(reverse) blah.sort() for i in blah: out=i - if "posix" in reverse[i]: out='[%s]' % (i,out) + if "posix" in reverse[i]: out='[%s]' % (i,out) elif "lsb" in reverse[i]: out='<%s>' % (i,out) elif "development" in reverse[i]: out='(%s)' % (i,out) elif "request" in reverse[i]: out='%s' % (i,out) @@ -46,5 +46,5 @@ for i in blah: outfile.write("

\n") -outfile.write("

TODO

%s

\n" % "\n".join(pending)) -outfile.write("

Done

%s

\n" % "\n".join(done)) +outfile.write("

TODO

%s

\n" % "\n".join(pending)) +outfile.write("

Done

%s

\n" % "\n".join(done)) -- cgit v1.2.3