forked from mesos/chronos
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request mesos#2 from mesosphere/ui-changes
UI Changes and Improvements
- Loading branch information
Showing
53 changed files
with
1,097 additions
and
15,049 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,89 @@ | ||
<!DOCTYPE html> | ||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | ||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>Chronos</title> | ||
<meta name="description" content=""/> | ||
<meta name="viewport" content="width=device-width"/> | ||
<meta name="viewport" content="width=device-width"> | ||
</head> | ||
|
||
<body class="chronos"> | ||
<div class="chronos-wrapper blue"> | ||
<div class="chronos-wrapper chronos-wrapper-tranquility"> | ||
<div class="app row-fluid"> | ||
<div class="span2 menu box" id="main-menu"> | ||
<a class="brand" href="/#"> | ||
<h1 id="logo">Chronos</h1> | ||
</a> | ||
|
||
<div class="search-wrapper"> | ||
<form id="search-form"> | ||
<i class="icon-search"></i> | ||
<input type="text" class="span12" id="search-filter" placeholder="Search by job name, status or owner"> | ||
</form> | ||
</div> | ||
|
||
<div class="span2 menu" id="main-menu"></div> | ||
<ul class="nav nav-list stat-menu"> | ||
<li class="no-select total-jobs"> | ||
<div class="stat-count all-jobs-count" | ||
data-rv-text="jobs.length">0</div> | ||
<div class="stat-label">Total Jobs</div> | ||
</li> | ||
|
||
<li class="no-select total-jobs"> | ||
<div class="stat-count failed-jobs-count" | ||
data-rv-text="jobs:errCount < .lastRunStatus">0</div> | ||
<div class="stat-label">Failed Jobs</div> | ||
</li> | ||
</ul> | ||
|
||
<div class="span5 results"> | ||
<div class="row-fluid results-header no-select"></div> | ||
<div> | ||
<button class="btn btn-block clear-btn view-graph"> | ||
<i class="icon-retweet"></i> Dependency Graph | ||
</button> | ||
<button class="btn btn-block clear-btn new-job">✚ New Job</button> | ||
<a class="btn btn-block clear-btn" href="stats.html"> | ||
Runtime statistics | ||
</a> | ||
</div> | ||
|
||
<div class="menu-footer text-center" id="btn-bg"> | ||
<button class="btn btn-bg btn-bg-tranquility" | ||
data-theme="tranquility" | ||
id="btn-bg-tranquility" | ||
title="Tranquility"></button> | ||
<button class="btn btn-bg btn-bg-prowess" | ||
data-theme="prowess" | ||
id="btn-bg-prowess" | ||
title="Prowess"></button> | ||
<button class="btn btn-bg btn-bg-serenity" | ||
data-theme="serenity" | ||
id="btn-bg-serenity" | ||
title="Serenity"></button> | ||
</div> | ||
</div> | ||
<div class="span5 results"> | ||
<div class="row-fluid results-header"> | ||
<div class="span9 header-name"> | ||
<span>Name</span> | ||
<span class="toggle down">▼</span> | ||
<span class="toggle up hide">▲</span> | ||
</div> | ||
<div class="span3 header-last-run"> | ||
<span>Last</span> | ||
<span class="toggle down">▼</span> | ||
<span class="toggle up hide">▲</span> | ||
</div> | ||
</div> | ||
<div class="row-fluid"> | ||
<ul class="joblist"></ul> | ||
<ul class="joblist unstyled"></ul> | ||
</div> | ||
</div> | ||
|
||
<div class="span5 right-pane"></div> | ||
|
||
</div> | ||
</div> | ||
|
||
<!--[if lt IE 7]> | ||
<p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p> | ||
<![endif]--> | ||
|
||
<script data-main="scripts/main.js" src="scripts/require.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
define([], function() { | ||
function Functor(v) { return (function() { return v; }); } | ||
'use strict'; | ||
|
||
function Functor(v) { return function() { return v; }; } | ||
|
||
return Functor; | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.