Restructure repository
[scuttle] / templates / importDelicious.tpl.php
1 <?php
2 $this->includeTemplate($GLOBALS['top_include']);
3 ?>
4
5 <form id="import" enctype="multipart/form-data" action="<?php echo $formaction; ?>" method="post">
6 <table>
7 <tr valign="top">
8     <th align="left"><?php echo T_('File'); ?></th>
9     <td>
10         <input type="hidden" name="MAX_FILE_SIZE" value="1024000" />
11         <input type="file" name="userfile" size="50" />
12     </td>
13 </tr>
14 <tr valign="top">
15     <th align="left"><?php echo T_('Privacy'); ?></th>
16     <td>
17         <select name="status">
18             <option value="0"><?php echo T_('Public'); ?></option>
19             <option value="1"><?php echo T_('Shared with Watchlist'); ?></option>
20             <option value="2"><?php echo T_('Private'); ?></option>
21         </select>
22     </td>
23 </tr>
24 <tr>
25     <td />
26     <td><input type="submit" value="<?php echo T_('Import'); ?>" /></td>
27 </tr>
28 </table>
29 </form>
30
31 <h3><?php echo T_('Instructions'); ?></h3>
32 <ol>
33     <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>
34     <li><?php echo T_('Save the resulting <abbr title="Extensible Markup Language">XML</abbr> file to your computer'); ?>.</li>
35     <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>
36     <li><?php echo T_('Select the default privacy setting for your imported bookmarks'); ?>.</li>
37     <li><?php echo T_('Click <kbd>Import</kbd> to start importing the bookmarks; it may take a minute'); ?>.</li>
38 </ol>
39
40 <?php
41 $this->includeTemplate($GLOBALS['bottom_include']);
42 ?>

Benjamin Mako Hill || Want to submit a patch?