Freetag Plugin Beta

Creating and modifying plugins.
Post Reply
Guest

Freetag Plugin Beta

Post by Guest »

Hi everyone

I have a new beta of the Freetag plugin available. This has a few additions like:
  • Better technorati and RSS integration
  • Tag administration interface
  • Tag scaling is done with percentages instead of absolute sizes
  • Other small and misc bugfixes.
Just un-tar the file into your plugins directory, go to configure plugins, and configure the freetag sidebar. If your DB needs upgrading, it should do it automagickally.

If a few people can check it out, and let me know it works before I commit to CVS, that would be groovy.

Plugin is here: http://blog.jonnay.net/uploads/Code/ser ... 1b2.tar.gz

Thanks!
jonnay
Regular
Posts: 5
Joined: Wed Apr 28, 2004 1:41 am
Contact:

Post by jonnay »

Arg. That was me. Guess my session timed out.
stain
Regular
Posts: 10
Joined: Tue Jun 07, 2005 7:11 pm
Contact:

not working

Post by stain »

I just override serendipity_event_freetag plugin directory

It returns me the following errors:

Code: Select all

SELECT tag, count(tag) as total 
        		FROM s9y_entrytags 
        		GROUP BY tag 
        		ORDER BY tag

/ Table 'my_db.s9y_entrytags' doesn't exist
maybe something I missed?

bye
prim8
Regular
Posts: 20
Joined: Wed Jun 08, 2005 12:48 am
Contact:

Post by prim8 »

go to configure plugins, and configure the freetag sidebar
I get:

Code: Select all

Warning: Missing argument 1 for cleanup() in /path/to/htdocs/s9y/plugins/serendipity_event_freetag/serendipity_plugin_freetag.php on line 161
Done: The new settings have been saved at 16:52:43
Then when I try to manage tags or edit entry:

Code: Select all

 / Table 'foo.s9y_entrytags' doesn't exist
I am running s9y 0.8.1.

Got it working, here are my changes to serendipity_plugin_freetag.php:

function cleanup($table)
to
function cleanup()

and

"tag varchar(50), " .
to
"tag varchar(50) not null, " .

Your create table was not valid under mysql 3.23.58.

#1171 - All parts of a PRIMARY KEY must be NOT NULL; If you need NULL in a key, use UNIQUE instead

Also, I'm not sure technorati will pickup these tags since they don't appear in the ATOM/RSS feeds.

[Edit] I see they do actually appear in the RSS feeds.
prim8
Regular
Posts: 20
Joined: Wed Jun 08, 2005 12:48 am
Contact:

Post by prim8 »

Happy to report technorati does indeed pick up the tags with this version. Just make sure you have an alternate link to your RSS in your header (look at your template):

<link rel="alternate" type="application/rss+xml" title="RSS feed" href="http://my.site.net/feeds/index.rss2" />
Sblanco
Regular
Posts: 10
Joined: Sat Jul 02, 2005 11:58 am
Location: Málaga (Spain)
Contact:

I don't see my tags

Post by Sblanco »

I am introducing tags on each entry, but the don't appear in "show tagged entries". Do I need to do something else?

Thanks in advance :)
prim8
Regular
Posts: 20
Joined: Wed Jun 08, 2005 12:48 am
Contact:

Re: I don't see my tags

Post by prim8 »

Sblanco wrote:I am introducing tags on each entry, but the don't appear in "show tagged entries". Do I need to do something else?

Thanks in advance :)
It doesn't look like your tags are being applied to the posts. When a post has been tagged it will have an extra chunk in the footer that says something like:

Defined tags for this entry: ajax, blog, plugins, s9y, serendipity, software, spellcheck

When you post, make sure you enter your tags in the advanced options, separated by a comma. For example:

ajax,blog,plugins,s9y,serendipity,software,spellcheck
Post Reply