当前位置: 首页>>代码示例>>Golang>>正文


Golang fileembed.String函数代码示例

本文整理汇总了Golang中camlistore/org/pkg/fileembed.String函数的典型用法代码示例。如果您正苦于以下问题:Golang String函数的具体用法?Golang String怎么用?Golang String使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了String函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: init

func init() {
	Files.Add("filetree.css", 858, time.Unix(0, 1370942742232957700), fileembed.String("/*\n"+
		"Copyright 2011 The Camlistore Authors.\n"+
		"\n"+
		"Licensed under the Apache License, Version 2.0 (the \"License\");\n"+
		"you may not use this file except in compliance with the License.\n"+
		"You may obtain a copy of the License at\n"+
		"\n"+
		"     http://www.apache.org/licenses/LICENSE-2.0\n"+
		"\n"+
		"Unless required by applicable law or agreed to in writing, software\n"+
		"distributed under the License is distributed on an \"AS IS\" BASIS,\n"+
		"WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n"+
		"See the License for the specific language governing permissions and\n"+
		"limitations under the License.\n"+
		"*/\n"+
		"\n"+
		".cam-filetree-page {\n"+
		"  font: 16px/1.4 normal Arial, sans-serif;\n"+
		"}\n"+
		".cam-filetree-nav:before {\n"+
		"  content: \"[\";\n"+
		"}\n"+
		".cam-filetree-nav:after {\n"+
		"  content: \"]\";\n"+
		"}\n"+
		".cam-filetree-newp {\n"+
		"  text-decoration: underline;\n"+
		"  cursor: pointer;\n"+
		"  color: darkgreen;\n"+
		"  margin-left: .4em;\n"+
		"  font-size: 80%;\n"+
		"}\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:35,代码来源:zembed_filetree.css.go

示例2: init

func init() {
	Files.Add("index-compiled.html", 879, time.Unix(0, 1370942742232957700), fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"  <head>\n"+
		"    <script src=\"?camli.mode=config&var=CAMLISTORE_CONFIG\"></script>\n"+
		"    <script src=\"all.js\"></script>\n"+
		"    <!-- easier css handling: https://code.google.com/p/camlistore/issues/detail?"+
		"id=98 -->\n"+
		"    <link rel=\"stylesheet\" href=\"blob_item.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"blob_item_container.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"create_item.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"index.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"toolbar.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"closure/goog/css/common.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"closure/goog/css/toolbar.css\" type=\"text/css\">\n"+
		"  </head>\n"+
		"  <body>\n"+
		"    <script>\n"+
		"      var page = new camlistore.IndexPage(CAMLISTORE_CONFIG);\n"+
		"      page.decorate(document.body);\n"+
		"    </script>\n"+
		"  </body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:25,代码来源:zembed_index-compiled.html.go

示例3: init

func init() {
	Files.Add("blobinfo.html", 849, fileembed.String("<html>\n"+
		"<head>\n"+
		"  <title>Blob info</title>\n"+
		"  <script src=\"camli.js\"></script>\n"+
		"  <script src=\"?camli.mode=config&cb=onConfiguration\"></script>\n"+
		"  <script src=\"blobinfo.js\"></script>\n"+
		"  <link rel=\"stylesheet\" href=\"camli.css\">\n"+
		"</head>\n"+
		"<body class=\"camli-ui-blobinfo\">\n"+
		"  <div class=\"camli-nav\"><a href=\"./\">Home</a></div>\n"+
		"  <h1>Blob Contents</h1>\n"+
		"\n"+
		"  <div id=\"thumbnail\"></div>\n"+
		"  <span id=\"editspan\" class=\"camli-nav\" style=\"display: none;\"><a href=\"#\" id=\"ed"+
		"itlink\">edit</a></span>\n"+
		"  <span id=\"blobdownload\" class=\"camli-nav\"></span>\n"+
		"  <span id=\"blobdescribe\" class=\"camli-nav\"></span>\n"+
		"  <span id=\"blobbrowse\" class=\"camli-nav\"></span>\n"+
		"\n"+
		"  <pre id=\"blobdata\"></pre>\n"+
		"\n"+
		"  <h1>Indexer Metadata</h1>\n"+
		"  <pre id=\"blobmeta\"></pre>\n"+
		"\n"+
		"  <div id=\"claimsdiv\" style=\"visibility: hidden\">\n"+
		"    <h1>Mutation Claims</h1>\n"+
		"    <pre id=\"claims\"></pre>\n"+
		"  </div>\n"+
		"\n"+
		"</body>\n"+
		"</html>\n"+
		""), time.Unix(0, 1355268929464816599))
}
开发者ID:t3rm1n4l,项目名称:camlistore,代码行数:34,代码来源:zembed_blobinfo.html.go

示例4: init

func init() {
	Files.Add("debug.html", 1751, time.Unix(0, 1370942742232957700), fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"<head>\n"+
		"	<title>Camlistored UI</title>\n"+
		"	<script src=\"closure/goog/base.js\"></script>\n"+
		"	<script src=\"./deps.js\"></script>\n"+
		"	<script src=\"?camli.mode=config&var=CAMLISTORE_CONFIG\"></script>\n"+
		"	<!-- Begin non-Closure cheating; but depended on by server_connection.js -->\n"+
		"	<script type=\"text/javascript\" src=\"base64.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"Crypto.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"SHA1.js\"></script>\n"+
		"	<!-- End non-Closure cheating -->\n"+
		"	<script>\n"+
		"		goog.require('camlistore.DebugPage');\n"+
		"	</script>\n"+
		"\n"+
		"</head>\n"+
		"<body>\n"+
		"	<form>\n"+
		"		<h2>Root Discovery</h2>\n"+
		"		<p><input type=\"button\" id=\"discobtn\" value=\"Do Discovery\" /></p>\n"+
		"		<div id=\"discores\" style=\"border: 2px solid gray\">(discovery results)</div>\n"+
		"\n"+
		"		<h2>Signing Discovery</h2>\n"+
		"		<p><input type=\"button\" id=\"sigdiscobtn\" value=\"Do jsonSign discovery\" /></p>\n"+
		"		<div id=\"sigdiscores\" style=\"border: 2px solid gray\">(jsonsign discovery result"+
		"s)</div>\n"+
		"\n"+
		"		<h2>Signing Debug</h2>\n"+
		"		<table>\n"+
		"		<tr align='left'>\n"+
		"			<th>JSON blob to sign: <input type='button' id='addkeyref' value=\"Add keyref\"/"+
		"></th>\n"+
		"			<th></th>\n"+
		"			<th>Signed blob:</th>\n"+
		"			<th></th>\n"+
		"			<th>Verification details:</th>\n"+
		"		</tr>\n"+
		"		<tr>\n"+
		"			<td><textarea id='clearjson' rows=10 cols=40>{\"camliVersion\": 1, \"camliType\": "+
		"\"whatever\", \"foo\": \"bar\"}</textarea></td>\n"+
		"			<td valign='middle'><input type='button' id='sign' value=\"Sign &gt;&gt;\" /></t"+
		"d>\n"+
		"			<td><textarea id=\"signedjson\" rows=10 cols=40></textarea></td>\n"+
		"			<td valign='middle'><input type='button' id='verify' value=\"Verify &gt;&gt;\" /"+
		"></td>\n"+
		"			<td><div id='verifyinfo'></div></td>\n"+
		"		</tr>\n"+
		"		</table>\n"+
		"	</form>\n"+
		"\n"+
		"	<script>\n"+
		"		var page = new camlistore.DebugPage(CAMLISTORE_CONFIG);\n"+
		"		page.decorate(document.body);\n"+
		"	</script>\n"+
		"</body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:60,代码来源:zembed_debug.html.go

示例5: init

func init() {
	Files.Add("search.html", 1144, time.Unix(0, 1370942742232957700), fileembed.String("<html>\n"+
		"<head>\n"+
		"	<title>Search</title>\n"+
		"	<script src=\"closure/goog/base.js\"></script>\n"+
		"	<script src=\"./deps.js\"></script>\n"+
		"	<script src=\"?camli.mode=config&var=CAMLISTORE_CONFIG\"></script>\n"+
		"	<!-- Begin non-Closure cheating; but depended on by server_connection.js -->\n"+
		"	<script type=\"text/javascript\" src=\"base64.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"Crypto.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"SHA1.js\"></script>\n"+
		"	<!-- End non-Closure cheating -->\n"+
		"	<script>\n"+
		"		goog.require('camlistore.SearchPage');\n"+
		"	</script>\n"+
		"	<link rel=\"stylesheet\" href=\"blob_item.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"blob_item_container.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"create_item.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"index.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"toolbar.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"closure/goog/css/common.css\" type=\"text/css\">\n"+
		"	<link rel=\"stylesheet\" href=\"closure/goog/css/toolbar.css\" type=\"text/css\">\n"+
		"</head>\n"+
		"<body>\n"+
		"\n"+
		"	<script>\n"+
		"		var page = new camlistore.SearchPage(CAMLISTORE_CONFIG);\n"+
		"		page.decorate(document.body);\n"+
		"	</script>\n"+
		"</body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:33,代码来源:zembed_search.html.go

示例6: init

func init() {
	Files.Add("gallery.html", 616, fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"<head>\n"+
		"  <title>Gallery</title>\n"+
		"  <script src=\"base64.js\"></script>\n"+
		"  <script src=\"Crypto.js\"></script>\n"+
		"  <script src=\"SHA1.js\"></script>\n"+
		"  <script src=\"camli.js\"></script>\n"+
		"  <script src=\"?camli.mode=config&cb=onConfiguration\"></script>\n"+
		"  <script src=\"gallery.js\"></script>\n"+
		"  <link rel=\"stylesheet\" href=\"camli.css\">\n"+
		"</head>\n"+
		"<body class=\"camli-ui-permanode\">\n"+
		"  <div class=\"camli-nav\"><a href=\"./\">Home</a></div>\n"+
		"  <h1>Gallery</h1>\n"+
		"\n"+
		"  <p>\n"+
		"    Permalink:\n"+
		"    <span id=\"permanode\"></span>\n"+
		"    <span id=\"permanodeBlob\" class=\"camli-nav\"></span>\n"+
		"  </p>\n"+
		"\n"+
		"  <div id=\"members\"></div>\n"+
		"\n"+
		"</body>\n"+
		"</html>\n"+
		""), time.Unix(0, 1349725494193783184))
}
开发者ID:t3rm1n4l,项目名称:camlistore,代码行数:29,代码来源:zembed_gallery.html.go

示例7: init

func init() {
	Files.Add("filetree.html", 929, time.Unix(0, 1370942742232957700), fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"<head>\n"+
		"	<title>Filetree</title>\n"+
		"	<script src=\"closure/goog/base.js\"></script>\n"+
		"	<script src=\"./deps.js\"></script>\n"+
		"	<script src=\"?camli.mode=config&var=CAMLISTORE_CONFIG\"></script>\n"+
		"	<!-- Begin non-Closure cheating; but depended on by server_connection.js -->\n"+
		"	<script type=\"text/javascript\" src=\"base64.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"Crypto.js\"></script>\n"+
		"	<script type=\"text/javascript\" src=\"SHA1.js\"></script>\n"+
		"	<!-- End non-Closure cheating -->\n"+
		"	<script>\n"+
		"		goog.require('camlistore.FiletreePage');\n"+
		"	</script>\n"+
		"	<link rel=\"stylesheet\" href=\"filetree.css\">\n"+
		"</head>\n"+
		"<body class=\"cam-filetree-page\">\n"+
		"	<div class=\"cam-filetree-nav\"><a href=\"./\">Home</a></div>\n"+
		"	<h1>FileTree for <span id=\"curDir\" class=\"cam-filetree-nav\"></span> </h1>\n"+
		"\n"+
		"	<div id=\"children\"></div>\n"+
		"	<script>\n"+
		"		var page = new camlistore.FiletreePage(CAMLISTORE_CONFIG);\n"+
		"		page.decorate(document.body);\n"+
		"	</script>\n"+
		"</body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:31,代码来源:zembed_filetree.html.go

示例8: init

func init() {
	Files.Add("index.css", 375, fileembed.String("#toolbar input[type=\"button\"] {\n"+
		"    padding: 2px 5px 2px 5px;\n"+
		"}\n"+
		"\n"+
		"#btnList {\n"+
		"  margin-right: 0;\n"+
		"  border-right: 1px dashed #000;\n"+
		"}\n"+
		"\n"+
		"#btnThumbs {\n"+
		" margin-left: 0;\n"+
		" border-left: 0;\n"+
		"}\n"+
		"\n"+
		"#btnSmaller {\n"+
		"  margin-right: 0;\n"+
		"  border-right: 1px dashed #000;\n"+
		"  width: 2em;\n"+
		"}\n"+
		"\n"+
		"#btnBigger {\n"+
		" margin-left: 0;\n"+
		" border-left: 0;\n"+
		" width: 2em;\n"+
		"}\n"+
		"\n"+
		"#btnSearch {\n"+
		" margin-left: 0;\n"+
		" border-left: 0;\n"+
		"}"), time.Unix(0, 1355276007991994116))
}
开发者ID:t3rm1n4l,项目名称:camlistore,代码行数:32,代码来源:zembed_index.css.go

示例9: init

func init() {
	Files.Add("toolbar_test.html", 912, time.Unix(0, 1370942742232957700), fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"  <head>\n"+
		"    <script src=\"closure/goog/base.js\"></script>\n"+
		"    <script src=\"./deps.js\"></script>\n"+
		"    <script>\n"+
		"      goog.require('goog.events');\n"+
		"      goog.require('camlistore.Toolbar');\n"+
		"      goog.require('camlistore.Toolbar.EventType');\n"+
		"    </script>\n"+
		"    <link rel=\"stylesheet\" href=\"toolbar.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"closure/goog/css/common.css\" type=\"text/css\">\n"+
		"    <link rel=\"stylesheet\" href=\"closure/goog/css/toolbar.css\" type=\"text/css\">\n"+
		"  </head>\n"+
		"  <body>\n"+
		"    <script>\n"+
		"      var x = new camlistore.Toolbar();\n"+
		"      x.render(document.body);\n"+
		"\n"+
		"      goog.events.listen(\n"+
		"          x, camlistore.Toolbar.EventType.BIGGER, function() {\n"+
		"            console.log('Bigger');\n"+
		"          });\n"+
		"\n"+
		"      goog.events.listen(\n"+
		"          x, camlistore.Toolbar.EventType.SMALLER, function() {\n"+
		"            console.log('Smaller');\n"+
		"          });\n"+
		"    </script>\n"+
		"  </body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:34,代码来源:zembed_toolbar_test.html.go

示例10: init

func init() {
	Files.Add("search.html", 1516, fileembed.String("<html>\n"+
		"<head>\n"+
		"  <title>Camlistored UI</title>\n"+
		"  <script type=\"text/javascript\" src=\"Crypto.js\"></script>\n"+
		"  <script type=\"text/javascript\" src=\"SHA1.js\"></script>\n"+
		"  <script src=\"camli.js\"></script>\n"+
		"  <script src=\"?camli.mode=config&cb=Camli.onConfiguration\"></script>\n"+
		"  <script src=\"search.js\"></script>\n"+
		"  <link rel=\"stylesheet\" href=\"camli.css\">\n"+
		"</head>\n"+
		"<body>\n"+
		"    <div class=\"camli-nav\"><a href=\"./\">Home</a></div>\n"+
		"\n"+
		"    <h1>Search</h1>\n"+
		"\n"+
		"    <h2>Find all roots</h2>\n"+
		"    <form id=\"formRoots\">\n"+
		"        <input type=\"submit\" id=\"btnRoots\" value=\"Search\">\n"+
		"    </form>\n"+
		"\n"+
		"    <h2>In all attributes</h2>\n"+
		"    <form id=\"formAnyAttr\">\n"+
		"        <input id=\"inputAnyAttr\" placeholder=\"attrValue1\">\n"+
		"        <input type=\"submit\" id=\"btnAnyAttr\" value=\"Search\">\n"+
		"    </form>\n"+
		"\n"+
		"    <h2>By Tag</h2>\n"+
		"    <form id=\"formTags\">\n"+
		"        <input id=\"inputTag\" placeholder=\"tag1\">\n"+
		"        <input type=\"submit\" id=\"btnTagged\" value=\"Search\"></br>\n"+
		"        <input id=\"maxTagged\" placeholder=\"nb of results: 50\">\n"+
		"    </form>\n"+
		"\n"+
		"    <h2>By Title</h2>\n"+
		"    <form id=\"formTitles\">\n"+
		"        <input id=\"inputTitle\" placeholder=\"title1\">\n"+
		"        <input type=\"submit\" id=\"btnTitle\" value=\"Search\">\n"+
		"    </form>\n"+
		"\n"+
		"    <h3 id=\"titleRes\">Search</h3>\n"+
		"    <div id=\"divRes\">\n"+
		"</div>\n"+
		"    <p>\n"+
		"    <form id=\"formAddToCollec\">\n"+
		"        <input id=\"inputCollec\" placeholder=\"collection's permanode\">\n"+
		"        <input type=\"submit\" id=\"btnAddToCollec\" value=\"Add to collection\"> or\n"+
		"    </form>\n"+
		"    <button id=\"btnNewCollec\">Create new collection</button>\n"+
		"    </p>\n"+
		"\n"+
		"</body>\n"+
		"</html>\n"+
		""), time.Unix(0, 1364837799719094732))
}
开发者ID:robryk,项目名称:camlistore,代码行数:55,代码来源:zembed_search.html.go

示例11: init

func init() {
	Files.Add("folder.png", 3799, time.Unix(0, 1370436971361750003), fileembed.String("\x89PNG\x0d\n"+
		"\x1a\n"+
		"\x00\x00\x00\x0dIHDR\x00\x00\x00d\x00\x00\x00d\x08\x06\x00\x00\x00p\xe2\x95T\x00\x00\x00\x01sRGB\x00\xae\xce\x1c\xe9\x00\x00\x00\x06bKGD\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x00	pHYs\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01B(\x9bx\x00\x00\x00\x07"+
		"tIME\x07\xdc\x0b\x05\x10$\x1f\x89\xe0\xf8\xf4\x00\x00\x0eWIDATx\xda\xed]M\x88,\xd7u\xfe\xee\xad\xbf\xee\xe97o\xde\x9b\x97\x80\x03\"^(\x04\xd9\x02ol\x89\x90\x1fcD0\xb67\xd9\x04\x81\x97A1\x06!\x05D\x16Zz\x8c\xed\x8d\x841x!"+
		"\x8c\x08Z\[email protected]\x08\[email protected]\x16\xde\x18\x84\xf3c\x81-\x12	\x9b\xf8\x11\x07[\"\x0e\x96\xa5\xf1<\xcd\x9b\xfe\xab\xbf{\xef9^\xd4\xbd5\xd5=U\xdd5\xaf{\xfa\xcd\x9b\xae\x03\x97\xee\xae\xea\xaa\xae9_\x9d\xef;\xe7\xd4\xad\x1a\xa0\xb3\xce:\xeb\xac\xb3\xce:\xeb\xac\xb3\xce"+
		":\xeb\xac\xb3\xce:\xbb<&\x16\xad<88\x90i\x9a~\x1a\xc0\x1f>\xc0c\xfc\xc5;\xef\xbc\xf3\xef\xb7o\xdf6[\x0d\xc8\x0b/\xbc\xd0\x0f\xc3\xf0\xdf\x00<y	\x8e\xf3]f\xfe\xeb\x97^z\xe9_\xb7\x16\x90\x17_|\xf1y\x00\xdf\x8e\xa2\x08\x8f<\xf2H\xb9\x9c\x99"+
		"\x97\xbe\xaf3)\xe5\x99e\xcb\xb6!\"\x1c\x1d\x1da:\x9d\x02\xc0\x94\x99\xff\xe0\xe5\x97_\xfe\xe0*\x03\xe27\"%\xc4\x13\xcc\x8c\xc7\x1f\x7f\x1c\x8f=\xf6X\[email protected]\xaa\x0e\xad[6\xbf\xbc\xee\xf32`\x98\x19Zk\xbc\xf1\xc6\x1b\x18\x0e\x87\x03f\xfe2\x80\xafn% "+
		"D\x94	! \xa5,\x1d6\x1e\x8f\x91\xe7y\xf9\x99\x88f\xce\xe6&p\xaa\xeb\xdaF\x1a3#\x08\x02\xec\xed\xed\xe1\xd1G\x1f\xc5[o\xbd\x05\x00\x9f\xbe\xea\x94\xb5(B\x94;C\x99\xb9\xa4\x8fj\x94\xb4\x19m#\xab)R\xd24\xc5\xfe\xfe\xbe[\xf7\xe4\xc1\xc1\x81<8"+
		"8\xa0m\x8c\x90)\x00\x18cJ\xeaPJ\x81\x88V\x06\xa3\x0d\xbd\xb9eGGG\xb8u\xeb\x16\xa2(B\x9a\xa6\xd7\x86\xc3\xe1\xc7\x00\xdc\[email protected]\xb4\x10\x02y\x9e#I\x12(\xa5p\xef\xde\xbd2Z\x9c\xc3\[email protected]\xf3N\x9d\xa7\xb0\xba\xe8XFY\xce\x0e\x0f\x0fq\xf3\xe6"+
		"M\xbc\xf7\xde{\x10B<y\x95\x01\x91M+\x98y\xe2\x1c.\xa5\x84\x10\xa2\x1c\xd5\xcfR\xca3\xeb]V\xd5\xb4\xcd\xfcw\x1b(\xb3\x1c\x93\xc9\x04\xd7\[email protected]?\x89+l\x8b4\xc403\x94R\xf0}\x1f\x9e\xe7\xe1\xc6\x8d\x1b \xa2\x0b\xa1\xad\xba\xc8p\x9f\xb3,+"+
		"u\x84\x99\xff\xf8*\x03\"\x17P\xd6\x84\x99a\x8c\x99\x01\xa1\xfa\xd9\x0dcL\xb9\xbc\xee}\xddhZ_]\xae\xb5\x861\x06J)dY\x06!\x04\x98\xf9\x13\xcf?\xff\xfc\x97\xb7.B\x98\xd9\x00(\x9d\x91e\x19\x8e\x8f\x8f\xa1\x94\xba\xaf\xc8h#\xeaM\xd9\x163c4\x1a"+
		"aoo\x0f\xc7\xc7\xc7`\xe6\xef<\xf7\xdcs\xdf\x04\x90/\xfa\xe3\x96\x15\x9e\xcb\xd6\xcf}o(\x84\xf8g\xad\xf5\xd7^}\xf5\xd5\xe1\x83\x00d\xec\xb2\xac:\xe1\xae\x8e*\x855\x01\xb1\xa8\x16iJ\x83\xab\xeb\x84\x10\x18\x0c\x06\x00\x80\x93\x93\x13h\xad\x07\x00\x06kpt\xdb"+
		"\xef\xddd\xe6\xbf\x95R~\x1c\xc0\x176\x0e\x08\x00bf\xe4y\x8e \x08\xe0\xfb>n\xde\xbc\x89,\xcbj5\xa4\n"+
		"\xda\xfc\xfbE:\xb2(J\xaa\x9f]\x020\x18\x0c\xb0\xb3\xb3\x83~\xbf\x8f\xfd\xfd\xfd\xda\xc4\xc0-kJ\x1a\xea\x92\x8a\xea6\xd5\xe5\xae\xe53\x1e\x8f\xf1\xe6\x9boBk\xfd\xf9g\x9f}\xf6c\xaf\xbc\xf2\xca\xffl\x14\x10\xad\xf5HJY{\xf67E\xc1\xa2\x08h+\xf2M"+
		"\x945\xbf,\x8ec\x10\x11\xf6\xf7\xf7\xb1\xbb\xbb\x8b0\x0c\xe1\xfb~-\x10\xee\xb3\xef\xfb\xb5`\xcd\x83!\x84\x80\xe7y3\xcb\x95Rx\xfb\xed\xb7\xa1\x94\x821\xe6\x11\x00\x9b\x05DJ\xc9.\xcbr:2\x1c\x0e\x91$\xc9\xc2\x08iK[\x8b\xfaZM\xb45o\xc3\xe1\x10\x87"+
		"\x87\x87\x8d ,ZV\x97~\xbbh\xa8K\xcf\xc30tI\x05\x00\x84\x1b\xa7,c\xccP\x08q&\x0bZ$\xeaM\x0e\xaf[\xbe\xac\x18l\xdb\x84\\DYM\xf4\xd5\x04\x861\xa6\x16\x8c\xea\xb6\xf6\xd8\xaf?\x08\x0dA\xb5\x0e\x11B`ww\x17\xf34v?\xa3N\xe4\xdb"+
		"\xd4#\x8b\x8a\xc8E\x1aR\xf7\xda\xe4\xf4\xa6\x02\xd6Q\x98=\x0e\x7f\xe3\x80H)\x87.*\x9c3<\xcf+\x0fx\x9e\xa6\xaa\x11\xd2\xaa\x00\xb2]\xe4\xca\x1fy\xc6\xa9Up\x16U\xf5\x8b\"\xa1\x8e\xaa\x16EI\x13XsT|m\xe3\x80h\xad\x19\x00\xf2<\x87\xd6\x1aY\x96"+
		"a2\x99`4\x1a-M}\xdb\xeaG\x9b\xb4\xf7~(\xab\x8dn,\x8b\x94\xf9e\xbd^\xaf\x04F\x08\x11=\x88\xe6\xe2\xc8iH\x9e\xe7PJAk]^\x0f\xa9\xd3\x8c:P\x9aj\x97e\xb5\xc7y(\xeb\xbc\xa2\xbe\x08\x90\xba\xe5\x8e\xa6+\xc7\xd6{\x10\x80\x90\x94\xb2\xd4"+
		"\x10\x00\xe8\xf7\xfb\xc8\xb2\xec\x8c\xf3\x7f|w\x0fw\x93\xf0\\b\xbc\xee\xe2\xed<Q\xd3&\x19\xa8\xa3=\xa5>\x02\xedk\x18\x11\xfe\xcd\x13_\xfa\xf3\xbfl{<\xcc\x82!\xf0\x1fI\x10|\xe5\xce+OO\xeeWC\xc6\xd5\xb3\xd8\xf3<\x04A\x800\x0cg\xc0H\x14\xe3\xe7"+
		"'\x17F\xa9\x97\xcc\x027\x0b\xe1\xf7\xechy\x860\x00|\xaa\xaf\xf3c\x00\xdf\xb8_\x0d!\x97\x97\xbb\x0bSY\x96\x95\x05\x99\xd3\x85Q~\xba\x8b\xbf\xfa\x8bO\"\xf0\xe4\xda\[email protected]\x0c\x18\xba\x1c\x17	\x95a\x00\xe7\x88Z\x06~\xf2\xbf\xef\xe3\xbf\x7f\xf1\[email protected]\xf8\xd3\xfb\xa6"+
		"\xac\xd7^{m\xfc\xcc3\xcf\[email protected]\xd9.I\xd3\x14I\x92\xcch\xc6(\xeb\xdb\x96F\x0f\x1f\xfd\xc8uD\x81Dg\x95z\x8e\x18\xff\xf7\xfeI\x11(-.\xac-\xabC\x0c\x00\xcf\xb5\x1dz\xbd\x1e\xa2(\x9a\xd5\x10]$\x1c\xbb\xfd\xb0\x9cS\xf4\xb3_M\xdaE2\x00\xcf"+
		"\x13\x97\xc2q\x9e\x07\x08\xac\xf7X>\xfa\xbb;0\x86\x11'\xb9\x0d\x16>\\\x15\x90	\x80=\"B\x18\x86\x08\x82\x00Q\x14\x95`\x10\x11LR$\x1c\xbb\x83\x08\[email protected]\xae\x19w\xc7i\x17\x1a\x00n\xed\x86\x08}\x89q\x9c\xdb\[email protected]\x1e\xad\n"+
		"\x88v\x1a\"\xa5\x84\xd6z\x86\xb2\x98\x19\xd3\xb4\xa0\xac\x9d~\[email protected]@i\xea\x90\xb0\xba\xe7\".N3\xebO\[email protected]\xa6\x00n\xb9T7I\x92R\[email protected]\xf2\xa2\xad3\xd8\x89 J\xd1\xeb,S\x06\x81_\x002\x99\x16\x11\"=\xb3\x1a n\xe6\x89K{}\xdf"+
		"\x87\xef\xfb3\x94\xa58(\x00\xe9\x05\x10\x02]\x84\x00\xc85AVj\x9aI\\D\x88\xd2\xdej\x94%\x84\x98:\xc7\x87a\x88~\xbf\x8f\x9d\x9d\x9d\[email protected]\x14\x84\xd7zAy0\xdbNU\xb9\"\xecD\xbe\x8d\x14\x82\xa1\x825z\xd7\x83\x95#D\x01\x98\x99|\xa0\xb5"+
		"\x9e\x01$\xd1\xd2V\xf1\x01\x04\x00M\xdb\x0dH\x9a\x1b0\x80\xd0/\xfc\x92d\xaa\x0c\x94\x1f~\xeb\xe9d%@\x00\xc4n\xd6\xe2d29\xd3\\$\"d\xc6^Z\x8d\xc22\xcb\xda^\xdd8\x8d\x06\xa7\x1fI\xa6\x9d\"\x1f\xb6\xd9\x87\\\x12!\xb9\x9b\xfa#\xa5\x9ci\xbf\xdb"+
		"4\x0e\x8am\x9f\xab\[email protected]@o)ei\xc33t\xed\xdb\x8eE\x92\xba\x08\x11w\xdb\xecgY\x96\x958\xcar\xf5\xc7\xb5k\xd7\xca\xf9X\x89\x12(\x92;\x81^X\xec*\xdfB\xca\"*\xa8\xaaj%e\xe5.B\xf0\xc1\xca\x11\xc2\xcc\xb9\xa3\xac\x19!\xb7#\xd5v"+
		"\[email protected] \x11\xfa\x12B`\xeb\"\x84\x19H\xacnT\xcd\xf5\xf4&\x89\x9b:\xc6\xeb\x8b\x10\xad5\xa6\xd3)\x92$\xc1\xc9\xc9I	\xcc\x89\xd9\x05\x00Da\x00\xdf\[email protected]\xb6IC\x98\x8187\xa0\x9aK\x04\xa5\x86$\x05e	\x16G\xeb\x00$s\x94\xc5\xcc\xe5\xac\x0c\xd7\x96"+
		"\xcf\x8d\x07\x00\xb8>\xb0\x17\xd0.QWvc`P\xfd	\x18\xda\x08\x89\xad\x86\x90\xe0\xb5\x00\x92\xba\x08\xe9\xf5z\x90Rbww\xb7\xa4\xac\xa3\xe95 \x07\x06\xfd\xd0\x02\xc4\x1d\x18e\x84\x14\x80L-eI\xc8\xe3\xb5\x02\x02\x9c\xbdqSS\xb1\xf9\xb5\x9dhk\xaatb"+
		" \xc9\xeai\xaaNC\xa6e\xa7\x97\x8e\xd7FYD\x848\x8e\xa1\x94*\xeb\x10\"\xc28\xbbY\xd4 \xfd\x10\[email protected]\xae\xf6\xad\xe4\xda0Re\xd0\xe6\xaa\xb2\xd3\x908\xcd-\x90\xe27+\x03\x02 qYV\xf5^C\x97q\xe5.B\xec\xb5\x90\xab\x9cae\x8aZ\xb7"+
		"\x85\xa4\x14\xf0d\x01\xc8hZ\xf4\xb1|aV\x8f\x10\"\xca\x9d\xa8\xf7\xfb}\x18c0\x18\x0cN\xef\x11Q\[email protected]\xc0N\xcf\xbf\xb2U:\x11\x90*SV\xe0m,\xb0\x19'\x11#\xb5\x95\xba\[email protected]\x96\xd5!e\x84\x14\x95y1\x83\xcf\x0d\xd7\xe9\xedE\x01\x88\xf8J"+
		"Q\x16s\x11\x15q\xa6\xcf\x05\x86\xd3\x0f\xe6\x99b\x91\xdez\xf5\x8b\x1f\xae\x83\xb2\xca\xc20\xcb2h\xad\x11\xc7qY(\xe6\xa6\xc0\xb3\x17z \x06\x94\xe2+\x01\x842\x04\xa5y\xa9p/\x02\xc4\x10cR\xb6Mp\xec\xa6\x9e\xacJY\xb1\xa3\xac<\xcf\xcbn\xafR\n"+
		"\x86\x00m7\x0fC\xdfF\xc8\xc3\xab!\xc4\x806\x85N\xf0\x8a\xe7\x95\xe7	\x18bL\x93\xb2\x8fu\xdcv\xdbeY\x96\x02\x8aK\xb8Q\x14A)U\xd6#\x89\xf6\x00U\xd0X\xe0{ z\xf8\xd2^\xa2\xe2r\x816|nZZ\xe8T\x0b\x88+\n"+
		"\xc1\xfc\xe1Z\x00A\xf1\xc0\x17\x10\x11\x84\x10\xf0}\x1fQTT\xe5\x89\x9d\xde\x1a\xf8\x1e<)@\xcc\xd0\x0f\xb80d.fL\xcd\xde\xd6P]\xc7`.\xa6\xe6\x101.\xeah=Q\xf8c\xea\x00\x118Z\x0b D\xa4]a\xe8h+MSdY\x86\xa9*6\x8d\xa2"+
		"\x00\x0c\xc00C] e9G2\x03\xc4\x0cb7\xcf\xd6\xbe^\xa2\xc8\x93r6B\x18X\x0fe	!\xa6\xeeJa\x92$%(Y\x96!\xb1\x8d\xc5\x9d^P\x9eq\xc4\xebq\x0bq\x912\x1a;\xc8:\xfea1\xcf\x01\xe2\xda&\x8c\xf5P\x96\xd6Z\xbb\xfb\xeb\xc20"+
		"\x84\xd6\xba\x9c\xdbKy\xcf\xd6 !\x88V\x8b\x0e\xc7\xe5\x0e\x00~\xc8\x935!\x8ah\xaeP\xd6z\x00\x91RN\\e\xee4\xa4\xd7\xeb\xd9\x19\x8b\xc5\x04\xb9^?\xb0N\xe4s\xd1\x8f&\xb6bJ\x0f=\x00g\xfc&\x04\x88\x18\x89k\x9b\xb4\xec\xf4\xb6\x11\xf5\xf2\xf1\x1aD"+
		"\x04\xa5TIYiY\x83\xf8 f,\x0b\x10\x97V\xae;\xa3\xb9\x94\x11\x02\xc0\x10\xca\x08\x91$\xd7\xa3!D4v\xd7\xd4\x93$)\x0b\xc4,\xcb\[email protected]\xa2\xd0\x07\x11`\x0c7\x16Y\xdb\x00\xc2\x993\xb9\xd26i\xdb\xe9m\xa3!\xe44$\x08\x020s\xf9 \x1am"+
		"\x8ak a\xe0\x177\x87V.Li\xc3%\x10\xdbfR\x08P\x91{#M\xdd\x9c^o=\x94\x15E\xd18\xcb2[}z\x88\xa2\x08\xfd~\xbfx\x08\x8d\n"+
		"\x00\x06\xa2\xc0\x87\xb1z\x90\xeb\xd5Z\x0eW\x02\x10)\xca\x8c3w\xbd\xac [\x8f\xa8gYFN\xac]\xff\xca\xb5Or\xdbX\xf4\x03\x0f\xca\x10\xc6\xb1B\xa6.o\xa5\xce\x1b:I\x04\n"+
		"\xb6\xc8r\x0dW\x1d\xc5G\x83\xf5P\xd6\xeb\xaf\xbf>z\xea\xa9\xa7\x00\x14\xcf>t\xcd\xc5I\x9c\xc2\xb0,+uGQ\x17\xf1G\xf3\x067\xe65\x1d\xaf1\xa7\xfa\x01`t\xe7\xf6\xd3\xf9\xba\xb2\xac\xf2\x18\xddS\x0e\xa4\x940\xb6m\"\x85\x80\x10\x12\xda\x10\x94\x99\xad\x1f6"+
		"MZ\xbc\xc1\x1f]\xf63\xcaP\xb5\x06\xb9{\x9e}\xb7y\"\xc1\x10\xc0\x9e\xef\xfb\x08\xc3B\xc8\xc7\xc6\x00c\xc0\x0f\x8a\x94\x97\x8c\xb0\x15\xf5\xba\xff8^\xebi\xbd\xa9\x93D\x13\x9fN!\xa5\xf6\x9d\xde\xb6\x80\x94\x1a\xe22\xad\xcc\xd8>V\xe8A\x17)\x05\xf4\x05\x16x\xbc"+
		"A\xef\xae\xba\xdb\xa2\xdebd\x99\xbb\xa8\xd7\xbe\xd3\xdb\x06\x10\xc1\xcc#!\xc4\x9e\x9bp\x1d\xc71\xc6\xc9N\xa1\x1f\x81\x0fc\n"+
		"\xe9\xaa\x9b\x8e\xc5\x1b\xf4\x16o\x10\x06^R\x7f(M\xe5\x9c^bZ\x1b >\x80\xa0\xe4E[\x8b\x00\x80\x11!\[email protected]\xe0\xfb\xc8\x8d\x9d	\xcf\xeb\xff\xe3.\x02U\xbe\xe0\xb0b\xb2\x11\xa2,ei5\x02\xd0\x03\xa0\xed87 \xc2\x02\x11\x02\xf0\x99y\xe2\xae\xa5\x0f\x06\x03"+
		"x\x9e\x07$;@\x0ex\xbe\x07m\xc8\xb6\xc3\xf9B=\xb6\xc9$\x81W\xf8\xb2a\x00\x06\xa7\x93\x1bL\xee\x00Q(\xe60\xa8E?1\x0f\x88\xac\x80\x11\x00\x08\x84(\xae\x05W':h\x1b8\xbeMy\x17\xb5\xc7yS\x9e\xd8\x14h\xbc\xf8\xb7\x0c\x11\x08\x02\xb9\x8d\x10\xa3"+
		"\x921\x80\xc8\xfaV\xd8\x917\xed\xc2o\xa0)\x07JHD\xb1\xe7ye\x0d\x92$	bu\xab\x00Gz\xb6\xfe\xc0\xfdE\x08_\xf2\xb3\xff>6\xd2\xf6I\x0f\xee\x046\xe9xh})\xe6\xf6\x98/\x03\xc4\xaf\x8c\xa02\\\xd5^>4\xc0\xdd\xa4#<y\xfe\xbbny"+
		"\x83\x8e|\x00\xe6\xba\xdeJ\x15m\x13\x95\x8c'\x16\x10\[email protected]\x95a\xech\x04D\xa2xj\x83o_=\xab!q\x91Q\x05\x18\x0c\x06\x08\x82\x00z\xd4\x03\x18\xf0=\x1f\xdc\xdd\x05=\x97\xf6\x9e\xb6\x9a\x00 \x1b\xbf?\xb6>5\x15 \x9c\xaf\xcf\x00\"+\xaf\xf3\xc3\x03P<"+
		"	\xd3\xfe\x80\x10\x02F\x04\xc8\xb9\x98\xa9\x18Fa\[email protected]\x0f0\x87\xd6\x06`N\xdf\xff\xf1w\xdfm\xf0\xafD\xcd\x7f8\x92s\xd9U\xf5\xbd\xb0uH\x0c\x9c>\x11\xee0)\x9e]\xdc\xef\xf5\xe0y\xdd\x83f\xea\xec\xde\x87\xc5\x83\xafu6\xfe/\x15\x0f\xb9\xe2O\xd4\xbc"+
		"o\x04\x84+\xaf\xe5p\x11\x92e\x19\xeee!~zR\x08\xfa\xad\xdf\xb9\xd1y\xbe\x0e\x8c\xe3\x11\x8e\xee\x1e\x03\x0c>\xfe\xf9\x0f\xfe\xce\xd2\x14\xd7\xf8\xb7V\x1a\x9d\x86T\xc5\x86+\\Gq\x1c\x7f?\x8a\xa2/\xfc\x04\x7f\x06\xfe\xb5w\xfa\xc3\xf7\x868\xb97\xea\x10\x98i/"+
		"\x19\xa4\xf6\xb9&\xe9\xe8\x83\xdb\xff\xff\xa3\x7f\xfc\xe9\x9co\xa9\xc6\xd7\x8d\xa2\[email protected]\xd0\x15\x0d\xd1w\xee\xdc\xf9\xde\x13\x7f\xf4'\x9fe\xe1}\xb6\xba\xe1t\x92t\x08\xd4\x89:\xe9{\xf1\x87\xbf\xfc\x87\x9f\xfd\xcb\xd7\xff\xde\x16\x81\xaaR\xa5\xeb9q\xaf\xad\xca\xab\x16\xd6\x8c\[email protected]"+
		"\xf0\xf8g\xbe\xf8\xb9\xde\x8d\xdf\xff\x1c\xabq\xccL\xeefC	\x08f\xf0\x16\x89\x89P\xb1\xf6\xde\xd5\xecM\x8aBY\x1a\x06\x0b)<\xa1\xd2\xd1\xdd\xf7\xfe\xf3\x9f\xde\xd6\xc98\xb5\xcew\x80\xe4\x95\xd7\xeaX\n"+
		"\xc8\x99J\xbd2\xaauJ5S\xe0j\xbd\xb2\x85\xa6\xac\x1f\xabT\xa4+\x804\x01\xd3\xaaR\xa7\xca\x97y\xae\x88\xa9\xd6'^%m\[email protected]\xc5W\\)\xf8L\x03(\x0b{YbI\xe3\xb1\x1a\x19\xf3`\xc8\xca>\xfc-\x06D\xcfe\xa64\x07\x88\x99\xd3\x91\xc5\x84"+
		"\xd8b\xfd|\xf5.;@\xceP\x16\x1aX\xc5\xb4\x05\xa2- \xf3\xfa2_e\x8a\x0e\[email protected]\xdc8_\xca\xb0\x8e\xb4c\xcb5$Gg\x9du\xd6Yg\x9du\xd6Yg\x9du\xd6Yg\x9duvE\xed\xb7\x8bjI\xe6\xc3\x16\x92\xe2\x00\x00\x00\x00IEND\xaeB"+
		"`\x82"))
}
开发者ID:postfix,项目名称:camlistore,代码行数:54,代码来源:zembed_folder.png.go

示例12: init

func init() {
	Files.Add("create_item.css", 120, time.Unix(0, 1370942742232957700), fileembed.String(".cam-createitem-link {\n"+
		"  font-size: 40pt;\n"+
		"  text-decoration: none;\n"+
		"}\n"+
		"\n"+
		".cam-createitem {\n"+
		"  cursor: pointer !important;\n"+
		"}\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:11,代码来源:zembed_create_item.css.go

示例13: init

func init() {
	Files.Add("toolbar.css", 202, time.Unix(0, 1370942742232957700), fileembed.String(".cam-toolbar-magnify {\n"+
		"  display: block;\n"+
		"  vertical-align: middle;\n"+
		"  text-align: center;\n"+
		"  font-size: 16px;\n"+
		"  font-weight: bold;\n"+
		"}\n"+
		"\n"+
		".cam-toolbar-magnify .goog-toolbar-button-inner-box {\n"+
		"  width: 20px;\n"+
		"}"))
}
开发者ID:postfix,项目名称:camlistore,代码行数:13,代码来源:zembed_toolbar.css.go

示例14: init

func init() {
	Files.Add("index.html", 1626, fileembed.String("<html>\n"+
		"<head>\n"+
		"  <title>Recent Permanodes</title>\n"+
		"  <script type=\"text/javascript\" src=\"base64.js\"></script>\n"+
		"  <script type=\"text/javascript\" src=\"Crypto.js\"></script>\n"+
		"  <script type=\"text/javascript\" src=\"SHA1.js\"></script>\n"+
		"  <script src=\"camli.js\"></script>\n"+
		"  <script src=\"index.js\"></script>\n"+
		"  <script src=\"?camli.mode=config&cb=Camli.onConfiguration\"></script>\n"+
		"  <link rel=\"stylesheet\" href=\"camli.css\">\n"+
		"  <link rel=\"stylesheet\" href=\"index.css\">\n"+
		"</head>\n"+
		"<body class=\"camli-ui-index\">\n"+
		"  <h1 id=\"topTitle\">Recent Permanodes</h1>\n"+
		"  <div id='toolbar'>\n"+
		"    <input type='button' id='btnList' value=\"list\"><input type='button' id='btnTh"+
		"umbs' value=\"thm\">\n"+
		"\n"+
		"    <input type='button' id='btnSmaller' value=\"-\"><input type='button' id='btnBi"+
		"gger' value=\"+\">\n"+
		"\n"+
		"    <form style=\"display: inline\" id=\"formView\">\n"+
		"      View:\n"+
		"      <select id=\"selectView\">\n"+
		"        <option value=\"recent\">Recent</a>\n"+
		"        <option value=\"date\">From &lt;date&gt;...</a>\n"+
		"        <option id=\"optFromSel\" value=\"fromsel\" disabled='true'>From selected ite"+
		"m</a>\n"+
		"        <optiongroup title=\"Debug\">\n"+
		"          <option value=\"search\">Old Search</a>\n"+
		"          <option value=\"debug:disco\">Debug: Discovery</a>\n"+
		"          <option value=\"debug:signing\">Debug: Signing</a>\n"+
		"          <option value=\"debug:misc\">Debug: Misc</a>\n"+
		"        </optiongroup>\n"+
		"      </select>\n"+
		"    </form>\n"+
		"\n"+
		"    <form style=\"float: right\" id=\"formSearch\">\n"+
		"      <input type=\"text\" id=\"textSearch\" size=15 title=\"Search\"><input type=\"subm"+
		"it\" id=\"btnSearch\" value=\"Srch\">\n"+
		"    </form>\n"+
		"  </div>\n"+
		"  <ul id=\"recent\"></ul>\n"+
		"\n"+
		"  <div style=\"display: block; clear: both\" id=\"debugstatus\"></div>\n"+
		"\n"+
		"</body>\n"+
		"</html>\n"+
		""), time.Unix(0, 1358714562000000000))
}
开发者ID:proppy,项目名称:camlistore,代码行数:51,代码来源:zembed_index.html.go

示例15: init

func init() {
	Files.Add("blob_item_test.html", 1505, time.Unix(0, 1370942742232957700), fileembed.String("<!doctype html>\n"+
		"<html>\n"+
		"  <head>\n"+
		"    <script src=\"closure/goog/base.js\"></script>\n"+
		"    <script src=\"./deps.js\"></script>\n"+
		"    <script>\n"+
		"      goog.require('camlistore.BlobItem');\n"+
		"    </script>\n"+
		"    <link rel=\"stylesheet\" href=\"blob_item.css\" type=\"text/css\">\n"+
		"  </head>\n"+
		"  <body>\n"+
		"    <script>\n"+
		"      var blobRef = 'sha1-5660088af0aa0d4f2294088f41284002a1baaa29';\n"+
		"      var metaBag = {\n"+
		"        'sha1-5660088af0aa0d4f2294088f41284002a1baaa29': {\n"+
		"          'blobRef': 'sha1-5660088af0aa0d4f2294088f41284002a1baaa29',\n"+
		"          'camliType': 'permanode',\n"+
		"          'mimeType': 'application/json; camliType=permanode',\n"+
		"          'permanode': {\n"+
		"            'attr': {\n"+
		"              'camliContent': ['sha1-c2379bcf77848c90d2c83709aaf7f628a21ff725']\n"+
		"            }\n"+
		"          },\n"+
		"          'size': 556,\n"+
		"          'thumbnailHeight': 100,\n"+
		"          'thumbnailSrc': 'thumbnail/sha1-c2379bcf77848c90d2c83709aaf7f628a21ff72"+
		"5/leisure-suit-tony.gif?mw=100&mh=100',\n"+
		"          'thumbnailWidth': 100\n"+
		"        },\n"+
		"        'sha1-c2379bcf77848c90d2c83709aaf7f628a21ff725': {\n"+
		"          'blobRef': 'sha1-c2379bcf77848c90d2c83709aaf7f628a21ff725',\n"+
		"          'camliType': 'file',\n"+
		"          'file': {\n"+
		"            'size': 37741,\n"+
		"            'fileName': 'leisure-suit-tony.gif',\n"+
		"            'mimeType': 'image/gif'\n"+
		"          },\n"+
		"          'mimeType': 'application/json; camliType=file',\n"+
		"          'size': 198\n"+
		"        }\n"+
		"      };\n"+
		"\n"+
		"      var x = new camlistore.BlobItem(blobRef, metaBag);\n"+
		"      x.render(document.body);\n"+
		"    </script>\n"+
		"  </body>\n"+
		"</html>\n"+
		""))
}
开发者ID:postfix,项目名称:camlistore,代码行数:50,代码来源:zembed_blob_item_test.html.go


注:本文中的camlistore/org/pkg/fileembed.String函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。