summaryrefslogtreecommitdiff
path: root/mobile/index.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-12-17 19:42:30 +0300
committerAndrew Dolgov <[email protected]>2009-12-17 19:42:30 +0300
commit3518718b25d2d7ff540040293b06b5e872f86216 (patch)
tree7d6d722ee2383f8df4f930c1ec191b7b246338dd /mobile/index.php
parentd5e71621fe571dae203094fd42d8fc9c83a2d483 (diff)
mobile: add experimental iUI based version
Diffstat (limited to 'mobile/index.php')
-rw-r--r--mobile/index.php75
1 files changed, 74 insertions, 1 deletions
diff --git a/mobile/index.php b/mobile/index.php
index 1078eedea..a2c51093c 100644
--- a/mobile/index.php
+++ b/mobile/index.php
@@ -1 +1,74 @@
-<?php require "tt-rss.php" ?>
+<?php
+ error_reporting(E_ERROR | E_WARNING | E_PARSE);
+
+ header('Content-Type: text/html; charset=utf-8');
+
+ define('MOBILE_VERSION', true);
+
+ require_once "../config.php";
+ require_once "functions.php";
+ require_once "../functions.php";
+
+ require_once "../sessions.php";
+
+ require_once "../version.php";
+ require_once "../db-prefs.php";
+
+ $link = db_connect(DB_HOST, DB_USER, DB_PASS, DB_NAME);
+
+ init_connection($link);
+
+ login_sequence($link, true);
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<title>Tiny Tiny RSS</title>
+<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"/>
+<link rel="apple-touch-icon" href="../lib/iui/iui-logo-touch-icon.png" />
+<meta name="apple-touch-fullscreen" content="YES" />
+<style type="text/css" media="screen">@import "../lib/iui/iui.css";</style>
+<script type="application/x-javascript" src="../lib/iui/iui.js"></script>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+
+</head>
+
+<style type="text/css">
+ img { max-width : 75%; }
+
+ li.oldItem {
+ color : gray;
+ }
+
+ img.tinyIcon {
+ max-width : 16px;
+ max-height : 16px;
+ margin-right : 10px;
+ vertical-align : middle;
+ }
+</style>
+
+<script type="text/javascript">
+ function toggleMarked(id, elem) {
+ alert(id + " => " + elem.getAttribute('toggled'));
+ }
+
+ function togglePublished(id, elem) {
+ alert(id + " => " + elem.getAttribute('toggled'));
+ }
+
+</script>
+
+<body>
+ <div class="toolbar">
+ <h1 id="pageTitle"></h1>
+ <a id="backButton" class="button" href="#"></a>
+ <a class="button" target="_self" href="logout.php">Logout</a>
+ </div>
+
+ <?php render_categories_list($link); ?>
+
+</body>
+</html>