You Are Here:

Community: Developer Discussion Boards

#1 Old [ann] Uikludges 0.2 - 2008-04-01, 14:46

Join Date: Jan 2004
Posts: 368
Location: Helsinki
Send a message via Skype™ to miohtama
miohtama's Avatar
miohtama
Offline
Regular Contributor
Uikludges project provides a distribution for components missing from Nokia's Python for Series 60. The project follows grassroots open source model, inviting everyone to participate and enhance a common codebase. High quality, sustainability and the maintenance of the components is guaranteed by stimulating developer activity and providing unified and handy toolchain.

http://code.google.com/p/uikludges/

Changes in 0.2

- Integrated applicationmanager module by Simo Salminen

- Setting of application title and displaying arrows in the title bar (Jussi Toivola)

There where a try to start creating scons based build chain, but there is no success yet.


Mikko Ohtamaa
Twinapex Research
http://www.twinapex.com
Reply With Quote

#2 Old Re: [ann] Uikludges 0.2 - 2008-04-01, 15:09

Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
bogdan.galiceanu's Avatar
bogdan.galiceanu
Offline
Forum Nokia Champion
Hello Mikko,
Sounds great. I read on the "Features" page about the ability to label sofkeys and display long messages, among others. Good job. Will give it a try as soon as possible.
Reply With Quote

#3 Old Re: [ann] Uikludges 0.2 - 2008-04-01, 18:45

Join Date: Feb 2008
Posts: 2,542
Location: Bhavnagar, Gujarat, India
Send a message via Yahoo to gaba88 Send a message via Skype™ to gaba88
gaba88's Avatar
gaba88
Offline
Forum Nokia Champion
hi mikko
that is really great plz keep it up.


Gargi Das- http://gargidas.blogsot.com

Forum Nokia Python Wiki


Learn Python at http://mobapps.org/PyS60
Reply With Quote

#4 Old Re: [ann] Uikludges 0.2 - 2008-04-01, 23:22

Join Date: Mar 2003
Posts: 115
Dansco
Offline
Regular Contributor
Looks good mate so thanx
Reply With Quote

#5 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 06:59

Join Date: Nov 2003
Posts: 31
asoinio
Offline
Registered User
I am getting "502 Server Error" from the google code page. Is is just me?
Anyone care to put the project ZIP file somewhere else?
Reply With Quote

#6 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 07:06

Join Date: Dec 2007
Posts: 409
Location: Tempe, AZ
Send a message via Yahoo to shubhendra Send a message via Skype™ to shubhendra
shubhendra's Avatar
shubhendra
Offline
Forum Nokia Champion
Me too getting server error 502.


IDEAS is all they need but still they think only Genius can give them that.
Reply With Quote

#7 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 07:18

Join Date: Nov 2003
Posts: 31
asoinio
Offline
Registered User
I found an older version of this source from:

http://wiki.opensource.nokia.com/pro..._for_example_2

Download requires SVN. Seems to work ++ I got it compiled, however am getting KErrPermissionDenied when trying to use the library...
Reply With Quote

#8 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 07:43

Join Date: May 2007
Posts: 2,738
Location: 21.46 N 72.11 E
croozeus's Avatar
croozeus
Offline
Forum Nokia Champion
Quote:
Originally Posted by asoinio View Post
KErrPermissionDenied when trying to use the library...
Did you sign the package?

Best Regards,
Croozeus
Reply With Quote

#9 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 07:51

Join Date: Nov 2003
Posts: 31
asoinio
Offline
Registered User
@croozeus: Thanks for you ultra-fast reply, I wasn't really even expecting anyone to reply to that! Yes, I did sign the package. My guess is that my environment is somehow messed up and does not define "EKA2" on compilation time. What worked for me was that I removed the "#ifdef EKA2" from the MMP file, and at the same time added some more capabilities (same as Python shell).

However still it seems that my uikludges library isn't properly imported, I can't see the "set_right_softkey_text"-method. I am doing this on my phone via BT shell:

Code:
>>> import uikludges
>>> uikludges.set_right_softkey_text(u"Back")
Traceback (most recent call last):
  File "<console>", line 1, in ?
AttributeError: 'module' object has no attribute 'set_right_softkey_text'
>>> dir(uikludges)
['__builtins__', '__doc__', '__file__', '__name__', 'e32', 'imp']
Reply With Quote

#10 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 07:57

Join Date: Nov 2003
Posts: 31
asoinio
Offline
Registered User
Update: Import is not working after all. It just only gives the error the first time I import the library, after that it looks likes it works but I guess does not as I don't see the methods.

Code:
>>> import uikludges
Traceback (most recent call last):
  File "<console>", line 1, in ?
  File "c:\resource\site.py", line 97, in platsec_import
    return _original_import(name, globals, locals, fromlist)
  File "c:\resource\uikludges.py", line 5, in ?
    _uikludges=imp.load_dynamic('_uikludges', 'c:\\sys\\bin\\_uikludges.pyd')
SymbianError: [Errno -46] KErrPermissionDenied
>>> import uikludges
>>> # no error this time
Reply With Quote

#11 Old Smile Re: [ann] Uikludges 0.2 - 2008-06-03, 07:59

Join Date: May 2007
Posts: 2,738
Location: 21.46 N 72.11 E
croozeus's Avatar
croozeus
Offline
Forum Nokia Champion
Quote:
Originally Posted by asoinio View Post
@croozeus: Thanks for you ultra-fast reply, I wasn't really even expecting anyone to reply to that! Yes, I did sign the package. My guess is that my environment is somehow messed up and does not define "EKA2" on compilation time. What worked for me was that I removed the "#ifdef EKA2" from the MMP file, and at the same time added some more capabilities (same as Python shell).

However still it seems that my uikludges library isn't properly imported, I can't see the "set_right_softkey_text"-method. I am doing this on my phone via BT shell:

Code:
>>> import uikludges
>>> uikludges.set_right_softkey_text(u"Back")
Traceback (most recent call last):
  File "<console>", line 1, in ?
AttributeError: 'module' object has no attribute 'set_right_softkey_text'
>>> dir(uikludges)
['__builtins__', '__doc__', '__file__', '__name__', 'e32', 'imp']
Aha, So you got it signed and its working. But I guess its not importing the library properly.

Quote:
Originally Posted by asoinio View Post
I am getting "502 Server Error" from the google code page. Is is just me?
Anyone care to put the project ZIP file somewhere else?
BTW, I don't get any errors in downloading it from google code page. Could you try download from there and working on it?

Best Regards,
Croozeus
Reply With Quote

#12 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 08:01

Join Date: May 2007
Posts: 2,738
Location: 21.46 N 72.11 E
croozeus's Avatar
croozeus
Offline
Forum Nokia Champion
Quote:
Originally Posted by asoinio View Post
Update: Import is not working after all. It just only gives the error the first time I import the library, after that it looks likes it works but I guess does not as I don't see the methods.
Yes, the functions are not working I guess.
Please try downloading from the google code site. It may help.

Best Regards,
Croozeus
Reply With Quote

#13 Old Re: [ann] Uikludges 0.2 - 2008-06-03, 08:43

Join Date: Nov 2003
Posts: 31
asoinio
Offline
Registered User
Quote:
Originally Posted by croozeus View Post
Yes, the functions are not working I guess.
Please try downloading from the google code site. It may help.
Hi! Thanks for the info. The google code page is indeed working now, and with the instructions from that page I finally got it working. I had not updated the UID in the package, I guess that was one of my problems.
Reply With Quote
Reply « Previous Thread | Next Thread »
Display Modes
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Rate This Thread
Rate This Thread:

Posting Rules

You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump
Similar Threads
Thread Thread Starter Forum Replies Last Post
MIDP applicatyion accessing a servlet not working in series 60 emulator ferozekadamapuzha Mobile Java General 11 2008-05-07 19:04
[Ann] Yet another uikludges module + building extensions with Carbide C++ tutorial miohtama Python 1 2008-02-21 18:08
Series 60 Concept Emulator (SDK Beta 0.2 Linux) not working mattbee Mobile Java Tools & SDKs 1 2003-06-10 12:43
Series 60Series 60 MIDP Concept SDK Beta 0.2 Linux bug? kauppi Mobile Java Tools & SDKs 3 2003-04-07 10:05
drawPixels transparency bug on new Series 60 beta 0.2 marcilgen Mobile Java General 0 2003-03-26 22:41

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia