blob: f7a8a3ec0513f2c39f0747b0f002e43b500e7d68 [file] [log] [blame]
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"bytes"
"io/ioutil"
"net/http"
"path/filepath"
"time"
)
// playScript registers an HTTP handler at /play.js that contains all the
// scripts specified by path, relative to basePath.
func playScript(root string, path ...string) {
modTime := time.Now()
var buf bytes.Buffer
for _, p := range append(path, "jquery.js", "jquery-ui.js", "play.js") {
b, err := ioutil.ReadFile(filepath.Join(root, "js", p))
if err != nil {
panic(err)
}
buf.Write(b)
}
b := buf.Bytes()
http.HandleFunc("/play.js", func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-type", "application/javascript")
http.ServeContent(w, r, "", modTime, bytes.NewReader(b))
})
}