diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-03 14:36:16 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-03 14:36:16 +0000 |
commit | b143701e7db9ee49f53e3f221eed7b96c340228a (patch) | |
tree | 7858876bb41218a8864eabdfb2ce6920b95e811a /templates/editprofile.tpl.php | |
parent | 0564d64de2ea6838e7a874da5e99fa5358a0f75f (diff) | |
download | semanticscuttle-b143701e7db9ee49f53e3f221eed7b96c340228a.tar.gz semanticscuttle-b143701e7db9ee49f53e3f221eed7b96c340228a.tar.bz2 |
New feature: export bookmarks into html file for import into browsers
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@95 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/editprofile.tpl.php')
-rw-r--r-- | templates/editprofile.tpl.php | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/templates/editprofile.tpl.php b/templates/editprofile.tpl.php index d84fac5..8108b2c 100644 --- a/templates/editprofile.tpl.php +++ b/templates/editprofile.tpl.php @@ -4,15 +4,6 @@ $this->includeTemplate($GLOBALS['top_include']); <form action="<?php echo $formaction; ?>" method="post"> -<h3><?php echo T_('Actions'); ?></h3> -<table class="profile"> -<tr> - <th align="left"><?php echo T_('Export'); ?></th> - <td> - <a href="../api/posts/all"><?php echo T_('All bookmarks')?></a> - <?php echo ' ← '.T_('Del.icio.us-like API')?> - </td> -</tr> </table> <h3><?php echo T_('Account Details'); ?></h3> @@ -60,6 +51,19 @@ $this->includeTemplate($GLOBALS['top_include']); <td><input type="submit" name="submitted" value="<?php echo T_('Save Changes'); ?>" /></td> </tr> </table> +<h3><?php echo T_('Actions'); ?></h3> +<table class="profile"> +<tr> + <th align="left"><?php echo T_('Export bookmarks'); ?></th> + <td> + <a href="../api/posts/all"><?php echo T_('XML file (for del.icio.us)')?></a> / + <a href="../api/export/all"><?php echo T_('HTML file (for browsers)')?></a> + </td> +</tr> +<tr><th> </th><td> </td></tr> +<tr><th> </th><td> </td></tr> +</table> + </form> <?php |