search for: tags_

Displaying 2 results from an estimated 2 matches for "tags_".

Did you mean: tags
2005 Dec 28
3
acts_as_taggable query
...items (counter) end class Item < ActiveRecord::Base acts_as_taggable :join_class_name ''Itemtag'' # should I use join_table here? end class Itemtag <ActiveRecord::Base set_table_name ''itemtags'' # note that this is different from the default conention of tags_items end With the above settings I thought that the plugin would use the table I have created but when I try to add a tag using the Taggable::tag instance method I get an error becuase the plugins still tries to use tags_items table which doesnt exist. Is there anything else I need to do ? Seco...
2005 May 25
0
[PATCH] Fix fuction prototypes/definitions with void argument
...16:24:26.000000000 +0200 +++ src/plugin_xmms/fileinfo.c 2005-05-25 16:24:33.000000000 +0200 @@ -136,7 +136,7 @@ static void get_entry_tag(GtkEntry * ent free(utf8); } -static void show_tag() +static void show_tag(void) { set_entry_tag(GTK_ENTRY(title_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "TITLE")); set_entry_tag(GTK_ENTRY(artist_entry) , FLAC_plugin__tags_get_tag_utf8(tags_, "ARTIST")); @@ -189,7 +189,7 @@ static void remove_tag(GtkWidget * w, gp gtk_widget_destroy(window); } -static void show_file_info() +static void sh...