← All reviews

Use of RSS feeds for content adaptation in mobile web browsing

Alexander Blekas, John Garofalakis, Vasilios Stefanis · 2006 · Proceedings of the 2006 International Cross-Disciplinary Workshop on Web Accessibility (W4A) · doi:10.1145/1133219.1133233

Summary

This paper from the University of Patras presents a proxy-based system that uses RSS (Really Simple Syndication) feeds to adapt web content for mobile phone browsing. The authors address the fundamental challenge that desktop web pages are largely inaccessible on mobile devices due to screen size constraints (typically 128x128 to 176x220 pixels), limited memory, slow data transfer rates, and per-kilobyte billing that makes downloading large pages costly. The system works as an intermediary proxy server that fetches web pages, detects whether RSS feeds are available, and offers users two paths: browsing via the structured RSS feed data (which contains pre-summarized content with titles, descriptions, and links) or a general content adaptation that strips away scripts, styles, images, forms, iframes, and layout tables. The paper reviews four general approaches to mobile content adaptation — device-specific authoring, multi-device authoring, automatic re-authoring, and client-side navigation — and positions their RSS-based approach as an enhancement to automatic re-authoring that leverages existing structured metadata rather than trying to infer content importance algorithmically. The system was built using PHP and Apache, requiring only a WAP 2.0 compatible browser on the client side.

Key findings

The system achieved approximately 80% reduction in page size across tested websites. For CNN.com, a 313KB page was reduced to about 12KB when using RSS feeds. For ACM.org (which lacked RSS feeds), the general content adaptation reduced a 100KB page to at most 20KB. The system implements several practical design decisions informed by mobile usability guidelines: pages are split at paragraph boundaries when exceeding 10KB to prevent memory issues on any WAP 2.0 device; linked images are replaced with text hyperlinks using alt text (or "IMG:" plus the URL when alt text is missing); tables are linearized by presenting each cell on a new line with recursive handling of nested tables; and all hyperlinks are rewritten to route through the proxy for transparent continued browsing. The system offers three viewing modes — full adapted content, links only, and text only — allowing users to quickly scan for relevant information. A keyboard shortcut (pressing 0) provides quick access to the navigation menu at the bottom of each page.

Relevance

While the specific technologies discussed (WAP 2.0, RSS feeds as a primary content format, per-kilobyte mobile billing) are largely historical, this paper documents important principles that remain relevant to accessibility practice. The core insight — that structured, semantic data (RSS/XML) produces better adapted content than trying to reverse-engineer visual layouts — anticipates modern approaches to responsive design and semantic HTML. The system's handling of images is particularly instructive: replacing linked images with alt text hyperlinks mirrors exactly what screen readers do, highlighting the deep overlap between mobile adaptation and assistive technology needs. The paper's comprehensive mobile design guidelines (minimize text input, avoid horizontal scrolling, place important content first, use consistent colors, avoid color-name references) remain sound advice for accessible mobile design today. The 80% content reduction also demonstrates how much of typical web page weight is non-essential decoration — a consideration that matters for users on slow connections or with cognitive disabilities who benefit from reduced information density.

Tags: mobile accessibility · content adaptation · proxy server · RSS · mobile browsing · small screen devices

Standards referenced: XHTML-MP · WAP 2.0 · DOM Level 2