<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[LunarFrog Software - Support]]></title>
	<link rel="self" href="http://www.lunarfrog.com/support/feed-atom-forum3.xml"/>
	<updated>2011-09-27T01:50:56Z</updated>
	<generator>PunBB</generator>
	<id>http://lunarfrog.com/support/</id>
		<entry>
			<title type="html"><![CDATA[Tip - How to - Portable Mode]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic85new-posts.html"/>
			<summary type="html"><![CDATA[Hello all,

Here is how to enable portable mode:

From Andrei:
"If you would like to enable "portable mode" please edit TaggedFrog.exe.config file and change value of key "Portable" from "false" to "true". In this mode the application will use configuration file and database from the current folder (so don't forget to copy your database wink )"

Reference:
[url]http://lunarfrog.com/support/topic26.html[/url]


Additional Information:
set zerofootprint = "true" in taggedfrog.exe.config to prevent taggedfrog from storing information in the registry 

Reference:
[url]http://lunarfrog.com/support/topic87.html[/url]


Hope this helps!:)]]></summary>
			<author>
				<name><![CDATA[Andrei Marukovich]]></name>
				<uri>http://lunarfrog.com/support/user17.html</uri>
			</author>
			<updated>2011-09-27T01:50:56Z</updated>
			<id>http://lunarfrog.com/support/topic85new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Mac support for Tagged base File Management]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic202new-posts.html"/>
			<summary type="html"><![CDATA[I'm not using Lunar frog ...yet .. I'm first trying to see if its a fit.  We have about 100 users with a mix of Macs and PC ... We want to create a shared "tag" directory ... that both user can use at at he same time .  

Would Lunar frog Help me ... do you know of a tool that will?]]></summary>
			<author>
				<name><![CDATA[Andrei Marukovich]]></name>
				<uri>http://lunarfrog.com/support/user5995.html</uri>
			</author>
			<updated>2011-09-27T01:48:34Z</updated>
			<id>http://lunarfrog.com/support/topic202new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Tip: Delicious-TaggedFrog-import]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic189new-posts.html"/>
			<summary type="html"><![CDATA[(Hope thats ok for you, Andrei)

Here's a litte approach to map delicious tagged bookmarks into a TaggedFrog import csv file. The script runs on php and uses the public rss feed of delicious (no login needed, only the delicious account name to create the rss lookup path). It will create a csv import format (and sends it, if you set $bDownload = true; , otherwise it will show the content in the browser window).

1. You need a webserver/hosting with php5 or a local php installation like xampp. 
2. fopen wrappers must be enabled to allow DOMDocument to read your Delicious feed directly
3. if local - your firewall must allow PHP to make a outgoing connection
4. you need to configure your delicious user name and - if needed - more data  in the script below
5. not sure if somethings missing - if it fails (e.g. problems with charsets) please leave a message
6. all without guarantee

Hope it will make it.. It works for me


One more tip: TaggedFrog doesn't support titles for bookmarks in the current import format. It will try to connect all imported urls directly and extract its titles from the HTML.

If you like to use your own titles out of Delicious,

[list=*]
[*]Please support my feature request about it: 
    [url]http://taggedfrog.uservoice.com/forums/46173-general/suggestions/1895109-optional-titles-for-files-and-bookmarks-import?ref=title[/url][/*]
[*]use the following workaround (inconvenient for large bookmark collections):
1. Open your Delicious Account or its RSS Feed
2. Drag the first Bookmark onto the TaggedFrog window. The add dialog will appear.
3. Use a tag - e.g. "*" to specify at least one needed Tag (all others you'll get by the import)
4. Drag all other tags into the list of the add dialog
5. Do the export/import as written above.
6. Rename or delete the given Tag ("*"). Be sure, every Bookmark has at least one more tag or it will be deleted with the last one.
  
You only need to d'n'd that bookmarks with user customized titles. All others will get its titles by the HTML-based title. 
[/*]
[/list]

[code]<?php

header ('Content-Type:text/html;charset=utf-8');



// specify your delicious username here (uses feed as input)

$sName = 'myBkmrks';  // for http://www.delicious.com/myBkmrks/

// specify your feed item maximum here

$iMax = 1500;

// specify here, if you want to get the "download dialog" from your browser

$bDownload = true;

// specify your mapping here
// replace delicious_tag => by_taggedfrog_tag
// you can setup tag deleting by add mappings like delicious_tag => NULL

$aTagMapping 
  = array (
          'lang:en'   => '[en]' ,
          'boring'    => NULL   ,
          );


// add your replacements here, characters or full strings are possible
// replace string => by_string

$aReplacements
  = array (
          ',' => '/'  ,
          ';' => '/'  ,
          '·' => ' '  ,
          );


// specify tags that you want to add for every bookmark here
// e.g. the name of the feed

$aAdditionalTags 
  = array (
          'delicious.myBkmrks' ,
          'online'             ,
          );

/*

   Tagging works in that order:
   
     read feed -> mapping -> replacements -> additional
   
   So make sure, you have 
    
    1. specified replacement for comma and semicolon - delicious allows comma in
       tag names, csv uses semicolon as field separator
    2. none of that characters in the addional tags

*/


$sFile = 'http://feeds.delicious.com/v2/rss/' . $sName . '?count=' . (int) $iMax;



$oDocument = new DOMDocument;

// uses remote files
// make sure fopen wrappers have been enabled

if (false === @ $oDocument->load ($sFile))
  {
  die ('file i/o error');
  }


$oXPath = new DOMXPath ($oDocument);

$sQuery = '//channel/item';

if (false !== $aItems = $oXPath->query ($sQuery))
  {
  $aImport = array ();
  foreach ($aItems as $oNode) 
    {
    $aNode = array (
                // maybe someday :)
                // 'title' => $oNode->getElementsByTagName ('title')->item(0)->nodeValue , 
                   'url'   => $oNode->getElementsByTagName ('link')->item(0)->nodeValue ,
                   'tags'  => $aAdditionalTags ,
                   );

    foreach ($oNode->getElementsByTagName ('category') as $oTagNode) 
      {
      $sTag = $oTagNode->nodeValue;

      if (array_key_exists ($sTag , $aTagMapping))
        {
        $sTag = $aTagMapping[$sTag];
        }

      $aNode['tags'][] = strtr ($sTag , $aReplacements);
      }

    $aNode['tags'] = array_filter ($aNode['tags']);

    $aImport[] = $aNode;
    }
  }



if (isset ($bDownload) && true === $bDownload)
  {
  $sName = preg_replace ('/[^\w\d]/' , '_' , $sName);
  header('Content-Disposition: attachment; filename="delicious_import_' . $sName . '.csv"');
  }

foreach ($aImport as $aEntry) 
  {
  printf (
         "url;%s;%s\n"   ,
         $aEntry['url']  ,
         implode (';' , $aEntry['tags'])
         );
  }

[/code]]]></summary>
			<author>
				<name><![CDATA[t-k]]></name>
				<uri>http://lunarfrog.com/support/user5068.html</uri>
			</author>
			<updated>2011-06-02T18:24:10Z</updated>
			<id>http://lunarfrog.com/support/topic189new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Support Forum: Navigation Problem]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic163new-posts.html"/>
			<summary type="html"><![CDATA[call [url]http://lunarfrog.com/support/search-posts-user2.html[/url] and see how you can get back to the sull support forum (with navigation pane on top) without hitting the back button of your browser.

to me it seems impossible.

for some forum pages (search results etc.), the forum's top navigation pane just vanishes.]]></summary>
			<author>
				<name><![CDATA[Andrei Marukovich]]></name>
				<uri>http://lunarfrog.com/support/user4131.html</uri>
			</author>
			<updated>2011-02-18T00:40:01Z</updated>
			<id>http://lunarfrog.com/support/topic163new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Future plans?]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic41new-posts.html"/>
			<summary type="html"><![CDATA[Hi Andrei,

I would be interested to hear what your future plans for TaggedFrog are (if you are willing to share; I would understand if you do not want to)
Will this grow into a commercial application? Or stay free? Or even free and open source? Will it move towards a document management system, or a tag based file manager? What major feature additions may happen in the near and far future?

Timo]]></summary>
			<author>
				<name><![CDATA[Andrei Marukovich]]></name>
				<uri>http://lunarfrog.com/support/user48.html</uri>
			</author>
			<updated>2009-03-13T23:18:42Z</updated>
			<id>http://lunarfrog.com/support/topic41new-posts.html</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Memory usage]]></title>
			<link rel="alternate" href="http://lunarfrog.com/support/topic17new-posts.html"/>
			<summary type="html"><![CDATA[The program uses a lot of memory! Even when its window is not open the program's process uses about 35 MB of memory (according to the Windows Task Manager).]]></summary>
			<author>
				<name><![CDATA[Andrei Marukovich]]></name>
				<uri>http://lunarfrog.com/support/user16.html</uri>
			</author>
			<updated>2009-02-09T00:13:07Z</updated>
			<id>http://lunarfrog.com/support/topic17new-posts.html</id>
		</entry>
</feed>

