HDFS-9629. Update the footer of Web UI to show year 2016 (Contributed by Xiao Chen and Vinayakumar B)

This commit is contained in:
Vinayakumar B 2016-02-04 13:18:26 +05:30
parent 308d63f382
commit a6728a013e
8 changed files with 15 additions and 5 deletions

View File

@ -3886,6 +3886,9 @@ Release 2.6.5 - UNRELEASED
IMPROVEMENTS
HDFS-9629. Update the footer of Web UI to show year 2016
(Xiao Chen and Vinayakumar B via vinayakumarb)
OPTIMIZATIONS
BUG FIXES

View File

@ -278,6 +278,10 @@ http://maven.apache.org/xsd/maven-4.0.0.xsd">
<exclude name="**/proto-web.xml"/>
</fileset>
</copy>
<replace dir="${project.build.directory}/webapps" value="${release-year}">
<include name="**/*.html"/>
<replacetoken>{release-year-token}</replacetoken>
</replace>
</target>
</configuration>
</execution>

View File

@ -47,7 +47,7 @@
<div class="row">
<hr />
<div class="col-xs-2"><p>Hadoop, 2015.</p></div>
<div class="col-xs-2"><p>Hadoop, {release-year-token}.</p></div>
</div>
</div>

View File

@ -68,7 +68,7 @@
<div class="row">
<hr />
<div class="col-xs-2"><p>Hadoop, 2015.</p></div>
<div class="col-xs-2"><p>Hadoop, {release-year-token}.</p></div>
</div>
</div>

View File

@ -165,7 +165,7 @@
<div class="row">
<hr />
<div class="col-xs-2"><p>Hadoop, 2015.</p></div>
<div class="col-xs-2"><p>Hadoop, {release-year-token}.</p></div>
</div>
</div>

View File

@ -47,7 +47,7 @@
<div class="row">
<hr />
<div class="col-xs-2"><p>Hadoop, 2015.</p></div>
<div class="col-xs-2"><p>Hadoop, {release-year-token}.</p></div>
</div>
</div>

View File

@ -53,7 +53,7 @@
<div class="row">
<hr />
<div class="col-xs-2"><p>Hadoop, 2015.</p></div>
<div class="col-xs-2"><p>Hadoop, {release-year-token}.</p></div>
</div>
</div>

View File

@ -30,6 +30,9 @@
<packaging>pom</packaging>
<properties>
<!-- Set the Release year during release -->
<release-year>2016</release-year>
<failIfNoTests>false</failIfNoTests>
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile>
<jetty.version>6.1.26</jetty.version>