Web Browsers on PDAS
The Evolution of Web Browsers on PDAs
As soon as the hardware existed to allow Personal Digital Assistants (PDAs) to access the internet, users naturally sought a way to get them online. While early attempts were limited to basic data retrieval, the expansion of the World Wide Web in the 1990s necessitated the development of dedicated mobile browsers.
These tools served as the vanguard of the mobile web, bridging the gap between stationary computing and the eventual dominance of the smartphone.
Categorizing PDA Browsers
Broadly speaking, these browsers fell into two distinct architectural categories:
- Limited Protocol Browsers: These were restricted to specific mobile standards such as
i-mode(iモード),WAP(Wireless Application Protocol), andWML(Wireless Markup Language). - Standard Web Browsers: These were more ambitious, adhering to broader web standards and capable of rendering
HTMLpages.
Note: Because the web was in its infancy during the early PDA era, a significant amount of documentation and historical data from this period was never digitized or has since vanished. Much of this history remains locked in isolated archives, making comprehensive research difficult.
Due to the sheer volume of devices released, this analysis is organized by Operating System.
The Evolution of Connectivity
Before integrated chips, getting a PDA online was a cumbersome process. The progression of connectivity can be visualized as follows:
- The '90s: Users relied on external modems, dial-up connections, and synchronization with a desktop PC.
- Late '90s: Infrared (IR) ports became common. By aligning a PDA's IR port with a mobile phone, users could establish a connection, though it was notoriously and .
- The Millennium: Devices began featuring internal antennas. Many users adopted bulky expansion modules containing cellular modems or Wi-Fi cards.
- 2003: High-end models finally integrated Wi-Fi and Bluetooth directly into the chassis.
EPOC (SIBO / EPOC16)
Developed by Psion and debuting in 1989, EPOC (often referred to as EPOC16 due to its 16-bit architecture) did not foster a massive ecosystem of third-party browsers.
Early Software
The first attempt was PsiMail Internet, which featured a browser simply called Web. Its capabilities were minimal:
- Roughly adhered to
HTML2. Rendered tables correctlyTables were displayed improperly, cell by cell.- Supported GIFs and forms.
- No JPEG support; images were disabled by default.
Psion also bundled STNC HitchHiker (created by the UK startup STNC). However, after Microsoft acquired STNC in 1999 to bolster their own Windows Mobile efforts, development for EPOC ceased.
The Opera Era
In 2000, Psion partnered with Opera. The release of Opera 3.62 brought a massive leap in functionality:
| Feature | Specification |
|---|---|
| Color Support | Full color (256 colors) |
| Security | 128-bit encryption, SSL 2/3, TLS 1.0 |
| Web Standards | HTML 3.2, CSS1, JavaScript 1.1 |
| Extras | Java Applets (native EPOC implementation), Zoom keys |
Apple Newton
The Apple Newton (1993) is the device that actually coined the term "PDA." To enable connectivity, Apple released the Newton Internet Enabler in 1996, which provided:
- An
Internet Setupapplication. - A
TCP/IPstack. - A
NewtonScript API.
Notable Newton Browsers
1. PocketWeb
Launched in late 1994 by TecO (originally called NewtonWWW), it evolved through several updates. To overcome the Newton's hardware constraints, it occasionally utilized an external proxy. Version 2.4 finally introduced GIF support.
2. NetHopper Released in 1996 by AllPen Software, this browser featured:
- Image scaling to fit the screen (images off by default).
- Bookmark management (create/edit/delete).
- A "headings list" for quick navigation.
- A plug-in architecture (ironically, it required a plug-in just to support
HTTP).
NetHopper was bundled with some devices until AllPen was bought by Spyglass in 1997. Spyglass eventually abandoned the project after Apple killed the Newton line, and Spyglass itself was later acquired by OpenTV.
3. Newt's Cape (Newtscape)
A 1999 release by independent developer Steve Weyer. It supported HTML 2.0 (with some 3.2 elements), basic formatting, and forms. It was often paired with Hemlock, a tool that aggregated search results from various sources.
4. LunaSuite Pro Released around 1997/98, this was the most powerful option, featuring LunaSuite Web. It operated via three primary interfaces:
Go-To: Direct URL entry.Bookmarks: Managed lists of pages.LunaRoamer: A comprehensive browser shell that integrated the other two.
LunaSuite Capabilities:
- GIF and JPEG support (including animations)
- Audio support (
.auformat) - HTML 3.2 (Frames, Tables, Forms)
- Configurable URL filtering
Note: Because it was so feature-rich, it often strained the Newton's hardware, leading to frequent system instability.
5. Courier A late entry (2003) for Newton OS 2.1. Courier was a minimalist, text-only browser that uniquely treated webpages as if they were notes within the Newton's native notepad.
// Conceptual representation of a text-only browser render
function renderPage(htmlContent) {
return htmlContent.stripTags().convertToNoteFormat();
}