Re: No signals from Plasma.ComboBox?

2009-09-30 Thread Luca Beltrame
In data mercoledì 30 settembre 2009 14:09:52, Thomas Olsen ha scritto: QObject.connect(self.currency_from,SIGNAL(activated(PyQt_PyObject)),self .do_convert_from) In addition to what Aaron said (the signature in quote is not correct), you could also use the new PyQt signal API, which is more

Re: Python plasmoid configuration interfaces and ui files?

2009-11-08 Thread Luca Beltrame
In data domenica 08 novembre 2009 11:50:10, Qwerty Maniac ha scritto: Perhaps you're looking for the UI - Python conversion script, like C++s' uic? Notice that pyuic4 only works with Qt widgets. To use KDE's widgets from ui files, pykdeuic4 should be used instead. signature.asc Description:

[PATCH] Support for arbitrary main script names in Python plasmoids

2010-02-11 Thread Luca Beltrame
Hello, currently if you use Python plasmoids the main script *must* be named main.py because it is hardcoded into pyappletscripts.py. When using a different mainscript in the .desktop file (like Plasmate does) this will ensure the plasmoid will not run (you get a NameError exception). The

Re: [PATCH] Support for arbitrary main script names in Python plasmoids

2010-02-11 Thread Luca Beltrame
In data giovedì 11 febbraio 2010 19:16:53, Aaron J. Seigo ha scritto: i can't comment on the use of __dict__ (my python-fu is non-existent :) but using mainScript() is obviously correct from a libplasma API usage perspective and if this fixes things then yes it should be backported. Just

Re: [PATCH] Support for arbitrary main script names in Python plasmoids

2010-02-11 Thread Luca Beltrame
In data giovedì 11 febbraio 2010 19:37:55, Richard Dale ha scritto: __dict__, but simply derives the main class name from the main script name. So I wasn't sure is you should specifiy a main *class* name in This is what is done with my change, at the moment (I used __dict__ because I thought

Re: kde 4.3.5 plasma applets battery

2010-02-14 Thread Luca Beltrame
In data domenica 14 febbraio 2010 23:29:47, Sebastian Kügler ha scritto: the scripting console, but I don't see where I start the scripting console, maybe someone can enlighten me, then I'll post how to do the above with plasma itself :) qdbus org.kde.plasma-desktop /MainApplication

Python PopupApplet and ScriptEngines

2010-02-20 Thread Luca Beltrame
Hello, AFAIK, there is no PopupApplet for Python scriptengines yet, and I'd like to hack in this functionality. Currently the applets in Python use plasmascript to work, so I assume this would be the place to add support in. So, here come the questions: 1. Is there documentation on how a

[PATCH] Support for PopupApplets in Python

2010-02-20 Thread Luca Beltrame
Hello, as I said, I've been trying to hack in support for PopupApplets in Python. This patch is a first version of such a thing, which at least enables the proper binding when used scripted applets. It needs some review, as I'm unfamiliar on how PopupApplets work, and if I'm doing the right

Re: [PATCH] Support for PopupApplets in Python

2010-02-27 Thread Luca Beltrame
In data sabato 27 febbraio 2010 12:20:37, Simon Edwards ha scritto: Luca, do you have a simple example of a PopupApplet that I can look at and test with? You hit the nail on the head here. The fact is, I can't, as discussed with Richard Dale on IRC. I tried, looking at the code of the various

Re: [PATCH] Support for PopupApplets in Python

2010-02-27 Thread Luca Beltrame
In data sabato 27 febbraio 2010 15:13:23, Petri Damstén ha scritto: Python popup applet with extenders: http://websvn.kde.org/trunk/KDE/kdeexamples/plasma/python/applets/pyhello/ Thanks, then my patch is completely unnecessary, as the standard __getattr__ method is enough. I'll probably use

Re: main.py problem in Runners and Dataengines?

2010-03-03 Thread Luca Beltrame
In data mercoledì 03 marzo 2010 22:17:12, Luca Beltrame ha scritto: I'll have a look. Should be fixed in r1098535 (trunk) and r1098536 (4.4 branch). Please let me know if you experience further issues. signature.asc Description: This is a digitally signed message part

Re: Plasma, popup applet and python

2010-03-09 Thread Luca Beltrame
In data mercoledì 10 marzo 2010 00:11:00, Cédric Bellegarde ha scritto: l've see on the web that python currently doesn't support popupapplet :( I've had mixed results. Extender based solutions work (see the example in kdeexamples) but approaches based on widget() or graphicsWidget() seem not

Re: KDE's Plasma: How not to do lists...

2010-03-19 Thread Luca Beltrame
In data venerdì 19 marzo 2010 21:52:57, Reinhold Kainhofer ha scritto: Hm, in your blog you don't add any screenshot, so I can only guess: The plasmoid is supposed to live on the desktop (or taking up a huge amount of I don't know about Network Management in particular, but plasmoids (starting

Bug 166914: per activity task discussion

2010-07-12 Thread Luca Beltrame
Hello, I'm posting this question mostly with my forum admin hat on, as when 4.5 will be released we'll likely get questions on this behavior. Right now, if applications are moved to another activity, they remain in the task manager. Clicking on them will switch to the task and to the relevant

Re: Displaying icon on panel in Python

2010-07-13 Thread Luca Beltrame
On Tuesday 13 July 2010 15:13:22 Barış Akkurt wrote: C++. I must inherit from Plasma::PopupApplet instead of Plasma::Applet but i need to learn how to do it in Python and i have no idea. Unfortunately, http://websvn.kde.org/trunk/KDE/kdeexamples/plasma/python/ has a few examples, including a

Re: [Nepomuk] Activities protocol

2010-07-14 Thread Luca Beltrame
On Wednesday 14 July 2010 14:57:21 Marco Martin wrote: i think windows outside of the current activity should be hidden from the taskbar, at least by default. and this must be done in 4.5, otherwise will cause another ser revolt. From what I'm reading on the forums these days, it may happen,

Re: [Nepomuk] Activities protocol

2010-07-14 Thread Luca Beltrame
On Wednesday 14 July 2010 15:00:40 Ivan Čukić wrote: I agree. The current plan is to have it in 4.5.1 - Chani thinks it would be risky to do it for .0 - not enough testing. Can this be considered a somewhat official stance? If so I'll ping the appropriate people so that this gets known in

[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

Re: [PATCH] Suppress errors in Python AppletScripts

2010-07-28 Thread Luca Beltrame
On Wednesday 28 July 2010 23:21:54 Simon Edwards wrote: It looks pretty good, just fix up the indentation and make sure you test it a bit before you commit. Also wait until after 4.5 is out before you I used it for a bit, I'll likely test more this weekend and the upcoming week. If all goes

Re: R: Re: plasma classroom

2010-09-14 Thread Luca Beltrame
In data martedì 14 settembre 2010 19:41:15, Aaron J. Seigo ha scritto: actually, ignore my previous email. let's set up an area on forum.kde.org for Plasma Classroom feedback. the forum admins are really quite open to Ping me on IRC (einar77) or any of the admins (bcooksley, sayakb,

Re: Plasma.ToolTipManager and Plasma.Applet

2010-10-14 Thread Luca Beltrame
In data giovedì 14 ottobre 2010 13:17:35, Thomas Olsen ha scritto: Plasma.ToolTipManager.self().setContent(self, data) As far as I can remember, you need to use self.applet instead of self when applying something to the applet. I'm not sure it will work, but worth trying. This should be

Re: Plasma.ToolTipManager and Plasma.Applet

2010-10-14 Thread Luca Beltrame
In data giovedì 14 ottobre 2010 13:17:35, Thomas Olsen ha scritto: Plasma.ToolTipManager.self().setContent(self, data) Extra reply because I think I wasn't clear enough. Instead of the quoted statement, try using: Plasma.ToolTipManager.self().setContent(self.applet, data) I think

Re: Import GSoC Code in to trunk?

2010-11-22 Thread Luca Beltrame
In data lunedì 22 novembre 2010 09:01:53, Ryan Rix ha scritto: So, after complaining that I had missed freeze due to $real_life_university getting in the way, aseigo pointed out to me that we're still in Soft freeze for KDE 4.6. Actually, the hard freeze deadline passed on November 11th:

Re: Installing Plasma.Service *.operations file

2010-12-22 Thread Luca Beltrame
comfortable with code rather than documentation. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: Installing Plasma.Service *.operations file

2010-12-22 Thread Luca Beltrame
can try to take a look. Not sure *when*, with Christmas in the middle, though... -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing

Re: Installing Plasma.Service *.operations file

2010-12-22 Thread Luca Beltrame
the .operations file? As I have no knowledge on that part of Plasma, I'd need a working example to make tests. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part

Re: trunk open for 4.7, remember to backport :)

2010-12-23 Thread Luca Beltrame
On Thursday 23 December 2010 10:25:58 Marco Martin wrote: uhm, how this positions with the git transistions? wasn't supposed to be already happened but didn't? IIRC the new plan was to wait till 4.6 release (KDEPIM was an exception as it won't get released with the rest of 4.6).

Re: Installing Plasma.Service *.operations file

2010-12-23 Thread Luca Beltrame
On Thursday 23 December 2010 12:19:02 Thomas Olsen wrote: #path = self.engine.package().filePath(services, basename) How doesn't it work? Always returns an empty string? Or does it raise an exception? signature.asc Description: This is a digitally signed message part.

Re: Installing Plasma.Service *.operations file

2010-12-23 Thread Luca Beltrame
On Thursday 23 December 2010 12:43:48 Thomas Olsen wrote: It returns an empty string. It looks like a bug in the C++-to-Python bridge, something currently beyond my knowledge... signature.asc Description: This is a digitally signed message part. ___

Re: Installing Plasma.Service *.operations file

2010-12-23 Thread Luca Beltrame
On Thursday 23 December 2010 14:54:03 Thomas Olsen wrote: I actually have one or two bare-bone examples, which would fit in there. is there someone I could send them to or do I need commit access for that? You need commit access. You can likely poke someone to put them up for you, though. (I

Re: Problems about plasmoid's destroy event

2011-02-26 Thread Luca Beltrame
In data sabato 26 febbraio 2011 10:38:11, Kun Zhang ha scritto: Apologies. I found the correct signal signature should be in C++ style, despite that I'm using python. This signal connection works: connect(applet, SIGNAL(appletDestroyed(Plasma::Applet*)), self.onDestroy) To save yourself

Re: Plasma services within Javascript (Aaron J. Seigo)

2011-03-11 Thread Luca Beltrame
In data venerdì 11 marzo 2011 14:11:48, Yuen Hoe Lim ha scritto: I tried it on python on 4.6 and it doesn't work unless I name the main script file as main.py. Unfortunately I can't try on master now because I Can you post the error here? I fixed this issue for DataEngines and Applets, but I

Re: Review Request: Fix bug197654: do not save config again when Apply button disabled

2011-04-21 Thread Luca Beltrame
In data giovedì 21 aprile 2011 12:49:51, Max Lin ha scritto: Thanks :) Does means change status to Submitted, I am new for use reviewboard. Put REVIEW: review number on a single line at the end of your commit message, and KDE's git hooks will take care of closing this review as submitted for

Re: Python Plasmoids - 2 Questions

2011-05-19 Thread Luca Beltrame
In data giovedì 19 maggio 2011 13:38:49, Michael Zimmermann ha scritto: QDBusInterface is not wrapped by PyQT so that I should propably use the dbus module. And then? How? Yes, you should use the dbus interface. Something like this: import dbus from dbus.mainloop.qt import DBusQtMainLoop #

Re: taking a stronger stance on the python bugs

2011-05-27 Thread Luca Beltrame
pointing out. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma

Re: which is the roadmap of kdeplasma-addons repository?

2011-06-15 Thread Luca Beltrame
In data Wednesday 15 June 2011 10:50:53, Marco Martin ha scritto: a minimum level of quality assured. there, the difference between c++ and On that regard, I'd suggest to look at kimpanel and see whether it's worth keeping in kdeplasma-addons or not. It's unmaintained and at least personally

Re: QML and DBus in plasma

2011-07-19 Thread Luca Beltrame
On Tuesday 19 July 2011 16:16:21 Weng Xuetian wrote: Actually I'm a input method developer, and I plan to rewrite/pick up kimpanel in kdeplasma-addons. Currently it seems that nobody maintains Before looking at KIMpanel, you may want to take a look at KIMToy: http://kde-

Re: Data Engine/QML/Python Guidance Needed

2011-08-15 Thread Luca Beltrame
In data lunedì 15 agosto 2011 09:37:29, Eric Mesa ha scritto: its XML structure, right? So the QML can just treat it as XML later? IOW, I don't want to lose the benefit of XML's structured data. If you turn it into a QVariant, there's an additional PyQt method to turn it back into a Python

Re: ScreenSaver and KDE Plasma 4.8?

2011-10-02 Thread Luca Beltrame
for feedback and posting something in the forums would help judge the reactions. And that's also why we have forums there (aside from user support). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part

Re: ScreenSaver and KDE Plasma 4.8?

2011-10-02 Thread Luca Beltrame
. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma-devel

Re: ScreenSaver and KDE Plasma 4.8?

2011-10-02 Thread Luca Beltrame
In data domenica 02 ottobre 2011 12:19:02, Martin Gräßlin ha scritto: Poll created: http://forum.kde.org/viewtopic.php?fft—102 I just blogged about this, so the poll gets more exposure. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description

Re: ScreenSaver and KDE Plasma 4.8?

2011-10-02 Thread Luca Beltrame
such as KIdleTime might depend on these. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org

Re: ScreenSaver and KDE Plasma 4.8?

2011-10-04 Thread Luca Beltrame
In data martedì 4 ottobre 2011 13:36:52, Aaron J. Seigo ha scritto: we know why we want to move away from the 20 year old implementation of screen savers, we know how we want to do it ... now let's execute on that plan, keep communicating to our users and partners about it and be open to FYI,

Re: Review Request: Make python scriptengine installable if python3 is your main python

2011-11-09 Thread Luca Beltrame
...) -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma-devel

Re: Activity Manager in KDE

2011-11-12 Thread Luca Beltrame
In data sabato 12 novembre 2011 11:30:56, Sascha Manns ha scritto: Does anyone knows what was the first KDE Version who shipps the Activity Manager per default in the taskbar? IIRC, it would be 4.7. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc

Re: bug killing

2011-11-20 Thread Luca Beltrame
that works, but which just isn't efficient if i am the one Would it be worthwhile to involve the forum for some of these, at least to promote/spread? I remember that bugweeks weere (IIRC) quite effective, back in the days. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID

Re: bug killing

2011-11-23 Thread Luca Beltrame
In data mercoledì 23 novembre 2011 16:39:00, Aaron J. Seigo ha scritto: also, bug days are on for Friday the 2nd and Saturday the 3rd, both in the afternoon UTC. i'll try to be there from ~noon until evening on both days. If you're OK with it, I can publish an announcement on the forum or

Re: refreshing the system tray icons

2011-12-01 Thread Luca Beltrame
In data giovedì 01 dicembre 2011 20:38:25, Aaron J. Seigo ha scritto: it would be nice to bring a bit of a refresh to these icons and someone has already done the work for us. thoughts? I've been using these for quite a while and IMO they fit perfectly the default look and feel. -- Luca

Re: Re: refreshing the system tray icons

2011-12-01 Thread Luca Beltrame
In data giovedì 01 dicembre 2011 21:06:00, Aaron J. Seigo ha scritto: which ones? i linked to two themes :) Whoops, sorry. I meant the monochrome tray icons. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed

Geolocation DataEngine broken?

2011-12-26 Thread Luca Beltrame
will also affect *all* released versions of plasma so far. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel

Re: Re: Geolocation DataEngine broken?

2011-12-31 Thread Luca Beltrame
In data sabato 31 dicembre 2011 09:45:37, Aaron J. Seigo ha scritto: * fix the dataengine This poses the problem that the current service used by the dataengine now requires an API key to operate, and in turn requires a signup. Probably a different service is required. -- Luca Beltrame

Re: Google

2012-01-04 Thread Luca Beltrame
In data mercoledì 4 gennaio 2012 10:52:01, Artur de Souza ha scritto: I'm afraid it's no longer supported as nobody is maintaining the google gadgets code in plasma... Actually, Google is also canning the actual gadgets, IIRC. signature.asc Description: This is a digitally signed message

Re: Geolocation DataEngine broken?

2012-01-11 Thread Luca Beltrame
In data mercoledì 11 gennaio 2012 13:06:04, Aaron J. Seigo ha scritto: often you can simply request and API key and they will give you one. if it requires paying for a key, often using the we're a f/oss non-profit works. I'll try to look into it this weekend, barring any problems...

Re: Review Request: Allow to choose between ascending and descending icon sort order in folderview

2012-02-06 Thread Luca Beltrame
In data lunedì 6 febbraio 2012 12:22:01, Ignat Semenov ha scritto: This change, while trivial, contains 2 strings, Ascending and Desending. I've found out that the very same strings already exist in I'm not sure, but just in case asking kde-i18n-...@kde.org folks would clear all doubts.

Re: Workflow Idea for 4.10

2012-03-08 Thread Luca Beltrame
In data venerdì 09 marzo 2012 00:27:51, Alex Fiestas ha scritto: - Move to a review based workflow before hard freeze (we need gerrit). Do you mean for the Workspace, or for the entirety of KDE? For both cases, what does sysadmin think? -- Luca Beltrame - KDE Forums team KDE Science supporter

Re: RFC: Removing of decorations

2012-03-11 Thread Luca Beltrame
? If not, then IMO at least one of the two need to stay, as thin clients are still used in setups of a certain relevance (think school labs or something of the sort). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally

Re: [RFC] Mission Statement for KWin

2012-03-19 Thread Luca Beltrame
In data lunedì 19 marzo 2012 09:27:20, Martin Gräßlin ha scritto: Hello Martin, I have written down something like a Mission Statement for KWin [1] and I would like to get your input on what I have written. It is a good starting point. I would soften the stance on network transparency because

Re: Review Request: Remember current desktop when changing activity

2012-03-21 Thread Luca Beltrame
(on a separate line), and it will be automatically closed. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: Python and QML

2012-05-09 Thread Luca Beltrame
In data mercoledì 9 maggio 2012 16:44:12, Marco Martin ha scritto: afaik only pyqt has complete bindings for kdelibs for now Correct, PySide is not supported. I am no aware about the status of bindings on those parts, that's more a question for bindings people To be blunt, I haven't seen

Re: request: create panel and plasma colors configuration tool

2012-05-15 Thread Luca Beltrame
In data martedì 15 maggio 2012 14:02:05, Aaron J. Seigo ha scritto: the rest i see as bug reports, feature requests and/or complaints. Kind of OT, but just to let everyone know: ideas in Brainstorm aren't posted on the go, but they are first evaluated before becoming public. to get involved

Re: Plasma Containment default setting

2012-06-21 Thread Luca Beltrame
In data giovedì 21 giugno 2012 15:15:48, Aaron J. Seigo ha scritto: it had imports for them, but no components from MobileComponents were actually being used .. so: no :) Thanks. Just one more question. Does SLC, to be properly effective, depend on the Active patch to kdelibs? Or can it work

Re: Plasma Containment default setting

2012-06-21 Thread Luca Beltrame
In data giovedì 21 giugno 2012 15:15:48, Aaron J. Seigo ha scritto: it had imports for them, but no components from MobileComponents were actually being used .. so: no :) Sorry for being a drag but it seems they are used somewhere. ;) slccomponents/MenuItem.qml requires some bits from

Re: QML, Python, Signals, and Slots Part 2

2012-06-24 Thread Luca Beltrame
in which option 2 should be used is if the C++ signal has not been bound to the Python bindings. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma

Re: Changes to Plasma Weather - Git revision 5a09cd815edd7723800c0ba43a8be9f67d28e011

2012-09-10 Thread Luca Beltrame
reviewboard (as far as I can see by looking through the old messages in plasma-devel). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo

Re: IRC meeting summary

2012-09-12 Thread Luca Beltrame
concerns over such an UI here IIRC, though. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: Poll - Rethinking battery remaining time option

2012-09-12 Thread Luca Beltrame
fair I am against publicizing this poll to the user community (including the KDE Community Forums, which I'm more involved in). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part

Re: Git policy for kde-baseapps?

2012-09-20 Thread Luca Beltrame
locally and came up with some (possibly minor) conflicts. Also, would anyone be qualified to do a merge, or should this be done by anyone who has the time for it? -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed

Re: share-like-connect in 4.10

2012-10-03 Thread Luca Beltrame
Telepathy KDE was (or is) there as well. SLC depends on 4.10 state though? -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma

Re: Screen Locking for 4.10

2012-10-04 Thread Luca Beltrame
*before* powermanagement kicks in. There's also the Desktop Widgets option. There, I think a nicer name would be Interactive Locker. It sounded appealing to me but then: Speaking of that (as you wrote below), is plasma-overlay working at all? I risked getting myself locked out as well. -- Luca

Re: SystemTray: QML version #3

2012-10-22 Thread Luca Beltrame
over their tray icon (examples include kmail's unread mail count, or choqok's new post count): the icon does not change (i.e. nothing is painted over it). Not that it would be a showstopper for merging, but I thought I'd let you know: I will file a BR as reminder once it is merged. -- Luca Beltrame

Re: SystemTray: QML version #3

2012-10-23 Thread Luca Beltrame
In data martedì 23 ottobre 2012 12:28:44, Dmitry Ashkadov ha scritto: it shows only dark blue circle. I've fixed this blue circle. Now blue circle of kmail works for me. Could you try choqok kmail again? I tried with Choqok and it works now. Thanks. -- Luca Beltrame - KDE Forums team KDE

Re: qml systemtray: small refactorings

2012-10-25 Thread Luca Beltrame
being introduced (but these adjustments don't qualify IMO as completely new features). Hard feature freeze (a proper freeze, in that case) is later on. So for now I think you can work directly in master. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc

Re: Moving applet to review group

2012-10-26 Thread Luca Beltrame
for moving the applet from playground to kdereview. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: qml systemtray: small refactorings

2012-10-26 Thread Luca Beltrame
In data venerdì 26 ottobre 2012 12:46:59, Dmitry Ashkadov ha scritto: (plasma/dmitrya/systemtray-qml), but I can't delete old branch (: Remote git server refuses my attempts Only repo admins can delete branches. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79

Re: [RFC] New (QML) Desktop Containment

2012-12-11 Thread Luca Beltrame
in this ML would not complain, but outside that, I'm not sure. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org

Re: Installing QML Wallpapers packages

2012-12-13 Thread Luca Beltrame
In data venerdì 14 dicembre 2012 00:39:01, Aleix Pol ha scritto: I've tried to installed a qml wallpaper using plasmapkg -i wallpaper.tar and it got installed to share/plasma/plasmoids so it I think you should use plasmapkg -t wallpaper -i wallpaper package -- Luca Beltrame - KDE Forums team

Re: reflecting on 4.10

2013-01-11 Thread Luca Beltrame
) updated snapshots of current git master. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: reflecting on 4.10

2013-01-12 Thread Luca Beltrame
on getting the word out today or so. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org

Re: Having an issue with the minimum size of Plasma.WebView

2013-01-14 Thread Luca Beltrame
types to created dynamically. This may be important for users of bindings. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list

Re: Having an issue with the minimum size of Plasma.WebView

2013-01-14 Thread Luca Beltrame
this decision. Otherwise we might get a lot of complaints when applets start to break. is their upkeep worth it now that we have QML? Like above, I don't think (even if a decision would be made) that they could be removed until the transition to KF5. -- Luca Beltrame, Ph.D. - Translational Genomics

Re: Having an issue with the minimum size of Plasma.WebView

2013-01-15 Thread Luca Beltrame
, it would ensure we also phase out the plugin factory currently used (whicih is not Python 3 compatible, while all the rest of PyKDE4 is). It would probably also make writing applets easier. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description

Re: Plasma Python in KF5; was Re: Having an issue with the minimum size of Plasma.WebView

2013-01-16 Thread Luca Beltrame
previous posts on the longer explanation, taken from PyQt's docs). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma

Re: Thoughts about a better Quality Management process for Plasma

2013-01-17 Thread Luca Beltrame
marked for garbage collection → deleted at the C++ level as well, and if you try accessing it again → crash. By errors I mean Python exceptions (IOW, errors in the Python code itself). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description

Re: New (QML) Desktop Containment, Take 2 (with movie!)

2013-01-28 Thread Luca Beltrame
In data lunedì 28 gennaio 2013 16:58:19, Sebastian Kügler ha scritto: A movie says more than thousand words, so please watch this: http://www.youtube.com/watch?v=GR5UZUtcOGc The video is marked as private, was that intentional? -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key

Re: No plasmaengineexplorer in KDE 4.10?

2013-02-17 Thread Luca Beltrame
In data lunedì 18 febbraio 2013 11:45:38, Viranch Mehta ha scritto: I was playing around with the new KDE and suddenly realised that there is no plasmaengineexplorer installed. Have we not shipped it this time? If It's been moved to the plasmate repository. -- Luca Beltrame - KDE Forums team

Re: A nepomuk optimisation amplifying a plasma bug

2013-03-12 Thread Luca Beltrame
what you seek is in the kactivities library (separate repo on git.kde.org). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list

Re: [Nepomuk] A nepomuk optimisation amplifying a plasma bug

2013-03-12 Thread Luca Beltrame
handled in kactivities. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman

Re: Review Request 109684: Make code python3 compatible.

2013-03-23 Thread Luca Beltrame
at C++) then we can think about making plasma and such Py3 compatible. - Luca Beltrame On March 23, 2013, 11:12 p.m., Michael Jansen wrote: --- This is an automatically generated e-mail. To reply, visit: http://git.reviewboard.kde.org/r

Re: Review Request 109684: Make code python3 compatible.

2013-03-23 Thread Luca Beltrame
On March 23, 2013, 11:35 p.m., Luca Beltrame wrote: The issue is much deeper than this specific piece of code. In fact, fixing this part will not make the code Py3 compatible. The real problematic code is in PyKDE4, to be precise the kpythonpluginfactory (kpythonpluginfactory

Re: Review Request 109684: Make code python3 compatible.

2013-03-23 Thread Luca Beltrame
(mainly because I find the approach cleaner). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https

Re: Review Request 109684: Make code python3 compatible.

2013-03-24 Thread Luca Beltrame
In data domenica 24 marzo 2013 00:55:25, Michael Jansen ha scritto: No problem with that. Was the easiest solution for kross. Should i go forward and do that? Go ahead. Just to stay on the safe side, can you make a new RR once you're done with that? -- Luca Beltrame - KDE Forums team KDE

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-25 Thread Luca Beltrame
). -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo/plasma-devel

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-25 Thread Luca Beltrame
proceed forward, we'd need to attract a few people to help so that we avoid the dumping ground phenomenon. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-27 Thread Luca Beltrame
of KDE. I also have to point out that the add on used for Brainstorm in the forum is currently unmaintained as the original developer is no longer involved in KDE anymore. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-27 Thread Luca Beltrame
as bko's but still fairly comprehensive. - -- Luca Beltrame - KDE Forums team GPG key ID: 6E1A4E79 -BEGIN PGP SIGNATURE- Version: APG v1.0.8 iQI/BAEBCAApBQJRo9rRIhxMdWNhIEJlbHRyYW1lIDxsYmVsdHJhbWVAa2RlLm9y Zz4ACgkQAT+lC24aTnkeng//fi+UVQ1lbgJ/SkMzwZ0aYeE1yVJUYu3K9s5DP2zq

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-28 Thread Luca Beltrame
about a way of having ideas sent to Bugzilla, however this is not possible save for copy/pasting (I'm no good with PHP, so hacking on that is out of my league) -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed

Re: [RFC] Moving Wishlist Items to Brainstorm

2013-05-28 Thread Luca Beltrame
as useful. We're still looking for good suggestions on that ;) -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel

Re: 4.11 is out .. kde-workspace to qt5?

2013-09-05 Thread Luca Beltrame
and openSUSE do) to give time to adjust their packaging scripts. – Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel

Re: Release schedule for Plasma Next

2014-01-29 Thread Luca Beltrame
(I remember something of the sort mentioned at Phoronix once). -- Luca Beltrame, Ph.D. Translational Genomics Unit, Department of Oncology IRCCS Istituto di Ricerche Farmacologiche Mario Negri signature.asc Description: This is a digitally signed message part

Re: The Visual Design Group and Plasma Devs

2014-02-08 Thread Luca Beltrame
things up. -- Luca Beltrame - KDE Forums team KDE Science supporter GPG key ID: 6E1A4E79 signature.asc Description: This is a digitally signed message part. ___ Plasma-devel mailing list Plasma-devel@kde.org https://mail.kde.org/mailman/listinfo

  1   2   3   4   >