From b143701e7db9ee49f53e3f221eed7b96c340228a Mon Sep 17 00:00:00 2001 From: mensonge Date: Thu, 3 Apr 2008 14:36:16 +0000 Subject: 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 --- api/.htaccess | 1 + api/export_all.php | 57 +++++++++++++++++++++++++++++++++++++++++++ templates/editprofile.tpl.php | 22 ++++++++++------- 3 files changed, 71 insertions(+), 9 deletions(-) create mode 100644 api/export_all.php 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 'Bookmarks'."\r\n"; +echo '

Bookmarks for '. htmlspecialchars($currentusername) .''. (is_null($tag) ? '' : ' tag="'. htmlspecialchars($tag) .'"') ." from " . $sitename ."

\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

" . filter($row['bTitle'], 'xml') ."\r\n"; +} + + +echo '

'; +?> 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']);

-

- - - - -
- - -

@@ -60,6 +51,19 @@ $this->includeTemplate($GLOBALS['top_include']); +

+ + + + + + + +
+ / + +
+