aboutsummaryrefslogtreecommitdiff
path: root/data/templates/default/importDelicious.tpl.php
blob: bc4d892cce731dfc5907dee3b45434205d078929 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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']);
?>