SafeHtmlBuilder html = new SafeHtmlBuilder();
html.appendHtmlConstant("<ul>");
html.appendHtmlConstant("<li>").appendEscaped("Locale: The user interface language.");
if (productConfig.getProfile() == COMMUNITY) {
html.appendHtmlConstant("<li>").appendEscaped("Analytics: We track browser and operating system information in order to improve the user interface. ");
html.appendEscaped("You can disable the analytics feature at anytime.");
}
html.appendHtmlConstant("</ul>");
StaticHelpPanel help = new StaticHelpPanel(html.toSafeHtml());
layout.add(help.asWidget());
layout.add(form.asWidget());