ui: rm wantsRecentPermanodes and index-compiled.html

Change-Id: I5dd8d0b11b5b82f51738fbe5669f5a7798929300
This commit is contained in:
mpl 2013-07-04 21:46:38 +02:00
parent d065aac5b7
commit 3cec70b4ad
2 changed files with 0 additions and 25 deletions

View File

@ -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
}

View File

@ -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>