Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Aleix Pol wrote: > I've been looking into it and it's fine to use DataEngines. I have the > exact same problem though. I can create a kdevelop DataEngine with a > project DataContainer, but this is still created in the PluginLoader and I > can't have a reference to the Project. h

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Ryan Rix
On Tue 27 July 2010 18:13:07 Aleix Pol wrote: > On Wed, Jul 28, 2010 at 1:14 AM, Aaron J. Seigo wrote: > > On July 27, 2010, Aleix Pol wrote: > > > But I need to know it before, to be able to create the items > > > accordingly. > > > > it sounds like you are implementing something "incorrectly" h

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
On Wed, Jul 28, 2010 at 1:14 AM, Aaron J. Seigo wrote: > On July 27, 2010, Aleix Pol wrote: > > But I need to know it before, to be able to create the items accordingly. > > it sounds like you are implementing something "incorrectly" here. > > the only thing PluginLoader should need to do is retu

Re: [PATCH] Suppress errors in Python AppletScripts

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Luca Beltrame wrote: > Let me know if it's OK. in the patch, is + PythonAppletScript.importer.unregister_top_level(self.pluginName) the proper indentation for that line? (not a pythonista, so not sure if what looks like extra indentation there will matter any. othe

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Aleix Pol wrote: > But I need to know it before, to be able to create the items accordingly. it sounds like you are implementing something "incorrectly" here. the only thing PluginLoader should need to do is return the right kind of object. from that point forward, it's up to t

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
On Wed, Jul 28, 2010 at 12:14 AM, Marco Martin wrote: > On Wednesday 28 July 2010, Aleix Pol wrote: > > > > > > > > new Applet instance > in > > > > > > internalLoadApplet reimplementation? > > > > > > > > > you mean > connecting to > > > containment::appletAdded()? or the other way around? > > >

Re: newspaper containment resizing

2010-07-27 Thread Marco Martin
On Wednesday 28 July 2010, Aleix Pol wrote: > Hi, > A couple of weeks ago I told that I had some problems with the newspaper > resizing that apparently nobody else was having. Here there's a video where > it's being reproduced in the plasmoidviewer: > > http://proli.net/meu/kde/newspaper-weirdresi

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Marco Martin
On Wednesday 28 July 2010, Aleix Pol wrote: > > > > > new Applet instance in > > > > internalLoadApplet reimplementation? > > > > > > you mean connecting to > > containment::appletAdded()? or the other way around? > > I mean knowing from the pluginloader what container is going to receive the

newspaper containment resizing

2010-07-27 Thread Aleix Pol
Hi, A couple of weeks ago I told that I had some problems with the newspaper resizing that apparently nobody else was having. Here there's a video where it's being reproduced in the plasmoidviewer: http://proli.net/meu/kde/newspaper-weirdresize.ogv >From the KDevelop side, I moved to the desktop

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
On Tue, Jul 27, 2010 at 11:52 PM, Marco Martin wrote: > On Tuesday 27 July 2010, Aleix Pol wrote: > > > > > Here I guess that the > problem would be that when restoring I wouldn't > > > > get that argument and > I would be lost again. > > > > > > yes. personally, i'd suggest you provide a > built

[PATCH] Suppress errors in Python AppletScripts

2010-07-27 Thread Luca Beltrame
(CCing Simon Edwards as well to get his input) Hello, while making a Python plasmoid today, I noticed that the logs spammed Python exceptions to the console once the plasmoid got deleted: AttributeError: 'PythonAppletScript' object has no attribute 'pluginName' and also other errors when hoveri

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Marco Martin
On Tuesday 27 July 2010, Aleix Pol wrote: > > > Here I guess that the problem would be that when restoring I wouldn't > > > get that argument and I would be lost again. > > > > yes. personally, i'd suggest you provide a built-in dataengine that the > > applets can connect to. set the project id i

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
On Tue, Jul 27, 2010 at 10:51 PM, Aaron J. Seigo wrote: > On July 27, 2010, Aleix Pol wrote: > > On Tue, Jul 27, 2010 at 10:06 PM, Aaron J. Seigo wrote: > > > On July 27, 2010, Aleix Pol wrote: > > > > For the moment I'm implementing it passing the project identifier as > > > > the first argumen

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Aleix Pol wrote: > On Tue, Jul 27, 2010 at 10:06 PM, Aaron J. Seigo wrote: > > On July 27, 2010, Aleix Pol wrote: > > > For the moment I'm implementing it passing the project identifier as > > > the first argument when loading hte plasmoid. That works just fine for > > > my plugi

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
On Tue, Jul 27, 2010 at 10:06 PM, Aaron J. Seigo wrote: > On July 27, 2010, Aleix Pol wrote: > > For the moment I'm implementing it passing the project identifier as the > > first argument when loading hte plasmoid. That works just fine for my > > plugins but I can't filter that to the rest of pl

Re: integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Aleix Pol wrote: > For the moment I'm implementing it passing the project identifier as the > first argument when loading hte plasmoid. That works just fine for my > plugins but I can't filter that to the rest of plugins. It would be better > if I could receive ::loadApplet myself

integrating plasma into kdevelop's dashboard

2010-07-27 Thread Aleix Pol
Hi, I adapted KDevelop's dashboard to the new plugin loader and here I come with some thoughts. Now it is mostly working, the biggest problem I'm facing is that I need to tell KDevelop's plugins what project are they targeting (KDevelop may have different dashboards at the same time and the plugin

Re: moving Projects/Plasma to userbase

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Marco Martin wrote: > On Tuesday 27 July 2010, Aaron J. Seigo wrote: > > hi everyone ... > > > > as of > > today, we will not be using http://techbase.kde.org/Projects/Plasma > > > for > > coordination and documentation of what we're up to. instead, we will > > > be > > usin

Re: moving Projects/Plasma to userbase

2010-07-27 Thread Marco Martin
On Tuesday 27 July 2010, Aaron J. Seigo wrote: > hi everyone ... > > as of today, we will not be using http://techbase.kde.org/Projects/Plasma > for coordination and documentation of what we're up to. instead, we will > be using http://userbase.kde.org/Plasma. and explanation of why can be > found

Re: Plasmoids For Windows

2010-07-27 Thread Aaron J. Seigo
On July 26, 2010, Inu Kaze wrote: > Or if exist this 3 Plasmoids for Windows , you can tell me , where i can > download the plasma_show_desktop.dll , plasma_taskmanager.dll & > plasma_systemtray.dll , plz :) i really need it keep in mind that MS Windows is still not an officially supported platfor

Re: moving Projects/Plasma to userbase

2010-07-27 Thread Aaron J. Seigo
On July 27, 2010, Ivan Čukić wrote: > > as of today, we will not be using http://techbase.kde.org/Projects/Plasma > > for coordination and documentation of what we're up to. instead, we will > > be using > > > http://userbase.kde.org/Plasma. and explanation of why can be found here: > You meant ht

Plasmoids For Windows

2010-07-27 Thread Inu Kaze
Hi there KDE Team , its awesome your work , to use an another Desktop , and not SHELL32 in Windows :=) Well , i write your KDE Team , because i not Found 3 Plasmoids 1 - Show Desktop 2 - Task Manager ( Bar of Task ?, List of Active Windows ? ) 3 - System Tray I try to Download and install , some

Re: moving Projects/Plasma to userbase

2010-07-27 Thread Ivan Čukić
> as of today, we will not be using http://techbase.kde.org/Projects/Plasma for > coordination and documentation of what we're up to. instead, we will be using > http://userbase.kde.org/Plasma. and explanation of why can be found here: You meant http://community.kde.org/Plasma? Cheerio -- While