Notices


Reply
Thread Tools
hawaii's Avatar
Posts: 1,030 | Thanked: 792 times | Joined on Jun 2009
#11
I wrote up a small post when I saw it his the repositories yesterday Awesome work. Dialing out isn't working for me, however.

http://www.knownokia.ca/2010/07/apps...-schedule.html
 

The Following User Says Thank You to hawaii For This Useful Post:
Posts: 20 | Thanked: 1 time | Joined on Mar 2010 @ wigan,england
#12
Just tried it for the first time,everything seems to be working fine including dialling the cinema directly.Liked the idea of searching near town you input.Excellent app thanks gilead.
 

The Following User Says Thank You to shepo73 For This Useful Post:
Posts: 44 | Thanked: 73 times | Joined on Dec 2009 @ Freiburg, Germany
#13
Originally Posted by zombiepig View Post
I was playing with this yesterday and it seems fantastic - I really like the extra touches like being able to directly call the cinema and add events to the calender. Thanks for a great app!

Here's a couple of suggestions I've got:
- Is it possible to add events to the main n900 calender rather then the private calender? I've got my main calender all synced up so it'd be great if movieschedule could play nicely with this.
- I can't work out how to see movies for a day other than today... is there a way of seeing what's on later in the week?

Apart from those two little things I'm loving it
Currently there is no possibility to choose the calendar. I will add a TODO to add some configuirabilty for it.

All data directly comes from the Google movie service and the software tires to present all data from it. But for some reason I do not know the information differes for different countries and cities. Usually up to 4 days are shown for each theater or movie. But this may be different for your location. Which city where you searching for? I will have a look what Google returns for it.

Regards, Jochen
 
Posts: 44 | Thanked: 73 times | Joined on Dec 2009 @ Freiburg, Germany
#14
Originally Posted by hawaii View Post
I wrote up a small post when I saw it his the repositories yesterday Awesome work. Dialing out isn't working for me, however.

http://www.knownokia.ca/2010/07/apps...-schedule.html
Thank you for that post.

One reason why a phone call may fail could be that my code translating a phone number from the google results into one that can be used by N900 is not fully correct. Did you try with different locations and theaters? Please send me your location and theater name. I will try myself.

Regards, gilead
 
Posts: 69 | Thanked: 23 times | Joined on Nov 2009
#15
Originally Posted by gilead View Post
All data directly comes from the Google movie service and the software tires to present all data from it. But for some reason I do not know the information differes for different countries and cities. Usually up to 4 days are shown for each theater or movie. But this may be different for your location. Which city where you searching for? I will have a look what Google returns for it.
I'm not sure what was happening now. I had a look on the google service for my city (Melbourne, Australia), and saw it returned 4 days of results. Then I tried MovieSchedule again and it's correctly pulling all 4 days in. I wouldn't worry about this, it was probably a connection problem or something.
 
hawaii's Avatar
Posts: 1,030 | Thanked: 792 times | Joined on Jun 2009
#16
@gilead; doesn't seems to work with any location and any theater I put in. What's the call you're using to initiate an outgoing dial?
 
Posts: 44 | Thanked: 73 times | Joined on Dec 2009 @ Freiburg, Germany
#17
Originally Posted by hawaii View Post
@gilead; doesn't seems to work with any location and any theater I put in. What's the call you're using to initiate an outgoing dial?
I use:


if (!QDBusConnection::systemBus().isConnected()) {
ShowError(tr("Unable to call theater by phone: communication bus not available."));
return;
}
QDBusInterface iface("com.nokia.csd.Call", "/com/nokia/csd/call", "com.nokia.csd.Call", QDBusConnection::systemBus());
if (!iface.isValid()) {
ShowError(tr("Unable to call theater by phone: phone service not available."));
return;
}
QString phone_number = TrimPhoneNumber(cinema.GetTelephone());
QDBusReply<QDBusObjectPath> reply = iface.call("CreateWith", phone_number, 0);
if (!reply.isValid()) {
std::cout << qPrintable(reply.error().message()) << ": <" << qPrintable(phone_number) << ">" << std::endl;
ShowError(tr("Unable to call theater by phone: call failed."));
return;
}

The last call (iface.call) is failing for you. I don't know why - I assume TrimPhoneNumber() does not the right thing. Please send me some locations and theater names you tried. I would like to see if the phone numbers are correctly trimmed.

Regards, Jochen
 
Posts: 44 | Thanked: 73 times | Joined on Dec 2009 @ Freiburg, Germany
#18
@hawaii: you may also start the application from the terminal. Then send me a quote of the console output - failing phone calls should print some error message and the trimmed phone number (as you see I do not trust this feature yet, so I left this debugging output for now).
 
Posts: 87 | Thanked: 26 times | Joined on Mar 2010 @ Canada
#19
Great app!!!

I can't call a theater (fyi: I am based in Toronto - Canada): I get the error message "Unable to call theater by phone: call failed".

One very minor issue: how to delete misspelled locations in the location list. E.g. I have now "Toro" and "Toronto" in the list. How to delete "Toro"?
 
Posts: 729 | Thanked: 155 times | Joined on Dec 2009
#20
Great application so far!
I have already added one feature request to the Garage: https://garage.maemo.org/tracker/ind...1781&atid=6213
Is it possible to add this?
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 15:10.