diff options
author | Rob Landley <rob@landley.net> | 2015-01-01 17:37:57 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-01-01 17:37:57 -0600 |
commit | 3c9940445e71d9b4701449cc0dc47f7ac32d5803 (patch) | |
tree | 53d06ac694897ce10ba5af61aea2f60335760311 /scripts | |
parent | 82effc97f9f2d1c258ea50cb11b130753b8ba805 (diff) | |
download | toybox-3c9940445e71d9b4701449cc0dc47f7ac32d5803.tar.gz |
Tweak status.html
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/mkstatus.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/mkstatus.py b/scripts/mkstatus.py index 5ac6f085..82592c71 100755 --- a/scripts/mkstatus.py +++ b/scripts/mkstatus.py @@ -31,9 +31,12 @@ for i in stuff: for i in toystuff: try: + if ("ready" in reverse[i]) and ("pending" in reverse[i]): print "barf", i + except: pass + try: if ("ready" in reverse[i]) or ("pending" in reverse[i]): continue except: pass - print i + print "Not ready or pending:", i pending=[] done=[] @@ -48,7 +51,7 @@ conv = [("posix", '<a href="http://pubs.opengroup.org/onlinepubs/9699919799/util ("development", '<a href="http://linux.die.net/man/1/%s">%%s</a>', '(%s)'), ("toolbox", "", '{%s}'), ("klibc_cmd", "", '=%s='), ("sash_cmd", "", '#%s#'), ("sbase_cmd", "", '@%s@'), - ("beastiebox_cmd", "", '*%s*'), + ("beastiebox_cmd", "", '*%s*'), ("tizen", "", '$%s$'), ("request", '<a href="http://linux.die.net/man/1/%s">%%s</a>', '+%s+')] |