[Buildbot-commits] buildbot/buildbot/status/web classic.css, NONE, 1.1 waterfall.py, 1.1, 1.2

Brian Warner warner at users.sourceforge.net
Tue Feb 27 23:07:18 UTC 2007


Update of /cvsroot/buildbot/buildbot/buildbot/status/web
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7101/buildbot/status/web

Modified Files:
	waterfall.py 
Added Files:
	classic.css 
Log Message:
[project @ web-parts: fix more issues resulting from moving html.py into web/*]

Original author: warner at lothar.com
Date: 2007-02-27 22:14:46

--- NEW FILE: classic.css ---
a:visited {
	color: #800080;
}

td.Event, td.BuildStep, td.Activity, td.Change, td.Time, td.Builder {
    border-top: 1px solid;
    border-right: 1px solid;
}

/* Activity states */
.offline { 
        background-color: red;
}
.idle {
	background-color: white;
}
.waiting { 
        background-color: yellow;
}
.building { 
        background-color: yellow;
}

/* LastBuild, BuildStep states */
.success {
	background-color: #72ff75;
}
.failure {
	background-color: red;
}
.warnings {
	background-color: #ff8000;
}
.exception {
	background-color: #c000c0;
}
.start,.running {
	background-color: yellow;
}

Index: waterfall.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/buildbot/status/web/waterfall.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- waterfall.py	27 Feb 2007 23:03:24 -0000	1.1
+++ waterfall.py	27 Feb 2007 23:07:16 -0000	1.2
@@ -1569,7 +1569,7 @@
     # the icon is sibpath(__file__, "../buildbot.png") . This is for
     # portability.
     up = os.path.dirname
-    buildbot_icon = os.path.abspath(os.path.join(up(up(__file__)),
+    buildbot_icon = os.path.abspath(os.path.join(up(up(up(__file__))),
                                                  "buildbot.png"))
     buildbot_css = os.path.abspath(os.path.join(up(__file__), "classic.css"))
 





More information about the Commits mailing list