Search the web
Sign In
New User? Sign Up
wmlprogramming · WML,XHTML,WURFL & Mobile-related stuff
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 24157 - 24186 of 31589   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24157
Hello, Anybody is working with J2ME applications to manage SVG maps? I want to implement a navigation application and I would like to know the experiences of...
Daniel de la Cuesta
cues7a
Offline Send Email
Jun 1, 2007
7:56 am
24158
Hi all, I'm porting Tera-WURFL to .NET (¿NTera-WURFL?). I use WURFL in my production system, and I think having WURFL in a database is a great idea, so I...
Julio Rabadán Gonz...
juliorabadang
Offline Send Email
Jun 1, 2007
1:11 pm
24159
I planning a compatibility test which tells developer how to match devices. The heuristics will be much smarter than they are today (remove one char at the...
Luca Passani
luca_passani
Offline Send Email
Jun 1, 2007
3:21 pm
24160
Mark, thank you for taking the time to give such detailed answers. See in-line for comments ... OK. I think I get the message. Up to recently, it probably did...
Luca Passani
luca_passani
Offline Send Email
Jun 1, 2007
6:05 pm
24161
Julio, did you check out our WURFL .NET API? It uses Patricia tree algorithm to match devices,although it does not use DB. I am interested to know why do you...
Miha Valencic
miha_valencic
Offline Send Email
Jun 1, 2007
6:44 pm
24162
I think I've understood your idea: A complete solution may be a main module (composed by other more specific ones) to extract all posible info from UAgent....
Julio Rabadán Gonz...
juliorabadang
Offline Send Email
Jun 1, 2007
6:45 pm
24163
Julio, I agree that the matching algorithm in Tera-WURFL is a little risky, and I have brought this up in the mailing list a few times before - I didn't change...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 1, 2007
9:08 pm
24164
Miha - if you're referring to the .NET API on wurfl.sourceforge.net, then I'm not sure what you mean. The Patricia Tree Algorithm just flattens the tree into...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 1, 2007
9:52 pm
24165
... I am doing the same. The way I am plannig to do it, is to have a file with the User-Agent strings on one side, and the expected WURFL IDs on the other....
Luca Passani
luca_passani
Offline Send Email
Jun 1, 2007
10:24 pm
24166
I wonder if there is a benefit to splitting the user agent by “/” and trying to match the pieces somehow – although this would probably be very slow. My...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 1, 2007
10:58 pm
24167
Mark, thanks for this. This is obviously a lot of work and I appreciate the effort. As you correctly guessed, though, I am not falling for it. This is the kind...
Luca Passani
luca_passani
Offline Send Email
Jun 1, 2007
11:09 pm
24168
What about this for matching: 1. Check for everything before the first "/" -No results: return NULL or check other headers -Results: --1 result - return it ......
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 1, 2007
11:15 pm
24169
... Different Algorithms for different brands of devices. ... if (ua_string.contains("Nokia") { applyNokiaHeuristics(ua_string); } ... This way, I know that...
Luca Passani
luca_passani
Offline Send Email
Jun 1, 2007
11:18 pm
24170
Oh – nice. I wonder if there is a way to make a matching algorithms XML file that all the implementations can read to determine how to match devices –...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 2, 2007
12:06 am
24171
This is what I have done in the past. I sent a post on it. If I recall correctlly it cut down the number of string comparissons that you have to perform...
Gordon Scott
strangiato_2112
Offline Send Email
Jun 2, 2007
12:18 am
24172
Out of shear curiosity, I ran a query to figure out the number of unique “user agent prefixes” (the string before the first ‘/’) there are in the CVS ...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 2, 2007
1:42 am
24173
The new API will be way more powerful than one-size fits all matching. For example, I can apply a certain strategy if a UA string contains Nokia, just to take...
Luca Passani
luca_passani
Offline Send Email
Jun 2, 2007
10:16 am
24174
... this is an interesting comment, because it's not the first time I hear it from developers. Problem is that I do not think is a good idea. According to this...
Luca Passani
luca_passani
Offline Send Email
Jun 2, 2007
10:44 am
24175
Gordon, I still have your message and the others in a mail folder of their own. Believe it or not, enhancing UA detection has been in my to-do list for over...
Luca Passani
luca_passani
Offline Send Email
Jun 2, 2007
10:50 am
24176
... Can you find which UA have unique UA prefixes, but no corresponding actual device? Luca...
Luca Passani
luca_passani
Offline Send Email
Jun 2, 2007
10:59 am
24177
... Steve, why do you think this is overly aggressive? the UP.Link is effectively only added by the Openwave MAG gateway, so removing it seems a welcome...
Luca Passani
luca_passani
Offline Send Email
Jun 2, 2007
10:41 pm
24178
I meant to say that “.*” in regex is considered a “greedy” expression – it will match everything until it hits the end of the string – this is fine...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 3, 2007
1:31 am
24179
I think this is what you want: SELECT MAX(user_agent) AS ua, MAX(deviceID) AS did, MAX(actual_device_root) AS devroot, SUBSTRING_INDEX(user_agent,'/',1) AS...
Steve Kamerman
steve_bond_k...
Offline Send Email
Jun 3, 2007
1:46 am
24180
... Thanks Steve. I can post the query result as in-line. It's just a few Kb worth or stuff. Plese remove it if you reply to the message, though. First...
Luca Passani
luca_passani
Offline Send Email
Jun 3, 2007
10:04 am
24181
Steve, I was referring to the WURFL .NET API that I published recently. It is available at http://www.mihavalencic.com/?pagename=WurflApi. The point of...
Miha Valencic
miha_valencic
Offline Send Email
Jun 3, 2007
1:55 pm
24182
Not true. If you take a look at the list of UAs that I posted, you will notice a few UP.Link strings in there. And devices that hit that server most certainly...
Miha Valencic
miha_valencic
Offline Send Email
Jun 3, 2007
2:04 pm
24183
Luca, this is effectively what I posted the other day. A list of UAs and WURFL device ID. True, I attached some extra information, which can be removed easily....
Miha Valencic
miha_valencic
Offline Send Email
Jun 3, 2007
2:09 pm
24184
Luca, what is the status of the simplified WURFL right now? I don't think it is good that this simplified version becomes the official one, because it changes...
Miha Valencic
miha_valencic
Offline Send Email
Jun 3, 2007
2:11 pm
24185
... Let's see. I see three instances: OWG1 UP/4.1.20a UP.Browser/4.1.20a-XXXX UP.Link/4.1.HTTP-DIRECT this is the RIM BlackBerry, assuming some user has taken...
Luca Passani
luca_passani
Offline Send Email
Jun 3, 2007
2:19 pm
24186
... I am working on adding the backlog of updates I received. After that I plan to make it the official one. Your test shows 55 devices which changed behavior...
Luca Passani
luca_passani
Offline Send Email
Jun 3, 2007
2:23 pm
Messages 24157 - 24186 of 31589   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help