View Single Post
Posts: 3,319 | Thanked: 5,610 times | Joined on Aug 2008 @ Finland
#22
Originally Posted by nowave7 View Post
But people still refer to WebOS as a real OS.
Still, it should not be that difficult to port some basic stuff on it, depending on the underlying blocks of course.
Errr... WebOS applications are technically something like self-contained web pages. No glibc, sdl/gtk/qt or somesuch (that's supposed to be the appeal - you just have to know web technologies and you're good to go). Here's how a hello world 'app' looks in WebOS

Code:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
	<title>Hello, world title!</title>
	
	<!-- Load the Mojo Framework -->
	<script src="/usr/palm/frameworks/mojo/mojo.js" type="text/javascript" x-mojo-version="1"></script>
</head>

<body>

	<!-- Make a fancy Pre-looking header -->
	<div class="palm-page-header">
		<div class="palm-page-header-wrapper">
			<div class="title">
				My First webOS App!
			</div>
		</div>		
	</div>
	
	<!-- Make a fancy Pre-looking button -->
	<button class="palm-button" id="my-awesome-button">I'm an awesome button!</button>
	
	<!-- Just some text -->
	<div id="content">
		Hello, world!<br/>
		<img src="icon.png"/>
	</div>
	
	<!-- Footer -->
	<div id="app-footer">
		<hr/>
		© 2009 <a href="http://www.evan.pro/">Evan Coury</a>
	</div>
	
</body>
</html>
 

The Following 2 Users Say Thank You to attila77 For This Useful Post: