Did a bit of digging in the Ubiquity extension folder. I believe that
I was dealing with the "stylish_feed_plugin.js", which has this code
that adds the stylish feed to teh "feedManager"

Does anyone know how I can access this feedManager, and remove
entries? Also, is this feedManager a standard thing? A Ubiquity thing?
Does it have a UI?

Thanks!

Components.utils.import("resource://ubiquity/modules/utils.js");
Components.utils.import("resource://ubiquity/modules/codesource.js");
Components.utils.import("resource://ubiquity/modules/sandboxfactory.js");
Components.utils.import("resource://ubiquity/modules/collection.js");

function StylishFeedPlugin(feedManager, messageService, webJsm) {

  var self = this;

  this.type = "stylish-update-url";

  this.notify_message = "This page contains a Stylish userstyle " +
                        "which Ubiquity can run. " +
                        "If you'd like to subscribe to it, please " +
                        "click the button to the right.";

  this.onSubscribeClick = function SFP_onSubscribeClick(targetDoc,
                                                        commandsUrl,
                                                        mimetype) {
    feedManager.addSubscribedFeed({url: targetDoc.location.href,
                                   title: targetDoc.title,
                                   sourceUrl: commandsUrl,
                                   type: this.type,
                                   canAutoUpdate: true});
    messageService.displayMessage("Succesfully subscribed to Userstyle!");

  };

  this.makeFeed = function SFP_makeFeed(baseFeedInfo, eventHub) {
    return new SFPFeed(baseFeedInfo, eventHub, messageService);
  };

  feedManager.registerPlugin(this);
}


On Mon, Sep 28, 2009 at 10:28 AM, Lloyd Atkinson
<[email protected]> wrote:
> Hi,
>
> I just installed a Stylish skin via Ubiquity since I got a friendly
> notice that it could do that. I didn't have the Stylish plugin
> installed at the time though. I installed the skin, it was a google
> reader skin, and the google reader page updated with the new style. I
> then wanted to remove the skin since I didn't 100% like it, but I
> couldn't find a way to change or uninstall the script using Ubiquity.
>
> I thought, ok, well, I'll install the Stylish plugin and maybe it'll
> show up there, and I can uninstall that way. Nope. The style doesn't
> get listed by Stylish, it doesn't seem to be aware of it. So, I'm now
> stuck in a situation where I have a style installed by Ubiquity, and I
> can't get rid of it.
>
> What's the intended use of the Ubiquity Stylish anyways?
>
> Also, I searched through my installed command list and didn't even see
> anything regarding Stylish, so I'm not even sure what command did
> this.
>
> Can anyone help?
>
> Thanks!
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"ubiquity-firefox" 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/ubiquity-firefox?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to