diff --git a/api/.htaccess b/api/.htaccess index 0db2254..eac7035 100644 --- a/api/.htaccess +++ b/api/.htaccess @@ -8,6 +8,7 @@ RewriteRule ^posts/update posts_update.php RewriteRule ^posts/add posts_add.php RewriteRule ^posts/delete posts_delete.php RewriteRule ^tags/rename tags_rename.php +RewriteRule ^tags/export export_all.php # Allow PHP_AUTH_USER with CGI script diff --git a/api/export_all.php b/api/export_all.php new file mode 100644 index 0000000..ec14688 --- /dev/null +++ b/api/export_all.php @@ -0,0 +1,57 @@ +getBookmarks(0, NULL, $userservice->getCurrentUserId(), $tag, NULL, getSortOrder()); + +$currentuser = $userservice->getCurrentUser(); +$currentusername = $currentuser[$userservice->getFieldName('username')]; + +// Set up the XML file and output all the posts. +header('Content-Type: text/html'); +echo ''."\r\n"; +echo ''; +echo ''."\r\n"; +echo '
'."\r\n"; + + + +foreach($bookmarks['bookmarks'] as $row) { + if (is_null($row['bDescription']) || (trim($row['bDescription']) == '')) + $description = ''; + else + $description = 'description="'. filter($row['bDescription'], 'xml') .'" '; + + $taglist = ''; + if (count($row['tags']) > 0) { + foreach($row['tags'] as $tag) + $taglist .= convertTag($tag) .' '; + $taglist = substr($taglist, 0, -1); + } else { + $taglist = 'system:unfiled'; + } + + echo "\t
'; +?> 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']);