bb4a23aa86
Relates to #102 Additions: - application: - export: allow prepending note permalinks with the instance's URL - test coverage Modifications: - export template: switch to an HTML form - link selection (all/private/public) - prepend note permalinks with the instance's URL Signed-off-by: VirtualTam <virtualtam@flibidi.net>
28 lines
938 B
HTML
28 lines
938 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>{include="includes"}</head>
|
|
<body>
|
|
<div id="pageheader">
|
|
{include="page.header"}
|
|
<div id="toolsdiv">
|
|
<form method="GET">
|
|
<input type="hidden" name="do" value="export">
|
|
Selection:<br>
|
|
<input type="radio" name="selection" value="all" checked="true"> All<br>
|
|
<input type="radio" name="selection" value="private"> Private<br>
|
|
<input type="radio" name="selection" value="public"> Public<br>
|
|
<br>
|
|
<input type="checkbox" name="prepend_note_url" id="prepend_note_url">
|
|
<label for="prepend_note_url">
|
|
Prepend note permalinks with this Shaarli instance's URL
|
|
<em>(useful to import bookmarks in a web browser)</em>
|
|
</label>
|
|
<br><br>
|
|
<input class="bigbutton" type="submit" value="Export">
|
|
</form>
|
|
<div class="clear"></div>
|
|
</div>
|
|
</div>
|
|
{include="page.footer"}
|
|
</body>
|
|
</html>
|