I took a quick look at your code and saw a few things:

You need to make sure that your addins.xml and source code are in
sync. In your xml file, you specify the item source as:

<Extensions path="/Do/ItemSource">
  <ItemSource type="Do.Plugins.Radio.RadioItemSource" />
</Extensions>

but the item source in your code is under the GNOME namespace:

namespace GNOME {
        public class RadioItemSource : IObject

So the fully qualified names don't match. You should change the
namespace in your code to reflect your project name, eg Radio, and
changed the addins.xml file to reflect the correct fully qualified
name, Radio.RadioItemSource

Additionally, your item source is implementing the IObject
interface--you need to implement the IItemSource interface instead.

On Thu, Sep 4, 2008 at 2:15 PM, Alex Launi <[EMAIL PROTECTED]> wrote:
> On Thu, Sep 4, 2008 at 5:46 PM, skaggapa <[EMAIL PROTECTED]> wrote:
>>
>> i havent written any action for it yet but i cant get any
>> matches for the radiostations. Do i have to have a action?
>
> You should not need to write any action if you dont need one. You can have
> any combination of ItemSources and Actions.
>>
>> Is there any verbose mode that i can run gnome-do in because when i
>> write stuff to the console it doesn't show?
>
> How are you writing? I generally print my debugging with
> Console.Error.Writeline, make sure you're not running in quiet mode. Looks
> cool! hope you get it working soon.
>
> --
> --Alex Launi
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GNOME Do" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/gnome-do?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to