| 1234567891011121314151617181920212223 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package response // import "miniflux.app/v2/internal/http/response"
- import "net/http"
- // XML writes a standard XML response with a status 200 OK.
- func XML(w http.ResponseWriter, r *http.Request, body string) {
- builder := NewBuilder(w, r)
- builder.WithHeader("Content-Type", "text/xml; charset=utf-8")
- builder.WithBodyAsString(body)
- builder.Write()
- }
- // XMLAttachment forces the XML document to be downloaded by the web browser.
- func XMLAttachment(w http.ResponseWriter, r *http.Request, filename string, body string) {
- builder := NewBuilder(w, r)
- builder.WithHeader("Content-Type", "text/xml; charset=utf-8")
- builder.WithAttachment(filename)
- builder.WithBodyAsString(body)
- builder.Write()
- }
|