[Bps-public-commit] smokingit branch, master, updated. 898ba67c1f07d1df8df3a04838d8ab6d8a8c3fb2

Alex Vandiver alexmv at bestpractical.com
Fri Jan 28 16:41:38 EST 2011


The branch, master has been updated
       via  898ba67c1f07d1df8df3a04838d8ab6d8a8c3fb2 (commit)
       via  79fc808356a0922bc01c8252ae0386444ddf7cdd (commit)
       via  7b67c7a38a04c4eb0f66fa1f2e59d8b0814eb1ca (commit)
       via  4f65eb9455aca77c4be17f73dbba291986e6a7e6 (commit)
      from  a943873435d125f4f2ceeb6f9f0342271e9fd41c (commit)

Summary of changes:
 bin/local_updates                             |    2 +-
 bin/start-gearmand                            |    5 +---
 lib/Smokingit/Model/Commit.pm                 |    2 +-
 share/web/static/css/app-late.css             |   32 +++++++++++++-----------
 share/web/static/css/main.css                 |   11 ++++++++
 share/web/static/images/silk/server_error.png |  Bin 0 -> 678 bytes
 6 files changed, 31 insertions(+), 21 deletions(-)
 create mode 100644 share/web/static/css/main.css
 create mode 100644 share/web/static/images/silk/server_error.png

- Log -----------------------------------------------------------------
commit 4f65eb9455aca77c4be17f73dbba291986e6a7e6
Author: Alex Vandiver <alex at chmrr.net>
Date:   Fri Jan 28 00:56:37 2011 -0500

    Use #!/usr/bin/env perl for greater portability

diff --git a/bin/local_updates b/bin/local_updates
index c453c5a..cb60515 100755
--- a/bin/local_updates
+++ b/bin/local_updates
@@ -1,4 +1,4 @@
-#!/usr/bin/perl
+#!/usr/bin/env perl
 
 use strict;
 use warnings;

commit 7b67c7a38a04c4eb0f66fa1f2e59d8b0814eb1ca
Author: Alex Vandiver <alex at chmrr.net>
Date:   Fri Jan 28 00:57:28 2011 -0500

    Trim out some CSS includes we do not need

diff --git a/share/web/static/css/main.css b/share/web/static/css/main.css
new file mode 100644
index 0000000..3b88cd0
--- /dev/null
+++ b/share/web/static/css/main.css
@@ -0,0 +1,11 @@
+ at import "app-base.css";
+ at import "base.css";
+ at import "keybindings.css";
+ at import "forms.css";
+ at import "app.css";
+ at import "autocomplete.css";
+ at import "notices.css";
+ at import "jquery.autocomplete.css";
+ at import "jquery.jgrowl.css";
+ at import "facebox.css";
+ at import "app-late.css";

commit 79fc808356a0922bc01c8252ae0386444ddf7cdd
Author: Alex Vandiver <alex at chmrr.net>
Date:   Fri Jan 28 16:39:23 2011 -0500

    Split out parsefail into its own icon

diff --git a/lib/Smokingit/Model/Commit.pm b/lib/Smokingit/Model/Commit.pm
index 0e43846..755ba87 100644
--- a/lib/Smokingit/Model/Commit.pm
+++ b/lib/Smokingit/Model/Commit.pm
@@ -116,7 +116,7 @@ sub status {
         } elsif ($result->failed) {
             return ("failing", $result->failed . " failed");
         } elsif ($result->parse_errors) {
-            return ("failing", $result->parse_errors . " parse errors");
+            return ("parsefail", $result->parse_errors . " parse errors");
         } elsif ($result->exit) {
             return ("failing", "Bad exit status (".$result->exit.")");
         } elsif ($result->wait) {
diff --git a/share/web/static/css/app-late.css b/share/web/static/css/app-late.css
index 5e4cdeb..6978b8d 100644
--- a/share/web/static/css/app-late.css
+++ b/share/web/static/css/app-late.css
@@ -271,14 +271,15 @@ li {
   font-size: 145%;
 }
 
-.commitlist .commit.passing  .sha { color: #1c1; }
-.commitlist .commit.failing  .sha { color: #f11; }
-.commitlist .commit.todo     .sha { color: #fa0; }
-.commitlist .commit.errors   .sha { color: #f11; }
-.commitlist .commit.testing  .sha { color: #11f; }
-.commitlist .commit.queued   .sha { color: #115; }
-.commitlist .commit.broken   .sha { color: #f11; }
-.commitlist .commit.untested .sha { color: #555; }
+.commitlist .commit.passing   .sha { color: #1c1; }
+.commitlist .commit.failing   .sha { color: #f11; }
+.commitlist .commit.todo      .sha { color: #fa0; }
+.commitlist .commit.parsefail .sha { color: #f11; }
+.commitlist .commit.errors    .sha { color: #f11; }
+.commitlist .commit.testing   .sha { color: #11f; }
+.commitlist .commit.queued    .sha { color: #115; }
+.commitlist .commit.broken    .sha { color: #f11; }
+.commitlist .commit.untested  .sha { color: #555; }
 
 .commitlist .okbox {
   float: left;
@@ -292,13 +293,14 @@ li {
   line-height: 16px;
   text-align: center;
 }
-.commitlist .okbox.passing { background-image: url('/static/images/silk/tick.png');            }
-.commitlist .okbox.todo    { background-image: url('/static/images/silk/asterisk_orange.png'); }
-.commitlist .okbox.failing { background-image: url('/static/images/silk/cross.png');           }
-.commitlist .okbox.errors  { background-image: url('/static/images/silk/error.png');           }
-.commitlist .okbox.testing { background-image: url('/static/images/silk/cog.png');             }
-.commitlist .okbox.queued  { background-image: url('/static/images/silk/hourglass.png');       }
-.commitlist .okbox.broken  { background-image: url('/static/images/silk/exclamation.png');     }
+.commitlist .okbox.passing   { background-image: url('/static/images/silk/tick.png');            }
+.commitlist .okbox.todo      { background-image: url('/static/images/silk/asterisk_orange.png'); }
+.commitlist .okbox.failing   { background-image: url('/static/images/silk/cross.png');           }
+.commitlist .okbox.parsefail { background-image: url('/static/images/silk/exclamation.png');     }
+.commitlist .okbox.errors    { background-image: url('/static/images/silk/error.png');           }
+.commitlist .okbox.testing   { background-image: url('/static/images/silk/cog.png');             }
+.commitlist .okbox.queued    { background-image: url('/static/images/silk/hourglass.png');       }
+.commitlist .okbox.broken    { background-image: url('/static/images/silk/server_error.png');    }
 
 .commitlist .branchpoint {
   clear: both;
diff --git a/share/web/static/images/silk/server_error.png b/share/web/static/images/silk/server_error.png
new file mode 100644
index 0000000..f640256
Binary files /dev/null and b/share/web/static/images/silk/server_error.png differ

commit 898ba67c1f07d1df8df3a04838d8ab6d8a8c3fb2
Author: Alex Vandiver <alex at chmrr.net>
Date:   Fri Jan 28 16:41:32 2011 -0500

    Don't bother writing to the pg database; we have enough rope to reconstruct it

diff --git a/bin/start-gearmand b/bin/start-gearmand
index 52a5041..01d8a90 100755
--- a/bin/start-gearmand
+++ b/bin/start-gearmand
@@ -6,7 +6,4 @@ gearmand \
     --verbose \
     --pid-file=var/gearman.pid \
     --log-file=log/gearmand.log \
-    --port=4730 \
-    --queue-type=libpq \
-    --libpq-conninfo="user=postgres dbname=smokingit" \
-    --libpq-table="gearman"
+    --port=4730

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list