// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // A helper function for using JsTemplate. See jstemplate_builder.h for more // info. #include "chrome/common/jstemplate_builder.h" #include "base/logging.h" #include "base/string_util.h" #include "chrome/common/json_value_serializer.h" #include "chrome/common/resource_bundle.h" #include "grit/common_resources.h" namespace jstemplate_builder { std::string GetTemplateHtml(const StringPiece& html_template, const DictionaryValue* json, const StringPiece& template_id) { // fetch and cache the pointer of the jstemplate resource source text. static const StringPiece jstemplate_src( ResourceBundle::GetSharedInstance().GetRawDataResource(IDR_JSTEMPLATE_JS)); if (jstemplate_src.empty()) { NOTREACHED() << "Unable to get jstemplate src"; return std::string(); } // Convert the template data to a json string. DCHECK(json) << "must include json data structure"; std::string jstext; JSONStringValueSerializer serializer(&jstext); serializer.Serialize(*json); // tag. So we // replace "); output.append(jstemplate_src.data(), jstemplate_src.size()); output.append("var tp = document.getElementById('"); output.append(template_id.data(), template_id.size()); output.append("'); var cx = new JsExprContext("); output.append(jstext); output.append("); jstProcess(cx, tp);"); return output; } } // namespace jstemplate_builder