mirror of https://github.com/perkeep/perkeep.git
ui: rm wantsRecentPermanodes and index-compiled.html
Change-Id: I5dd8d0b11b5b82f51738fbe5669f5a7798929300
This commit is contained in:
parent
d065aac5b7
commit
3cec70b4ad
|
@ -265,10 +265,6 @@ func wantsUploadHelper(req *http.Request) bool {
|
|||
return req.Method == "POST" && camliMode(req) == "uploadhelper"
|
||||
}
|
||||
|
||||
func wantsRecentPermanodes(req *http.Request) bool {
|
||||
return req.Method == "GET" && req.FormValue("mode") == "thumbnails"
|
||||
}
|
||||
|
||||
func wantsPermanode(req *http.Request) bool {
|
||||
return req.Method == "GET" && blobref.Parse(req.FormValue("p")) != nil
|
||||
}
|
||||
|
|
|
@ -1,21 +0,0 @@
|
|||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<script src="?camli.mode=config&var=CAMLISTORE_CONFIG"></script>
|
||||
<script src="all.js"></script>
|
||||
<!-- easier css handling: https://code.google.com/p/camlistore/issues/detail?id=98 -->
|
||||
<link rel="stylesheet" href="blob_item.css" type="text/css">
|
||||
<link rel="stylesheet" href="blob_item_container.css" type="text/css">
|
||||
<link rel="stylesheet" href="create_item.css" type="text/css">
|
||||
<link rel="stylesheet" href="index.css" type="text/css">
|
||||
<link rel="stylesheet" href="toolbar.css" type="text/css">
|
||||
<link rel="stylesheet" href="closure/goog/css/common.css" type="text/css">
|
||||
<link rel="stylesheet" href="closure/goog/css/toolbar.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var page = new camlistore.IndexPage(CAMLISTORE_CONFIG);
|
||||
page.decorate(document.body);
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue