You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by to...@apache.org on 2016/08/03 22:38:22 UTC

[1/2] kudu git commit: [util] fixed build on MacOS X

Repository: kudu
Updated Branches:
  refs/heads/master 9650ac7fa -> ec39756ef


[util] fixed build on MacOS X

This is a follow-up for a9265d92424dc305c480d6c44d006b8545bd2227.

Change-Id: I894adf2d5f961eea567a32c6bb85af8998ce4adb
Reviewed-on: http://gerrit.cloudera.org:8080/3836
Tested-by: Kudu Jenkins
Reviewed-by: Adar Dembo <ad...@cloudera.com>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/fda036ca
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/fda036ca
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/fda036ca

Branch: refs/heads/master
Commit: fda036ca94ec3a0a4f496cd9f84c7a7d7b7fb93a
Parents: 9650ac7
Author: Alexey Serbin <as...@cloudera.com>
Authored: Tue Aug 2 16:54:20 2016 -0700
Committer: Adar Dembo <ad...@cloudera.com>
Committed: Wed Aug 3 20:23:47 2016 +0000

----------------------------------------------------------------------
 src/kudu/util/CMakeLists.txt | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/fda036ca/src/kudu/util/CMakeLists.txt
----------------------------------------------------------------------
diff --git a/src/kudu/util/CMakeLists.txt b/src/kudu/util/CMakeLists.txt
index 361209c..4a000b6 100644
--- a/src/kudu/util/CMakeLists.txt
+++ b/src/kudu/util/CMakeLists.txt
@@ -193,7 +193,6 @@ endif()
 
 set(UTIL_LIBS
   crcutil
-  dl
   gflags
   glog
   gutil
@@ -207,6 +206,7 @@ set(UTIL_LIBS
 if(NOT APPLE)
   set(UTIL_LIBS
     ${UTIL_LIBS}
+    dl
     rt
     vmem)
 endif()
@@ -253,11 +253,11 @@ target_link_libraries(kudu_test_main
   glog
   gmock
   kudu_util
-  kudu_test_util
-  dl)
+  kudu_test_util)
 
 if(NOT APPLE)
   target_link_libraries(kudu_test_main
+    dl
     rt)
 endif()
 


[2/2] kudu git commit: Make UTF-8 characters display correctly in the web ui

Posted by to...@apache.org.
Make UTF-8 characters display correctly in the web ui

Some valid UTF-8 characters don't display correctly on the web ui,
like F09F8CAE (taco emoji). This adds the proper meta element to
the <head> so they display correctly.

Change-Id: I872c84a93d22f1cabce4534eccc917df99079414
Reviewed-on: http://gerrit.cloudera.org:8080/3830
Tested-by: Kudu Jenkins
Reviewed-by: Todd Lipcon <to...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/ec39756e
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/ec39756e
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/ec39756e

Branch: refs/heads/master
Commit: ec39756ef6f6cd25e15a9816d8bce631cb577c1c
Parents: fda036c
Author: Will Berkeley <wd...@gmail.com>
Authored: Mon Aug 1 21:46:47 2016 -0700
Committer: Todd Lipcon <to...@apache.org>
Committed: Wed Aug 3 22:37:05 2016 +0000

----------------------------------------------------------------------
 src/kudu/server/webserver.cc | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/ec39756e/src/kudu/server/webserver.cc
----------------------------------------------------------------------
diff --git a/src/kudu/server/webserver.cc b/src/kudu/server/webserver.cc
index 858e485..1121ccb 100644
--- a/src/kudu/server/webserver.cc
+++ b/src/kudu/server/webserver.cc
@@ -378,6 +378,7 @@ void Webserver::RegisterPathHandler(const string& path, const string& alias,
 const char* const PAGE_HEADER = "<!DOCTYPE html>"
 " <html>"
 "   <head><title>Kudu</title>"
+" <meta charset='utf-8'/>"
 " <link href='/bootstrap/css/bootstrap.min.css' rel='stylesheet' media='screen' />"
 " <link href='/kudu.css' rel='stylesheet' />"
 " </head>"