SemanticScuttle/data/templates/importDelicious.tpl.php
2009-10-03 14:00:33 +00:00

42 lines
1.5 KiB
PHP

<?php
$this->includeTemplate($GLOBALS['top_include']);
?>
<form id="import" enctype="multipart/form-data" action="<?php echo $formaction; ?>" method="post">
<table>
<tr valign="top">
<th align="left"><?php echo T_('File'); ?></th>
<td>
<input type="hidden" name="MAX_FILE_SIZE" value="1024000" />
<input type="file" name="userfile" size="50" />
</td>
</tr>
<tr valign="top">
<th align="left"><?php echo T_('Privacy'); ?></th>
<td>
<select name="status">
<option value="0"><?php echo T_('Public'); ?></option>
<option value="1"><?php echo T_('Shared with Watchlist'); ?></option>
<option value="2"><?php echo T_('Private'); ?></option>
</select>
</td>
</tr>
<tr>
<td />
<td><input type="submit" value="<?php echo T_('Import'); ?>" /></td>
</tr>
</table>
</form>
<h3><?php echo T_('Instructions'); ?></h3>
<ol>
<li><?php echo T_('Log in to the <a href="http://del.icio.us/api/posts/all">export page at del.icio.us</a>'); ?>.</li>
<li><?php echo T_('Save the resulting <abbr title="Extensible Markup Language">XML</abbr> file to your computer'); ?>.</li>
<li><?php echo T_('Click <kbd>Browse...</kbd> to find this file on your computer. The maximum size the file can be is 1MB'); ?>.</li>
<li><?php echo T_('Select the default privacy setting for your imported bookmarks'); ?>.</li>
<li><?php echo T_('Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute'); ?>.</li>
</ol>
<?php
$this->includeTemplate($GLOBALS['bottom_include']);
?>