-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    LinuxDaily.com    Linux42.org    OpenSkillz.com    Open-PC.com   
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login



Sponsoring


-
- Content .- Fans (16) .- Knowledge Base  . 

Eventlist

   0.2.90  

Plasmoid Binary

Eventlist
zoom


Version Control:  Link
Depends on:  KDE 4.x
Downloads:  839
Submitted:  Jul 1 2009
Updated:  Jul 14 2010
Score: 
score85%85%score
 85% good
bad   good

Description:

This is a plasmoid to show the events from Akonadi resources (KOrganizer, Birthdays etc.).
With the googledata resource also Google calendar items can be shown.
http://websvn.kde.org/trunk/extragear/pim/googledata/

Needs KDE 4.3 to compile and
you need a working Akonadi.

Thanks to the authors of todolist, public transport, rtm.

There are some rpms in the openSUSE-Buildservice in KDE:/KDE4:/Community/ - Thanks to buschmann23.
There is also an ebuild in gentoo-overlay or so.

Feel free to send translations, feature requests.

There is a git repository now:
http://github.com/geflei/plasmoid-eventlist/

With 4.4 I have a problem with signals from the akonadimonitor
if an item is added we receive a "item added" signal for all already existing item??
this may lead to strange behavior with 4.4
(tested on opensuse 11.2 + factory, kubuntu 10.04, mandriva).
4.3 and trunk work fine.




Changelog:

0.2.90 (0.3 beta)
- fetch items directly in the model, no data engine anymore
- support for todos
- filter items in a proxyfiltermodel
- open event/todo under mouse on rightclick, not active one
- special urgency for birthdays
- add Ukrainian translation (big thanks to pfactum)
- add French translation (big thanks to cedric)
- code cleanup
- bugfixes

0.2.6
- remember disabled resources

0.2.5
- add slovak translation, big thanks to Karol Slanina
- use correct category (Date and Time)
- fix duplicate insertions warning

0.2.4
- show plasma tooltips
- move engine initialization out of init()
- improve starting/checking for Akonadi
- adapt naming of the applet binary to common plasma style (need to uninstall old version first if compiled from source)
- rework the midnightTimer stuff (was broken on suspend/resume)
- option to select shown resources
- remove colors option, always used now

0.2.3
- some code cleanups (e.g. use a QList for colors)
- dont show empty header items
- option to set shown period for events

0.2.2
- double click on event open it in korganizer if possible
- add menu entry for adding a new event in korganizer

0.2.1
- fix bug with vanishing colors for birthdays




LicenseGPL
Source(plasmoid-eventlist-0.2.90.tar.bz2)
send to a friend
subscription
other artwork from geflei



goto page: prev   1  2  3  4 

-

 Tasks maybe?

 
 by Pl4cek68 on: Jun 10 2010
 

Thank you for your work, it's really a great and helpful plasmoid. Nevertheless I was wondering whether you have any plans on adding support for tasks? In my opinion it would be quite useful, since I can check my events from the desktop, but to check or edit tasks still have to launch korganizer, what is not cool;)


reply to this

-

 Re: Tasks maybe?

 
 by geflei on: Jun 11 2010
 

There is a todolist plasmoid, maybe it is what you are looking for.

Currently I'm remodelling it a bit, maybe I add support for tasks later, but the focus is on events.


reply to this

-

 Re: Re: Tasks maybe?

 
 by Pl4cek68 on: Jun 12 2010
 

Thank you for your suggestion on todo list plasmoid, actually it's what I was looking for;) Still it would be nice to have these two functionalities merged into one plasmoid, but hey, I can get rid of remember the milk at last:)

Keep up the good work!


reply to this

-

 Honouring Time Zone Info?

 
 by metko on: Jun 16 2010
 

Very nice widget, which saves me the time for looking up my day plan in KOrganizer every morning. The only problem is that my akonadi resource imports ical files from a webcal, which have their time in UTC. Since my local time zone is GMT+2, all events from the webcal are wrong by 2 hours, while the KOrganizer events are correct. I would like to suggest as a feature in the next version to honour the time zone information, and convert starting times to the local time zone before display. As a temporary solution I modified eventmodel.cpp (see below), but probably there is a better solution.

To convert events in UTC, modify line 162 in eventmodel.cpp (function addEventItem) to

data.insert(StartDtTimePos, QVariant(values["startDate"].toDateTime().toLocalTime()));

and line 177 to

QDateTime itemDtTime = values["startDate"].toDateTime().toLocalTime();


reply to this

-

 Honouring Time Zone Info?

 
 by metko on: Jun 16 2010
 

Very nice widget, which saves me the time for looking up my day plan in KOrganizer every morning. The only problem is that my akonadi resource imports ical files from a webcal, which have their time in UTC. Since my local time zone is GMT+2, all events from the webcal are wrong by 2 hours, while the KOrganizer events are correct. I would like to suggest as a feature in the next version to honour the time zone information, and convert starting times to the local time zone before display. As a temporary solution I modified eventmodel.cpp (see below), but probably there is a better solution.

To convert events in UTC, modify line 162 in eventmodel.cpp (function addEventItem) to

data.insert(StartDtTimePos, QVariant(values["startDate"].toDateTime().toLocalTime()));

and line 177 to

QDateTime itemDtTime = values["startDate"].toDateTime().toLocalTime();


reply to this

-

 Re: Honouring Time Zone Info?

 
 by geflei on: Jun 16 2010
 

I added a fix in the git repository, would be nice if you could test it.
As it is a development version there maybe other bugs too. ;-)


reply to this

-

 multiple calendars

 
 by quadra on: Jul 18 2010
 

I have more than one google calendar, for work etc but only the default calendar gets shown, who to change?


reply to this

-

 Re: multiple calendars

 
 by geflei on: Jul 18 2010
 

Beside that I currently dont get it to work with the calendar the README of googledata 1.1.0 states that only the main calendar is supported, sorry.


reply to this

goto page: prev   1  2  3  4 

add commentback




-
-
all messages

openDesktop.org Facebook App



-
Favorite Distribution 2010?
 Debian
 Gentoo
 SuSE
 Ubuntu
 Kubuntu
 Linux Mint
 Arch Linux
 Frugalware
 Fedora
 Mandriva
 PC Linux OS
 Other Distribution
 I'm a *BSD user
 Using Windows
 Using Mac OS X
 Other OS
 I don't use Computers and have asked another user to check this option for me.

resultmore




Partners
Place Your Link Here!
Online Casino
Fundraising Ideas
Roulette Online
Online Casino

Cool Sites
Download Youtube Videos

 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Facebook App
Content RSS   
News RSS   
Discussion RSS   
Events RSS   

Participate
Groups
Forum
Add Artwork
Public API
About KDE-Look.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2001-2010 KDE-Look.org Team  
All rights reserved. KDE-Look.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
KDE and K Desktop Environment are trademarks of KDE e.V.