Skip to content

Commit

Permalink
SPARK-2143 [WEB UI] Add Spark version to UI footer
Browse files Browse the repository at this point in the history
This PR adds the Spark version number to the UI footer; this is how it looks:

![screen shot 2014-11-21 at 22 58 40](https://cloud.githubusercontent.com/assets/822522/5157738/f4822094-7316-11e4-98f1-333a535fdcfa.png)

Author: Sean Owen <sowen@cloudera.com>

Closes apache#3410 from srowen/SPARK-2143 and squashes the following commits:

e9b3a7a [Sean Owen] Add Spark version to footer
  • Loading branch information
srowen authored and JoshRosen committed Nov 30, 2014
1 parent 24b5c03 commit 1a2508b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/src/main/scala/org/apache/spark/ui/UIUtils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ private[spark] object UIUtils extends Logging {
</div>
{content}
</div>
<div id="footer">
<div class="container-fluid">
<p class="muted credit">Spark {org.apache.spark.SPARK_VERSION}</p>
</div>
</div>
</body>
</html>
}
Expand All @@ -230,6 +235,11 @@ private[spark] object UIUtils extends Logging {
</div>
{content}
</div>
<div id="footer">
<div class="container-fluid">
<p class="muted credit">Spark {org.apache.spark.SPARK_VERSION}</p>
</div>
</div>
</body>
</html>
}
Expand Down

0 comments on commit 1a2508b

Please sign in to comment.