Bug 211633 - add go => to date
Summary: add go => to date
Status: REPORTED
Alias: None
Product: korganizer
Classification: Applications
Component: general (show other bugs)
Version: 4.3.1
Platform: unspecified Linux
: NOR wishlist
Target Milestone: ---
Assignee: kdepim bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-10-24 13:02 UTC by Dj YB
Modified: 2010-08-26 12:51 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Dj YB 2009-10-24 13:02:32 UTC
Version:           4.3.1 (using 4.3.1 (KDE 4.3.1), 4.3.1-3.fc11 Fedora)
Compiler:          gcc
OS:                Linux (i686) release 2.6.29.6-217.2.8.fc11.i686.PAE

hi
please add in the "go" menu an option for a specific date.
many times I have to go to a specific date and using the month view or weak view is taking long time.
thanks.
YB.
Comment 1 Dj YB 2010-08-26 12:51:30 UTC
Hello,
I have implemented this shortcut using "Input Actions" assigning "Ctrl+G" to the command:
perl -e '{my $date=`kdialog --calendar "Go To"`; my ($weekday,$m,$day,$year)=split(/ /,$date); chop($year); $m=($m eq 'Jan')?"01":($m eq 'Feb')?"02":($m eq 'Mar')?"03":($m eq 'Apr')?"04":($m eq 'May')?"05":($m eq 'Jun')?"06":($m eq 'Jul')?"07":($m eq 'Aug')?"08":($m eq 'Sep')?"09":($m eq 'Oct')?"10":($m eq 'Nov')?"11":($m eq 'Dec')?"12":"01"; $date="$year/$m/$day"; print "$date\n"; `qdbus org.kde.korganizer /Calendar org.kde.Korganizer.Calendar.showDate $date`;}'

thanks,
YB.