Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,15 @@
<gap:splash src="res/screen/ios/screen-ipad-portrait.png" gap:platform="ios" width="768" height="1024" />
<gap:splash src="res/screen/ios/screen-ipad-landscape.png" gap:platform="ios" width="1024" height="768" />
<gap:splash src="res/screen/windows-phone/screen-portrait.jpg" gap:platform="winphone" />

<!-- to enable individual permissions use the following examples -->
<feature name="http://api.phonegap.com/1.0/battery"/>
<feature name="http://api.phonegap.com/1.0/camera"/>
<feature name="http://api.phonegap.com/1.0/contacts"/>
<feature name="http://api.phonegap.com/1.0/file"/>
<feature name="http://api.phonegap.com/1.0/geolocation"/>
<feature name="http://api.phonegap.com/1.0/media"/>
<feature name="http://api.phonegap.com/1.0/network"/>
<feature name="http://api.phonegap.com/1.0/notification"/>

</widget>
Binary file added images/SecondInterfaceTest_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/ajax-loader.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/custom/images/SecondInterfaceTest_01.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/custom/images/SecondInterfaceTest_02.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/custom/images/SecondInterfaceTest_03.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/custom/images/SecondInterfaceTest_04.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/custom/images/SecondInterfaceTest_05.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icons-18-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icons-18-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icons-36-black.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/icons-36-white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
372 changes: 330 additions & 42 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,42 +1,330 @@
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
<link rel="stylesheet" type="text/css" href="css/index.css" />
<title>Hello World</title>
</head>
<body>
<div class="app">
<h1>PhoneGap</h1>
<div id="deviceready">
<p class="status pending blink">Connecting to Device</p>
<p class="status complete blink hide">Device is Ready</p>
</div>
</div>
<script type="text/javascript" src="phonegap.js"></script>
<script type="text/javascript" src="js/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>My Task List</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="jquery.mobile-custom.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>






<!-- ####### USER PAGES ####### -->

<div data-role="page" id="userinfo">

<div data-role="header" data-position="fixed">
<h1>User</h1>
<div data-role="navbar">
<ul>
<li><a href="#userinfo" class="ui-btn-active ui-state-persist" >Info</a></li>
<li><a href="#useritems" >Items</a></li>
<li><a href="#userrequests" >Requests</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" class="ui-btn-active ui-state-persist" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

<div data-role="page" id="useritems">

<div data-role="header" data-position="fixed">
<h1>User</h1>
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >Info</a></li>
<li><a href="#useritems" class="ui-btn-active ui-state-persist" >Items</a></li>
<li><a href="#userrequests" >Requests</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" class="ui-btn-active ui-state-persist" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

<div data-role="page" id="userrequests">

<div data-role="header" data-position="fixed">
<h1>User</h1>
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >Info</a></li>
<li><a href="#useritems" >Items</a></li>
<li><a href="#userrequests" class="ui-btn-active ui-state-persist" >Requests</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" class="ui-btn-active ui-state-persist" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->





<!-- ####### HOUSE PAGES ####### -->

<div data-role="page" id="housetask4sale">

<div data-role="header" data-position="fixed">
<h1>House</h1>
<div data-role="navbar">
<ul>
<li><a href="#housetask4sale" class="ui-btn-active ui-state-persist" >tasks 4 sale</a></li>
<li><a href="#housethisweek" >This Week</a></li>
<li><a href="#housenextweek" >Next Week</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale"class="ui-btn-active ui-state-persist" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

<div data-role="page" id="housethisweek">

<div data-role="header" data-position="fixed">
<h1>House</h1>
<div data-role="navbar">
<ul>
<li><a href="#housetask4sale" >tasks 4 sale</a></li>
<li><a href="#housethisweek" class="ui-btn-active ui-state-persist" >This Week</a></li>
<li><a href="#housenextweek" >Next Week</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" class="ui-btn-active ui-state-persist" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

<div data-role="page" id="housenextweek">

<div data-role="header" data-position="fixed">
<h1>House</h1>
<div data-role="navbar">
<ul>
<li><a href="#housetask4sale" >tasks 4 sale</a></li>
<li><a href="#housethisweek" >This Week</a></li>
<li><a href="#housenextweek" class="ui-btn-active ui-state-persist" >Next Week</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer"data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" class="ui-btn-active ui-state-persist" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->




<!-- ####### CLEAN OFF PAGES ####### -->

<div data-role="page" id="cleanoffcurrent">

<div data-role="header" data-position="fixed">
<h1>Clean-Offs</h1>
<div data-role="navbar">
<ul>
<li><a href="#cleanoffcurrent" class="ui-btn-active ui-state-persist" >Current</a></li>
<li><a href="#cleanoffcompleted" >Completed</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" class="ui-btn-active ui-state-persist" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->


<div data-role="page" id="cleanoffcompleted">

<div data-role="header" data-position="fixed">
<h1>Clean-Offs</h1>
<div data-role="navbar">
<ul>
<li><a href="#cleanoffcurrent" >Current</a></li>
<li><a href="#cleanoffcompleted" class="ui-btn-active ui-state-persist" >Completed</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" class="ui-btn-active ui-state-persist" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

<!-- ####### SHOP PAGE ####### -->


<div data-role="page" id="shoppage">

<div data-role="header" data-position="fixed">
<h1>Shop</h1>
<div data-role="navbar">
<ul>
<li><a href="#shoppage" class="ui-btn-active ui-state-persist" >Items</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" class="ui-btn-active ui-state-persist" >Shop</a></li>
<li><a href="#settingstasks" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->


<!-- ####### SETTINGS PAGE ####### -->

<div data-role="page" id="settingstasks">

<div data-role="header" data-position="fixed">
<h1>Settings</h1>
<div data-role="navbar">
<ul>
<li><a href="#settingstasks" class="ui-btn-active ui-state-persist" >Tasks</a></li>
<li><a href="#settingsusers" >Users</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" class="ui-btn-active ui-state-persist" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->


<div data-role="page" id="settingsusers">

<div data-role="header" data-position="fixed">
<h1>Settings</h1>
<div data-role="navbar">
<ul>
<li><a href="#settingstasks" >Tasks</a></li>
<li><a href="#settingsusers" class="ui-btn-active ui-state-persist" >Users</a></li>
</ul>
</div><!-- /navbar -->
</div><!-- /header -->


<div data-role="footer" data-position="fixed">
<div data-role="navbar">
<ul>
<li><a href="#userinfo" >User</a></li>
<li><a href="#housetask4sale" >House</a></li>
<li><a href="#cleanoffcurrent" >Clean-Off</a></li>
<li><a href="#shoppage" >Shop</a></li>
<li><a href="#settingstasks" class="ui-btn-active ui-state-persist" >Setttings</a></li>
</ul>
</div><!-- /navbar -->
</div>
</div><!-- /page -->

</body>
</html>
Loading