You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by al...@apache.org on 2019/10/14 20:20:28 UTC

[kudu] branch master updated: www: ensure all href values are enclosed in single or double quotes

This is an automated email from the ASF dual-hosted git repository.

alexey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/kudu.git


The following commit(s) were added to refs/heads/master by this push:
     new e516347  www: ensure all href values are enclosed in single or double quotes
e516347 is described below

commit e516347d7010f1d033d8cc44ec6d3c964e204d63
Author: Adar Dembo <ad...@cloudera.com>
AuthorDate: Mon Oct 14 12:29:35 2019 -0700

    www: ensure all href values are enclosed in single or double quotes
    
    AFAICT this was the only exception, an oversight from the original mustache
    conversion done back in commit 107b9cdf8.
    
    I used a local Kudu master to verify the change in the emitted HTML, and
    followed a couple links in the browser to make sure everything still worked.
    
    Change-Id: Ib1b9cc8f97390617d6b0a6e183081483ca7ad6a0
    Reviewed-on: http://gerrit.cloudera.org:8080/14429
    Tested-by: Kudu Jenkins
    Reviewed-by: Alexey Serbin <as...@cloudera.com>
---
 www/home.mustache | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www/home.mustache b/www/home.mustache
index f00160e..831d100 100644
--- a/www/home.mustache
+++ b/www/home.mustache
@@ -19,7 +19,7 @@ under the License.
 
 <h2>Status Pages</h2>
 {{#path_handlers}}
-<a href={{path}}>{{alias}}</a><br/>
+<a href="{{path}}">{{alias}}</a><br/>
 {{/path_handlers}}
 <hr/>
 <h2>Version Info</h2>