Re: [Rhythmbox-devel] rhythmdb entries

2010-01-01 Thread Ron Croonenberg
Hi Jonathan, thanks for the link, I read C better than python. (I found another link that i could use to 'derive' them from too; http://library.gnome.org/devel/rhythmbox/unstable/RhythmDB.html#RhythmDBPropType) thanks, Ron Jonathan Matthew wrote: On Thu, Dec 31, 2009 at 12:27 PM, Ron Croo

Re: [Rhythmbox-devel] rhythmdb entries

2010-01-01 Thread Jonathan Matthew
On Thu, Dec 31, 2009 at 12:27 PM, Ron Croonenberg wrote: > I am trying to access the rhythmdb, I checked the "plugin writing guide" > > but the only thing I can find is the following snippet: > > %< > for row in mysource.props.query_model: >        entry = row[0] >        print db.entry_get(entry,

Re: [Rhythmbox-devel] rhythmdb entries

2009-12-31 Thread Sriram Ramkrishna
As far as I know, you'll have to look at the source for the api. The python api directly map to them if my memory serves correctly. Don't use the private functions, just what is in the rhythmdb.h file I believe. sri On Wed, Dec 30, 2009 at 6:27 PM, Ron Croonenberg wrote: > I am trying to acce

[Rhythmbox-devel] rhythmdb entries

2009-12-30 Thread Ron Croonenberg
I am trying to access the rhythmdb, I checked the "plugin writing guide" but the only thing I can find is the following snippet: %< for row in mysource.props.query_model: entry = row[0] print db.entry_get(entry, rhythmdb.PROP_TITLE) %< is there a document that shows how to use t