2015-05-22 20:21:23 +03:00
|
|
|
// Copyright 2014 Manu Martinez-Almeida. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2015-05-07 13:44:52 +03:00
|
|
|
package render
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/xml"
|
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2015-05-18 16:45:24 +03:00
|
|
|
type XML struct {
|
|
|
|
Data interface{}
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|
|
|
|
|
2015-05-23 17:39:25 +03:00
|
|
|
var xmlContentType = []string{"application/xml; charset=utf-8"}
|
2015-05-22 05:44:29 +03:00
|
|
|
|
2015-06-04 06:25:21 +03:00
|
|
|
func (r XML) Render(w http.ResponseWriter) error {
|
2015-06-13 05:43:23 +03:00
|
|
|
writeContentType(w, xmlContentType)
|
2015-05-18 16:45:24 +03:00
|
|
|
return xml.NewEncoder(w).Encode(r.Data)
|
2015-05-07 13:44:52 +03:00
|
|
|
}
|