[Buildbot-commits] buildbot setup.py,1.31,1.32 MANIFEST.in,1.14,1.15 ChangeLog,1.378,1.379

Brian Warner warner at users.sourceforge.net
Tue Apr 26 02:43:14 UTC 2005


Update of /cvsroot/buildbot/buildbot
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16751

Modified Files:
	setup.py MANIFEST.in ChangeLog 
Log Message:
* buildbot/status/html.py (HtmlResource.content): make the
stylesheet <link> always point at "buildbot.css".
(StatusResource.getChild): map "buildbot.css" to a static.File
containing whatever css= argument was provided to Waterfall()
(Waterfall): provide the "classic" css as the default.
* docs/waterfall.classic.css: move default CSS from here ..
* buildbot/status/classic.css: .. to here

* MANIFEST.in: make sure classic.css is included in the tarball
* setup.py: and that it is installed too, under buildbot/status/


Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/buildbot/ChangeLog,v
retrieving revision 1.378
retrieving revision 1.379
diff -u -d -r1.378 -r1.379
--- ChangeLog	26 Apr 2005 02:13:48 -0000	1.378
+++ ChangeLog	26 Apr 2005 02:43:12 -0000	1.379
@@ -1,5 +1,16 @@
 2005-04-25  Brian Warner  <warner at lothar.com>
 
+	* buildbot/status/html.py (HtmlResource.content): make the
+	stylesheet <link> always point at "buildbot.css".
+	(StatusResource.getChild): map "buildbot.css" to a static.File
+	containing whatever css= argument was provided to Waterfall()
+	(Waterfall): provide the "classic" css as the default.
+	* docs/waterfall.classic.css: move default CSS from here ..
+	* buildbot/status/classic.css: .. to here
+
+	* MANIFEST.in: make sure classic.css is included in the tarball
+	* setup.py: and that it is installed too, under buildbot/status/
+
 	* buildbot/master.py (BuildMaster): oops, set .change_svc=None at
 	the module level, because buildbot.tap files from 0.6.2 don't have
 	it in their attribute dictionary.

Index: MANIFEST.in
===================================================================
RCS file: /cvsroot/buildbot/buildbot/MANIFEST.in,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- MANIFEST.in	21 Apr 2005 00:46:34 -0000	1.14
+++ MANIFEST.in	26 Apr 2005 02:43:12 -0000	1.15
@@ -9,6 +9,7 @@
 include buildbot/plugins.tml
 include buildbot/test/mail/* buildbot/test/subdir/*
 include buildbot/scripts/sample.cfg buildbot/scripts/sample.mk
+include buildbot/status/classic.css
 include buildbot/buildbot.png
 
 exclude buildbot/test/test_trial.py

Index: setup.py
===================================================================
RCS file: /cvsroot/buildbot/buildbot/setup.py,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- setup.py	19 Apr 2005 08:37:24 -0000	1.31
+++ setup.py	26 Apr 2005 02:43:12 -0000	1.32
@@ -54,6 +54,7 @@
                 "buildbot.test"],
       data_files=[("buildbot", ["buildbot/plugins.tml",
                                 "buildbot/buildbot.png"]),
+                  ("buildbot/status", ["buildbot/status/classic.css"]),
                   ("buildbot/scripts", ["buildbot/scripts/sample.cfg",
                                         "buildbot/scripts/sample.mk"]),],
       scripts = scripts,





More information about the Commits mailing list