aboutsummaryrefslogtreecommitdiffhomepage
path: root/http/response/xml/xml.go
blob: 9e37e8756cb4fa586a0a3040f313b49cf19658e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2018 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.

package xml

import (
	"fmt"
	"net/http"
)

// OK sends a XML document.
func OK(w http.ResponseWriter, data string) {
	w.Header().Set("Content-Type", "text/xml")
	w.Write([]byte(data))
}

// Attachment forces the download of a XML document.
func Attachment(w http.ResponseWriter, filename, data string) {
	w.Header().Set("Content-Type", "text/xml")
	w.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s", filename))
	w.Write([]byte(data))
}