yacy_search_server/htroot/api/ymarks/test_import.html
apfelmaennchen 25339f93c7 more updates to ymarks
- working xbel import/export
- exported xbel includes yacy specific metadata but still validates against PUBLIC DTD


git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@7315 6c8d7289-2bf4-0310-a012-ef5d649a1542
2010-11-09 17:01:31 +00:00

31 lines
900 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>YaCy Bookmarks</title>
</head>
<body>
<form action="/api/ymarks/import_ymark.xml" method="post" enctype="multipart/form-data" accept-charset="UTF-8">
<fieldset>
<legend>Import Bookmarks</legend>
<dl>
<dt>
<label for="importer">Importer:</label>
</dt>
<dd>
<select name="importer" id="importer">
<option value="xbel">XBEL Importer</option>
<option value="html">Netscape HTML Importer</option>
</select>
</dd>
<dt>
<label for="file">File:</label>
</dt>
<dd>
<input type="file" name="bmkfile" id="bmkfile" />
</dd>
</dl>
<input type="submit" name="importbookmarks" value="import" />
</fieldset>
</form>
</body>
</html>