Slashdot Mirror


Vodafone Move Invites Web Development Chaos

hoagiecat writes "Web developers want mobile phone users to be able to access their sites, but mobile browsers generally choke on heavyweight HTML put together for traditional Web browsers. A host of services have sprung up that allow two sites — one for mobile users, one for PC users — to coexist at the same URL, with the browser's user agent string distinguishing between the two. Vodafone has come at the problem from the other end, offering a new service that translates traditional Web pages into mobile-friendly ones on the fly — but it strips out the user agent in the process, breaking sites designed around the other strategy. And Web developers are mad. Will similar moves by other carriers disrupt this nascent Web development ecosystem?"

192 comments

  1. Neat! Can I access the cell-page with a computer? by Opportunist · · Score: 3, Insightful

    Because I'd love to do without the feature (read: crap) heavy pages and go straight to the content.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  2. Re:Neat! Can I access the cell-page with a compute by Tastecicles · · Score: 3, Informative

    yep. spoof the ua string.

    --
    Operation Guillotine is in effect.
  3. Isn't the real problem... by Anonymous Coward · · Score: 0

    that web developers broke the web by making the page served up dependent on the user agent? The whole idea of the web is that any page should display on any user agent. It's the user agent's job to adapt the content to the display, not the server's.

    1. Re:Isn't the real problem... by lpontiac · · Score: 2, Insightful

      The whole idea of the web is that any page should display on any user agent. It's the user agent's job to adapt the content to the display, not the server's.

      A nice concept that doesn't actually work in the real world today.

    2. Re:Isn't the real problem... by FyRE666 · · Score: 4, Insightful


      The whole idea of the web is that any page should display on any user agent. It's the user agent's job to adapt the content to the display, not the server's.

      This just shows you're not a web developer. You might as well say that you should be able to put petrol or diesel into your car and the engine should sort it out. There's very little content that's appropriate for both a 2560x1200 screen and a 120x160 phone display...

    3. Re:Isn't the real problem... by speaker+of+the+truth · · Score: 1

      Actually it does. See Vodafone.

      --
      Using openSUSE instead of Windows since 9th of October, 2007 and liking it.
    4. Re:Isn't the real problem... by IBBoard · · Score: 1, Insightful

      Not a web developer? IMO it shows he is a web developer and he's one who thinks about XHTML/CSS. For content that can be displayed on both then how about text? Whether it's widescreen or phone display then text should display fine. Have a page serve up content including:

      <h1>Page title</h1>
      <div class="menuFloatedRight">
      <h2>Menu</h2> ...
      </div>
      <div class="contentWithBackgroundImage">
      <h2 class="headerWithBackgroundImage">Some header</h2>
      <p class="intro">Some paragraph of introduction</p>
      <p>Main article goes here.</p>
      <p>And here...</p>
      </div>

      then along with some CSS the content can be identical for all user agents and each user agent can decide which styles they want to support and hence adapt it. If you're on a mobile then you might want to ignore the background image and the right-floating of the menu, but keep those attributes on the desktop browser, and so the user agent is adapting the content to the constraints of the display.

    5. Re:Isn't the real problem... by fmarkham · · Score: 1

      There's very little content that's appropriate for both a 2560x1200 screen and a 120x160 phone display...
      Like, say, text? Yeah, there's not much of that on the internet.
    6. Re:Isn't the real problem... by SpinyManiac · · Score: 1

      There's very little content that's appropriate for both a 2560x1200 screen and a 120x160 phone display...

      Does a 404 count? ;)

      Care to give an example of content sized for a 2560x1200 display?

      --
      It's never too late to have a happy childhood.
    7. Re:Isn't the real problem... by Andy+Dodd · · Score: 4, Insightful

      CSS? Mobile Phone? What???

      CSS is a complex resource-intensive standard that no browser developer has yet to implement correctly.

      A proper CSS implementation in a mobile phone with a 160x120 display and a few megs of memory? Yeah right!

      There's also the fact that CSS inherently operates by telling the device what to remove once it has received the full page, as opposed to not sending the device the information in the first place. Not everyone lives in a UMTS or EV-DO coverage area, you know... Even if it formats well for display on my device (an above average 240x320 Windows Mobile 5 PDA phone), a "non-mobile-optimized" site often is 100-200 kilobytes, while a mobile-optimized one is 10-20 kilobytes. (Simpler HTML, no images or only very small ones, etc.) CSS won't help here because it fundamentally means "send everything and let the client sort it out".

      Even with CSS, the differences between mobile and desktop versions of a site are more than just formatting. Try going to Google with a mobile device - You'll see that the differences in the site are far more than just formatting.

      --
      retrorocket.o not found, launch anyway?
    8. Re:Isn't the real problem... by dominux · · Score: 3, Interesting

      There's very little content that's appropriate for both a 2560x1200 screen and a 120x160 phone display...
      how about maps.google.com?
    9. Re:Isn't the real problem... by IBBoard · · Score: 1

      TBH I'd be appalled if any of my sites had a page anywhere near 100KB for the 'required' downloads (HTML and CSS file but not CSS background images, which wouldn't be "fundamentally required" images).

      As for CSS on a mobile phone: 1) surely that means that XHTML and CSS is an even better combination, since the mobile will see the <link> tag and be able to ignore it because it is typed as "text/css" and it knows it can't handle it. It will then be able to just load and display the HTML, and 2) The last phone I bought was three years ago now, and it was bottom of the line (£30) then. The only reason I bought it was because it was about as cheap as buying a battery for my older phone. Yes, the new phone has Internet access (probably WAP) but I've never wanted to be ripped off by the rates they charge so I've never used it. All I know is that newer phones can use Opera Mini, I don't bother looking at what functionality that might include.

      Google may give you a different site, but what I was saying is why should they need to? If your mobile browser can handle text and input boxes then why should Google need to serve it anything different as long as it is properly designed?

    10. Re:Isn't the real problem... by allcar · · Score: 1

      The whole idea of the web is that any page should display on any user agent
      I'm sorry, but that's just a crock of shit - A photo gallery is never going to display well on Lynx. User agents are so different that to cater for the lowest common denominator would result in an incredibly bland and static web. Don't blame the humble web developer for this situation. User agents have continually evolved and engaged in "arms races" in an attempt to propriatise (if that's not a word, it should be) the web. Standards are beginning to help, but there's a long way to go.

    11. Re:Isn't the real problem... by umghhh · · Score: 1

      I think problem here is the same as in any other area of software engineering. One need software so one saves on engineering skipping it altogether. The result is a mess. The mess can be quite some nice environment for some. Any change to this world however (un)reasonable be fought with whatever means available.

      I wonder - have I succeeded in getting modded to hell now or not?

    12. Re:Isn't the real problem... by Andy+Dodd · · Score: 1

      Compare the Google mobile portal ( http://www.google.com/m ) and www.google.com and get back to me.

      You'll see that http://www.google.com/m is designed more as a "mobile portal" (including support for location-based services depending on your mobile service provider, for example it automatically detected my location when adding weather.) than the basic www.google.com search page for desktops.

      Google at least allows the user to override which page they use if user-agent-based detection fails though.

      --
      retrorocket.o not found, launch anyway?
    13. Re:Isn't the real problem... by Anonymous Coward · · Score: 0

      CSS? Mobile Phone? What???

      I see you've never used Opera Mobile (not Opera Mini) which uses the full Opera rendering engine but for Symbian. Yes, the very same rendering engine you have on your desktop browser.

      Also, there's Opera for Nintendo DS that runs in that, oh, a few megs of RAM Nintendo DS has.

    14. Re:Isn't the real problem... by Grahame · · Score: 1

      But it really pisses me off when I connect to a site on my Nokia Communicator with its 640 pixel-wide screen and the page comes up crippled within only the left hand 120 pixels because some web-developer decided that's what I should have based on his/her ignorant assumptions!

    15. Re:Isn't the real problem... by 644bd346996 · · Score: 1

      In addition to the Opera browser that has already been mentioned, I'd like to point out that ELinks has pretty good CSS support for a browser that doesn't even do graphics.

    16. Re:Isn't the real problem... by MartinG · · Score: 1

      Actually that concept does work in the real world where it is used, it's just not being used everywhere. Those places need fixing.

      --
      -- MartinG To mail me: echo kewyjlcxyzvjfxbqwh | tr bcefhjklqvwxyz .@adgimnoprstu
    17. Re:Isn't the real problem... by hedleyroos · · Score: 1
      You'll see that the differences in the site are far more than just formatting.

      You are 100% correct! Imagine trying to complete say an advanced search page with many checkboxes on a cellphone - it is clunky without a stylus. But split the process into a few pages (think wizard) and suddenly you can do it all with simple HTML. YMMV depending on the problem of course.

    18. Re:Isn't the real problem... by IBBoard · · Score: 1

      Google.com: 2037 bytes of HTML
      Google.com/m: 1436 bytes of HTML

      For all of the extra links, that's not a lot of difference at the base HTML level.

      As for it being a "mobile portal page", isn't that a different page to a "Google search home page for showing off Google's various capabilities"? If it is then it should have a different URL and not be UA dependent. After all, what's to stop someone who is non-portable or on a laptop wanting things like weather automatically added in without having to to an iGoogle page?

      Yes, you could replace "Google search home page for showing off Google's various capabilities" with "mobile portal page" for mobile users accessing "http://www.google.com/", but the better solution would be for a URL to be a uniform locator for a given resource where the resource stays constant and that resource is then designed so it will degrade for any platform.

      You wouldn't want the building at a street address to be a bookshop if you asked about it in a library and a bakery if you asked about it in a restaurant, would you? So why should google.com be "Google search home page for showing off Google's various capabilities" from a desktop and "mobile portal page" from a mobile?

    19. Re:Isn't the real problem... by jrumney · · Score: 1

      That's not the same page. Google is looking at the User-Agent and delivering an appropriate page depending on whether it is a phone or a desktop accessing the site, which is exactly what the developers are complaining that Vodafone is preventing them from doing unless they are 'whitelisted' by Vodafone (currently free of charge, but how long will that last?).

    20. Re:Isn't the real problem... by Pollardito · · Score: 1

      the entire mechanism of google maps is built around zooming in and out, so it's easier for them to implement mobile vs web browser scaling than it might be for other sites. and yet despite that they have a separate downloadable mobile app that will precache the images and other resources as a preferred method versus using the actual maps.google.com webpage in your mobile browser

    21. Re:Isn't the real problem... by SurturZ · · Score: 1

      The whole idea of the web is that any page should display on any user agent. It's the user agent's job to adapt the content to the display, not the server's.

      This just shows you're not a web developer. You might as well say that you should be able to put petrol or diesel into your car and the engine should sort it out. There's very little content that's appropriate for both a 2560x1200 screen and a 120x160 phone display...


      I am a web developer but I agree with the OP. The original design intention of HTML was to enable content to be platform-independent. Of course the original concept of "content" was "TEXT content". Now we have web developers not only presenting text but also application user interfaces with HTML. Which is to say, it is all a completely broken ugly mess.

      The first person who thought it was a good idea to insert script into HTML comment tags should have been slapped with a haddock.

      We need a new sort of markup language/web service that can present graphics and UIs in a platform independent manner. HTML was never it. Flash isn't it. Silverlight may or may not be, but probably not because it is tied to Microsoft.
  4. Stupid web developers by Anonymous Coward · · Score: 0

    Relying on a user_agent string is inherently stupid, and that doesn't change just because the device purportedly sending it is a mobile device.

    1. Re:Stupid web developers by Anonymous Coward · · Score: 0

      Do the mobile web browsers send through the screen/browser size information? I remember looking at log files like 8 years ago and that had those stats. If not I'm sure a little bit of Javascript in a brief intermediary page that redirects to the correct website or sets a session variable would suffice.

      Surely the web pages can be coded to check for this size, and if it is less than, say, 480 pixels, then send through the mobile version.

      Isn't removing the user-agent string annoying for people who do web traffic analysis as well?

  5. So what else is new? by Anonymous Coward · · Score: 4, Informative

    As a Vodafone "business" customer for the last 15 months, Vodafone is doing exactly what the article claims:

    Companies that are on Vodafone's "white list," which is a group of Vodafone-approved services, were notified of the change and the operator is passing the user agent correctly for those services, developers say. ... It's unclear if Vodafone removed the user agent capability for "diabolical" reasons, such as to maintain firm control over the content that users can access, or if it was a legitimate mistake, Harper said.

    The issue at Vodafone is they need a revenue engine that cannot be hampered so they artificially create one. With the recent court rulings over VoIP services like Truphone, Vodafone is seeing disruptive technologies come into play. This is just business doing the right thing for itself but not for the customer.

    For what it is worth, within the group of people I work with (about 2000 people), many of us are using Truphone over the wireless broadband we are provided. Suddenly, my 400-600 pound mobile bills are now down to 50/month with loads of unused minutes rolling over. The story is similar with many other people here and across other networks. Are you surprised?

    1. Re:So what else is new? by empaler · · Score: 2, Informative

      Actually, Opera Mini also does a good job of pounding down the transferred data (YMMV, of course)

    2. Re:So what else is new? by Anonymous Coward · · Score: 0

      I've worked on mobile internet sites that generate lots of different versions of the page for different phones. The version is selected using the user-agent. You need to use it because mobile browsers are even buggier than IE etc. and you need to select the right images to fit the small screens. Many mobile sites do not support regular web browsers, so if Vodafone strips out the user agent then users may not even be able to see it, or will get an unsuitable version. This is a great advantage to Vodafone because they can break lots of competing sites that are selling ringtones etc. and force the users to buy from their portal

  6. Possible workarounds? by Anonymous Coward · · Score: 1, Informative

    1. Check IP address. It might all be filtered through the same server(s), so it would be a matter of updating your browser-detect scripts.

    2. If there's no user-agent, output the simplest page possible. "But then clients with no user-agent get a simple page," you say. So? If they know enough to strip their user-agent, they might appreciate a simpler site anyway, and they should be able to understand the issue, at least.

    Anyway, why would developers be annoyed? If a browser breaks your site, and you're following standards, the blame is on the browser, not on the developer. If it's just impossible to workaround this, it's not your concern. This thing doesn't have market share like IE, so I don't see the big deal.

    1. Re:Possible workarounds? by nuzak · · Score: 1

      Anyway, why would developers be annoyed? If a browser breaks your site, and you're following standards, the blame is on the browser, not on the developer.

      Because Vodaphone customers may not know that Vodaphone is screwing up their browser, they just know that your site doesn't work with their phone. Then they go elsewhere, like a competitor that happens to be on Vodaphone's "white list". The whitelist is a good part of what they're "hopping mad" about.

      --
      Done with slashdot, done with nerds, getting a life.
  7. Web for more than one platform? The HORROR! by An+dochasac · · Score: 0, Offtopic

    Web developers are going to have to get used to it. They've had years of being able to lazily code, develop and test for a single platform and ignore everyone else.
    Now iPhone, along with Nokia's E and N series phones, firefox and the growing popularity of OSX, Linux and other alternatives are finally forcing Web developers to do what they should have been doing all along, coding and testing for actual w3c standards instead of Microsoft's ad-hoc proprietary "standards". (Yes I am aware that w3c standards need to be tightened a bit)

  8. How does this make sense? by Anonymous Coward · · Score: 1, Insightful

    Why is no one using stylesheets?

    1. Re:How does this make sense? by Potor · · Score: 1
      exactly. css media descriptor plus cleaner html.

      phones are becoming more popular as browsing devices, and sites will need to change.

    2. Re:How does this make sense? by Andy+Dodd · · Score: 2, Informative

      Because stylesheets don't stop data from being sent to the device in the first place.

      It's not just about display, it's about connectivity.

      Even relatively "clean" pages like Slashdot's main non-mobile site are too bloated to be easily usable over a GPRS connection.

      --
      retrorocket.o not found, launch anyway?
    3. Re:How does this make sense? by fons · · Score: 2, Insightful

      Because people are creating too complicated websites. There are so many div's used solely for the layout that it's almost impossible to define a simpler layout by just changing the CSS. You have to cut out the redundant div's too.

      Also (most of the time) there is too much information on one page. Some information has to be close to other info etc. For a mobile site you really need to rethink the content. So you need change more than just the CSS.

      I'm talking about big corporate websites here.

    4. Re:How does this make sense? by Anonymous Coward · · Score: 0

      >>Because people are creating too complicated websites.
      >>Also (most of the time) there is too much information on one page.

      I think I found the problem(s)...

  9. Repent! by Anonymous Coward · · Score: 1, Insightful

    Awww did mean old Vodafone got an algorithm to reduce all the bloat web developers put on sites because they use Dreamweaver or other code generation tools?

    Time for a addon for firefox with a on/off switch for mobile version of the website :D.

    On another subject if this is legal then blocking adds from sites is also no?

    1. Re:Repent! by Frankie70 · · Score: 1


      Time for a addon for firefox with a on/off switch for mobile version of the website :D.


      Huh - how will that work unless you acccess the website through Vodafone?

  10. Re:Web for more than one platform? The HORROR! by marcello_dl · · Score: 1

    > Web developers are going to have to get used to it.

    They have already gotten used to it. Checking sites on IE vs. a proper browser.

    What I don't understand is how a tool controlled by vodafone which renders a page in a potentially non standard and undisclosed way would be the way to get used to. Maybe I misunderstood you?

    --
    ---- MISSING MISCELLANEOUS DATA SEGMENT --- [sigdash] trolololol
  11. User-Agent = breakage by KiloByte · · Score: 0
    Please, stop giving a damn about User-Agent. Its effects are:
    • you waste ~100 bytes every single time you request something over http, times ~50 objects on a typical page
    • it is a privacy risk; IP+User-Agent is sometimes said to be about as effective means of identifying you as cookies, and it works even if cookies are disabled
    • it is a security risk, as it gives out your exact browser version
    • is useless for telling the server what to serve, as unless you use one of 2-3 mainstream browsers (IE masquerading as Mozilla, Opera masquerading as IE masquerading as Mozilla...) the server won't glean any useful data anyway. Sure, on desktops, browsers other than the usual three are rare, even stuff like Konqueror or Safari counts as "exotic", but the article talks about cell phones...
    So just do what many of us do and set your User-Agent to a profane string. Without "Mozilla/5.0 (compatible, MSIE" at the beginning.
    --
    The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    1. Re:User-Agent = breakage by hedleyroos · · Score: 5, Interesting

      I have to disagree. I use Plone as a development framework for both "normal" web sites and WAP sites. The user agents are really useful to determine which mobile device is performing the request. This in turn enables me to, say, scale images to an optimal width server side. It saves a lot of bandwidth and makes full use of a larger screen.

      I clean the ua's and apply a Jaro Winkler similarity algorithm. This approach results in a 90% successful match, and in the cases where the match is incorrect it return a sibling phone.

      As far as the mobile world is concerned UA's are great.

    2. Re:User-Agent = breakage by cs02rm0 · · Score: 2, Interesting

      Please, just offer a different site. It's annoying as hell when you then can't browse to the version of the site you want to because of someone else's whim.

      Otherwise you're just restricting access to a site someone's specifically navigated to. Offering a second site provides all the benefits you mention of image scaling, etc. without this downside. I'm sick of having to change user agent strings just to view websites.

    3. Re:User-Agent = breakage by KiloByte · · Score: 1

      The user agents are really useful to determine which mobile device is performing the request. Except they work only if you recognize those particular User-Agent strings. And mobile browsers tend to be relatively unknown, so it's likely there won't be anything similar on your static list and thus your similarity algorithms will be of no use. Once someone comes up with a browser you haven't seen yet, your website will fail badly.

      And what if a blind person who uses a screen reader comes by? What if that person uses a Braille reader instead? What if it's someone able to see but a person who needs a big magnification? What if I come by using eLinks? And "making full use of a larger screen" needs to know the User-Agent how? The CEO of my company insists on setting his resolution to 800x600 even though it's on a LCD, I use 1600x1200, some folks with better hardware go higher -- and all have the very same User-Agent string.

      Having a proper split between semantic markup and styling has none of these problems.

      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    4. Re:User-Agent = breakage by Rob+T+Firefly · · Score: 2, Interesting

      Most of the time, thanks to a combination of the User Agent Switcher and boredom, I'm usually seen from the other end to be browsing on a Commodore 64, a GE washing machine, or a potato with wires stuck into it.

    5. Re:User-Agent = breakage by yoprst · · Score: 1

      You won't believe what you can get from some sites if your user-agent string doesn't contain something familiar to them

    6. Re:User-Agent = breakage by CarpetShark · · Score: 1

      The user agents are really useful to determine which mobile device is performing the request.


      No, you just think they are, because you only care about a few of the potential visitors to your site. That's probably why the rest don't use it, and why the many future web clients in PDAs, Digital TVs etc., blind user's screenreaders etc. will never use it either.

      This in turn enables me to, say, scale images to an optimal width server side. It saves a lot of bandwidth and makes full use of a larger screen.


      That's what SVG is for.

      I clean the ua's and apply a Jaro Winkler similarity algorithm. This approach results in a 90% successful match, and in the cases where the match is incorrect it return a sibling phone.


      Seriously? Do you realise how many pontential users you're dimissing with an algorithm like that? Might as well hash the UA string, xor it with a random number generator, and take the value of the first bit for an if statement.

      As far as the mobile world is concerned UA's are great.


      If so, it's only because the mobile manufacturers are doing the Wrong Thing.
    7. Re:User-Agent = breakage by Anonymous Coward · · Score: 0

      Please, just offer a different site.

      Yep, and instead of constructing the site automatically based on the capabilities of the phone, you get one that's kind of close? Or should web developers design dozens of different versions of their sites so that phones with flash capability can use it, phones with 40 column text can use it, phones with 480 pixel wide screens can use it, phones with 240 pixel wide screens can use it ...

      And you still have to guess the URL that actually will work on your phone.

      Or hey, we could all just develop to the least common denominator, imagine slashdot without images, forced wrapping at 40 characters, and everything squished to the left 100 or so pixels, but at least it'll work on a palm!

    8. Re:User-Agent = breakage by hedleyroos · · Score: 1

      wurfl.sourceforge.net maintains an XML file with LOTS of devices and an exhaustive set of capabilities.

      And you always code for the lowest common denominator WAP browser. Features are added for specific capabilities, the most obvious being screen size. I'm all for non-fixed width layout, but it does make sense to fix the width for WAP browsers.

      I was also skeptical until I actually designed a site for WAP and the usual browsers from the same codebase.

      I agree that WAP sites are dumbed down, but sometimes that is really cool if all you want is the content. And I don't redirect you to a different site if you visit http://wap.bla/ from Firefox.

    9. Re:User-Agent = breakage by red+crab · · Score: 1

      Correct. It makes much sense for the web server to see where the request is coming from- whether from a PC or a mobile. If its the latter, the web server can serve a stripped version of the page; if requested. Not all web sites can (or will) implement this feature, but a few select ones can give this a try. Getting a client agent to check what to serve and what to discard will be very sluggish.

    10. Re:User-Agent = breakage by strangiato2112 · · Score: 1

      The User-Agent is about the only consistent way to recognize a mobile device. The accept headers don't reflect the device capabilities 99% of the time. SOMETIMES a UA-Profile header is available which is supposed to link to device capabilities, but often that is missing, the link is dead, or the link points to the capabilities for a different phone. The reason for actually needing to know the specific device is not for standard web pages ( a waste of your phone ), but for delivering content such as wallpapers, ringtones, or videos that are actually in the size and format supported by your device. Once again this is never consistent across phones.

    11. Re:User-Agent = breakage by smellotron · · Score: 1

      This in turn enables me to, say, scale images to an optimal width server side. It saves a lot of bandwidth and makes full use of a larger screen.
      That's what SVG is for.

      Too bad reliable SVG display doesn't work without either UA sniffing (either explicitly on the server, or using Javascript heuristics on the client), thanks to the most popular browser in the world. Nor are many people interested in downloading Adobe's SVG viewer (which is required to view SVG in IE, AFAIK). Nor is SVG even remotely useful for raster images (whodathunkit?), which is what most of the world's images are.

  12. Re:Web for more than one platform? The HORROR! by IBBoard · · Score: 1

    The problem is that even if you code to W3C standard (which I do) using XHTML and CSS or whatever then you can still have a heavy page that is standards compliant but takes an age to load due to what you cram into it. At the simplest level then you could have a standards compliant site that uses Flash for part of it. With the (admittedly poor) idea of "serve depending on user agent" then you can serve simple content to the phone and have it work but a purely standards compliant site wouldn't help there.

    Yes, the standards should fix most of the issue in that it should degrade well to a phone display etc, but it won't solve everything.

  13. It also breaks the Accept header by Not+Invented+Here · · Score: 2, Interesting

    It also hides the original Accept header, and presents a different list of MIME types. To make the problem even worse, it then refuses to pass across files that the phone would be perfectly capable of accepting. For an in-house site I work on, it broke our ability to deliver compiled WMLScript (application/vnd.wap.wmlscriptc) to phones that are perfectly capable of executing the scripts.

    1. Re:It also breaks the Accept header by Tony+Hoyle · · Score: 1

      Vodaphone have two gateways - the internet gateway, which is unfiltered, and the WAP gateway, which rerenders the page to fit well on a mobile phone. Both have their place, and I prefer different ones for different sites.

      Many sites simply will not render well on a phone, no matter how html compliant their browsers are (and most modern phones have full featured browsers these days). The vodophone gateway makes these usable (and for older phones with only WAP browsers it makes browsing actually possible).

      If your site really wants to render to the mobile phone itself then tell people to reconnect via the other gateway. Otherwise live with it.

    2. Re:It also breaks the Accept header by Not+Invented+Here · · Score: 1

      We send a WAP push message to remote staff directing them to an in-house WAP site. That's just two button pushes from the standby screen of the phone. There's no chance we can train them to delve deep into their phone settings and change the default gateway that the phone uses when they accept a WAP push.

      Once they reach the site we use WMLScript to ask a series of questions. We don't have a HTML version of the site. Vodafone's change stopped the WMLScript getting to the phone. Effectively Vodafone turned off old-school WAP without warning anyone.

    3. Re:It also breaks the Accept header by Tony+Hoyle · · Score: 1

      Delve deep into their phone settings? lol. When you bring up the browser it asks you which one you want to use.. you have to make the choice anyway.

    4. Re:It also breaks the Accept header by Not+Invented+Here · · Score: 1

      That may be true on your phone, but that's a pretty unusual configuration and I've never seen a phone do that. It's certainly not like that on the common S40 phones.

      A WAP push arrives like any other SMS. The standby screen of the phone shows a message that a WAP push has arrived. The user presses a soft-key to open the message (button press 1). The phone then displays some of the message text, and as much of the URL as will fit. The user presses a soft-key (button press 2) and the phone starts the browser and goes to the URL via the WAP access point.

      The user only knows that it is possible to change the gateway if they've been four menu levels deep into the phone settings.

  14. Well done vodaphone by Anonymous Coward · · Score: 0

    All properly designed pages look fine on mobile browsers. I'm mad that fellow developers don't understand fluid, degradable layouts and accessibility. That's the medium we work in and has always been best practice.

    That said, surely the inclusion of a UA string in the translation service and reciprocal HTTP header would allow those few developers who have taken the time to produce a site for mobile devices to have their site display as intended?

  15. Easy by minginqunt · · Score: 0

    Clearly, the proper solution to this 'problem' is for mobile devices to have a proper web browser, rather than some half-arsed cut-down POS.

    Now Apple has shown you how to do it, mobile phone industry, I imagine you'll have no difficulty rolling out poor-quality copies in a year or two.

    The iPhone Safari rendering engine is even Free as in Something You Guys Don't Understand.

    1. Re:Easy by bWareiWare.co.uk · · Score: 1

      The Nokia N-series phones have used WebKit based browsers long before the iPhone was a glint in Steve's eye.

      They even released a proper open source version you can compile and install yourself.

    2. Re:Easy by Tony+Hoyle · · Score: 1

      Now Apple has shown you how to do it

      Yeah.. produce a stripped down browser with no flash or java and the fanboys will eat it up proclaiming it's the second coming.

      That's how to do it.

      Meanwhile, I'll stick with the full featured browser I've had on every phone for the last 3 years.

    3. Re:Easy by dancingmad · · Score: 2, Informative

      "Clearly, the proper solution to this 'problem' is for mobile devices to have a proper web browser, rather than some half-arsed cut-down POS."

      This sounds good at first blush, but it really isn't an ideal solution. I live in Japan and I have one of the latest au cell phones. It gets TV, I can use the camera to take pictures of Japanese characters and look them up in the included English/Japanese dictionary. And I can browse both normal "PC" (as the phone refers to it) websites and mobile sites.

      I always, always, always use the mobile sites. Since I get charged by the packet, the mobile sites are much better because they are built to be low bandwidth (not to mention they're usually focused on the cellphone - the Final Fantasy site, for example, lets you purchase cell phone games and ring tones). I'd get killed (literally death by packets) if I browsed real web sites on the phone as the data transfer would KILL me (well sort of - the maximum I can get charged for more data is around $40).

      --
      "There is no time, sir, at which ties do not matter," Jeeves, (Jeeves and the Impending Doom)
    4. Re:Easy by Anonymous Coward · · Score: 0

      no flash or java

      Excellent!
  16. Revenue stream by myxiplx · · Score: 3, Interesting

    Hmm... I wonder how this fits in with Vodafone's charging.

    By breaking the functionality that allows operators to display the mobile optimised pages, they are forcing people to download more content. Even if they only charge for the amount transmitted to the mobile after they've processed it, that's still likely to be significantly more data than people would have had with the optimised pages. And if they charge for the size of the original page (and I wouldn't put it past them), they really are ripping people off.

    Either way, I would not be happy with this change if I was on a limited data tarrif.

    1. Re:Revenue stream by cabinetsoft · · Score: 0

      they are forcing people to download more content
      I used a Vodafone GPRS connection for some time and i found quite the opposite: they would strip the whitespaces and comments out of HTML pages on the fly and replace images with lower quality ones to speed up things.
    2. Re:Revenue stream by myxiplx · · Score: 1

      Yes, but if you go to a site that has a page optimised for mobiles, it will usually have far less graphics and text than the regular site. Even if they compress the graphics, the full page is going to be far bigger than the original mobile one would have been.

      For example, compare the original BBC news page with their version optimised for PDA's:
      Original: http://news.bbc.co.uk/
      PDA: http://news.bbc.co.uk/nolpda/ukfs_news/hi/default.stm

      They can strip out spaces and compress as many graphics as they like on that original page. The download is still going to be many times bigger than the optimised PDA version.

  17. Could copyright solve this? by Anonymous Coward · · Score: 0

    Copyright limits people's right to copy and modify content. If someone modifies content in face of the owner's expressed wishes, it would seem that they are violating copyright.

    The case that makes me think copyright might work involves a sculpture. There was a sculpture of a flock of Canada Geese in the Eaton Centre in Toronto. Some marketing flack thought it would be a good idea to tie red scarves around their necks. The artist sued to have the scarves removed and won. Tying the scarves on the geese was a violation of his copyright. It seems to me that might work for web sites too.

    1. Re:Could copyright solve this? by nuzak · · Score: 1

      It's a novel legal theory, but the value is mostly in the comedy of its assumption that your HTTP headers are a creative work. Are you preparing to sue Cisco because their routers modify the IP packets that you originate?

      --
      Done with slashdot, done with nerds, getting a life.
    2. Re:Could copyright solve this? by jrumney · · Score: 1

      Its not the HTTP headers of the request where the copyright problems are (they would not have sufficient creative content to be copyrightable), it is the derivative work that Vodafone's proxy creates before it sends it back to the mobile phone.

      In the general case, they are performing a valuable service for their customers by making webpages that were designed for desktop look reasonable on mobile phones, and I wouldn't expect designers of desktop pages to be upset, provided they are not blocking or replacing ads. But where content providers are providing their own mobile versions of their pages, then Vodafone is living dangerously by going on record on their forums to say that they are deliberately replacing the User-Agent to ensure that their customers get the Vodafone mangled version of the desktop webpage, not the content providers' mobile version.

  18. Re:Neat! Can I access the cell-page with a compute by fymidos · · Score: 2, Insightful

    most of those heavy pages don't really have any content anyway, why bother ?

    --
    Washington bullets will simply be known as the "Bulle
  19. It's about Ring Tones / Wallpaper / etc not Web pa by twoshortplanks · · Score: 1

    The problem as I see it is not really sending back different *web* content, but sending back different *executable* content designed for the phone.

    Mobile phone sites use UserAgent to determine what wallpaper or ringtones the device that they're sending supports and send something back that is in the right format / the right size.

    It's like when I go to "getfirefox.com" the site knows that I'm on a mac and offers me the Mac version first.

    --
    -- Sorry, I can't think of anything funny to say here.
  20. Mobile sites are (usually) pointless by Random+BedHead+Ed · · Score: 4, Informative

    A host of services have sprung up that allow two sites -- one for mobile users, one for PC users -- to coexist at the same URL, with the browser's user agent string distinguishing between the two.

    Don't I know it. I use a BlackBerry to surf the web most mornings on the train, and I see these all the time. I've learned to avoid some links specifically because I don't want to waste my time trying to navigate a crappy mobile version of a site. For example, I no longer click on any Reuters or USA Today news links on Slashdot or Digg, because rather serve me the article I asked for, these sites entirely ignore the URL I sent it and drop me on their mobile page, from which (I guess) I'm expected to navigate to the thing I originally wanted. Unfortunately the mobile page contains links to news categories and a list of the most popular stories, and it's usually impossible to find the one I wanted. Many news sites use similar services. The big provider seems to be Crisp Wireless, which proudly announces its responsibility for this crapiness at the bottom of each mobile page.

    My newest pet peeve is the BBC News site. If I type "news.bbc.co.uk" in my desktop browser I get the BBC News page. But on my BlackBerry the site ignores the URL and "helpfully" redirects me to a page where I can select whether I want their Mobile or Desktop edition. It's nice that I at least get an option, but it adds a page load to the process of simply reading the news. And when I select the Desktop link they send me to the main BBC site, not the News site, so I get to make a third page load when I click on the News link to visit the page I originally requested about a minute ago.

    How are these mobile sites supposed to help us again?

    1. Re:Mobile sites are (usually) pointless by Threni · · Score: 1

      > My newest pet peeve is the BBC News site. If I type "news.bbc.co.uk" in my desktop browser I get the BBC News page. But on my BlackBerry the site
      > ignores the URL and "helpfully" redirects me to a page where I can select whether I want their Mobile or Desktop edition.

      You sure that's not your browser? I have bookmarked the mobile and regular news pages on the BBC on my K800i running Opera Mini and they both work fine.

      Perhaps this is a Blackberry thing, though. I don't really understand the point with those. They're more expensive, have less features, and you have to pay for that push email thing. The k800i has a built in email client which you can connect to POP3 servers (ie Gmail) and have it poll for new mail every 5 minutes. But perhaps I'm missing something.

    2. Re:Mobile sites are (usually) pointless by Random+BedHead+Ed · · Score: 2, Informative

      Yes, I think in the case of the BBC site if I were to bookmark the resultant page I'd be able to find it directly again. The BlackBerry provides a list of recently-entered URLs and "news.bbc.co.uk" is still there from when it used to work. Yes, their page might be noticing the BlackBerry in the UserAgent string where they wouldn't have noticed your device - or maybe your bookmark helps.

      BlackBerrys use a lot less bandwidth than standard POP3 or IMAP (or HTTP) connections, which is one of the things people like about them. There are advantages and disadvantages, but generally I like the service (and the device).

    3. Re:Mobile sites are (usually) pointless by MythMoth · · Score: 1

      Try going to the news.bbc.co.uk/text_only.stm site instead. That's what I use for normal browsing. It's the low-graphics (not text only as the url implies) version of the normal site. Hopefully they don't intercept that!

      --
      --- These are not words: wierd, genious, rediculous
    4. Re:Mobile sites are (usually) pointless by Threni · · Score: 1

      > BlackBerrys use a lot less bandwidth than standard POP3 or IMAP (or HTTP) connections, which is one of the things people like about them. There are
      > advantages and disadvantages, but generally I like the service (and the device).

      Does it compress HTTP better than other phones then? If I'm reading Slashdot, or my Gmail, how can it use less bandwidth than my phone? Does all data pass through a proxy which compresses it for you and decompresses it on the phone? I think that's how the Opera browser I'm using works.

      I'm on an unlimited data 3G service (pretty handy for surfing, email, google maps etc). I kept hearing about Blackberrys when I was looking for a new phone the other month, but there was nothing compelling about them. (Not having a go at your choice of phone or anything - just curious as to whether it was just a popular brand like iPods are, etc).

    5. Re:Mobile sites are (usually) pointless by multipartmixed · · Score: 1

      - IIRC, HTTP bandwidth is "reduced" at the BB gateway by simplifying the HTML
        - E-mail reading bandwidth is lower than traditional POP3 or IMAP implementations because of the BB gateway. It sends the message in parts, rather than the whole shebang. For example, say you get a message with a 10MB attachment. BB gateway sends (IIRC) 16KB down. That should be enough to know if you want the other ((10 * 1024) - 16) KB sent to your mobile. Chances are you don't.

      --

      Do daemons dream of electric sleep()?
    6. Re:Mobile sites are (usually) pointless by Chandon+Seldon · · Score: 1

      E-mail reading bandwidth is lower than traditional POP3 or IMAP implementations because of the BB gateway.

      Aside from push mail notification (which is neat), is there any advantage to this over something like the gmail mobile mail client?

      --
      -- The act of censorship is always worse than whatever is being censored. Always.
    7. Re:Mobile sites are (usually) pointless by multipartmixed · · Score: 1

      An educated guess? (I haven't used either, but AM in the industry) -- not really.

      Except for the nice tight integration with pointy-hair-endorsed mail systems, of course. There is nothing like the crack from a berry that originates from your OWN internal mail server and scheduler. They even call it "Blackberry Enterprise Server" to make sure it is fully buzzword compliant.

      Oh yes, one other minor detail, RIM has managed to work out fantastic data deals with many carriers -- or rather convince them to offer them to their customers -- such that data to/from Blackberry e-mail servers is virtually free in some cases..

      I'm suprised Google doesn't offer push notification of new emails. There must be a way to do this, but I haven't looked carefully at what SMS interfaces are available from J2ME.

      Me? I'm quite happy with http://m.gmail.com./

      --

      Do daemons dream of electric sleep()?
    8. Re:Mobile sites are (usually) pointless by Threni · · Score: 1

      I use the Gmail app, but also the built in app to make the little click when it checks (every 5 mins). So there's the slight annoyance of having to go into both gmail (to read the mail) and the built in app (to clear the email icon), but that's the only downside of a free Blackberry simulator, and I don't really care about the icon because it's the beep that alerts me to the mail - I don't spend my life staring at my phone's display.

  21. screw the User Agent by 1u3hr · · Score: 1

    Basically, the sites affected have two (or more) versions of their site and choose which one to serve depending on the user agent. So in the case, as this, when the browser or proxy agent does not give a useful user agent, don't try to get the mobile company to help you; they obviously are not interested; fall back to ASKING THE USER HIMSELF: just have a little (or big) check box: "click here for desktop, click here for mobile" page. Then store the preferece in the URL and/or cookies (do mobile browsers support cookies?) Or advertise a mobile page, eg:
    http://m.whatever.com/ instead of http://www.whatever.com./

  22. With the things going as they are... by Mystery00 · · Score: 1

    I doubt it will be long before mobiles can take on these "heavy weight" websites, so lets just wait a year, and then everyone will be happy and these workarounds will be meaningless.

    --
    "we've got trenchcoats and bad attitudes" - John Constantine, HellBlazer
    1. Re:With the things going as they are... by Tony+Hoyle · · Score: 1

      They already can and have been able to for ages. Most modern phones ship with capable browsers that support flash/java/etc. (except the iphone which can't render heavyweight sites due the the lack of both). The issue is the assumptions of the sites themselves... they often render to a minimum of 800x600 using fixed width tables - so you end up scrolling around all over the place to find what you want. Web designers basically need to get a clue and make their sites work well on small screens as well.

  23. Similar to Opera Mini, but messed up? by smurfsurf · · Score: 1

    How does Opera Mini handle user-agent? I understand it also does a server-side transformation of a webpage. Do web developers serve a special version of the page to Opera Mini?

    1. Re:Similar to Opera Mini, but messed up? by onedotzero · · Score: 1

      Opera Mini, as far as I understand, requests pages via Opera's servers. These preprocess the web page and send back a stripped-down version to the mobile. It's pretty effective, too, with the newest version collapsing large list items etc.

      I don't think I'd really want to browse the mobile web on anything else.

    2. Re:Similar to Opera Mini, but messed up? by Anonymous Coward · · Score: 0

      Opera Mini is in a different position as there is no "original" user agent to transmit to the webserver. The requests comes from the Opera Mini client in the phone which has nothing to do with the built in WAP browser and, being in the Java sandbox, have no way of knowing what other user agents are present in the phone.

  24. Vodafone has always been technically weird by quigonn · · Score: 1

    IMHO, everybody who has developed sites for their mobile portal and had contact with Vodafone's PartnerML should know that Vodafone has always been weird on the technical side when it comes to WAP and mobile web.

    --
    A monkey is doing the real work for me.
  25. Like Opera? by comm2k · · Score: 1

    Sounds similar to what Opera does with its Opera Mini browser where when you request a page the browser doesnt request it directly from the net but via a proxy, a server operated by Opera - which gets the page for you, shrinks it and sends it to you. Saves traffic and the page you get is far more pleasing to view on a small screen. I wanted to do something similar with squid on my small server at home - just to have more control about what happens during the adaptation process but havent had the time to read up all the docs on how it could be done.. anyone know of some good recipes that already do something like this?

  26. User Agent Stylesheets by iBod · · Score: 4, Informative

    The site content shouldn't need to change - only the presentation.

    All that needs to be done is to serve up a different style sheet depending on the user agent, or a default 'safe' stylesheet, or none at all.

    Determining which style sheet to use will necessitate peeking at the user-agent so Vodaphones approach could be problematical. Maybe if they had a meta tag to tell their gizmo not to process the site.

    1. Re:User Agent Stylesheets by suv4x4 · · Score: 4, Informative

      The site content shouldn't need to change - only the presentation. All that needs to be done is to serve up a different style sheet depending on the user agent, or a default 'safe' stylesheet, or none at all.

      As someone who's been through that: it doesn't work.

      You see, the mobile stylesheet has suspiciously many entries of "display:none" if you go this way. Which means you discard many of the non-essential elements for the mobile version and reorder the rest to fit a mobile screen, but the mobile users still download the entire damn thing.

      And downloading things you don't even SEE is far from perfect for the expensive/slow access points on a mobile device.

      Certainly nice that CSS has the feature, but it's not the ultimate solution.

    2. Re:User Agent Stylesheets by TLLOTS · · Score: 2, Insightful

      A lot of that really depends on the kind of content you're talking about. For example, on a page with numerous large images one might consider inserting place-holder elements onto which a background image is set via css. By taking this approach you're able to avoid inserting the images directly and instead give css considerably more power in presenting your page to different media types.

    3. Re:User Agent Stylesheets by Anonymous Coward · · Score: 0

      It would be nice if that worked, but way too many browsers built into mobile phones are too limited in what they understand, old WAP phones won't parse HTML, they just do WML, and are limited in the size of pages (some ridiculously small, e.g. 1300 bytes). XHTML-MP may work as a baseline format for most modern devices, but that's far from covering everything, much less making good use of the limited screen sizes of mobile phones.

    4. Re:User Agent Stylesheets by Yvanhoe · · Score: 1

      You don't get it. They just want to be able to serve Flash application of different sizes.

      I wish I was joking.

      --
      The Wise adapts himself to the world. The Fool adapts the world to himself. Therefore, all progress depends on the Fool.
    5. Re:User Agent Stylesheets by iBod · · Score: 1

      Yes, agreed.

      It's almost impossible to use CSS to satisfactorily modify a site that hasn't been designed to cater for mobile devices from the ground up.

      If you're ending up with a load of 'display: none' then it begs the question of what value that content had in the first place if you can omit it and still have a useful site. Most of that would be decorative graphics I guess.

      If you provide graphics using the CSS 'background' attribute instead of the html img element then it doesn't get sent if 'background: none' which saves a lot of grief.

    6. Re:User Agent Stylesheets by miskate · · Score: 1

      No necessarily so.

      Someone accessing a website that offered mobile phone services could be after quite different things depending on whether they were accessing it from a computer or from their phone. For starters you'd probably want a lot *less* info on each page if you're accessing it from a phone as you have a smaller screen. You're probably also less willing to do a lot of random browsing through a phone, so the navigation would want to be differently arranged.

      As someone else has pointed out, just altering the displayed content by using (eg) the display attribute in css is a sub-optimal response to this, as the user would still be downloading all that content but would simply never see it.

      Plus you still need the user-agent string to know which stylesheet to load.

    7. Re:User Agent Stylesheets by suv4x4 · · Score: 1

      If you're ending up with a load of 'display: none' then it begs the question of what value that content had in the first place if you can omit it and still have a useful site. Most of that would be decorative graphics I guess.

      You know it's not just decorative graphics. Comments, related articles, breaking news index, search with advanced filters, videos, photos, lots of things.

      Those things ARE useful if you have the place for them, and make the site easier to browse and more accessible, but just not on a mobile device where you barely have place to show the main article.

      In most cases, we'll have to face it: a site for mobile device should be a site made for mobile device, not just a CSS hack of the desktop site.

    8. Re:User Agent Stylesheets by The+Cisco+Kid · · Score: 1

      Presumable in vodafones case its the _proxy_ (which presumably has a direct wired connection) thats downloading "everything", and probably stripping the nonessential items out when relaying it over vodafone's network to the phone itself.

    9. Re:User Agent Stylesheets by mha · · Score: 2, Insightful

      By doing this you use CSS for content rather than style! What a great "solution" - count me out.

  27. User-Agent not reliable anyway by DamonHD · · Score: 2, Interesting

    That's why I set up my .mobi site alongside my main one, to present a more appropriate (read: smaller, faster, search box at the bottom) view for mobile browsers. I don't have to guess or translate anything and nore does Vodafone: for this URL I generate .mobi-compliant XHTML straight off.

    Other than V managing to content block me from one of my own sites in Australia for a while (even though I have content blocking turned off and there's nothing dodgy about the site) their service seems to work quite well. I don't like stuff being redirected via a 'transparent' proxy, but maybe I could use SSL to prevent that if I really cared I guess.

    Rgds

    Damon

    --
    http://m.earth.org.uk/
    1. Re:User-Agent not reliable anyway by smellotron · · Score: 1

      That's why I set up my .mobi site alongside my main one, to present a more appropriate (read: smaller, faster, search box at the bottom) view for mobile browsers.

      Not that it's your fault for creating it, but the .mobi TLD is an abomination of all that is good in this world. If your organization is example.com, it's much more logical to use subdomains (e.g. mobile.example.com or m.example.com) than to create a different TLD (and thus imply a different organization).

    2. Re:User-Agent not reliable anyway by DamonHD · · Score: 1

      Except that under example.mobi users can have some confidence that appropriate mobile-friendly standards will be externally enforced, not what some uber-designer with CSS and Flash on the brain decides 'will do' on mobi.example.com. Simple things like if there is a www.example.mobi then example.mobi must exist too. And not SENDING huge pages with crap in that the mobile handset has to pay for but then ignore.

      Rgds

      Damon

      --
      http://m.earth.org.uk/
    3. Re:User-Agent not reliable anyway by smellotron · · Score: 1

      ...under example.mobi users can have some confidence that appropriate mobile-friendly standards will be externally enforced...

      Is that true, or is that just hypothetical? If it's anything like .org or any of the country codes (.tv in particular), I have exactly 0 confidence in .mobi "mobile-friendly" enforcement. How would a standards committee even enforce such a loose concept as "mobile-friendly"? Does it mean "smaller than the desktop page"? What percentage size difference is necessary? Does it mean "does not include Flash/Java/whatever-plugins"? Who decides the mobile-friendly plugins? Aside from bandwidth, most mobile-friendly design is rated emotionally based on its intuitiveness... we don't have the models necessary to quantify that, so we're still back to "what some uber-designer with CSS and Flash on the brain decides" because of the lack of measurability and enforcability..

    4. Re:User-Agent not reliable anyway by DamonHD · · Score: 1

      It is part of the guidelines/agreement for .mobi use, eg see:

      http://mtld.mobi/domain/policies/compliance

      http://www.w3.org/TR/mobile-bp/

      http://ready.mobi/results.jsp?uri=http%3A%2F%2Fsmlpx.mobi&locale=en_EN

      I don't know if the boot has been put in yet for non-compliance, but I hope it is.

      The best practices guide referenced specifies page weight, default media types, etc.

      Rgds

      Damon

      --
      http://m.earth.org.uk/
    5. Re:User-Agent not reliable anyway by psyclone · · Score: 1

      The Boot has not yet kicked any uncompliant .mobi domain operators, but the guidelines are pretty clear.

      I would say most corporations understood the .mobi policies before registering their domains. Unfortunately, the vast majority of the .mobi space is "dead" -- meaning no live sites. The trademark holders bought .mobi domains and they sit on them, while they serve mobile content from subdomains or URLs under the ubiquitous .com TLD.

      All it would take is for a couple large web entities to advertise their .mobi domains and the TLD would take off. But as long as Joe Sixpack always types .com (on their PC or phone), dot-mobi will remain asleep.

      Also, there has been a vast domain name speculation in the .mobi space -- with many short and numeric domains fetching several hundreds of dollars without any web traffic (mobile or otherwise). Most of these domains are serving pay-per-click sites while the owners hope the TLD will appreciate.

  28. page tag by Anonymous Coward · · Score: 0

    can we please have a standard tag on pages that indicates a page is mobile optimised.

    (if tag present then this type of service displays the original page such)

    1. Re:page tag by jrumney · · Score: 1

      We have it already. Vodafone's proxy will send certain mime types through to the phone unmodified. The problem is that without the original User-Agent, content providers don't know when to generate the mobile optimised version of the page, and when to send the desktop version.

  29. Typical by LSD-OBS · · Score: 1

    If there's one thing I've learned from working in the mobile telephone industry for the past year, it's that mobile service providers and indeed, mobile handset manufacturers, have their heads so far up their asses so as to be completely out of touch with the rest of the world.

    They understand their customers fairly well, but they show complete contempt for third party software developers and existing Internet and communications infrastructures. They lobomotise almost every new useful feature in the face of the demand for said features, and the pump steroids into the features which really aren't important (5 megapixel camera on my mobile phone, when the f**king thing won't even let me send the high quality snaps over anything but infrared?! Get out!)

    Now, what's this I keep hearing about a Linux phone?

    --
    Today's weirdness is tomorrow's reason why. -- Hunter S. Thompson
  30. Good question - also Handheld CSS media descriptor by iBod · · Score: 2, Informative

    CSS provides Media Descriptors that allow specific stylesheets to be used depending on the presentation media.

    'Handheld' is such a descriptor.

    Provided the device supports this and use the correct stylesheet there shouldn't be any need to do anything else.

  31. Chaos? by suv4x4 · · Score: 1

    I'm a web developer and I don't whine about chaos when someone's trying to work on my problems.

    It's a simple one liner to set the right flag in your code if either the right URL or user agent is detected.

    Given the mess we're used to when doing web dev work, panicking about this is laughable.

  32. Re:Neat! Can I access the cell-page with a compute by bateleur · · Score: 3, Insightful

    Straight to the content would be nice, but be careful what you wish for... There's no way advertisers are going to accept the idea that mobile versions of pages have no ads. With the screen area so small what will happen is that ads will appear on separate screens before the content you're trying to view.

    Desktop browser ads are mild by comparison. They sit at the top or the side, easily ignored. The worst they ever manage is to waste a bit of bandwidth. I predict people with more powerful phones will soon be spoofing non-phone user agents in an effort to dodge the evil phone versions of ad-supported pages.

  33. Never Trust User Input by thenextpresident · · Score: 1

    So... this only broke websites where programmers blindly accepted user input and trusted it, right?

    --
    Jason Lotito
    1. Re:Never Trust User Input by smellotron · · Score: 1

      So... this only broke websites where programmers blindly accepted user input and trusted it, right?

      This is a bit different from your average user-input problem. Saying "don't trust that the user agent is accurate" is like saying "don't trust that the name this person entered in the form is accurate". Sure, you may assume it's BS data, but there's nothing you can do about it. If the user wants to say their name is "John Q Public", you have to take it at face value. If the user insist that their browser is KHTML, you have to take it at face value. If they say KHTML and they're lying, too bad. It's either their fault for lying (no sympathy), or it's their provider's fault for screwing with data (sucks for the user).

      This problem is orthogonal to the security issues caused by taking arbitrary inputs and passing them to arbitrary external data sinks (SQL/shell commands).

  34. Re:Web for more than one platform? The HORROR! by ajs318 · · Score: 1

    Well, Flash is to all intents and purposes its own user agent. It can make HTTP requests and it can render HTML. Assuming it renders alike on all platforms, it's a quick-n-dirty (TM) way of getting everything to look "right" cross-platform.

    The proper thing to do in this case would be for Vodafone's content-munging proxy to declare its own user-agent ident, so that it's at least obvious at the server end that pages might not be rendered exactly as sent -- and knowing exactly what alterations are being made wouldn't hurt web designers, either.

    --
    Je fume. Tu fumes. Nous fûmes!
  35. Re:Neat! Can I access the cell-page with a compute by elementik · · Score: 5, Insightful

    Why dont people just use media="screen|handheld|print" along with optimised code to a) reduce the amount of code sent in the first place, and b) position it properly based on the client I realise you have to download the same amount of HTML which might not be optimised for slower connections but seriously ... isnt that the entire purpose of the media="" attribute ??

    --
    --- Stop the world! I want to get off!
  36. Re:Neat! Can I access the cell-page with a compute by bl8n8r · · Score: 1
    --
    boycott slashdot February 10th - 17th check out: altSlashdot.org
  37. ON topic by CarpetShark · · Score: 1

    Crazy moderation there. This is the crux of the issue. If people start using standards -- developers AND phone companies, then the problems they're working around will no longer exist.

    1. Re:ON topic by Anonymous Coward · · Score: 0

      THe issue here isnt standards the issue is large websites designed for machines with a lot of memory running on phones with virtually none said memory.

  38. Chaos? by sgunhouse · · Score: 1

    As someone who's been on the other side of this issue, I can tell you that Vodaphone is not the one creating the chaos. (Also note, some PC proxies will strip out the user agent.)

    I've previously received mobile versions of websites on my desktop, merely because I was using a test version of Opera. Opera 9.0 for desktop hadn't been released yet, really neither had the version for Windows Mobile though that had received more notice. Because my user agent indicated I was using Opera 9.0 on Windows their server decided it really meant Windows Mobile and sent me the mobile version of the site.

    Sorry, but having different versions of a site based on user agent is wrong because it is too prone to errors. They should use proper CSS media descriptors, or maybe use javascript to check the size of the screen. At least, unless they actually define a standard for user agent that explicitly indicates the platform type and they are sure most browsers follow that standard.

  39. The mobile web by DingerX · · Score: 1
    as viewed by Ari Jaaksi of N800 notoriety:

    It amazes me that I still see signs of this thinking. Web pages and services are tailored to small screens and people expect that to create the mobile internet. It won't. There is only one internet, and if your device cannot access it, you're out of luck. There is only one internet.

    Sure, we can make some sites for mobile phones, but, come on, mobile-phone formatted pages never caught on. It's like camera phones: there might be a case where you can use them, but unless the camera is comparable to a point-and-shoot, it's pretty useless. So too with the internet. Adapting the internet to a device ain't gonna work, because most cellphones are pretty poor at displaying large amounts of information, their processors are pretty damn slow, input is tedious and access speed often quite painful. Since there's little interest, there's little hope a "Standard" way will come about. So every site mucks around with mobile content, when the best solution is to just serve the page, and let the browser deal with it. If your cellphone sucks as a browser, no amount of optimizing will change that. If a website has for cellphones a "low-bandwidth" variant, chances are most PC users would prefer it too.
    1. Re:The mobile web by curunir · · Score: 1

      Since there's little interest, there's little hope a "Standard" way will come about.
      There's little hope that another standard will come out, but since we already have one, that's not really necessary.

      There's absolutely no good reason why a website should sniff the user-agent string to determine which page to serve. Instead, the page should use CSS layout and make use of the CSS handheld media type. This allows the provider to make intelligent decisions about which page to serve. The provider will know what type of network (3G, etc) the user is on and can use that information to serve the correct page. The provider will know whether the user is on an unlimited data plan and can use that information to serve the correct page. The provider will know what model phone is connecting to their network and can use that information to serve the correct page (technically, the website operator could do this too based on extensive parsing of the user-agent string, but it doesn't sound like any of the upset web developers were doing that).

      In short, the website should simply present two options to the user-agent, whether that user-agent is the actual phone or a provider proxy. It's up to someone with more information about the capabilities of the display device to decide which one to use.
      --
      "Don't blame me, I voted for Kodos!"
    2. Re:The mobile web by DingerX · · Score: 1

      Damn straight. CSS is my route. But, heck, do you know how hard it is to set up a CSS in most idiot-centric web page utilities? They all default to pixels, and some stop there. Talk about moronic! I mean, hell, there ain't no standard on the size of a pixel on the screen! Higher-level, platform independent nerdity depends on relative measurements, not something entirely useless like the number of pixels. An absolute that is variable in an unpredictable way does not help: that's the worst kinda engineer-think.

      For that matter, we might as well say that the folks at Google prioritize CSS with relative measurements.

  40. Re:Web for more than one platform? The HORROR! by IBBoard · · Score: 1

    Yeah, Flash is a special case of the "large thing to download as web content" but it was the one that worked best for "great big thing that you need to download".

    As an alternative, take dowfiles.com (and probably the whole FileFront network). Even if they coded to standards and used HTML without tables and CSS for all styling then they'd still have a 55KB header image and a total of 166KB of images to load. That means just using standards still won't make all sites mobile-compatible.

  41. Google Mobile by brunes69 · · Score: 1

    Don't see how this is news. Google Mobile has been doing this for at least a year. Any links to external sites that originate on my m.google.com homepage are automatically "mobile-i-fied" by Google. You can disable the service in your preferences I believe if you want the full size page.

    Personally I love the service since it saves me valuable bandwidth and time.

    I do not know if Google respects these special User-Agent strings for mobile-specific site versions - and frankly, as a user, as long as the site works, I don't really give a hoot who is parsing it. "Web Designers" need to get their heads out of their ass and realize that the web is a content delivery mechanism, not a publishing and layout mechanism. You have absolutely no guarantee whatsoever on what your content looks like to the end user. If you don't like that than get a real publishing job.

    1. Re:Google Mobile by jrumney · · Score: 1

      This is news because Vodafone is not a third party service that the user specifically seeks out, like Google mobile and Opera mini. Vodafone is a network operator, and their customers get this by default without asking for it. Fro the majority of websites, which do not care about mobile users, this is a good thing, but some developers prefer to convert their pages to mobile versions themselves, and Vodafone is taking control over mobile presentation out of the hands of these content owners. IANAL, but it seems there could be some potential for copyright infringement claims here if Vodafone continues their current stance of "we know better than the content providers".

    2. Re:Google Mobile by biraneto · · Score: 1

      To try it on your browser just click http://www.google.com/gwt/n?client=ig&u=http://rss.slashdot.org/~r/Slashdot/slashdot/~3/161024923/article.pl (also you may change the u to something else)

      Without it I can't load slashdot on my palm device as it keeps telling me the page is too big to be displayed. :)

    3. Re:Google Mobile by The+Cisco+Kid · · Score: 1

      So its a service that vodafone is providing to its users that allows them (at least theoretically) to automatically have *all* websites converted for better viewing on their phone (and possble even using a better transform, since presumably vodafone has more knowledge of the capabilities of its customer's phones than some random website might).

      A web server/site doesnt have any intrinsic right to know what type or version of browser that is accessing it: User-Agent is voluntary. And quite frankly, I'd like to see it be a default-off toggle in new browsers, so that sites had to start deciding to make standards based W3C compliant code instead of writing browser-brand specific code.

  42. Vodafone, and embracing, extending, extinguishing by Helldesk+Hound · · Score: 1

    > Vodafone has come at the problem from the other end, offering a new
    > service that translates traditional Web pages into mobile-friendly
    > ones on the fly -- but it strips out the user agent in the process,

    Sounds like Vodafone has been learning from Micro$oft on how to embrace, extend, and extinguish.

  43. proxy by FonkiE · · Score: 1

    well if the vodafone life proxy connects always switch to the mobile versions of the site. this is simple. and just change the css if possible.

  44. Bad idea - here is a better one by Skapare · · Score: 1

    This is a bad idea. While there is an issue about how content is displayed, there is also an issue about how much content there is.

    What is needed is a new (proposed) HTTP request header that passes the media types (classes) to the server. Then instead of trying to guess the media type from the user agent string, the server will know for sure. For example a request might have the HTTP header "MediaType: display/mobile;geometry=288x384" and a 2nd header "MediaType: audio/stereo;format=mp3,ogg,flac". The server then knows what kinds of media the device has or has enabled. If I turn the sound off, the sound mediat type won't be sent in requests. When I am at home and request a document print (as opposed to a screen print) it could send "MediaType: print/inkjet;hdpi=1200;vdpi=1200" which would clue in the server to limit the content to just what is appropriate for printing.

    Your theory "The site content shouldn't need to change - only the presentation." is technically correct. But the point here is to preserve some bandwidth, too, by doing some presentation filtering (only send the media types in use) and optimization (server knows the display size, so it sends small display media or reformats). It's still the same content ... but the parts of the content not needed are not transmitted. On the server side, one way to implement this is to add some XML tags that identify what parts of the conent apply to what media types.

    The whole "separate content and style" idea has long had the flaw that too much (usually all of it) content was sent all the time. My above proposal allows the content volume to be limited for transmission while still preserving the fundamental principle of that separation as it applies to the creation of the content. Web sites (such as Vodafone) are really trying to do some kind of content filtering now. This just makes for a standardized way to manage it (so the unreliable User Agent won't need to be used).

    --
    now we need to go OSS in diesel cars
  45. Three things by Bogtha · · Score: 1

    Firstly, if you are differing content based upon the User-Agent header, you are doing it wrong. The User-Agent header was intended for bug workarounds, not feature queries. If you want to know if a browser supports a particular document type, you use the Accept header.

    Secondly, another person posted that they block the Accept header. That's a real problem.

    Thirdly, proxies that alter content are nothing new. There is an HTTP header that allows authors to mark content that should not be altered by proxies. It is Cache-Control: no-transform. Hardly anybody has heard of it, so I doubt Vodafone respects it, but if they do, then nobody should be complaining. Just use that to stop them messing with it. If they don't support it, then complain and ask them to add support.

    --
    Bogtha Bogtha Bogtha
    1. Re:Three things by ranrub · · Score: 1

      1. Wrong - the user agent tells you the phone model, which tells you the screen size and capabilities way beyond what the Accept header can tell you.
      2. True, but they just replace it with */*
      3. They respect it. In fact all you need to do is serve content-type:application/xhtml+xml to leave your site unaltered. Not that you know which XHTML to generate, because the damn user-agent is gone!

    2. Re:Three things by Anonymous Coward · · Score: 0

      Have you ever heard of WURFL? Have you ever tried to deliver a device optimized ringtone/image, or device-specific brew/java app?

  46. Opera.Mini by jetxee · · Score: 1

    Opera Mini works great for me. It has a built-in RSS reader. It renders most sites good on a small screen. Reduces traffic. Works with any mobile operator I tried (though I never used Vodafone). It compresses traffic and downscales graphics server-side. It handles Unicode and multilingual stuff. So far it is the best mobile web option for me. It works virtually anywhere, and it is good enough. I even prefer m.gmail.com-in-Opera.mini instead of gmail.app or Google Mobile.

    I tried also new Nokia browser (webkit-based) on the E-series phones. It is really impressive, but requires a descent phone. Also it generates much more traffic as it loads the full-blown version of the page. Also some AJAX pages don't work nice with it (e.g. Picasaweb).

    Google Mobile is a nice initiative, but it lacks polish and smoothness of Opera Mini experience. In fact it works only in built-in phone browser, which is crap in most phones (except above mentioned Nokia browser).

    There are other services similar to Google Mobile (like http://www.skweezer.net/), but they are of inferior quality to plain Opera Mini.

    1. Re:Opera.Mini by iLogiK · · Score: 1

      i also use opera mini on my phone and it works great...only thing i hate about it is that the default search engine is now yahoo!....i never realized how crappy it was until now...

    2. Re:Opera.Mini by hkmwbz · · Score: 1

      Check out Opera Mini 4 (beta 2). It lets you add your own searches.

      --
      Clever signature text goes here.
    3. Re:Opera.Mini by jetxee · · Score: 1

      I have a bookmark to Google on my first page, so go and search there... Yes, mobile yahoo is crappy.

  47. white list or alternative internet browsers by XavidX · · Score: 1

    Is it done on a server before it hits your phone or does the phone change the html?
    If it is done on the phone just use the opera browser for your mobile phone instead of the build in browser. http://www.opera.com/products/mobile/

    I think it rocks.

    And why have a white list. Why not get the sites targeting the mobile market to use meta data much like the meta data used for search engines.

    meta name="transformhtmlforbetterviewingsuage" content="nochange"

    to me to have a white list is not very good. Imagine if all the mobile suppliers use this technology and all have a white list. bad idea. People develop there sites so they are displayed the way they want it to be. I would be pissed as well if someone changed the way my site looked especially if I made it especially for mobile phones.

    1. Re:white list or alternative internet browsers by ranrub · · Score: 1

      It's not done on the phone it's done in the proxy the users are forced to use to access the web from their phones. A different browser will get the same.

  48. Re:Good question - also Handheld CSS media descrip by Anonymous Coward · · Score: 0

    "Provided the device supports this" is the key phrase here. They do not. In fact they have all kinds of "strange" bugs that require you to code different pages for different phones. (Standards-compliant webpages will not work on the most common phones on the market.)

    Also there are other problems. Dealing with a small screen device, you optimize the images for the target screen. And i mean optimize. You do not only scale them, you crop, resize & convert them. Some devices can do only GIF others only JPG, the next one prefers PNG. There are arbitrary size constraints on the whole page (some devices) or individual objects (other devices) which to add the fun-factor also depend on the gateway. (e.g. Device A with Operator O can download >200KB, Device A with Operator P can not download >195KB, Device B with Operator P can download >200KB).

    You will not be able to offer an optimized version without the user-agent.

    But the main point here is offering content for mobile phones, e.g. JavaGames. You lose a lot of usability if you cannot determine the device accessing your site.

    They should have implemented it in a way that sites which offer the XHTML-MP (Mobile Profile) or WML content-type are simply not touched at all. But i think this is more a question of business politics than technological merit.

  49. Re:Neat! Can I access the cell-page with a compute by Kasracer · · Score: 1

    Vodafone, as well as all web developers relying on the User Agent string are taking the wrong approach to this. There is a reason we can specify mobile for a style sheet. First, your website shouldn't be heavy on HTML and should be able to degrade nicely. Secondly, you use the mobile style sheet to tell the mobile browser how to render everything. It's dumb to rely on the user agent string for ANYTHING and completely ignore standards designed to help with this.

  50. Re:Neat! Can I access the cell-page with a compute by amias · · Score: 1, Informative

    I presume you mean the ability to specify different stylesheets for different media ,
    If so then no , its only for adjusting the layout and will in most cases result in the same stuff being downloaded.
    A clever client could try to avoid downloading things that weren't going to be dispayed but most don't ( this is
    also a way to pre-cache things).

    personally i would do a simple standards compliant page that works on both , its hardly rocket science .
    Convincing the marketing people not to fill it with crap is far far harder tho.

    --
    [site]
  51. Re:Neat! Can I access the cell-page with a compute by Yvan256 · · Score: 1

    Then I guess we should stop helping mobile users by sending them smaller graphics at smaller file sizes... How silly of us to try and help them surf websites faster.

  52. Re:Neat! Can I access the cell-page with a compute by F4_W_weasel · · Score: 1

    "With the screen area so small what will happen is that ads will appear on separate screens before the content"

    By separeted screens, you meant: into (wichever) cell phone happens to be next to me, right?

    sweeet.

  53. Re:Neat! Can I access the cell-page with a compute by Kasracer · · Score: 2, Interesting

    Well, EDGE and EV-DO are more than capable of downloading large files quickly but... why is your website heavy in regards to file size in the first place? The layout of your website should NEVER be heavy (even highly complex layouts can be done without going above 100KB even with lots of graphics) so this isn't an issue.
    If you're using large images for products (which should be the only items that take up more than 30KB per image), then why would you want it smaller anyway? I would rather the full version especially since if I'm loading it that means I want to look at it.

    It seems everyone is missing the big picture. Relying on User Agent strings for ANYTHING is like adding concrete to a bridge that's falling apart. If you don't fix it and fix it the correct way, you're going to have tons of patches and eventually the whole thing is going to just fall. The services that make file sizes smaller are also quick fixes that don't really resolve anything and just allows web developers to become more sloppy.

    I've been building web sites for over 10 years now and there is no reason you can't have a really complex and graphical website the size of Slashdot or CNN and have the entire page be under 100-150kb. Compression and file formats have come a long way and knowing when to use which one is key.

  54. NOT copyright infringement by brunes69 · · Score: 1

    It is not copyright infringement because the content has not been nodified.

    The CONTENT is just HTML code. Just because your website looks a certain what in your IE browser doesn't mean it looks the same when I view it in Lynx.

    Does that mean I am guilty of copyright infringement because the site does not look the same as when you created it? Is it copyright infringement when a deaf person watches a film because they are modifying it by removing the sound?!?!?

    Like I said above - site owners need to get their heads out of their ass. HTML has no guarantee over layout, that is not what markup is for. It is to offer up *suggested* layouts. If you want layout guarantee, use PDF or something.

    1. Re:NOT copyright infringement by jrumney · · Score: 1

      It is not copyright infringement because the content has not been nodified.

      Of course it is modified. What point is there in having a "transcoding proxy" in the way, if it is not modifying the content that is passing through?

    2. Re:NOT copyright infringement by brunes69 · · Score: 1

      It is not modifying the content it is just modifying the markup. You can't copyright markup. If you could I would have copyrighted long ago.

  55. no no no... by TheSHAD0W · · Score: 1

    It isn't necessary for a phone to implement a full-featured CSS parser, the display can't handle such rich content anyway. Have you ever hit a CSS-designed web page where for some reason or other it couldn't load the style sheet? The result is a pretty plain text page, which would be easily legible on a phone. Some basic formatting would prettify it a bit.

    1. Re:no no no... by Andy+Dodd · · Score: 1

      Still, that only affects formatting, not layout.

      (As an example, load Slashdot from a mobile device, enjoy scrolling through the left sidebar before you reach any interesting content.)

      Not only does formatting have to be simplified for a good "mobile user experience", but so does layout and sometimes even content.

      The embedded versions of Opera aren't that great. I tried it once, it wasn't much better than Pocket IE, most "non-mobile optimized" sites had major usability problems.

      --
      retrorocket.o not found, launch anyway?
  56. Re:Neat! Can I access the cell-page with a compute by Yer+Mum · · Score: 1

    I've done it with Opera 6, you configure the .ini file to ask for the wap filetypes in preference to the html filetypes. I'm not sure whether Opera 9 is different.

  57. So what else is new?-Making a living. by Anonymous Coward · · Score: 0

    "The issue at Vodafone is they need a revenue engine that cannot be hampered so they artificially create one. With the recent court rulings over VoIP services like Truphone, Vodafone is seeing disruptive technologies come into play. This is just business doing the right thing for itself but not for the customer."

    And how is there being no businesses to provide the service that Vodafone does the "right thing for customers"? I realize slashdot's attitude towards making money (except for itself apparently) and businesses in general. But as long as the world is the way it is someone will need to make money so that "the customer" can enjoy a service they wouldn't not otherwise have.

    "For what it is worth, within the group of people I work with (about 2000 people), many of us are using Truphone over the wireless broadband we are provided. Suddenly, my 400-600 pound mobile bills are now down to 50/month with loads of unused minutes rolling over. The story is similar with many other people here and across other networks. Are you surprised?"

    Am I surprised that they're in business to make money?

  58. Temporary Problem by Anonymous Coward · · Score: 0

    Remember Moore's Law? In a couple years cell phones will have enough horsepower to process full/ordinary web pages. So just wait, and the problem will disappear.

    1. Re:Temporary Problem by xdotx · · Score: 1

      Great, now I'm going to spend all day contemplating the implications of a cell phone with horsepower.

      --
      Our wealth breeds emptiness
  59. Tiered internet microcosm by Anonymous Coward · · Score: 0

    Hey look at that, a mini-example of how a tiered internet could work..

  60. Web developers can kiss my fat white ... posterior by johnkzin · · Score: 1

    The web was designed to deliver browser agnostic pages, that the browser made display decisions about based upon the platform (small screen, large screen, gui, text, etc.), OR based upon the wiewing preferences of the user ... NOT based upon the preferences of the server or page developer.

    All of the web elements that have come along that force viewing decisions upon the client (browser restrictions, resizing the screen, etc.) are a blight upon the net.

    Cry me an f'n river. "oh no! I'll have to write browser agnostic pages again! Like I should have for the last 12 years. Woe is me." Blow me. It's my screen, not yours. Learn how to write a real web page (meaning one that is browser agnostic), or get a new career.

    Having web filters out there that make it hard or impossible for the server to force this crap upon the client is a blessing. I know nothing else about vodaphone, but on this issue: good work, and ignore the whiners.

  61. Re:Neat! Can I access the cell-page with a compute by Yvan256 · · Score: 1

    While I agree with most of your points and know that a good XHTML/CSS website should be able to degrade gracefully on older/less capable platforms, and even while I consider that 100KB is already twice as heavy as a webpage should be at most, you have to consider the platform itself: something that fetches the "mobile" CSS and identifies itself as a mobile playform (user-agent) it means it's not a "computer/standard" device, so we can imply that it has one or two limitations: download speed (and mobile data rate, which aren't unlimited in a lot of cases) and display size/resolution.

    It doesn't do anything good to send a 50KB, 400x300 JPEG photo to someone on a mobile device which has, say, a 240x160 display. It means the device must download the image, resize it, display it. So it takes longer to download (time, possibly money), takes processing time and power (time, battery life) to render something in lower resolution (with a possible huge loss of quality depending on the resizing method).

    Take Opera for the Nintendo DS as a good example. I'd rather send a custom "version" of the website (custom CSS, custom website width and custom images, all the rest is the same) so people can browse in RSS mode: it loads faster, it displays faster, the graphics are lighter and sharper, it removes the need to scroll horizontally to read the content. I'm helping the user view my website for his platform. If implemented correctly, it's not that difficult to manage. I only have to remember to make a smaller image when I add something, the website does the rest.

  62. Re:Neat! Can I access the cell-page with a compute by Anonymous Coward · · Score: 0

    apt-get lynx

  63. Branching based on User-Agent is a BAD IDEA by Anonymous Coward · · Score: 1, Interesting

    A host of services have sprung up that allow two sites -- one for mobile users, one for PC users -- to coexist at the same URL, with the browser's user agent string distinguishing between the two.
    Man, I can't believe the article summary let that one slip without harsh criticism!

    If history has shown us anything, it's that the vast majority of "web developers" cannot be trusted with checking the User-Agent header. How many times have those of us who use non-mainstream browsers or platforms seen websites choke because some moron is doing this incorrectly?

    Example: My bank's website works with Firefox on Windows and Linux and Mac, but not on any other platform Firefox runs on (like BSD or Solaris). Why? They've hard coded a few Firefox user-agents into their scripts. Result? To check my bank statement I have to find the nearest Win/Linux/Mac box.
  64. Re:Good question - also Handheld CSS media descrip by nuzak · · Score: 1

    CSS is a blunt hack that can only reformat the existing data, largely by hiding it. It cannot break it up into smaller pages, select different scripts to run, or negotiate different content altogether unless you have them download all the content for all media types then display only the types you want.

    Plus, it's usually handhelds that have the poorest CSS support around.

    --
    Done with slashdot, done with nerds, getting a life.
  65. Crippled phones: It's The Network(tm) by tepples · · Score: 1

    Remember Moore's Law? In a couple years cell phones will have enough horsepower to process full/ordinary web pages. So just wait, and the problem will disappear. Yeah, but the only network operator that can get a signal to where you live and where you work will probably disable this feature and most other features that the phone manufacturer advertises, so that the operator can sell the features back to you at a nominal charge per month. And no, you can't just buy a phone on the gray market and use that instead of the phone that was subsidized by your 24-month commitment because the networks with good coverage are "CDMA" (IS-95/IS-2000) networks, and "CDMA" networks don't use removable SIMs.
  66. Holy fuck, how did this get modded up? by Anonymous Coward · · Score: 0

    I know slashdot is 99% morons who don't have a clue what they are talking about, but this is ridiculous. Using CSS means you get LESS html, and it is simple html just for semantics (conveying meaning instead of visual style). CSS is then used to tell the browser how it should be displayed. My average html page size is just under 2KB, and it gets its look entirely from images and a 1KB css file. Basing your assessment of html+css being used correctly by looking at the bloated shit markup of incompetant morons who are using it wrong is not the way to go.

  67. 109 KB of just text by tepples · · Score: 1

    even highly complex layouts can be done without going above 100KB even with lots of graphics 100 KB of data takes 20 seconds to transfer and lay out on some devices and on some networks. And try navigating Wikipedia articles that contain 109 KB of just text using a 256x192 pixel touch screen.
  68. Not having to download the entire HTML by tepples · · Score: 1

    I realise you have to download the same amount of HTML which might not be optimised for slower connections Which is the entire point. Imagine the use case of reading an article on Wikipedia, let's say a long one such as Tetris or George W. Bush. On a PC with a full-page screen, full CPU, full RAM, and a transfer cap in the tens of gigabytes per month, you want to load the article's full text. On a handheld device with a smaller screen, smaller CPU, smaller RAM, and a smaller transfer cap, you may want to load just the lead section and the table of contents, then load other sections only once you follow a link from the table of contents.
    1. Re:Not having to download the entire HTML by 1110110001 · · Score: 1

      The solution would be the Accept header. Just add a parameter like a media type. Of course clients and servers need to understand such a parameter, but it wouldn't be hard to add.

  69. Re:Web for more than one platform? The HORROR! by ajs318 · · Score: 1

    No, standards alone won't help in this case (unless they used CSS properly and indicated that smaller images were available specifically for mobile devices).

    The problem with Vodafone's proxy method, is that there's no way for site owners to know in advance that their site is about to be (possibly) munged. At least if it sent a special browser ident, and the details of its munging processes were published, then savvy people could code properly against it.

    --
    Je fume. Tu fumes. Nous fûmes!
  70. At some point it becomes an issue by Anonymous Coward · · Score: 0

    If my site is designed such that something happens and you modify it such that something else happens, we may have an issue. Clearly, copyright affects creative work but we have seen that 'creative' can be quite broadly defined.

    Circumstances alter cases and the idea is not nearly as risible as you purport it to be. Consider the following page: http://www.accesscopyright.ca/Default.aspx?id=125 They clearly think they can forbid you from modifying their content. If, by modifying a header file, you cause their content to be modified then they may have an actionable tort.

  71. Sheer size of text in pages by tepples · · Score: 1

    For content that can be displayed on both then how about text? How well would an encyclopedia article containing 100 KB of text display on a 256x192 pixel screen, CSS or no CSS?
    1. Re:Sheer size of text in pages by IBBoard · · Score: 1

      That's sheer amount of text, not size (which normally means font size, which can be controlled by the phone). I'm sure 100KB of Encyclopedia text would display fine on a small screen, just the same as how 1KB of text would.

      If the user is going to an Encyclopedia page then they probably want lots of information (because that's what encyclopedias give you). If they want lots of information and they're on a small screen then they should know they'll need to scroll. If they know they need to scroll then 100KB of properly laid out Encyclopedia data (with anchors) should display fine and the user should be happy. If they want a big encyclopedia article and get the website saying "oh, you're a mobile therefore I'll give you the ten-word definition with no detail as if I was a dictionary" then they'd not be getting what they asked for.

    2. Re:Sheer size of text in pages by tepples · · Score: 1

      If they want a big encyclopedia article and get the website saying "oh, you're a mobile therefore I'll give you the ten-word definition with no detail as if I was a dictionary" Every encyclopedia article on Wikipedia contains a lead of a couple paragraphs (by no means "ten words"). If the article is not a stub, this lead is followed by several sections.

      If they know they need to scroll then 100KB of properly laid out Encyclopedia data (with anchors) should display fine and the user should be happy.

      Then what if the user only wants the lead, the TOC, and one or two sections? Should the user have to pay per kilobyte for the whole article, which will typically be much more expensive on a mobile connection than on a wired or fixed wireless connection? Another problem is that some widely deployed mobile web browsers like to make the user interface unresponsive while the 100 KB of properly laid out data and associated images, scripts, and CSS are loading. If a web site triggers the browser's deficiencies, users are likely to blame the site and not the browser.

      And what about the pictures? If a photo in an article is 500 pixels wide, what use is sending all 500 pixels upon the initial page load to a device whose screen is 256x192 pixels?

    3. Re:Sheer size of text in pages by IBBoard · · Score: 1

      Then what if the user only wants the lead, the TOC, and one or two sections? Should the user have to pay per kilobyte for the whole article, which will typically be much more expensive on a mobile connection than on a wired or fixed wireless connection?


      No, they shouldn't have to download all of it and pay for 100KB. What should happen is that if there is demand for the ability to download just the lead then Wikipedia should have special URLs for them as "/wiki/article" and "/wiki/article_lead" are two different resources with two different purposes (one is to give you all of the details, the other is to just summarise it).

      And what about the pictures? If a photo in an article is 500 pixels wide, what use is sending all 500 pixels upon the initial page load to a device whose screen is 256x192 pixels?


      If there's an image that large embedded in a Wikipedia page and not linked then someone needs shooting. If it is any other page then I'd hope that either the browser doesn't automatically download any and all images or else the user knows what to expect when hitting random pages on the Net with a mobile phone where they pay by the KB.

      But that's beside the point. The original response was that text, not a Wiki article with images etc, would display perfectly fine on both a mobile phone display and an uber-widescreen monitor (with or without the use of CSS).
  72. Reflows by tepples · · Score: 1

    Also, there's Opera for Nintendo DS that runs in that, oh, a few megs of RAM Nintendo DS has. So I'm waiting for Nintendo DS Browser to finish loading a Wikipedia article. There's about a 1 second lag between when I tap the screen and when the scrolling happens. Worse yet, it reflows the text at least three times as CSS and images pour in, causing the text I'm reading to move above or below the screen area.
  73. display: none does not save HTML bandwidth by tepples · · Score: 2, Insightful

    CSS provides Media Descriptors that allow specific stylesheets to be used depending on the presentation media.

    'Handheld' is such a descriptor. Setting large parts of an HTML page to use a CSS class such that @media handheld { .someclass { display: none; } } doesn't keep the HTML from being downloaded, doesn't keep the download from taking time, and doesn't keep the download from counting toward the user's monthly cap.
  74. SVG for photos? by tepples · · Score: 1

    This in turn enables me to, say, scale images to an optimal width server side. It saves a lot of bandwidth and makes full use of a larger screen. That's what SVG is for. Good luck converting a photograph to SVG format without just embedding it as a PNG or JPEG texture.
  75. We went through this one months ago by Anonymous Coward · · Score: 0

    I work for one of the many companies impacted. Several months ago we noticed the volume of complaints about mobile content downloads not working had risen.

    We looked, and they were all Vodafone UK customers. We looked on our server and found all accesses were now by Mozilla Firefox.

    Our site has to deliver content specific to each make and model of handset. This is to due to the miryad of capabilities the handsets offer and we want each customer to receive the best version of the product. We use http://wurfl.sourceforge.net/ to help with this, armed with an XML overlay maintained in-house reflecting certain "real-world" situations we are aware of. We have gigs of essentially duplicate content to this end.

    If you suggest the User-Agent should not be a factor here, you clearly aren't earning money in the mobile applications marketplace. It is essential.

    We traced the IP address range being used to a German company and asked them to explain what was happening. A very nice, but exasperated, chap responded that Vodafone had outsourced their mobile internet gateway to them but had failed to supply the whitelist of acknowledged content download sites. We asked what list, and were told we were obviously another company who'd not been told. We submitted a list of domains that we ship content from and basically had to wait for the User-Agent to be switched back on again.

    Meanwhile our customers were being politely told on our download sites that their phone wasn't supported. Which isn't particularly helpful to either party.

    Several days later the mobile User-Agent became visible and our download sites appeared from the consumer to have been fixed. Not our fault, we changed nothing. Consumer doesn't know that though, they wanted their ringtone.

    Unfortunately, now manufacturers and operators have added a new trick to have to deal with. They've begun shipping phones with serial numbers and firmware revisions in the User-Agent string. This means we now have a massive computational problem with best-matching. There appears to be no reason behind it, no justification. It just makes download sites break frustrating the consumer.

    Oh, and while I'm in rant mode - those of you who think the online shop selling the ringtones get the full GBP1.50 revenue from that billed text message, think again. We're lucky to see 90p of it, far less from Virgin customers. The mobile operators take a huge chunk of our money. The same is true when you dial a premium rate number (say GBP1.50 per minute) from a mobile phone and see you've been billed GBP2.50 or GBP3.50 or more - it's not us Guv' - it's the operators/networks.

    1. Re:We went through this one months ago by greenius · · Score: 1

      Can someone mod the parent post of this one up... as it describes a real world situation where this is a big problem.

      We develop java applications and games for mobile phones. There are thousands of handsets all with different capabilities, screen sizes, limitations, key-scan codes.

      When the user wants to download a product from a wap site, they just want to click a link and get the correct version for their phone which has graphics the correct size, responds to the correct key codes, has sound in the correct format for that phone, includes handset specific features. Many users don't even know the model of handset they own! And there are significant differences between phones even of similar model number, eg. Nokia 6230 has a different screen size than a Nokia 6230i (128x128 and 208x208 respectively).

      The mobile java libraries (MIDP) are very simple and do not have features such as image resizing; some phones have absurdly small memory limits (eg. 64K) which mean you can only afford to squeeze in graphics of the correct size and cut out features on those phones. eg. You can't make an application that looks good on a 352x416 sized screen (eg. Nokia N80 with several megabytes of memory) and a 128x128 screen (eg. Nokia 7210 with 64K file size limit).

      Thus it is impossible to make a good quality non-trivial application that will run on all phones. We typically have over 50 different builds to support the several hundred handset models required to cover the most common phones used in Europe.

      Using the user-agent in conjunction with databases of handset specifications such as the wurlf.xml file allows this to be automatic in most cases. If the user-agent is stripped out then this is impossible and you have to resort to something like asking the user what handset they have.

      Another problem is trying to make network based applications mobile phone java applications. Many phones do not support Socket Connections in their MIDP implementation so the only solution is to use HTTP connections. Even on newer phones with Socket Connection implementation it doesn't work on all operators depending on calling plans, so HTTP is the only common fall back protocol. For a network based application you need the data that is included in the body to be what your server sent or else it will break the application.

      When Vodafone turned this system on, instead of getting back our data from a HTTP GET request, it sent a Vodafone HTML page telling the user about the gateway.. of course my handset app had no idea how to handle this as it was expecting the data our server had sent it! If the user has previously agreed to the gateway, then all your data has vodafone headers and footers around your own body.

      There are ways to disable the gateway, eg. setting cache-control header or setting the content-type to something other than text/html... but this should not have been neccessary.

      The danger is now that other operators will do something similar, and each one will have a different work-around required, or it will be a full time job applying to be in white-lists. There are hundreds of operators around the world and we can't keep up to date with every quirk of their systems.

      --
      I copied this sig from someone else (but where did they get it from?)
  76. Re:Neat! Can I access the cell-page with a compute by eihab · · Score: 1

    There's no way advertisers are going to accept the idea that mobile versions of pages have no ads.

    Advertisers (like Google AdSense) cannot dictate what you do when you offer your content in a separate medium, unless you have some sort of a contract with them.

    The only one who would be upset about the lack of advertisements on the mobile version is the content publisher. They (content publishers) can integrate ads in a "screens" fashion like you suggested which will probably be bad for business. Or they can do what sites like Slashdot does, i.e. cripple the mobile version so it's only useful for a quick summary/scan, which forces the user to favor and use the web version that has advertisements.
    --
    If you can't mod them join them.
  77. And Web developers are mad by slapout · · Score: 1

    "And Web developers are mad"

    You're telling me. Oh, wait, you meant the other kind of mad. Nevermind

    --
    Coder's Stone: The programming language quick ref for iPad
  78. Blame lazy developers. by MikeFM · · Score: 1

    Probably for the same reason we don't have an attribute to define which browser the style is for or an attribute to define what screen size, orientation, and color depth th style is for. Most developers are to lazy to use such tools and those that aren't are mostly purists that don't think making multiple versions of content for different uses is acceptable.

    Of course it's even worse on phones because most don't properly support the media attribute. They'll either use the screen style or, worse, use both the screen and handheld style. There is no sane behavior that works on every phone. Of course phone browsers should just be a real, fully standards compliant, web browser. There is no excuse anymore for crappy browsers that don't work well.

    Handheld is kind of a dumb idea anyway because there are so many different handheld devices. It'd make more sense to be able to define screen sizes, orientation, and color depth for different styles so that the phones can try to figure out which, of several, styles to use. It'd also be nice for websites viewed on computers as it'd let you enable your site to work on ancient cruddy systems without holding back on making them really nice for modern systems. Anyone that has a site that sometimes gets viewed by some freak running IE4 at 640x480, especially if they are in management at your company, knows how painful it is to deal with. Sure most of your viewers may be using IE7 and Firefox with a screen size of 1024x768 or greater but they'll just have to look at an ugly, hard to use, site crammed over into the upper left hand side of their window.

    So, it's the fault of developers. Lazy developers of web browsers for phones don't follow standards. Lazy developers of websites don't follow standards. Lazy standards bodies don't properly create standards to handle real world problems.

    --
    At what price learning? At what cost wisdom? The price is a man's peace of mind, and the cost is his life.
  79. Re:Web developers can kiss my fat white ... poster by ranrub · · Score: 1

    You can't write browser-agnostic pages for mobile phones. The browsers suck too much. Writing browser agnostic will result in pages using the least common denominator of the mobile phone capabilities, and believe me it's not pretty.

  80. Re:Web developers can kiss my fat white ... poster by johnkzin · · Score: 1


    Yes, you can write browser agnostic web pages that work well on (desktop, laptop, text-only, PDA, mobile, multiple browsers instead of only on variations of IE, etc.) just fine. You just can't include useless crap in the page.

  81. Does media type specify length? by tepples · · Score: 1

    The solution would be the Accept header. Just add a parameter like a media type. An Internet media type is the same thing as what used to be called a "MIME type". HTML with one page per section and HTML with the whole article on one page are both of type text/html;charset=utf-8, regardless of the size. How would you propose extending HTTP to add Accept-Length:?

    Of course clients and servers need to understand such a parameter Good luck. A lot of shared hosting companies give so little of a damn about conforming to web standards that they insert invalid HTML into every page that they serve and won't add new Internet media types except to customers on a higher service plan.
    1. Re:Does media type specify length? by 1110110001 · · Score: 1

      Like your charset you could also define the output media like it's done in CSS:
          Accept: text/html, text/html;media=pda
      Nothing fancy. And as it's still the same type, you're only more specific.

  82. Mobile Web Is Dead Not Sleeping by gig · · Score: 1

    The $299 iPod runs full Web 2.0 sites, same as the $399 iPhone. Everyone who is not named Apple is copying that approach right now.

    The idea that there is a separate mobile Web is anachronistic in the extreme. Even before the iPhone it was a stretch to think we were going to create a shadow Web for mobiles. Once you use an iPhone you can clearly see that we don't have to.

    The whole idea of Web 2.0 development is you don't have to make multiple sites, you can build one site that scales. If you close your eyes to IE you see we are already living in the future. Mobiles are full citizens on the Web now, if you have a full Web browser.

    Always on broadband network connection and no Web 2.0 browser? Bullshit. An anachronism.

  83. User Agent vital until hell freezes over by eelko · · Score: 1

    I hear a lot of people calling out that they need the user agent to scale images, but it's more than that.

    Certain phones do not support tables, some do. Some support background colors, some don't. Or some do in certain circumstances. They also can or cannot support left or right alignment of images. Some phones can talk wml, xhtml or some other lingo. Some phones support video, some don't. If they do support video, you definately want to know how large the screen is to make sure you provide the right links, and you want to know what kind of video it supports best: there is a huge difference in optimization there. Phones also support different kinds of ringtones (but that's common knowledge, I hope). Also, phones that claim in their request-headers to have a screen of 320x240, effectively have a screen of 300x220 because the browser itself takes a number of pixels from the border.

    To optimize all these things, you need the user agent string. Not just the type of handset, but the exact string because each update of a handset can mean different settings for pixels, ringtones, video, page-layout, etc etc. For instance: an mp3-ringtone that works on a handset of operator A will be switched off by operator B "because they don't want their handsets to support mp3 due to legal regulations", which you can only see through the exact user agent string. If you're lucky...

    So taking away the user agent string is one step taken too early. Phones do not support the same things at this moment, and a proxy server cannot "translate" all content for you, if a decision is made in the server what content you'll be served according to the user agent. And what they support depends heavily upon the mobile phone industry _and_ the operators that patch & hand out mobile phones...

    Once all handsets support the same features and all have at least 640x480 screens, then Vodafone can do whatever they like. Roughly estimated that'll be when hell freezes over, or perhaps in a few decades.

  84. Answer: SVG by psyclone · · Score: 1

    Vector graphics should scale beautifully to any size. (It might be processor heavy though.) And some simple [java]script to manage a dynamic UI will hopefully not be too processor intensive.

    1. Re:Answer: SVG by SurturZ · · Score: 1

      The problem with image/document scaling is that it is different to application resizing. For example, if you scale a picture/document, you basically just want it bigger. If you maximise your word processor though, you want all the icons to stay the same size but the area you type in to display more text. It is the tension between these two that causes much of the problems with web apps.

  85. Does anyone use .mobi ? by psyclone · · Score: 1

    Does anyone use .mobi domains?