diff options
Diffstat (limited to 'data/templates/default/importDelicious.tpl.php')
| -rw-r--r-- | data/templates/default/importDelicious.tpl.php | 42 | 
1 files changed, 42 insertions, 0 deletions
| diff --git a/data/templates/default/importDelicious.tpl.php b/data/templates/default/importDelicious.tpl.php new file mode 100644 index 0000000..bc4d892 --- /dev/null +++ b/data/templates/default/importDelicious.tpl.php @@ -0,0 +1,42 @@ +<?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']); +?>
\ No newline at end of file | 
