From 13323364598b54832be40f6e82f26f2295c784e9 Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 18 Apr 2008 07:08:17 +0000 Subject: Interface git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@112 b3834d28-1941-0410-a4f8-b48e95affb8f --- api/export_html.php | 57 +++++++++++++++++++++++++++++++++++++++++++ templates/editprofile.tpl.php | 4 +-- 2 files changed, 59 insertions(+), 2 deletions(-) create mode 100644 api/export_html.php diff --git a/api/export_html.php b/api/export_html.php new file mode 100644 index 0000000..b422b4b --- /dev/null +++ b/api/export_html.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 8108b2c..c9eb8a4 100644 --- a/templates/editprofile.tpl.php +++ b/templates/editprofile.tpl.php @@ -56,8 +56,8 @@ $this->includeTemplate($GLOBALS['top_include']); - / - + / + -- cgit v1.2.3