civu 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f1ee8610cf4359f1f24330497d83aa638184ef67
4
+ data.tar.gz: f36cb3e74a064f0f57dcee696fe0bc4d6865b7c1
5
+ SHA512:
6
+ metadata.gz: 1eb00639eaa228403d0f4e571fabe5443bcf07ff4e80d9c6a157a4caf2bf46260d1d73dc615b60b8b8a842c9a074f2fdff08416e919926673877c4280f3aef3b
7
+ data.tar.gz: 91920d6704d41886bc312e9027a78dae9bc19f1d85a72dc7bf2b32449104a164649e5d0efea8f85461aab9b370159f99756b1aeb08b70fce51c110bf82c08cf5
@@ -0,0 +1,21 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ jenkins/pidfile
19
+ jenkins/home/jobs/**/last*Build
20
+ jenkins/home/jobs/**/nextBuildNumber
21
+ jenkins/**/*.log
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in civu.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Ken Gullaksen
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,56 @@
1
+ # Civu
2
+
3
+ Civu is a simple ruby CLI for cloning git repos from jenkins views
4
+
5
+ ## Installation
6
+
7
+ $ gem install civu
8
+
9
+ ## Usage
10
+
11
+ List:
12
+
13
+ $ civu list view_name
14
+ $ civu list view_name --url https://myjenkins.org
15
+ $ civu list view_name --url https://myjenkins.org --username kenglxn
16
+ $ civu list view_name --url https://myjenkins.org --username kenglxn --password secret
17
+
18
+ Clone:
19
+
20
+ $ civu clone view_name
21
+ $ civu clone view_name --url https://myjenkins.org
22
+ $ civu clone view_name --url https://myjenkins.org --username kenglxn
23
+ $ civu clone view_name --url https://myjenkins.org --username kenglxn --password secret
24
+
25
+ Help:
26
+
27
+ $ civu --help
28
+
29
+ Note:
30
+ the view_name argument and the url, username and password options are required.
31
+ If you do not supply them, you will be asked for them interactively.
32
+ The interactive mode is recommended for password, since you dont want it laying around in your shells history.
33
+
34
+ ## Contributing
35
+
36
+ 1. Fork it
37
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
38
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
39
+ 4. Push to the branch (`git push origin my-new-feature`)
40
+ 5. Create new Pull Request
41
+
42
+ ### Building the source
43
+
44
+ To build and run all tests just run rake:
45
+
46
+ $ rake
47
+
48
+ This will start a jenkins server, and run the specs, and finally stop jenkins.
49
+
50
+ Starting jenkins does take some time, so to get a more rapid workflow you can start jenkins in another terminal.
51
+
52
+ $ rake start_jenkins
53
+
54
+ then just run the specs each time you change something:
55
+
56
+ $ rake spec
@@ -0,0 +1,33 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new
5
+
6
+ task :default => :test
7
+ task :test => [:start_jenkins, :spec] do
8
+ Rake::Task[:stop_jenkins].execute
9
+ end
10
+
11
+ pidfile = 'jenkins/pidfile'
12
+
13
+ task :start_jenkins do
14
+ jenkins_pid = spawn 'java -DJENKINS_HOME=./jenkins/home -jar jenkins/jenkins.war'
15
+ File.open(pidfile, 'w+') { |f| f.write(jenkins_pid) }
16
+ puts "[CIVU] Jenkins starting... pid=#{jenkins_pid}"
17
+ sleep 33
18
+ puts "[CIVU] Jenkins should be up by now, pid=#{jenkins_pid}"
19
+ end
20
+
21
+ task :stop_jenkins do
22
+ jenkins_pid = IO.read(pidfile) if File.exist?(pidfile)
23
+ if jenkins_pid.nil? or jenkins_pid.empty?
24
+ puts '[CIVU] No pid found, unable to stop jenkins. Are you sure it is running?'
25
+ puts '[CIVU] If it is in the list below, please kill it manually:'
26
+ exec 'ps ax | grep jenkins'
27
+ else
28
+ puts "[CIVU] Killing pid=#{jenkins_pid}"
29
+ `kill -9 #{jenkins_pid}`
30
+ File.open(pidfile, 'w') { |f| f.write('') }
31
+ end
32
+ end
33
+
@@ -0,0 +1,48 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
4
+ $LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
5
+
6
+ require 'civu'
7
+ require 'rubygems'
8
+ require 'commander/import'
9
+ require 'civu/version'
10
+
11
+ program :version, Civu::VERSION
12
+ program :description, 'a simple ruby gem for cloning git repos from jenkins views'
13
+
14
+ command :list do |c|
15
+ c.syntax = 'civu list <view_name> [options]'
16
+ c.description = 'list all repo urls found in given view on jenkins'
17
+ c.example 'list git repos for view', 'civu list my_view --url http://myjenkins.org:8080 --username ken'
18
+ c.option '--url STRING', 'jenkins url'
19
+ c.option '--username STRING', 'username to use for authentication'
20
+ c.option '--password STRING', 'password to use for authentication'
21
+ c.option '--debug', 'log debug messages from client'
22
+ c.action do |args, options|
23
+ url = options.url || ask('What is the url to the jenkins server? ')
24
+ username = options.username || ask('What username should I use for authentication? ')
25
+ password = options.password || ask('What password should I use for authentication? ') { |q| q.echo = '*' }
26
+ view_name = args[0] || ask('Which view do you want to list git repo urls for? ')
27
+ client = Civu::Client.new(url, username, password, options.debug)
28
+ puts client.list(view_name)
29
+ end
30
+ end
31
+
32
+ command :clone do |c|
33
+ c.syntax = 'civu clone <view_name> [options]'
34
+ c.description = 'clone all repo urls found in given view on jenkins'
35
+ c.example 'clone git repos for view', 'civu clone my_view --url http://myjenkins.org:8080 --username ken'
36
+ c.option '--url STRING', 'jenkins url'
37
+ c.option '--username STRING', 'username to use for authentication'
38
+ c.option '--password STRING', 'password to use for authentication'
39
+ c.option '--debug', 'log debug messages from client'
40
+ c.action do |args, options|
41
+ url = options.url || ask('What is the url to the jenkins server? ')
42
+ username = options.username || ask('What username should I use for authentication? ')
43
+ password = options.password || ask('What password should I use for authentication? ') { |q| q.echo = '*' }
44
+ view_name = args[0] || ask('Which view do you want to list git repo urls for? ')
45
+ client = Civu::Client.new(url, username, password, options.debug)
46
+ client.clone(view_name)
47
+ end
48
+ end
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'civu/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "civu"
8
+ spec.version = Civu::VERSION
9
+ spec.authors = ["Ken Gullaksen"]
10
+ spec.email = ["ken.gullaksen@embriq.no"]
11
+ spec.description = "a simple CLI for cloning git repos from jenkins views"
12
+ spec.summary = "solves all your problems, even on mondays"
13
+ spec.homepage = "https://github.com/kenglxn/civu"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files | sed '/^jenkins/ d'`.split($/) # sed hack to remove jenkins folder from the gem
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ spec.add_development_dependency "rspec"
24
+
25
+ spec.add_runtime_dependency "jenkins_api_client"
26
+ spec.add_runtime_dependency "commander"
27
+ spec.add_runtime_dependency "nokogiri"
28
+ end
@@ -0,0 +1,692 @@
1
+
2
+
3
+
4
+
5
+
6
+ <!DOCTYPE html><html><head>
7
+
8
+
9
+ <title>quant [Jenkins]</title><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/css/style.css" /><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/css/color.css" /><link rel="shortcut icon" type="image/vnd.microsoft.icon" href="/static/d8fc5cc5/favicon.ico" /><script>var isRunAsTest=false; var rootURL=""; var resURL="/static/d8fc5cc5";</script><script src="/static/d8fc5cc5/scripts/prototype.js" type="text/javascript"></script><script src="/static/d8fc5cc5/scripts/behavior.js" type="text/javascript"></script><script src='/adjuncts/d8fc5cc5/org/kohsuke/stapler/bind.js' type='text/javascript'></script><script src="/static/d8fc5cc5/scripts/yui/yahoo/yahoo-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/dom/dom-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/event/event-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/animation/animation-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/dragdrop/dragdrop-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/container/container-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/connection/connection-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/datasource/datasource-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/autocomplete/autocomplete-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/menu/menu-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/element/element-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/button/button-min.js"></script><script src="/static/d8fc5cc5/scripts/yui/storage/storage-min.js"></script><script src="/static/d8fc5cc5/scripts/hudson-behavior.js" type="text/javascript"></script><script src="/static/d8fc5cc5/scripts/sortable.js" type="text/javascript"></script><script>crumb.init("", "");</script><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/scripts/yui/container/assets/container.css" /><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/scripts/yui/assets/skins/sam/skin.css" /><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/scripts/yui/container/assets/skins/sam/container.css" /><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/scripts/yui/button/assets/skins/sam/button.css" /><link rel="stylesheet" type="text/css" href="/static/d8fc5cc5/scripts/yui/menu/assets/skins/sam/menu.css" /><link title="Jenkins" rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" /><meta name="ROBOTS" content="INDEX,NOFOLLOW" /><link title="Jenkins:quant (all builds)" rel="alternate" type="application/rss+xml" href="/rssAll" /><link title="Jenkins:quant (all builds) (RSS 2.0)" rel="alternate" type="application/rss+xml" href="/rssAll?flavor=rss20" /><link title="Jenkins:quant (failed builds)" rel="alternate" type="application/rss+xml" href="/rssFailed" /><link title="Jenkins:quant (failed builds) (RSS 2.0)" rel="alternate" type="application/rss+xml" href="/rssFailed?flavor=rss20" /><script src="/static/d8fc5cc5/scripts/yui/cookie/cookie-min.js"></script><script>
10
+ YAHOO.util.Cookie.set("screenResolution", screen.width+"x"+screen.height);
11
+ </script><script src="/adjuncts/d8fc5cc5/org/kohsuke/stapler/jquery/jquery.full.js" type="text/javascript"></script><script>var Q=jQuery.noConflict()</script><link rel="stylesheet" type="text/css" href="/plugin/jquery-ui/css/jquery-ui-1.8.9.custom.css" /><script src="/plugin/jquery-ui/js/jquery-ui-1.8.9.custom.min.js"></script></head><body id="jenkins jenkins-1.542" class="yui-skin-sam"><a href="#skip2content" class="skiplink">Skip to content</a><table id="header" cellpadding="0" cellspacing="0" width="100%" border="0"><tr><td id="top-panel" colspan="2"><table cellpadding="0" cellspacing="0" width="100%" border="0"><tr><td style="font-weight:bold; font-size: 2em;"><a id="jenkins-home-link" href="/"><img id="jenkins-home-icon" height="34" alt="title" width="139" src="/static/d8fc5cc5/images/title.png" /></a></td><td style="vertical-align: middle; text-align: right; padding-right: 1em;"><form style="position:relative;" name="search" action="/view/quant/search/" class="no-json" method="get"><div id="search-box-minWidth"></div><div id="search-box-sizer"></div><div id="searchform"><input id="search-box" placeholder="search" name="q" class="has-default-text" /> <a href="http://wiki.jenkins-ci.org/display/JENKINS/Search+Box"><img height="16" alt="help for search" width="16" src="/static/d8fc5cc5/images/16x16/help.png" /></a><div id="search-box-completion"></div><script>createSearchBox("/view/quant/search/");</script></div></form></td><td id="login-field"><span> <a style="color:inherit" href="/login?from=%2Fview%2Fquant%2F"><b>log in</b></a></span></td></tr></table></td></tr><tr id="top-nav"><td id="left-top-nav" colspan="2"><link rel='stylesheet' href='/adjuncts/d8fc5cc5/lib/layout/breadcrumbs.css' type='text/css' /><script src='/adjuncts/d8fc5cc5/lib/layout/breadcrumbs.js' type='text/javascript'></script><div class="top-sticker noedge"><div class="top-sticker-inner"><div id="right-top-nav"><div id="right-top-nav"><div class="smallfont"><a href="?auto_refresh=true">ENABLE AUTO REFRESH</a></div></div></div><ul id="breadcrumbs"><li class="item"><a class="model-link inside" href="/">Jenkins</a></li><li class="children" href="/"></li><li class="item"><a class=" inside" href="/view/quant/">quant</a></li><li class="children" href="/view/quant/"></li></ul><div id="breadcrumb-menu-target"></div></div></div></td></tr></table><table id="main-table" height="70%" style="background-image: url(/static/d8fc5cc5/images/jenkins.png); background-repeat: no-repeat; background-position: bottom left;" width="100%" border="0"><tr><td id="side-panel" width="20%"><div id="navigation" style="min-height: 323px; height: auto !important; height: 323px;"><div id="tasks"><div class="task">
12
+
13
+
14
+ <a class="task-icon-link" href="/view/quant/asynchPeople/"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/images/24x24/user.png" /></a> <a class="task-link" href="/view/quant/asynchPeople/">People</a></div><div class="task">
15
+
16
+
17
+ <a class="task-icon-link" href="/view/quant/builds"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/images/24x24/notepad.png" /></a> <a class="task-link" href="/view/quant/builds">Build History</a></div><div class="task">
18
+
19
+
20
+ <a class="task-icon-link" href="/projectRelationship"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/images/24x24/search.png" /></a> <a class="task-link" href="/projectRelationship">Project Relationship</a></div><div class="task">
21
+
22
+
23
+ <a class="task-icon-link" href="/fingerprintCheck"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/images/24x24/fingerprint.png" /></a> <a class="task-link" href="/fingerprintCheck">Check File Fingerprint</a></div><div class="task">
24
+
25
+
26
+ <a class="task-icon-link" href="/cigame"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/plugin/ci-game/icons/game-22x22.png" /></a> <a class="task-link" href="/cigame">Leader board</a></div><div class="task">
27
+
28
+
29
+ <a class="task-icon-link" href="/claims"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/plugin/claim/icons/claim-24x24.png" /></a> <a class="task-link" href="/claims">Claim Report</a></div><div class="task">
30
+
31
+
32
+ <a class="task-icon-link" href="/plugin/disk-usage/"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/plugin/disk-usage/icons/diskusage48.png" /></a> <a class="task-link" href="/plugin/disk-usage/">Disk usage</a></div><div class="task">
33
+
34
+
35
+ <a class="task-icon-link" href="https://jenkins.embriq.no//plugin/jenkinswalldisplay/walldisplay.html?viewName=quant&amp;jenkinsUrl=https%3A%2F%2Fjenkins.embriq.no%2F"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/plugin/jenkinswalldisplay/images/icon.png" /></a> <a class="task-link" href="https://jenkins.embriq.no//plugin/jenkinswalldisplay/walldisplay.html?viewName=quant&amp;jenkinsUrl=https%3A%2F%2Fjenkins.embriq.no%2F">Wall Display</a></div><div class="task">
36
+
37
+
38
+ <a class="task-icon-link" href="/depgraph-view"><img height="24" style="margin: 2px;" alt="" width="24" class="task-icon" src="/static/d8fc5cc5/images/24x24/graph.gif" /></a> <a class="task-link" href="/depgraph-view">Dependency Graph</a></div></div><table id="buildQueue" class="pane"><tr><td colspan="2" class="pane-header"><div>Build Queue (14)<a title="collapse" class="collapse" href="/toggleCollapse?paneId=buildQueue"><img alt="collapse" class="icon16x16" src="/static/d8fc5cc5/images/16x16/collapse.png" /></a></div></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/gs2codec/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=gs2codec&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">gs2codec</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/metermaid-sql/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=metermaid-sql&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">metermaid<wbr>-sql</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/embriq-schema-test-utils/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=embriq-schema-test-utils&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">embriq<wbr>-schema<wbr>-test<wbr>-utils</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/ams-messages-values/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=ams-messages-values&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">ams<wbr>-messages<wbr>-values</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/amra-sql/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=amra-sql&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">amra<wbr>-sql</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/em-exceptions/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=em-exceptions&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">em<wbr>-exceptions</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/em-logging/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=em-logging&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">em<wbr>-logging</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/tex-template/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=tex-template&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">tex<wbr>-template</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/em-test-resources/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=em-test-resources&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">em<wbr>-test<wbr>-resources</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/external-embriq-metering-schema/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=external-embriq-metering-schema&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">external<wbr>-embriq<wbr>-metering<wbr>-schema</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/ctm-sql/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=ctm-sql&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">ctm<wbr>-sql</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/ams-messages-command/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=ams-messages-command&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">ams<wbr>-messages<wbr>-command</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/external-pswin-soap-sms/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;NAME=external-pswin-soap-sms&lt;br&gt;MAJOR_VERSION=2.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;Waiting for 1.8 sec">external<wbr>-pswin<wbr>-soap<wbr>-sms</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr><tr><td class="pane" width="100%" style="white-space: normal;"><a class="model-link inside tl-tr" href="/job/rio-parent/" tooltip="In the quiet period. Expires in 8.1 sec&lt;br&gt;MAJOR_VERSION=3.0&lt;br&gt;VERSION=$MAJOR_VERSION.$BUILD_NUMBER&lt;br&gt;NAME=rio-parent&lt;br&gt;Waiting for 1.8 sec">rio<wbr>-parent</a></td><td class="pane" width="16" align="center" valign="middle"></td></tr></table><script defer="defer">refreshPart('buildQueue',"/ajaxBuildQueue");</script><table id="executors" class="pane"><tr><td colspan="3" class="pane-header"><div><a href='/computer/'>Build Executor Status</a><a title="collapse" class="collapse" href="/toggleCollapse?paneId=executors"><img alt="collapse" class="icon16x16" src="/static/d8fc5cc5/images/16x16/collapse.png" /></a></div></td></tr><colgroup><col width="1*" /><col width="200*" /><col width="24" /></colgroup><tr><th class="pane">#</th><th class="pane" colspan="2"><div style="margin-right:19px">Status</div></th></tr><tr><th class="pane" colspan="3"><a class="model-link inside" href="/computer/(master)/">master</a></th></tr><tr><td class="pane" align="right" style="vertical-align: top">1</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">2</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">3</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">4</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">5</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">6</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">7</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">8</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><th class="pane" colspan="3"><a class="model-link inside" href="/computer/windows-build/">windows-build</a></th></tr><tr><td class="pane" align="right" style="vertical-align: top">1</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">2</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">3</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">4</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">5</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">6</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">7</td><td class="pane">Idle</td><td class="pane"></td></tr><tr><td class="pane" align="right" style="vertical-align: top">8</td><td class="pane">Idle</td><td class="pane"></td></tr></table><script defer="defer">refreshPart('executors',"/ajaxExecutors");</script></div></td><td id="main-panel" width="80%" height="100%"><a name="skip2content"></a><div id="view-message"><div id="systemmessage"><h1>Embriq build server!</h1></div><div id="description"><div></div></div></div><div class="dashboard"><table cellpadding="0" cellspacing="0" id="viewList"><tr style="height:3px;"><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td class="active" rowspan="2">quant</td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td><td style="height:3px; padding:0px"></td></tr><tr><td style="border: none; border-bottom: 1px solid #bbb;"> </td><td class="inactive noRight"><a href="/view/All/">All</a></td><td class="inactive noRight"><a href="/view/Test-Dashboard/">Test-Dashboard</a></td><td class="inactive noRight"><a href="/view/amra/">amra</a></td><td class="inactive noRight"><a href="/view/ams/">ams</a></td><td class="inactive noRight"><a href="/view/build-templates/">build-templates</a></td><td class="inactive noRight"><a href="/view/cip/">cip</a></td><td class="inactive noRight"><a href="/view/ctm/">ctm</a></td><td class="inactive noRight"><a href="/view/deploy/">deploy</a></td><td class="inactive noRight"><a href="/view/deploy-old/">deploy-old</a></td><td class="inactive noRight"><a href="/view/experimental/">experimental</a></td><td class="inactive noRight"><a href="/view/external/">external</a></td><td class="inactive noRight"><a href="/view/grid/">grid</a></td><td class="inactive noRight"><a href="/view/latex/">latex</a></td><td class="inactive noRight"><a href="/view/mdm/">mdm</a></td><td class="inactive noRight"><a href="/view/migration/">migration</a></td><td class="inactive noRight"><a href="/view/mobile/">mobile</a></td><td class="inactive noRight"><a href="/view/products/">products</a></td><td class="inactive noRight"><a href="/view/qc/">qc</a></td><td class="inactive noLeft"><a href="/view/quant-1.0/">quant-1.0</a></td><td class="inactive noLeft"><a href="/view/quant-doc/">quant-doc</a></td><td class="inactive noLeft"><a href="/view/quant-release/">quant-release</a></td><td class="inactive noLeft"><a href="/view/schemas/">schemas</a></td><td class="inactive noLeft"><a href="/view/software-release-notes/">software-release-notes</a></td><td class="filler"> </td></tr></table><table id="projectstatus" style="margin-top:0px; border-top: none;" class="sortable pane bigtable"><tr style="border-top: 0px;"><th tooltip="Status of the last build">&nbsp;&nbsp;&nbsp;S</th><th tooltip="Weather report showing aggregated status of recent builds">&nbsp;&nbsp;&nbsp;W</th><th initialSortDir="down">Name</th><th tooltip="&lt;span style='text-decoration: underline; color: #ef2929'&gt;Failed&lt;/span&gt;; &lt;span style='text-decoration: underline; color: #ffa500'&gt;Unstable&lt;/span&gt;; &lt;span style='text-decoration: underline; color: #acda00'&gt;Stable&lt;/span&gt; &lt;br/&gt; &lt;b&gt;More Recent&lt;/b&gt; &gt; Less Recent ">Last Statuses</th><th>Last Duration</th><th width="1"> </th><th> </th></tr><tr id="job_aen-performance-test"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
39
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/aen-performance-test/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/aen-performance-test/">aen<wbr>-performance<wbr>-test</a></td><td data="1388745688274"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/aen-performance-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2000 (Latest Build)&lt;/u&gt;&lt;/b&gt;
40
+ &lt;ul&gt;
41
+ &lt;li&gt;Built @ &lt;b&gt;11:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
42
+ &lt;li&gt;Started 2.7 hr ago&lt;/li&gt;
43
+ &lt;li&gt;Lasted &lt;b&gt;2 min 7 sec&lt;/b&gt;&lt;/li&gt;
44
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
45
+ &lt;/ul&gt;">2.7 hr</a></td><td data="127565">2 min 7 sec</td><td></td><td> </td></tr><tr id="job_amr-adapters"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
46
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amr-adapters/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 187 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amr-adapters/">amr<wbr>-adapters</a></td><td data="1388743313530"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amr-adapters/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1884 (Latest Build)&lt;/u&gt;&lt;/b&gt;
47
+ &lt;ul&gt;
48
+ &lt;li&gt;Built @ &lt;b&gt;11:01 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
49
+ &lt;li&gt;Started 3.3 hr ago&lt;/li&gt;
50
+ &lt;li&gt;Lasted &lt;b&gt;47 sec&lt;/b&gt;&lt;/li&gt;
51
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
52
+ &lt;/ul&gt;">3.3 hr</a></td><td data="47041">47 sec</td><td></td><td> </td></tr><tr id="job_amr-adapters-headend-mock-ws"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
53
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amr-adapters-headend-mock-ws/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amr-adapters-headend-mock-ws/">amr<wbr>-adapters<wbr>-headend<wbr>-mock<wbr>-ws</a></td><td data="1388738033348"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amr-adapters-headend-mock-ws/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #433 (Latest Build)&lt;/u&gt;&lt;/b&gt;
54
+ &lt;ul&gt;
55
+ &lt;li&gt;Built @ &lt;b&gt;9:33 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
56
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
57
+ &lt;li&gt;Lasted &lt;b&gt;1 min 27 sec&lt;/b&gt;&lt;/li&gt;
58
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
59
+ &lt;/ul&gt;">4.8 hr</a></td><td data="87352">1 min 27 sec</td><td></td><td> </td></tr><tr id="job_amr-adapters-msi"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
60
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amr-adapters-msi/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amr-adapters-msi/">amr<wbr>-adapters<wbr>-msi</a></td><td data="1386265397000"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amr-adapters-msi/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1040 (Latest Build)&lt;/u&gt;&lt;/b&gt;
61
+ &lt;ul&gt;
62
+ &lt;li&gt;Built @ &lt;b&gt;6:43 PM, 12/5/2013&lt;/b&gt;&lt;/li&gt;
63
+ &lt;li&gt;Started 29 days ago&lt;/li&gt;
64
+ &lt;li&gt;Lasted &lt;b&gt;1 min 19 sec&lt;/b&gt;&lt;/li&gt;
65
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
66
+ &lt;/ul&gt;">29 days</a></td><td data="79750">1 min 19 sec</td><td></td><td> </td></tr><tr id="job_amr-adapters-system-test"><td data="2"><img alt="Unstable" class="icon32x32" src="/static/d8fc5cc5/images/32x32/yellow.png" tooltip="Unstable" /></td><td data="99" class="healthReport" onmouseover="this.className='healthReport hover';return true;
67
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amr-adapters-system-test/lastBuild"><img alt="99%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 1 test failing out of a total of 254 tests.</td><td align="right">99</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 79 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amr-adapters-system-test/">amr<wbr>-adapters<wbr>-system<wbr>-test</a></td><td data="1388743374321"><a style="color: #ffa500; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/amr-adapters-system-test/1715" tooltip="&lt;b&gt;&lt;u&gt;Build #1715 (Latest Build)&lt;/u&gt;&lt;/b&gt;
68
+ &lt;ul&gt;
69
+ &lt;li&gt;Built @ &lt;b&gt;11:02 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
70
+ &lt;li&gt;Started 3.3 hr ago&lt;/li&gt;
71
+ &lt;li&gt;Lasted &lt;b&gt;1 min 13 sec&lt;/b&gt;&lt;/li&gt;
72
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
73
+ &lt;/ul&gt;">3.3 hr</a> > <a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amr-adapters-system-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1410&lt;/u&gt;&lt;/b&gt;
74
+ &lt;ul&gt;
75
+ &lt;li&gt;Built @ &lt;b&gt;9:15 PM, 12/5/2013&lt;/b&gt;&lt;/li&gt;
76
+ &lt;li&gt;Started 29 days ago&lt;/li&gt;
77
+ &lt;li&gt;Lasted &lt;b&gt;4 min 54 sec&lt;/b&gt;&lt;/li&gt;
78
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
79
+ &lt;/ul&gt;">29 days</a></td><td data="73169">1 min 13 sec</td><td></td><td> </td></tr><tr id="job_amr-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
80
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amr-documentation/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amr-documentation/">amr<wbr>-documentat<wbr>ion</a></td><td data="1388737784462"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amr-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #373 (Latest Build)&lt;/u&gt;&lt;/b&gt;
81
+ &lt;ul&gt;
82
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
83
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
84
+ &lt;li&gt;Lasted &lt;b&gt;1 min 58 sec&lt;/b&gt;&lt;/li&gt;
85
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
86
+ &lt;/ul&gt;">4.9 hr</a></td><td data="118498">1 min 58 sec</td><td></td><td> </td></tr><tr id="job_amra-sql"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
87
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/amra-sql/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/amra-sql/">amra<wbr>-sql</a></td><td data="1388737575823"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/amra-sql/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #160 (Latest Build)&lt;/u&gt;&lt;/b&gt;
88
+ &lt;ul&gt;
89
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
90
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
91
+ &lt;li&gt;Lasted &lt;b&gt;58 sec&lt;/b&gt;&lt;/li&gt;
92
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
93
+ &lt;/ul&gt;">4.9 hr</a></td><td data="58023">58 sec</td><td></td><td> </td></tr><tr id="job_ams-data-migration-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
94
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-data-migration-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-data-migration-documentation/">ams<wbr>-data<wbr>-migration<wbr>-documentat<wbr>ion</a></td><td data="1388737780874"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-data-migration-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #310 (Latest Build)&lt;/u&gt;&lt;/b&gt;
95
+ &lt;ul&gt;
96
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
97
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
98
+ &lt;li&gt;Lasted &lt;b&gt;1 min 14 sec&lt;/b&gt;&lt;/li&gt;
99
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
100
+ &lt;/ul&gt;">4.9 hr</a></td><td data="74511">1 min 14 sec</td><td></td><td> </td></tr><tr id="job_ams-demodata"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
101
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-demodata/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-demodata/">ams<wbr>-demodata</a></td><td data="1388745688275"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-demodata/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2241 (Latest Build)&lt;/u&gt;&lt;/b&gt;
102
+ &lt;ul&gt;
103
+ &lt;li&gt;Built @ &lt;b&gt;11:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
104
+ &lt;li&gt;Started 2.7 hr ago&lt;/li&gt;
105
+ &lt;li&gt;Lasted &lt;b&gt;1 min 48 sec&lt;/b&gt;&lt;/li&gt;
106
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
107
+ &lt;/ul&gt;">2.7 hr</a></td><td data="108735">1 min 48 sec</td><td></td><td> </td></tr><tr id="job_ams-domain"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
108
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-domain/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 250 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-domain/">ams<wbr>-domain</a></td><td data="1388737698500"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-domain/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #958 (Latest Build)&lt;/u&gt;&lt;/b&gt;
109
+ &lt;ul&gt;
110
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
111
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
112
+ &lt;li&gt;Lasted &lt;b&gt;1 min 33 sec&lt;/b&gt;&lt;/li&gt;
113
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
114
+ &lt;/ul&gt;">4.9 hr</a></td><td data="93472">1 min 33 sec</td><td></td><td> </td></tr><tr id="job_ams-domain-canonicalobjectmodel-mapper"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
115
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-domain-canonicalobjectmodel-mapper/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 29 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-domain-canonicalobjectmodel-mapper/">ams<wbr>-domain<wbr>-canonicalo<wbr>bjectmodel<wbr>-mapper</a></td><td data="1388738169430"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-domain-canonicalobjectmodel-mapper/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #388 (Latest Build)&lt;/u&gt;&lt;/b&gt;
116
+ &lt;ul&gt;
117
+ &lt;li&gt;Built @ &lt;b&gt;9:36 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
118
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
119
+ &lt;li&gt;Lasted &lt;b&gt;59 sec&lt;/b&gt;&lt;/li&gt;
120
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
121
+ &lt;/ul&gt;">4.8 hr</a></td><td data="59682">59 sec</td><td></td><td> </td></tr><tr id="job_ams-domain-protobuf"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
122
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-domain-protobuf/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 39 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-domain-protobuf/">ams<wbr>-domain<wbr>-protobuf</a></td><td data="1388737848021"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-domain-protobuf/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #644 (Latest Build)&lt;/u&gt;&lt;/b&gt;
123
+ &lt;ul&gt;
124
+ &lt;li&gt;Built @ &lt;b&gt;9:30 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
125
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
126
+ &lt;li&gt;Lasted &lt;b&gt;55 sec&lt;/b&gt;&lt;/li&gt;
127
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
128
+ &lt;/ul&gt;">4.8 hr</a></td><td data="55185">55 sec</td><td></td><td> </td></tr><tr id="job_ams-jms-sql"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
129
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-jms-sql/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-jms-sql/">ams<wbr>-jms<wbr>-sql</a></td><td data="1388737818227"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-jms-sql/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #170 (Latest Build)&lt;/u&gt;&lt;/b&gt;
130
+ &lt;ul&gt;
131
+ &lt;li&gt;Built @ &lt;b&gt;9:30 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
132
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
133
+ &lt;li&gt;Lasted &lt;b&gt;59 sec&lt;/b&gt;&lt;/li&gt;
134
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
135
+ &lt;/ul&gt;">4.9 hr</a></td><td data="59421">59 sec</td><td></td><td> </td></tr><tr id="job_ams-messages-command"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
136
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-messages-command/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-messages-command/">ams<wbr>-messages<wbr>-command</a></td><td data="1388737589645"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-messages-command/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #246 (Latest Build)&lt;/u&gt;&lt;/b&gt;
137
+ &lt;ul&gt;
138
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
139
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
140
+ &lt;li&gt;Lasted &lt;b&gt;1 min 17 sec&lt;/b&gt;&lt;/li&gt;
141
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
142
+ &lt;/ul&gt;">4.9 hr</a></td><td data="77218">1 min 17 sec</td><td></td><td> </td></tr><tr id="job_ams-messages-values"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
143
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-messages-values/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-messages-values/">ams<wbr>-messages<wbr>-values</a></td><td data="1388737532700"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-messages-values/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #428 (Latest Build)&lt;/u&gt;&lt;/b&gt;
144
+ &lt;ul&gt;
145
+ &lt;li&gt;Built @ &lt;b&gt;9:25 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
146
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
147
+ &lt;li&gt;Lasted &lt;b&gt;1 min 33 sec&lt;/b&gt;&lt;/li&gt;
148
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
149
+ &lt;/ul&gt;">4.9 hr</a></td><td data="93904">1 min 33 sec</td><td></td><td> </td></tr><tr id="job_ams-migration"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
150
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-migration/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 72 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-migration/">ams<wbr>-migration</a></td><td data="1388745224407"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-migration/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2928 (Latest Build)&lt;/u&gt;&lt;/b&gt;
151
+ &lt;ul&gt;
152
+ &lt;li&gt;Built @ &lt;b&gt;11:33 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
153
+ &lt;li&gt;Started 2.8 hr ago&lt;/li&gt;
154
+ &lt;li&gt;Lasted &lt;b&gt;1 min 15 sec&lt;/b&gt;&lt;/li&gt;
155
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
156
+ &lt;/ul&gt;">2.8 hr</a></td><td data="75568">1 min 15 sec</td><td></td><td> </td></tr><tr id="job_ams-migration-aen"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
157
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-migration-aen/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-migration-aen/">ams<wbr>-migration<wbr>-aen</a></td><td data="1388745314423"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-migration-aen/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1975 (Latest Build)&lt;/u&gt;&lt;/b&gt;
158
+ &lt;ul&gt;
159
+ &lt;li&gt;Built @ &lt;b&gt;11:35 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
160
+ &lt;li&gt;Started 2.8 hr ago&lt;/li&gt;
161
+ &lt;li&gt;Lasted &lt;b&gt;1 min 43 sec&lt;/b&gt;&lt;/li&gt;
162
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
163
+ &lt;/ul&gt;">2.8 hr</a></td><td data="103634">1 min 43 sec</td><td></td><td> </td></tr><tr id="job_ams-migration-integration"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
164
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-migration-integration/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 54 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 54 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-migration-integration/">ams<wbr>-migration<wbr>-integration</a></td><td data="1388745314424"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/ams-migration-integration/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #813 (Latest Build)&lt;/u&gt;&lt;/b&gt;
165
+ &lt;ul&gt;
166
+ &lt;li&gt;Built @ &lt;b&gt;11:35 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
167
+ &lt;li&gt;Started 2.8 hr ago&lt;/li&gt;
168
+ &lt;li&gt;Lasted &lt;b&gt;2 min 47 sec&lt;/b&gt;&lt;/li&gt;
169
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
170
+ &lt;/ul&gt;">2.8 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-migration-integration/809" tooltip="&lt;b&gt;&lt;u&gt;Build #809&lt;/u&gt;&lt;/b&gt;
171
+ &lt;ul&gt;
172
+ &lt;li&gt;Built @ &lt;b&gt;9:48 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
173
+ &lt;li&gt;Started 4.5 hr ago&lt;/li&gt;
174
+ &lt;li&gt;Lasted &lt;b&gt;3 min 12 sec&lt;/b&gt;&lt;/li&gt;
175
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
176
+ &lt;/ul&gt;">4.5 hr</a></td><td data="167655">2 min 47 sec</td><td></td><td> </td></tr><tr id="job_ams-persistence"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
177
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-persistence/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 192 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-persistence/">ams<wbr>-persistence</a></td><td data="1388737898325"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-persistence/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1386 (Latest Build)&lt;/u&gt;&lt;/b&gt;
178
+ &lt;ul&gt;
179
+ &lt;li&gt;Built @ &lt;b&gt;9:31 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
180
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
181
+ &lt;li&gt;Lasted &lt;b&gt;4 min 30 sec&lt;/b&gt;&lt;/li&gt;
182
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
183
+ &lt;/ul&gt;">4.8 hr</a></td><td data="270796">4 min 30 sec</td><td></td><td> </td></tr><tr id="job_ams-persistence-integrations-tests"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
184
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-persistence-integrations-tests/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 209 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 209 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-persistence-integrations-tests/">ams<wbr>-persistence<wbr>-integrations<wbr>-tests</a></td><td data="1388738066470"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-persistence-integrations-tests/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1181 (Latest Build)&lt;/u&gt;&lt;/b&gt;
185
+ &lt;ul&gt;
186
+ &lt;li&gt;Built @ &lt;b&gt;9:34 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
187
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
188
+ &lt;li&gt;Lasted &lt;b&gt;1 min 32 sec&lt;/b&gt;&lt;/li&gt;
189
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
190
+ &lt;/ul&gt;">4.8 hr</a></td><td data="92711">1 min 32 sec</td><td></td><td> </td></tr><tr id="job_ams-persistence-sql"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
191
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-persistence-sql/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-persistence-sql/">ams<wbr>-persistence<wbr>-sql</a></td><td data="1388737823757"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-persistence-sql/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #276 (Latest Build)&lt;/u&gt;&lt;/b&gt;
192
+ &lt;ul&gt;
193
+ &lt;li&gt;Built @ &lt;b&gt;9:30 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
194
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
195
+ &lt;li&gt;Lasted &lt;b&gt;1 min 1 sec&lt;/b&gt;&lt;/li&gt;
196
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
197
+ &lt;/ul&gt;">4.9 hr</a></td><td data="61429">1 min 1 sec</td><td></td><td> </td></tr><tr id="job_ams-sql-package"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
198
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ams-sql-package/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ams-sql-package/">ams<wbr>-sql<wbr>-package</a></td><td data="1388737898326"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ams-sql-package/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #270 (Latest Build)&lt;/u&gt;&lt;/b&gt;
199
+ &lt;ul&gt;
200
+ &lt;li&gt;Built @ &lt;b&gt;9:31 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
201
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
202
+ &lt;li&gt;Lasted &lt;b&gt;58 sec&lt;/b&gt;&lt;/li&gt;
203
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
204
+ &lt;/ul&gt;">4.8 hr</a></td><td data="58426">58 sec</td><td></td><td> </td></tr><tr id="job_cip"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
205
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 94 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip/">cip</a></td><td data="1388742634808"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1753 (Latest Build)&lt;/u&gt;&lt;/b&gt;
206
+ &lt;ul&gt;
207
+ &lt;li&gt;Built @ &lt;b&gt;10:50 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
208
+ &lt;li&gt;Started 3.5 hr ago&lt;/li&gt;
209
+ &lt;li&gt;Lasted &lt;b&gt;1 min 22 sec&lt;/b&gt;&lt;/li&gt;
210
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
211
+ &lt;/ul&gt;">3.5 hr</a></td><td data="82614">1 min 22 sec</td><td></td><td> </td></tr><tr id="job_cip-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
212
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip-documentation/">cip<wbr>-documentat<wbr>ion</a></td><td data="1388738409214"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #455 (Latest Build)&lt;/u&gt;&lt;/b&gt;
213
+ &lt;ul&gt;
214
+ &lt;li&gt;Built @ &lt;b&gt;9:40 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
215
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
216
+ &lt;li&gt;Lasted &lt;b&gt;1 min 48 sec&lt;/b&gt;&lt;/li&gt;
217
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
218
+ &lt;/ul&gt;">4.7 hr</a></td><td data="108037">1 min 48 sec</td><td></td><td> </td></tr><tr id="job_cip-integration-test"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
219
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip-integration-test/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 93 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 93 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip-integration-test/">cip<wbr>-integration<wbr>-test</a></td><td data="1388742729239"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/cip-integration-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1446 (Latest Build)&lt;/u&gt;&lt;/b&gt;
220
+ &lt;ul&gt;
221
+ &lt;li&gt;Built @ &lt;b&gt;10:52 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
222
+ &lt;li&gt;Started 3.5 hr ago&lt;/li&gt;
223
+ &lt;li&gt;Lasted &lt;b&gt;8 min 45 sec&lt;/b&gt;&lt;/li&gt;
224
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
225
+ &lt;/ul&gt;">3.5 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip-integration-test/1445" tooltip="&lt;b&gt;&lt;u&gt;Build #1445&lt;/u&gt;&lt;/b&gt;
226
+ &lt;ul&gt;
227
+ &lt;li&gt;Built @ &lt;b&gt;9:49 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
228
+ &lt;li&gt;Started 4.5 hr ago&lt;/li&gt;
229
+ &lt;li&gt;Lasted &lt;b&gt;10 min&lt;/b&gt;&lt;/li&gt;
230
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
231
+ &lt;/ul&gt;">4.5 hr</a></td><td data="525961">8 min 45 sec</td><td></td><td> </td></tr><tr id="job_cip-mock-ws"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
232
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip-mock-ws/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip-mock-ws/">cip<wbr>-mock<wbr>-ws</a></td><td data="1388738517279"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip-mock-ws/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #500 (Latest Build)&lt;/u&gt;&lt;/b&gt;
233
+ &lt;ul&gt;
234
+ &lt;li&gt;Built @ &lt;b&gt;9:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
235
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
236
+ &lt;li&gt;Lasted &lt;b&gt;3 min 21 sec&lt;/b&gt;&lt;/li&gt;
237
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
238
+ &lt;/ul&gt;">4.7 hr</a></td><td data="201046">3 min 21 sec</td><td></td><td> </td></tr><tr id="job_cip-msi"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
239
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip-msi/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip-msi/">cip<wbr>-msi</a></td><td data="1388743269316"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip-msi/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #965 (Latest Build)&lt;/u&gt;&lt;/b&gt;
240
+ &lt;ul&gt;
241
+ &lt;li&gt;Built @ &lt;b&gt;11:01 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
242
+ &lt;li&gt;Started 3.3 hr ago&lt;/li&gt;
243
+ &lt;li&gt;Lasted &lt;b&gt;59 sec&lt;/b&gt;&lt;/li&gt;
244
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
245
+ &lt;/ul&gt;">3.3 hr</a></td><td data="59731">59 sec</td><td></td><td> </td></tr><tr id="job_cip-service-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
246
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/cip-service-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/cip-service-documentation/">cip<wbr>-service<wbr>-documentat<wbr>ion</a></td><td data="1388738492435"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/cip-service-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #237 (Latest Build)&lt;/u&gt;&lt;/b&gt;
247
+ &lt;ul&gt;
248
+ &lt;li&gt;Built @ &lt;b&gt;9:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
249
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
250
+ &lt;li&gt;Lasted &lt;b&gt;3 min 7 sec&lt;/b&gt;&lt;/li&gt;
251
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
252
+ &lt;/ul&gt;">4.7 hr</a></td><td data="187663">3 min 7 sec</td><td></td><td> </td></tr><tr id="job_ctm"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
253
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 99 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm/">ctm</a></td><td data="1388738243409"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1873 (Latest Build)&lt;/u&gt;&lt;/b&gt;
254
+ &lt;ul&gt;
255
+ &lt;li&gt;Built @ &lt;b&gt;9:37 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
256
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
257
+ &lt;li&gt;Lasted &lt;b&gt;1 min 17 sec&lt;/b&gt;&lt;/li&gt;
258
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
259
+ &lt;/ul&gt;">4.7 hr</a></td><td data="77428">1 min 17 sec</td><td></td><td> </td></tr><tr id="job_ctm-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
260
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm-documentation/">ctm<wbr>-documentat<wbr>ion</a></td><td data="1388737696050"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #180 (Latest Build)&lt;/u&gt;&lt;/b&gt;
261
+ &lt;ul&gt;
262
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
263
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
264
+ &lt;li&gt;Lasted &lt;b&gt;1 min 20 sec&lt;/b&gt;&lt;/li&gt;
265
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
266
+ &lt;/ul&gt;">4.9 hr</a></td><td data="80256">1 min 20 sec</td><td></td><td> </td></tr><tr id="job_ctm-integration-tests"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
267
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm-integration-tests/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 42 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 42 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm-integration-tests/">ctm<wbr>-integration<wbr>-tests</a></td><td data="1388738519826"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/ctm-integration-tests/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1713 (Latest Build)&lt;/u&gt;&lt;/b&gt;
268
+ &lt;ul&gt;
269
+ &lt;li&gt;Built @ &lt;b&gt;9:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
270
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
271
+ &lt;li&gt;Lasted &lt;b&gt;7 min 41 sec&lt;/b&gt;&lt;/li&gt;
272
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
273
+ &lt;/ul&gt;">4.7 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm-integration-tests/1701" tooltip="&lt;b&gt;&lt;u&gt;Build #1701&lt;/u&gt;&lt;/b&gt;
274
+ &lt;ul&gt;
275
+ &lt;li&gt;Built @ &lt;b&gt;6:56 PM, 12/19/2013&lt;/b&gt;&lt;/li&gt;
276
+ &lt;li&gt;Started 15 days ago&lt;/li&gt;
277
+ &lt;li&gt;Lasted &lt;b&gt;1 min 32 sec&lt;/b&gt;&lt;/li&gt;
278
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
279
+ &lt;/ul&gt;">15 days</a></td><td data="461675">7 min 41 sec</td><td></td><td> </td></tr><tr id="job_ctm-msi"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
280
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm-msi/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm-msi/">ctm<wbr>-msi</a></td><td data="1388739183752"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm-msi/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1180 (Latest Build)&lt;/u&gt;&lt;/b&gt;
281
+ &lt;ul&gt;
282
+ &lt;li&gt;Built @ &lt;b&gt;9:53 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
283
+ &lt;li&gt;Started 4.5 hr ago&lt;/li&gt;
284
+ &lt;li&gt;Lasted &lt;b&gt;50 sec&lt;/b&gt;&lt;/li&gt;
285
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
286
+ &lt;/ul&gt;">4.5 hr</a></td><td data="50238">50 sec</td><td></td><td> </td></tr><tr id="job_ctm-sql"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
287
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm-sql/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm-sql/">ctm<wbr>-sql</a></td><td data="1388737589549"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm-sql/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #86 (Latest Build)&lt;/u&gt;&lt;/b&gt;
288
+ &lt;ul&gt;
289
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
290
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
291
+ &lt;li&gt;Lasted &lt;b&gt;54 sec&lt;/b&gt;&lt;/li&gt;
292
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
293
+ &lt;/ul&gt;">4.9 hr</a></td><td data="54231">54 sec</td><td></td><td> </td></tr><tr id="job_ctm-system-tests"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
294
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ctm-system-tests/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 11 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 11 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ctm-system-tests/">ctm<wbr>-system<wbr>-tests</a></td><td data="1388738993705"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/ctm-system-tests/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #584 (Latest Build)&lt;/u&gt;&lt;/b&gt;
295
+ &lt;ul&gt;
296
+ &lt;li&gt;Built @ &lt;b&gt;9:49 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
297
+ &lt;li&gt;Started 4.5 hr ago&lt;/li&gt;
298
+ &lt;li&gt;Lasted &lt;b&gt;2 min 57 sec&lt;/b&gt;&lt;/li&gt;
299
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
300
+ &lt;/ul&gt;">4.5 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ctm-system-tests/566" tooltip="&lt;b&gt;&lt;u&gt;Build #566&lt;/u&gt;&lt;/b&gt;
301
+ &lt;ul&gt;
302
+ &lt;li&gt;Built @ &lt;b&gt;3:00 PM, 12/17/2013&lt;/b&gt;&lt;/li&gt;
303
+ &lt;li&gt;Started 17 days ago&lt;/li&gt;
304
+ &lt;li&gt;Lasted &lt;b&gt;1 min 36 sec&lt;/b&gt;&lt;/li&gt;
305
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
306
+ &lt;/ul&gt;">17 days</a></td><td data="177860">2 min 57 sec</td><td></td><td> </td></tr><tr id="job_eams-asset-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
307
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-asset-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-asset-schemas/">eams<wbr>-asset<wbr>-schemas</a></td><td data="1388737779132"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-asset-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #169 (Latest Build)&lt;/u&gt;&lt;/b&gt;
308
+ &lt;ul&gt;
309
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
310
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
311
+ &lt;li&gt;Lasted &lt;b&gt;1 min 8 sec&lt;/b&gt;&lt;/li&gt;
312
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
313
+ &lt;/ul&gt;">4.9 hr</a></td><td data="68738">1 min 8 sec</td><td></td><td> </td></tr><tr id="job_eams-com-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
314
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-com-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-com-schemas/">eams<wbr>-com<wbr>-schemas</a></td><td data="1388737628342"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-com-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #157 (Latest Build)&lt;/u&gt;&lt;/b&gt;
315
+ &lt;ul&gt;
316
+ &lt;li&gt;Built @ &lt;b&gt;9:27 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
317
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
318
+ &lt;li&gt;Lasted &lt;b&gt;1 min 10 sec&lt;/b&gt;&lt;/li&gt;
319
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
320
+ &lt;/ul&gt;">4.9 hr</a></td><td data="70008">1 min 10 sec</td><td></td><td> </td></tr><tr id="job_eams-communication-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
321
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-communication-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-communication-schemas/">eams<wbr>-communicat<wbr>ion<wbr>-schemas</a></td><td data="1388737634077"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-communication-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #152 (Latest Build)&lt;/u&gt;&lt;/b&gt;
322
+ &lt;ul&gt;
323
+ &lt;li&gt;Built @ &lt;b&gt;9:27 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
324
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
325
+ &lt;li&gt;Lasted &lt;b&gt;1 min 8 sec&lt;/b&gt;&lt;/li&gt;
326
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
327
+ &lt;/ul&gt;">4.9 hr</a></td><td data="68482">1 min 8 sec</td><td></td><td> </td></tr><tr id="job_eams-config-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
328
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-config-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-config-schemas/">eams<wbr>-config<wbr>-schemas</a></td><td data="1388737787756"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-config-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #293 (Latest Build)&lt;/u&gt;&lt;/b&gt;
329
+ &lt;ul&gt;
330
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
331
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
332
+ &lt;li&gt;Lasted &lt;b&gt;1 min 4 sec&lt;/b&gt;&lt;/li&gt;
333
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
334
+ &lt;/ul&gt;">4.9 hr</a></td><td data="64719">1 min 4 sec</td><td></td><td> </td></tr><tr id="job_eams-location-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
335
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-location-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-location-schemas/">eams<wbr>-location<wbr>-schemas</a></td><td data="1388737789245"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-location-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #182 (Latest Build)&lt;/u&gt;&lt;/b&gt;
336
+ &lt;ul&gt;
337
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
338
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
339
+ &lt;li&gt;Lasted &lt;b&gt;1 min 15 sec&lt;/b&gt;&lt;/li&gt;
340
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
341
+ &lt;/ul&gt;">4.9 hr</a></td><td data="75972">1 min 15 sec</td><td></td><td> </td></tr><tr id="job_eams-meterpoint-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="50" class="healthReport" onmouseover="this.className='healthReport hover';return true;
342
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-meterpoint-schemas/lastBuild"><img alt="50%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-40to59.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-40to59.png" /></td><td>Build stability: 1 out of the last 2 builds failed.</td><td align="right">50</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-meterpoint-schemas/">eams<wbr>-meterpoint<wbr>-schemas</a></td><td data="1388738238994"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-meterpoint-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #204 (Latest Build)&lt;/u&gt;&lt;/b&gt;
343
+ &lt;ul&gt;
344
+ &lt;li&gt;Built @ &lt;b&gt;9:37 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
345
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
346
+ &lt;li&gt;Lasted &lt;b&gt;1 min 1 sec&lt;/b&gt;&lt;/li&gt;
347
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
348
+ &lt;/ul&gt;">4.7 hr</a></td><td data="61921">1 min 1 sec</td><td></td><td> </td></tr><tr id="job_eams-meterreading-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
349
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-meterreading-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-meterreading-schemas/">eams<wbr>-meterreading<wbr>-schemas</a></td><td data="1388737792474"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-meterreading-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #5377 (Latest Build)&lt;/u&gt;&lt;/b&gt;
350
+ &lt;ul&gt;
351
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
352
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
353
+ &lt;li&gt;Lasted &lt;b&gt;1 min 6 sec&lt;/b&gt;&lt;/li&gt;
354
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
355
+ &lt;/ul&gt;">4.9 hr</a></td><td data="66686">1 min 6 sec</td><td></td><td> </td></tr><tr id="job_eams-system-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
356
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-system-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-system-documentation/">eams<wbr>-system<wbr>-documentat<wbr>ion</a></td><td data="1388737776417"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-system-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #127 (Latest Build)&lt;/u&gt;&lt;/b&gt;
357
+ &lt;ul&gt;
358
+ &lt;li&gt;Built @ &lt;b&gt;9:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
359
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
360
+ &lt;li&gt;Lasted &lt;b&gt;5 min 45 sec&lt;/b&gt;&lt;/li&gt;
361
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
362
+ &lt;/ul&gt;">4.9 hr</a></td><td data="345995">5 min 45 sec</td><td></td><td> </td></tr><tr id="job_eams-task-management-schemas"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
363
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/eams-task-management-schemas/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/eams-task-management-schemas/">eams<wbr>-task<wbr>-management<wbr>-schemas</a></td><td data="1388737643866"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/eams-task-management-schemas/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #46 (Latest Build)&lt;/u&gt;&lt;/b&gt;
364
+ &lt;ul&gt;
365
+ &lt;li&gt;Built @ &lt;b&gt;9:27 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
366
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
367
+ &lt;li&gt;Lasted &lt;b&gt;59 sec&lt;/b&gt;&lt;/li&gt;
368
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
369
+ &lt;/ul&gt;">4.9 hr</a></td><td data="59985">59 sec</td><td></td><td> </td></tr><tr id="job_em-exceptions"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
370
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/em-exceptions/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 4 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/em-exceptions/">em<wbr>-exceptions</a></td><td data="1388737581233"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/em-exceptions/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #184 (Latest Build)&lt;/u&gt;&lt;/b&gt;
371
+ &lt;ul&gt;
372
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
373
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
374
+ &lt;li&gt;Lasted &lt;b&gt;1 min 8 sec&lt;/b&gt;&lt;/li&gt;
375
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
376
+ &lt;/ul&gt;">4.9 hr</a></td><td data="68559">1 min 8 sec</td><td></td><td> </td></tr><tr id="job_em-jms"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
377
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/em-jms/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 3 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/em-jms/">em<wbr>-jms</a></td><td data="1388737703962"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/em-jms/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #568 (Latest Build)&lt;/u&gt;&lt;/b&gt;
378
+ &lt;ul&gt;
379
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
380
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
381
+ &lt;li&gt;Lasted &lt;b&gt;1 min 23 sec&lt;/b&gt;&lt;/li&gt;
382
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
383
+ &lt;/ul&gt;">4.9 hr</a></td><td data="83636">1 min 23 sec</td><td></td><td> </td></tr><tr id="job_em-logging"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
384
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/em-logging/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 8 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/em-logging/">em<wbr>-logging</a></td><td data="1388737583074"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/em-logging/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #96 (Latest Build)&lt;/u&gt;&lt;/b&gt;
385
+ &lt;ul&gt;
386
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
387
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
388
+ &lt;li&gt;Lasted &lt;b&gt;1 min 4 sec&lt;/b&gt;&lt;/li&gt;
389
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
390
+ &lt;/ul&gt;">4.9 hr</a></td><td data="64028">1 min 4 sec</td><td></td><td> </td></tr><tr id="job_em-test-resources"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
391
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/em-test-resources/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/em-test-resources/">em<wbr>-test<wbr>-resources</a></td><td data="1388737587073"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/em-test-resources/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #92 (Latest Build)&lt;/u&gt;&lt;/b&gt;
392
+ &lt;ul&gt;
393
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
394
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
395
+ &lt;li&gt;Lasted &lt;b&gt;58 sec&lt;/b&gt;&lt;/li&gt;
396
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
397
+ &lt;/ul&gt;">4.9 hr</a></td><td data="58257">58 sec</td><td></td><td> </td></tr><tr id="job_embriq-dbmigrations"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="40" class="healthReport" onmouseover="this.className='healthReport hover';return true;
398
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/embriq-dbmigrations/lastBuild"><img alt="40%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-20to39.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-20to39.png" /></td><td>Build stability: 3 out of the last 5 builds failed.</td><td align="right">40</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 16 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/embriq-dbmigrations/">embriq<wbr>-dbmigrations</a></td><td data="1388737702766"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/embriq-dbmigrations/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #150 (Latest Build)&lt;/u&gt;&lt;/b&gt;
399
+ &lt;ul&gt;
400
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
401
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
402
+ &lt;li&gt;Lasted &lt;b&gt;1 min 29 sec&lt;/b&gt;&lt;/li&gt;
403
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
404
+ &lt;/ul&gt;">4.9 hr</a></td><td data="89068">1 min 29 sec</td><td></td><td> </td></tr><tr id="job_embriq-parent"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
405
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/embriq-parent/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/embriq-parent/">embriq<wbr>-parent</a></td><td data="1388755259855"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/embriq-parent/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #321 (Latest Build)&lt;/u&gt;&lt;/b&gt;
406
+ &lt;ul&gt;
407
+ &lt;li&gt;Built @ &lt;b&gt;2:20 PM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
408
+ &lt;li&gt;Started 36 sec ago&lt;/li&gt;
409
+ &lt;li&gt;Lasted &lt;b&gt;33 sec&lt;/b&gt;&lt;/li&gt;
410
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
411
+ &lt;/ul&gt;">36 sec</a></td><td data="33711">33 sec</td><td></td><td> </td></tr><tr id="job_embriq-schema-test-utils"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
412
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/embriq-schema-test-utils/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/embriq-schema-test-utils/">embriq<wbr>-schema<wbr>-test<wbr>-utils</a></td><td data="1388737532701"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/embriq-schema-test-utils/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #75 (Latest Build)&lt;/u&gt;&lt;/b&gt;
413
+ &lt;ul&gt;
414
+ &lt;li&gt;Built @ &lt;b&gt;9:25 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
415
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
416
+ &lt;li&gt;Lasted &lt;b&gt;1 min 3 sec&lt;/b&gt;&lt;/li&gt;
417
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
418
+ &lt;/ul&gt;">4.9 hr</a></td><td data="63677">1 min 3 sec</td><td></td><td> </td></tr><tr id="job_external-embriq-metering-schema"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
419
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/external-embriq-metering-schema/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/external-embriq-metering-schema/">external<wbr>-embriq<wbr>-metering<wbr>-schema</a></td><td data="1388737587142"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/external-embriq-metering-schema/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #59 (Latest Build)&lt;/u&gt;&lt;/b&gt;
420
+ &lt;ul&gt;
421
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
422
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
423
+ &lt;li&gt;Lasted &lt;b&gt;1 min 28 sec&lt;/b&gt;&lt;/li&gt;
424
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
425
+ &lt;/ul&gt;">4.9 hr</a></td><td data="88928">1 min 28 sec</td><td></td><td> </td></tr><tr id="job_external-pswin-soap-sms"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
426
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/external-pswin-soap-sms/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/external-pswin-soap-sms/">external<wbr>-pswin<wbr>-soap<wbr>-sms</a></td><td data="1388737592246"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/external-pswin-soap-sms/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #45 (Latest Build)&lt;/u&gt;&lt;/b&gt;
427
+ &lt;ul&gt;
428
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
429
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
430
+ &lt;li&gt;Lasted &lt;b&gt;57 sec&lt;/b&gt;&lt;/li&gt;
431
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
432
+ &lt;/ul&gt;">4.9 hr</a></td><td data="57582">57 sec</td><td></td><td> </td></tr><tr id="job_feature-config"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="60" class="healthReport" onmouseover="this.className='healthReport hover';return true;
433
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/feature-config/lastBuild"><img alt="60%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-40to59.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-40to59.png" /></td><td>Build stability: 2 out of the last 5 builds failed.</td><td align="right">60</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 2 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/feature-config/">feature<wbr>-config</a></td><td data="1388737888319"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/feature-config/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #53 (Latest Build)&lt;/u&gt;&lt;/b&gt;
434
+ &lt;ul&gt;
435
+ &lt;li&gt;Built @ &lt;b&gt;9:31 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
436
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
437
+ &lt;li&gt;Lasted &lt;b&gt;1 min 45 sec&lt;/b&gt;&lt;/li&gt;
438
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
439
+ &lt;/ul&gt;">4.8 hr</a></td><td data="105205">1 min 45 sec</td><td></td><td> </td></tr><tr id="job_feature-config-integration-tests"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
440
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/feature-config-integration-tests/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 6 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 6 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/feature-config-integration-tests/">feature<wbr>-config<wbr>-integration<wbr>-tests</a></td><td data="1388737928353"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/feature-config-integration-tests/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #45 (Latest Build)&lt;/u&gt;&lt;/b&gt;
441
+ &lt;ul&gt;
442
+ &lt;li&gt;Built @ &lt;b&gt;9:32 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
443
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
444
+ &lt;li&gt;Lasted &lt;b&gt;56 sec&lt;/b&gt;&lt;/li&gt;
445
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
446
+ &lt;/ul&gt;">4.8 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/feature-config-integration-tests/30" tooltip="&lt;b&gt;&lt;u&gt;Build #30&lt;/u&gt;&lt;/b&gt;
447
+ &lt;ul&gt;
448
+ &lt;li&gt;Built @ &lt;b&gt;4:12 PM, 12/11/2013&lt;/b&gt;&lt;/li&gt;
449
+ &lt;li&gt;Started 23 days ago&lt;/li&gt;
450
+ &lt;li&gt;Lasted &lt;b&gt;1 min 1 sec&lt;/b&gt;&lt;/li&gt;
451
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
452
+ &lt;/ul&gt;">23 days</a></td><td data="56227">56 sec</td><td></td><td> </td></tr><tr id="job_gs2codec"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
453
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/gs2codec/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 9 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/gs2codec/">gs2codec</a></td><td data="1388737532702"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/gs2codec/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #294 (Latest Build)&lt;/u&gt;&lt;/b&gt;
454
+ &lt;ul&gt;
455
+ &lt;li&gt;Built @ &lt;b&gt;9:25 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
456
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
457
+ &lt;li&gt;Lasted &lt;b&gt;1 min 11 sec&lt;/b&gt;&lt;/li&gt;
458
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
459
+ &lt;/ul&gt;">4.9 hr</a></td><td data="71984">1 min 11 sec</td><td></td><td> </td></tr><tr id="job_jms"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
460
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/jms/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests in total.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/jms/">jms</a></td><td data="1388737888321"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/jms/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #834 (Latest Build)&lt;/u&gt;&lt;/b&gt;
461
+ &lt;ul&gt;
462
+ &lt;li&gt;Built @ &lt;b&gt;9:31 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
463
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
464
+ &lt;li&gt;Lasted &lt;b&gt;2 min 14 sec&lt;/b&gt;&lt;/li&gt;
465
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
466
+ &lt;/ul&gt;">4.8 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/jms/831" tooltip="&lt;b&gt;&lt;u&gt;Build #831&lt;/u&gt;&lt;/b&gt;
467
+ &lt;ul&gt;
468
+ &lt;li&gt;Built @ &lt;b&gt;7:41 PM, 12/23/2013&lt;/b&gt;&lt;/li&gt;
469
+ &lt;li&gt;Started 11 days ago&lt;/li&gt;
470
+ &lt;li&gt;Lasted &lt;b&gt;2 min 16 sec&lt;/b&gt;&lt;/li&gt;
471
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
472
+ &lt;/ul&gt;">11 days</a></td><td data="134645">2 min 14 sec</td><td></td><td> </td></tr><tr id="job_jms-integration-test"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
473
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/jms-integration-test/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 8 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 8 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/jms-integration-test/">jms<wbr>-integration<wbr>-test</a></td><td data="1388737956811"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/jms-integration-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #380 (Latest Build)&lt;/u&gt;&lt;/b&gt;
474
+ &lt;ul&gt;
475
+ &lt;li&gt;Built @ &lt;b&gt;9:32 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
476
+ &lt;li&gt;Started 4.8 hr ago&lt;/li&gt;
477
+ &lt;li&gt;Lasted &lt;b&gt;54 sec&lt;/b&gt;&lt;/li&gt;
478
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
479
+ &lt;/ul&gt;">4.8 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/jms-integration-test/377" tooltip="&lt;b&gt;&lt;u&gt;Build #377&lt;/u&gt;&lt;/b&gt;
480
+ &lt;ul&gt;
481
+ &lt;li&gt;Built @ &lt;b&gt;7:41 PM, 12/23/2013&lt;/b&gt;&lt;/li&gt;
482
+ &lt;li&gt;Started 11 days ago&lt;/li&gt;
483
+ &lt;li&gt;Lasted &lt;b&gt;1 min 15 sec&lt;/b&gt;&lt;/li&gt;
484
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
485
+ &lt;/ul&gt;">11 days</a></td><td data="54651">54 sec</td><td></td><td> </td></tr><tr id="job_metermaid-core"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
486
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/metermaid-core/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 1,213 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/metermaid-core/">metermaid<wbr>-core</a></td><td data="1388744974389"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/metermaid-core/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2611 (Latest Build)&lt;/u&gt;&lt;/b&gt;
487
+ &lt;ul&gt;
488
+ &lt;li&gt;Built @ &lt;b&gt;11:29 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
489
+ &lt;li&gt;Started 2.9 hr ago&lt;/li&gt;
490
+ &lt;li&gt;Lasted &lt;b&gt;2 min 41 sec&lt;/b&gt;&lt;/li&gt;
491
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
492
+ &lt;/ul&gt;">2.9 hr</a></td><td data="161258">2 min 41 sec</td><td></td><td> </td></tr><tr id="job_metermaid-core-system-test"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
493
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/metermaid-core-system-test/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 287 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 287 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/metermaid-core-system-test/">metermaid<wbr>-core<wbr>-system<wbr>-test</a></td><td data="1388745149402"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/metermaid-core-system-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2258 (Latest Build)&lt;/u&gt;&lt;/b&gt;
494
+ &lt;ul&gt;
495
+ &lt;li&gt;Built @ &lt;b&gt;11:32 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
496
+ &lt;li&gt;Started 2.8 hr ago&lt;/li&gt;
497
+ &lt;li&gt;Lasted &lt;b&gt;8 min 58 sec&lt;/b&gt;&lt;/li&gt;
498
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
499
+ &lt;/ul&gt;">2.8 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/metermaid-core-system-test/2256" tooltip="&lt;b&gt;&lt;u&gt;Build #2256&lt;/u&gt;&lt;/b&gt;
500
+ &lt;ul&gt;
501
+ &lt;li&gt;Built @ &lt;b&gt;9:44 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
502
+ &lt;li&gt;Started 4.6 hr ago&lt;/li&gt;
503
+ &lt;li&gt;Lasted &lt;b&gt;26 min&lt;/b&gt;&lt;/li&gt;
504
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
505
+ &lt;/ul&gt;">4.6 hr</a></td><td data="538284">8 min 58 sec</td><td></td><td> </td></tr><tr id="job_metermaid-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
506
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/metermaid-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/metermaid-documentation/">metermaid<wbr>-documentat<wbr>ion</a></td><td data="1388737694305"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/metermaid-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #231 (Latest Build)&lt;/u&gt;&lt;/b&gt;
507
+ &lt;ul&gt;
508
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
509
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
510
+ &lt;li&gt;Lasted &lt;b&gt;1 min 47 sec&lt;/b&gt;&lt;/li&gt;
511
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
512
+ &lt;/ul&gt;">4.9 hr</a></td><td data="107916">1 min 47 sec</td><td></td><td> </td></tr><tr id="job_metermaid-msi"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
513
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/metermaid-msi/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/metermaid-msi/">metermaid<wbr>-msi</a></td><td data="1388745699466"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/metermaid-msi/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1541 (Latest Build)&lt;/u&gt;&lt;/b&gt;
514
+ &lt;ul&gt;
515
+ &lt;li&gt;Built @ &lt;b&gt;11:41 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
516
+ &lt;li&gt;Started 2.7 hr ago&lt;/li&gt;
517
+ &lt;li&gt;Lasted &lt;b&gt;46 sec&lt;/b&gt;&lt;/li&gt;
518
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
519
+ &lt;/ul&gt;">2.7 hr</a></td><td data="46199">46 sec</td><td></td><td> </td></tr><tr id="job_metermaid-sql"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
520
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/metermaid-sql/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/metermaid-sql/">metermaid<wbr>-sql</a></td><td data="1388737532702"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/metermaid-sql/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #150 (Latest Build)&lt;/u&gt;&lt;/b&gt;
521
+ &lt;ul&gt;
522
+ &lt;li&gt;Built @ &lt;b&gt;9:25 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
523
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
524
+ &lt;li&gt;Lasted &lt;b&gt;1 min 4 sec&lt;/b&gt;&lt;/li&gt;
525
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
526
+ &lt;/ul&gt;">4.9 hr</a></td><td data="64388">1 min 4 sec</td><td></td><td> </td></tr><tr id="job_quant-control-msi"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
527
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-control-msi/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-control-msi/">quant<wbr>-control<wbr>-msi</a></td><td data="1388740314022"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-control-msi/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2575 (Latest Build)&lt;/u&gt;&lt;/b&gt;
528
+ &lt;ul&gt;
529
+ &lt;li&gt;Built @ &lt;b&gt;10:11 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
530
+ &lt;li&gt;Started 4.2 hr ago&lt;/li&gt;
531
+ &lt;li&gt;Lasted &lt;b&gt;1 min 22 sec&lt;/b&gt;&lt;/li&gt;
532
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
533
+ &lt;/ul&gt;">4.2 hr</a></td><td data="82919">1 min 22 sec</td><td></td><td> </td></tr><tr id="job_quant-data-builder"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
534
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-data-builder/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-data-builder/">quant<wbr>-data<wbr>-builder</a></td><td data="1388745149401"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-data-builder/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #613 (Latest Build)&lt;/u&gt;&lt;/b&gt;
535
+ &lt;ul&gt;
536
+ &lt;li&gt;Built @ &lt;b&gt;11:32 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
537
+ &lt;li&gt;Started 2.8 hr ago&lt;/li&gt;
538
+ &lt;li&gt;Lasted &lt;b&gt;1 min 4 sec&lt;/b&gt;&lt;/li&gt;
539
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
540
+ &lt;/ul&gt;">2.8 hr</a></td><td data="64190">1 min 4 sec</td><td></td><td> </td></tr><tr id="job_quant-installation-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
541
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-installation-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-installation-documentation/">quant<wbr>-installation<wbr>-documentat<wbr>ion</a></td><td data="1388737725232"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-installation-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #67 (Latest Build)&lt;/u&gt;&lt;/b&gt;
542
+ &lt;ul&gt;
543
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
544
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
545
+ &lt;li&gt;Lasted &lt;b&gt;1 min 14 sec&lt;/b&gt;&lt;/li&gt;
546
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
547
+ &lt;/ul&gt;">4.9 hr</a></td><td data="74639">1 min 14 sec</td><td></td><td> </td></tr><tr id="job_quant-release"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="40" class="healthReport" onmouseover="this.className='healthReport hover';return true;
548
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-release/lastBuild"><img alt="40%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-20to39.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-20to39.png" /></td><td>Build stability: 3 out of the last 5 builds failed.</td><td align="right">40</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-release/">quant<wbr>-release</a></td><td data="1388734511000"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-release/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #180 (Latest Build)&lt;/u&gt;&lt;/b&gt;
549
+ &lt;ul&gt;
550
+ &lt;li&gt;Built @ &lt;b&gt;8:35 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
551
+ &lt;li&gt;Started 5.8 hr ago&lt;/li&gt;
552
+ &lt;li&gt;Lasted &lt;b&gt;1 min 15 sec&lt;/b&gt;&lt;/li&gt;
553
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
554
+ &lt;/ul&gt;">5.8 hr</a></td><td data="75680">1 min 15 sec</td><td></td><td> </td></tr><tr id="job_quant-security-documention"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
555
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-security-documention/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-security-documention/">quant<wbr>-security<wbr>-documention</a></td><td data="1388737728212"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-security-documention/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #43 (Latest Build)&lt;/u&gt;&lt;/b&gt;
556
+ &lt;ul&gt;
557
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
558
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
559
+ &lt;li&gt;Lasted &lt;b&gt;1 min 19 sec&lt;/b&gt;&lt;/li&gt;
560
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
561
+ &lt;/ul&gt;">4.9 hr</a></td><td data="79828">1 min 19 sec</td><td></td><td> </td></tr><tr id="job_quant-security-documention-v1"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
562
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-security-documention-v1/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-security-documention-v1/">quant<wbr>-security<wbr>-documention<wbr>-v1</a></td><td data="1388737693392"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-security-documention-v1/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #44 (Latest Build)&lt;/u&gt;&lt;/b&gt;
563
+ &lt;ul&gt;
564
+ &lt;li&gt;Built @ &lt;b&gt;9:28 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
565
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
566
+ &lt;li&gt;Lasted &lt;b&gt;1 min 27 sec&lt;/b&gt;&lt;/li&gt;
567
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
568
+ &lt;/ul&gt;">4.9 hr</a></td><td data="87416">1 min 27 sec</td><td></td><td> </td></tr><tr id="job_quant-startup-helper"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
569
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/quant-startup-helper/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 12 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/quant-startup-helper/">quant<wbr>-startup<wbr>-helper</a></td><td data="1388737668248"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/quant-startup-helper/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #29 (Latest Build)&lt;/u&gt;&lt;/b&gt;
570
+ &lt;ul&gt;
571
+ &lt;li&gt;Built @ &lt;b&gt;9:27 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
572
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
573
+ &lt;li&gt;Lasted &lt;b&gt;1 min 11 sec&lt;/b&gt;&lt;/li&gt;
574
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
575
+ &lt;/ul&gt;">4.9 hr</a></td><td data="71693">1 min 11 sec</td><td></td><td> </td></tr><tr id="job_rio-archive"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
576
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-archive/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-archive/">rio<wbr>-archive</a></td><td data="1388740185282"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-archive/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2654 (Latest Build)&lt;/u&gt;&lt;/b&gt;
577
+ &lt;ul&gt;
578
+ &lt;li&gt;Built @ &lt;b&gt;10:09 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
579
+ &lt;li&gt;Started 4.2 hr ago&lt;/li&gt;
580
+ &lt;li&gt;Lasted &lt;b&gt;2 min 20 sec&lt;/b&gt;&lt;/li&gt;
581
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
582
+ &lt;/ul&gt;">4.2 hr</a></td><td data="140244">2 min 20 sec</td><td></td><td> </td></tr><tr id="job_rio-documentation"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
583
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-documentation/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-documentation/">rio<wbr>-documentat<wbr>ion</a></td><td data="1388739598889"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-documentation/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1896 (Latest Build)&lt;/u&gt;&lt;/b&gt;
584
+ &lt;ul&gt;
585
+ &lt;li&gt;Built @ &lt;b&gt;9:59 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
586
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
587
+ &lt;li&gt;Lasted &lt;b&gt;2 min 47 sec&lt;/b&gt;&lt;/li&gt;
588
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
589
+ &lt;/ul&gt;">4.4 hr</a></td><td data="167707">2 min 47 sec</td><td></td><td> </td></tr><tr id="job_rio-integration-tests"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
590
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-integration-tests/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 2,581 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 2,581 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-integration-tests/">rio<wbr>-integration<wbr>-tests</a></td><td data="1388739598888"><a style="color: #acda00; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/rio-integration-tests/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #3973 (Latest Build)&lt;/u&gt;&lt;/b&gt;
591
+ &lt;ul&gt;
592
+ &lt;li&gt;Built @ &lt;b&gt;9:59 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
593
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
594
+ &lt;li&gt;Lasted &lt;b&gt;9 min 46 sec&lt;/b&gt;&lt;/li&gt;
595
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
596
+ &lt;/ul&gt;">4.4 hr</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-integration-tests/3972" tooltip="&lt;b&gt;&lt;u&gt;Build #3972&lt;/u&gt;&lt;/b&gt;
597
+ &lt;ul&gt;
598
+ &lt;li&gt;Built @ &lt;b&gt;9:45 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
599
+ &lt;li&gt;Started 4.6 hr ago&lt;/li&gt;
600
+ &lt;li&gt;Lasted &lt;b&gt;7 min 56 sec&lt;/b&gt;&lt;/li&gt;
601
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
602
+ &lt;/ul&gt;">4.6 hr</a></td><td data="586385">9 min 46 sec</td><td></td><td> </td></tr><tr id="job_rio-javadoc"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="60" class="healthReport" onmouseover="this.className='healthReport hover';return true;
603
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-javadoc/lastBuild"><img alt="60%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-40to59.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-40to59.png" /></td><td>Build stability: 2 out of the last 5 builds failed.</td><td align="right">60</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-javadoc/">rio<wbr>-javadoc</a></td><td data="1388738755028"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-javadoc/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #196 (Latest Build)&lt;/u&gt;&lt;/b&gt;
604
+ &lt;ul&gt;
605
+ &lt;li&gt;Built @ &lt;b&gt;9:45 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
606
+ &lt;li&gt;Started 4.6 hr ago&lt;/li&gt;
607
+ &lt;li&gt;Lasted &lt;b&gt;2 min 14 sec&lt;/b&gt;&lt;/li&gt;
608
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
609
+ &lt;/ul&gt;">4.6 hr</a></td><td data="134776">2 min 14 sec</td><td></td><td> </td></tr><tr id="job_rio-jstd"><td data="0"><img alt="Failed" class="icon32x32" src="/static/d8fc5cc5/images/32x32/red.png" tooltip="Failed" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
610
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-jstd/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 550 tests.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-jstd/">rio<wbr>-jstd</a></td><td data="1388739348817"><a style="color: #ef2929; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/rio-jstd/lastFailedBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1262 (Latest Build)&lt;/u&gt;&lt;/b&gt;
611
+ &lt;ul&gt;
612
+ &lt;li&gt;Built @ &lt;b&gt;9:55 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
613
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
614
+ &lt;li&gt;Lasted &lt;b&gt;12 sec&lt;/b&gt;&lt;/li&gt;
615
+ &lt;li&gt;&lt;b&gt;Failed&lt;/b&gt;&lt;/li&gt;
616
+ &lt;/ul&gt;">4.4 hr</a> > <a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-jstd/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1261&lt;/u&gt;&lt;/b&gt;
617
+ &lt;ul&gt;
618
+ &lt;li&gt;Built @ &lt;b&gt;9:39 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
619
+ &lt;li&gt;Started 4.7 hr ago&lt;/li&gt;
620
+ &lt;li&gt;Lasted &lt;b&gt;14 sec&lt;/b&gt;&lt;/li&gt;
621
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
622
+ &lt;/ul&gt;">4.7 hr</a></td><td data="14337">14 sec</td><td></td><td> </td></tr><tr id="job_rio-main"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
623
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-main/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 706 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-main/">rio<wbr>-main</a></td><td data="1388739348821"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-main/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #4420 (Latest Build)&lt;/u&gt;&lt;/b&gt;
624
+ &lt;ul&gt;
625
+ &lt;li&gt;Built @ &lt;b&gt;9:55 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
626
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
627
+ &lt;li&gt;Lasted &lt;b&gt;4 min 0 sec&lt;/b&gt;&lt;/li&gt;
628
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
629
+ &lt;/ul&gt;">4.4 hr</a></td><td data="240007">4 min 0 sec</td><td></td><td> </td></tr><tr id="job_rio-parent"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
630
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-parent/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-parent/">rio<wbr>-parent</a></td><td data="1388737595288"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-parent/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #287 (Latest Build)&lt;/u&gt;&lt;/b&gt;
631
+ &lt;ul&gt;
632
+ &lt;li&gt;Built @ &lt;b&gt;9:26 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
633
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
634
+ &lt;li&gt;Lasted &lt;b&gt;56 sec&lt;/b&gt;&lt;/li&gt;
635
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
636
+ &lt;/ul&gt;">4.9 hr</a></td><td data="56720">56 sec</td><td></td><td> </td></tr><tr id="job_rio-selenium-firefox-test"><td data="2"><img alt="Unstable" class="icon32x32" src="/static/d8fc5cc5/images/32x32/yellow.png" tooltip="Unstable" /></td><td data="80" class="healthReport" onmouseover="this.className='healthReport hover';return true;
637
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-selenium-firefox-test/lastBuild"><img alt="80%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-60to79.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-60to79.png" /></td><td>Build stability: 1 out of the last 5 builds failed.</td><td align="right">80</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 19 tests failing out of a total of 229 tests.</td><td align="right">91</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 1 test.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-selenium-firefox-test/">rio<wbr>-selenium<wbr>-firefox<wbr>-test</a></td><td data="1388739348818"><a style="color: #ffa500; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/rio-selenium-firefox-test/2324" tooltip="&lt;b&gt;&lt;u&gt;Build #2324 (Latest Build)&lt;/u&gt;&lt;/b&gt;
638
+ &lt;ul&gt;
639
+ &lt;li&gt;Built @ &lt;b&gt;9:55 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
640
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
641
+ &lt;li&gt;Lasted &lt;b&gt;43 min&lt;/b&gt;&lt;/li&gt;
642
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
643
+ &lt;/ul&gt;">4.4 hr</a> > <a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-selenium-firefox-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #2244&lt;/u&gt;&lt;/b&gt;
644
+ &lt;ul&gt;
645
+ &lt;li&gt;Built @ &lt;b&gt;12:04 AM, 12/9/2013&lt;/b&gt;&lt;/li&gt;
646
+ &lt;li&gt;Started 26 days ago&lt;/li&gt;
647
+ &lt;li&gt;Lasted &lt;b&gt;1 hr 19 min&lt;/b&gt;&lt;/li&gt;
648
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
649
+ &lt;/ul&gt;">26 days</a></td><td data="2586411">43 min</td><td></td><td> </td></tr><tr id="job_rio-selenium-ie-test"><td data="2"><img alt="Unstable" class="icon32x32" src="/static/d8fc5cc5/images/32x32/yellow.png" tooltip="Unstable" /></td><td data="0" class="healthReport" onmouseover="this.className='healthReport hover';return true;
650
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-selenium-ie-test/lastBuild"><img alt="0%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-00to19.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-00to19.png" /></td><td>Test Result: 1 test failing out of a total of 1 test.</td><td align="right">0</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 223 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-selenium-ie-test/">rio<wbr>-selenium<wbr>-ie<wbr>-test</a></td><td data="1387529954000"><a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-selenium-ie-test/1870" tooltip="&lt;b&gt;&lt;u&gt;Build #1870 (Latest Build)&lt;/u&gt;&lt;/b&gt;
651
+ &lt;ul&gt;
652
+ &lt;li&gt;Built @ &lt;b&gt;9:59 AM, 12/20/2013&lt;/b&gt;&lt;/li&gt;
653
+ &lt;li&gt;Started 14 days ago&lt;/li&gt;
654
+ &lt;li&gt;Lasted &lt;b&gt;2 min 14 sec&lt;/b&gt;&lt;/li&gt;
655
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
656
+ &lt;/ul&gt;">14 days</a></td><td data="134612">2 min 14 sec</td><td></td><td> </td></tr><tr id="job_rio-system-test"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
657
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-system-test/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 1 test.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 58 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-system-test/">rio<wbr>-system<wbr>-test</a></td><td data="1388739598891"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-system-test/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #3835 (Latest Build)&lt;/u&gt;&lt;/b&gt;
658
+ &lt;ul&gt;
659
+ &lt;li&gt;Built @ &lt;b&gt;9:59 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
660
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
661
+ &lt;li&gt;Lasted &lt;b&gt;7 min 32 sec&lt;/b&gt;&lt;/li&gt;
662
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
663
+ &lt;/ul&gt;">4.4 hr</a></td><td data="452144">7 min 32 sec</td><td></td><td> </td></tr><tr id="job_rio-webapp-jslint"><td data="0"><img alt="Failed" class="icon32x32" src="/static/d8fc5cc5/images/32x32/red.png" tooltip="Failed" /></td><td data="0" class="healthReport" onmouseover="this.className='healthReport hover';return true;
664
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/rio-webapp-jslint/lastBuild"><img alt="0%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-00to19.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-00to19.png" /></td><td>Build stability: All recent builds failed.</td><td align="right">0</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/rio-webapp-jslint/">rio<wbr>-webapp<wbr>-jslint</a></td><td data="1388739348824"><a style="color: #ef2929; font-weight: bold; text-decoration: underline; border-bottom: 0px" href="job/rio-webapp-jslint/lastFailedBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1250 (Latest Build)&lt;/u&gt;&lt;/b&gt;
665
+ &lt;ul&gt;
666
+ &lt;li&gt;Built @ &lt;b&gt;9:55 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
667
+ &lt;li&gt;Started 4.4 hr ago&lt;/li&gt;
668
+ &lt;li&gt;Lasted &lt;b&gt;20 sec&lt;/b&gt;&lt;/li&gt;
669
+ &lt;li&gt;&lt;b&gt;Failed&lt;/b&gt;&lt;/li&gt;
670
+ &lt;/ul&gt;">4.4 hr</a> > <a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-webapp-jslint/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #1242&lt;/u&gt;&lt;/b&gt;
671
+ &lt;ul&gt;
672
+ &lt;li&gt;Built @ &lt;b&gt;4:50 PM, 12/19/2013&lt;/b&gt;&lt;/li&gt;
673
+ &lt;li&gt;Started 15 days ago&lt;/li&gt;
674
+ &lt;li&gt;Lasted &lt;b&gt;9.3 sec&lt;/b&gt;&lt;/li&gt;
675
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
676
+ &lt;/ul&gt;">15 days</a> > <a style="color: #ffa500; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/rio-webapp-jslint/1216" tooltip="&lt;b&gt;&lt;u&gt;Build #1216&lt;/u&gt;&lt;/b&gt;
677
+ &lt;ul&gt;
678
+ &lt;li&gt;Built @ &lt;b&gt;4:59 PM, 12/6/2013&lt;/b&gt;&lt;/li&gt;
679
+ &lt;li&gt;Started 28 days ago&lt;/li&gt;
680
+ &lt;li&gt;Lasted &lt;b&gt;13 sec&lt;/b&gt;&lt;/li&gt;
681
+ &lt;li&gt;&lt;b&gt;Unstable&lt;/b&gt;&lt;/li&gt;
682
+ &lt;/ul&gt;">28 days</a></td><td data="9309">9.3 sec</td><td></td><td> </td></tr><tr id="job_ws-protobuf"><td data="4"><img alt="Success" class="icon32x32" src="/static/d8fc5cc5/images/32x32/blue.png" tooltip="Success" /></td><td data="100" class="healthReport" onmouseover="this.className='healthReport hover';return true;
683
+ " onmouseout="this.className='healthReport';return true;"><a class="build-health-link" href="job/ws-protobuf/lastBuild"><img alt="100%" class="build-health-icon icon32x32" src="/static/d8fc5cc5/images/32x32/health-80plus.png" /></a><div class="healthReportDetails"><table border="0"><thead><tr><th align="left">W</th><th align="left">Description</th><th align="right">%</th></tr></thead><tbody><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Test Result: 0 tests failing out of a total of 9 tests.</td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Coverage: All coverage targets have been met. </td><td align="right">100</td></tr><tr><td align="left"><img title="" alt="" src="/static/d8fc5cc5/images/16x16/health-80plus.png" /></td><td>Build stability: No recent builds failed.</td><td align="right">100</td></tr></tbody></table></div></td><td><a class="model-link inside" href="job/ws-protobuf/">ws<wbr>-protobuf</a></td><td data="1388737812967"><a style="color: #acda00; font-weight: normal; text-decoration: underline; border-bottom: 0px" href="job/ws-protobuf/lastStableBuild" tooltip="&lt;b&gt;&lt;u&gt;Build #188 (Latest Build)&lt;/u&gt;&lt;/b&gt;
684
+ &lt;ul&gt;
685
+ &lt;li&gt;Built @ &lt;b&gt;9:30 AM, 1/3/2014&lt;/b&gt;&lt;/li&gt;
686
+ &lt;li&gt;Started 4.9 hr ago&lt;/li&gt;
687
+ &lt;li&gt;Lasted &lt;b&gt;1 min 12 sec&lt;/b&gt;&lt;/li&gt;
688
+ &lt;li&gt;&lt;b&gt;Stable&lt;/b&gt;&lt;/li&gt;
689
+ &lt;/ul&gt;">4.9 hr</a></td><td data="72615">1 min 12 sec</td><td></td><td> </td></tr></table><table style="width:100%"><tr><td>Icon:
690
+  <a href="/iconSize?16x16">S</a> <a href="/iconSize?24x24">M</a> L</td><td><div align="right" style="margin:1em"><a href="/legend">Legend</a><span style="padding-left:1em"><a href="rssAll"><img height="16" alt="Feed" width="16" src="/static/d8fc5cc5/images/atom.gif" border="0" /></a> <a href="rssAll">RSS for all</a></span><span style="padding-left:1em"><a href="rssFailed"><img height="16" alt="Feed" width="16" src="/static/d8fc5cc5/images/atom.gif" border="0" /></a> <a href="rssFailed">RSS for failures</a></span><span style="padding-left:1em"><a href="rssLatest"><img height="16" alt="Feed" width="16" src="/static/d8fc5cc5/images/atom.gif" border="0" /></a> <a href="rssLatest">RSS for just latest builds</a></span></div></td></tr></table></div></td></tr></table><table width="100%"><tr><td id="footer"><span style="padding-right:2em; color:gray">
691
+ Page generated:
692
+ Jan 3, 2014 2:21:35 PM</span><span style="padding-right:2em"><a href="api/">REST API</a></span><a href="http://jenkins-ci.org/">Jenkins ver. 1.542</a></td></tr></table></body></html>