Talk:Foxmarks: Frequently Asked Questions

From Foxmarks Wiki

Jump to: navigation, search

Contents

Strange error

I am tring to sync up with the server on a new machine and I get a strange error when I both run the wizard and/or try to do a manual download: CopyResource: Found no type associated with rdf:#$TYQdX2

Any idea whats up with this error and how I can get around? Using FireFox 1.5.0.1

From what we can tell, it looks like you resolved this problem yourself. If that's not the case, please mail us, including your username, and we'll try to help. --Todd 14:03, 24 March 2006 (EST)

how to delete the bookmarks

Hi, i've found that the plugin will be not able to syncronaze correctly the bookmarks if I start with two different bookmarks set.

An idea to fix immediatly the problem is to add a button I could use to remove all the remote bookmarks, after this operation I will insert it again.

If you have other solutions I'll appreciate it very much.

Regards, Maurizio

Accessing Bookmarks Remotely

An anonymous user wrote on the FAQ page:

Earlier versions of the software used to have a place where you could manually enter some XML tags which would be stored at the beginning of the XML file saved on the server, so that when you point your browser to the stored XML file, it would use a stylesheet to transform the raw list of items into a nice-looking web page with clickable links. This feature was removed, although it's rather interesting that this functionality (being able to access your stored bookmarks from other browsers) is still available if you're willing to sign up for their service.
You must be talking about some other software, as this has never been part of Foxmarks. --Todd 03:15, 11 December 2006 (EST)

What happens to my existing bookmarks when I install Foxmarks? Will my bookmarks get overwritten?

Abstract: From my experience, this paragraph needs to get revised. It does not reflect what's really going on when Foxmarks is installed on multiple computers with similar (but different) bookmark sets. Initial synchronisation of bookmarks on different computers needs improvement.

Environment: I am using Foxmarks on my own ftp server. I installed Foxmarks 0.84 on two computers disabling Automatic Synchronization to ease replaying the steps.

Description: When installing Foxmarks on the first computer, it created the master set foxmarks.xml. After I installed Foxmarks on the second computer, pressing Synchronize Now opened the following pop up window:

This appears to be the first time synchronizing.
A remote synchronization file already exists.
Do you want to use the local or remote file as the master?
[ ] Merge Contents
<Local>      <Cancel>       <Remote>

(hint for revision: this dialoge is not really matching the three alternatives in the FAQ paragraph.) I checked Merge Contents and clicked on Remote. After synchronizing was finished, I clicked Synchronize Now on the first computer. What happened was that basically the bookmarks of the second computer took over. I did not seem like merging took place. It rather looks like overwriting.

Then I resetted the configuration (i.e. restored old bookmarks, delete Foxmarks configuration, deleted foxmarks.xml). I tried the same as above but this time (on the second computer) I clicked Local instead. After synchronizing was finished, I clicked Sync Now on the first computer and a window popped up, telling me that "Foxmarks has detected that you have uploaded a sync file from another computer to the server" and suggested merging. So I clicked on the button Merge but again I bascially ended up with the bookmarks of the second computer.

How do I join different bookmark sets across several computers?

Added: MergeTestCase

-- Kabsi 17:00, 10 February 2007 (EST)

screenshots of the bookmarks

Please include in your good soft supporting the screen shots of the site pages

Security

I haven't found the question I am looking for. What are the security protections or guarantees from Foxmark that one's bookmark profile is secure from snooping from the outside? Particularly the government. Recall the issues of snooping and data-mining with Google inquiries creating a database on users.

Interested in using this program...

Comment from a Foxmarks user: I've setup foxmarks to use my own WebDAV server via https (using my own ssl certificate). That should take care of information leaks along the way and at the server side. I havn't fired up wireshark yet to check if foxmarks only connects to my server, though. If anybody has, please let us know.

Is encryption supported? If not currently, are there future plans for it?

Is this subject line above on the FAQ article page still relevant? I see there is an encryption option in Foxmarks. --quatermass 09:42, 23 October 2007 (UTC)

  • Thanks for pointing out the lack of clarity in that entry; I've gone ahead and updated it to differentiate between the encryption of data in transit versus encryption of the data on the server (the former being supported presently, the latter not yet). —Foxworth 17:24, 23 October 2007 (UTC)
  • I think this subject is still relevant as I think that encryption to store data on the server is really important. I have Foxmarks but never sync my bookmarks because the server storage is not secured. When do you think to implement it? --MaGrandMereChinoise 15:28, 4 November 2008 (UTC)
  • There are no plans currently for server-side encryption of bookmark data, though password data is completely encrypted before storage on the Foxmarks server. —Foxworth 17:20, 5 November 2008 (UTC)

View self-hosted foxmarks.json files online

If you're hosting your own foxmarks webdav server, you can view your bookmarks online at a url with the following python script. This comes in handy if you have different bookmark profiles, or if you're on somebody else's computer.

Requirements

  1. Ensure you webserver can run Python, and download the simplejson module. (Link in script.)
  2. Put your Foxmarks files' URLs in the urls tuple in the script. (Replace "user" and "pwd" with your username and password if necessary.)
  3. For convenience, if you want this to be the index page, change .htaccess to include "DirectoryIndex index.py"
#!/usr/bin/python
# index.py by David Blume
# This script reads foxmarks.json files and prints links out.

import urllib
import simplejson # http://www.undefined.org/python/
import bisect

urls = ( ('Home Computer', r'http://user:pwd@url.com/fm/foxmarks.json'),
         ('Work Computer', r'http://user:pwd@url.com/fmw/foxmarks.json')
         )

def do_insert(folders, command):
    if 'nid' in command:
        args = command['args']
        if args.has_key('ntype'):
            if args['ntype'] == 'folder':
                my_folder = []
                folders[command['nid']] = my_folder
                if command['nid'] != 'ROOT':
                    parent = folders[args['pnid']]
                    bisect.insort(parent, (command['nid'], args['name'], my_folder))
            elif args['ntype'] == 'separator':
                parent = folders[args['pnid']]
                parent.append((command['nid'], '---'))
            else: # 'bookmark'
                parent = folders[args['pnid']]
                parent.append((command['nid'], '<a href="%s">%s</a>' % (args['url'], args['name'])))

def print_folders(folders, indent):
    for item in folders:
        print '%s%s' % ('  '*(indent * 4), item[1].encode('iso-8859-1', 'replace'))
        if len(item) > 2:
            print_folders(item[2], indent + 1)

if __name__=='__main__':
    print "Content-type: text/html; charset=ISO-8859-1\n\n"
    print '<pre>'
    for url in urls:
        print '<h2>%s</h2>' % url[0]
        sock = urllib.urlopen(url[1])
        json = simplejson.load(sock)
        sock.close()
        folders = {}
        for command in json[u'commands']:
            do_insert(folders, command)
        print_folders(folders['ROOT'], 0)
    print '</pre>'

Personal tools
Frequently Asked Questions