コード例 #1
0
ファイル: ui.go プロジェクト: kdevroede/camlistore
func wantsPermanode(req *http.Request) bool {
	if httputil.IsGet(req) && blob.ValidRefString(req.FormValue("p")) {
		// The new UI is handled by index.html.
		if req.FormValue("newui") != "1" {
			return true
		}
	}
	return false
}
コード例 #2
0
ファイル: ui.go プロジェクト: rakyll/camlistore
func wantsFileTreePage(req *http.Request) bool {
	return httputil.IsGet(req) && blob.ValidRefString(req.FormValue("d"))
}
コード例 #3
0
ファイル: ui.go プロジェクト: rakyll/camlistore
func wantsBlobInfo(req *http.Request) bool {
	return httputil.IsGet(req) && blob.ValidRefString(req.FormValue("b"))
}
コード例 #4
0
ファイル: ui.go プロジェクト: rakyll/camlistore
func wantsPermanode(req *http.Request) bool {
	return httputil.IsGet(req) && blob.ValidRefString(req.FormValue("p"))
}
コード例 #5
0
ファイル: ui.go プロジェクト: newobject/camlistore
func wantsFileTreePage(req *http.Request) bool {
	return req.Method == "GET" && blob.ValidRefString(req.FormValue("d"))
}
コード例 #6
0
ファイル: ui.go プロジェクト: newobject/camlistore
func wantsBlobInfo(req *http.Request) bool {
	return req.Method == "GET" && blob.ValidRefString(req.FormValue("b"))
}
コード例 #7
0
ファイル: ui.go プロジェクト: newobject/camlistore
func wantsPermanode(req *http.Request) bool {
	return req.Method == "GET" && blob.ValidRefString(req.FormValue("p"))
}