Taggingmanager howto:
Sort your data:
In list.php you can add certain criterea: userName, tag_name, taxonomy, lang, …
This is defined in list.php::
$valid_columns = Array("tag_name","lang", "taxonomy", "userName");
Example urls:
http://www.mywebsite.tt/tm/list.php
http://www.mywebsite.tt/tm/list.php?userName=myname
http://www.mywebsite.tt/tm/list.php?tag_name=sometag
http://www.mywebsite.tt/tm/list.php?taxonomy=news
or combinations
http://www.mywebsite.tt/tm/list.php?userName=myname&taxonomy=news
http://www.mywebsite.tt/tm/list.php?userName=myname&tag_name=stuff
http://www.mywebsite.tt/tm/list.php?userName=myname&taxonomy=internet&tag_name=stuff
RSS:
You can use the same url’s as in your list with the addon of style=rss
For example
http://www.mywebsite.tt/tm/list.php?style=rss
http://www.mywebsite.tt/tm/list.php?userName=myname&style=rss
http://www.mywebsite.tt/tm/list.php?tag_name=sometag&style=rss
http://www.mywebsite.tt/tm/list.php?taxonomy=news&style=rss
or combinations
http://www.mywebsite.tt/tm/list.php?userName=myname&taxonomy=news&style=rss
This gives the rss output for your tagged links (user: myname) in the category: news
Use a specifice new template: add style=newstylename (this must be the foldername with your template files)