Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
CHUKWA-695. Added ability to export widgets from graph explorer. (Eri…
Browse files Browse the repository at this point in the history
…c Yang)

git-svn-id: https://svn.apache.org/repos/asf/incubator/chukwa/trunk@1517396 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
macroadster committed Aug 25, 2013
1 parent ce8f75d commit 4095f2d
Show file tree
Hide file tree
Showing 12 changed files with 860 additions and 211 deletions.
2 changes: 2 additions & 0 deletions CHANGES.txt
Expand Up @@ -12,6 +12,8 @@ Release 0.6 - Unreleased

NEW FEATURES

CHUKWA-695. Added ability to export widgets from graph explorer. (Eric Yang)

CHUKWA-581. Added support for custom reducer package name. (Ivy Tang via Eric Yang)

CHUKWA-669. JMX Adaptor. (shreyas subramanya via asrabkin)
Expand Down
2 changes: 2 additions & 0 deletions NOTICE.txt
Expand Up @@ -58,3 +58,5 @@ Copyright (c) 2008-2010, Ariel Rabkin
This product includes JUnit
Copyright (c) 2006 JUnit.org

This product includes formalize
Copyright (c) 2012 Nathan Smith, http://formalize.me/
Expand Up @@ -63,7 +63,7 @@ public void set(WidgetBean widget) throws IllegalAccessException {
try {
fs = FileSystem.get(config);
FSDataOutputStream out = fs.create(widgetFile,true);
out.writeUTF(widget.deserialize().toString());
out.writeBytes(widget.deserialize().toString());
out.close();
} catch (IOException ex) {
log.error(ExceptionUtil.getStackTrace(ex));
Expand Down
3 changes: 2 additions & 1 deletion src/main/web/hicc/css/default.css
Expand Up @@ -40,7 +40,7 @@ A.sectionLink:link {font-family:Arial;color:#FFFFFF;text-decoration:none;}


body {font-family:Arial;background-color:#ffffff;}

.error input {color:#FFCCCC;}
.messageTable {font:normal 11px Arial;background-color:#999999;border-style:solid;border-top:0;border-bottom:0;border-width:1px;border-color:#777772;}
.messageTableContent {font:normal 11px Arial;background-color:#FFFFFF;color:#1E4F66;text-align:left;}
.messageTableLeft {font:bold 11px Arial;background-color:#e9e8e6;text-align:left;color:#555555;vertical-align:top;}
Expand Down Expand Up @@ -709,3 +709,4 @@ fieldset > .row:last-child {
*.ygtvlabel {
font-size:11px;
}

0 comments on commit 4095f2d

Please sign in to comment.