Commit 295dc6fe authored by Frank Bergmann's avatar Frank Bergmann

Initial Import

parents
Pipeline #631 failed with stages
<?xml version="1.0"?>
<!-- Generated by the OpenACS Package Manager -->
<package key="senchatouch-notes" url="http://openacs.org/repository/apm/packages/senchatouch-mynotes" type="apm_application">
<package-name>Sencha Touch Notes</package-name>
<pretty-plural>Sencha Touch Notes</pretty-plural>
<initial-install-p>f</initial-install-p>
<singleton-p>t</singleton-p>
<implements-subsite-p>f</implements-subsite-p>
<inherit-templates-p>f</inherit-templates-p>
<auto-mount>senchatouch-notes</auto-mount>
<version name="0.1d" url="http://openacs.org/repository/download/apm/senchatouch-notes-0.1d.apm">
<owner url="mailto:frank.bergmann@project-open.com">Frank Bergmann</owner>
<summary>Sencha Touch Notes Demo Application</summary>
<vendor url="http://www.project-open.com/">]project-open[</vendor>
<description format="text/plain">Allows users to list and create notes.</description>
<maturity>0</maturity>
<provides url="senchatouch-notes" version="0.1d"/>
<callbacks>
</callbacks>
<parameters>
<!-- No version parameters -->
</parameters>
</version>
</package>
Ext.application({
name: 'PO',
launch: function() {
Ext.create("Ext.tab.Panel", {
fullscreen: true,
tabBarPosition: 'bottom',
items: [{
title: 'Home',
iconCls: 'home',
html: [
'<center><img src="/senchatouch-notes/resources/startup/320x460.png"/></center>',
'<h1>]project-open[ Sencha Touch Notes</h1>',
"<p>This demo shows how to build Sencha Touch applications using ]po[."
].join("")
}, {
xtype: 'nestedlist',
title: 'Blog',
iconCls: 'star',
displayField: 'title',
detailCard: {
xtype: 'panel',
scrollable: true,
styleHtmlContent: true
},
listeners: {
itemtap: function(nestedList, list, index, element, post) {
this.getDetailCard().setHtml(post.get('content'));
}
},
store: {
type: 'tree',
fields: [
'title', 'link', 'author', 'contentSnippet', 'content',
{name: 'leaf', defaultValue: true}
],
root: {
leaf: false
},
proxy: {
type: 'jsonp',
url: 'https://ajax.googleapis.com/ajax/services/feed/load?v=1.0&q=http://feeds.feedburner.com/SenchaBlog',
reader: {
type: 'json',
rootProperty: 'responseData.feed.entries'
}
}
}
},
{
title: 'Contact',
iconCls: 'user',
xtype: 'formpanel',
url: 'contact.php',
layout: 'vbox',
items: [{
xtype: 'fieldset',
title: 'Contact Us',
instructions: '(email address is optional)',
items: [
{
xtype: 'textfield',
label: 'Name'
},
{
xtype: 'emailfield',
label: 'Email'
},
{
xtype: 'textareafield',
label: 'Message'
}
]
},
{
xtype: 'button',
text: 'Send',
ui: 'confirm',
handler: function() {
this.up('formpanel').submit();
}
}
]
}
]
});
}
});
\ No newline at end of file
{
"name": "List",
"js": [
{
"path": "/senchatouch-v211/sencha-touch-all.js"
},
{
"path": "app.js",
"update": "delta"
}
],
"css": [
{
"path": "/senchatouch-v211/resources/css/sencha-touch.css",
"update": "delta"
}
],
"appCache": {
"cache": [
"index.html"
],
"network": [
"*"
],
"fallback": []
},
"extras": [
"contacts.json",
"resources/icons",
"resources/loading"
],
"archivePath": "archive",
"buildPaths": {
"testing": "../../deploy/testing/list",
"production": "../../deploy/production/list",
"package": "../../deploy/package/list",
"native": "../../deploy/native/list"
},
"buildOptions": {
"product": "touch",
"minVersion": 3,
"debug": false,
"logger": "no"
},
"id": "3a867610-670a-11e1-a90e-4318029d18bb"
}
<!DOCTYPE HTML>
<html manifest="" lang="en-US">
<head>
<meta charset="UTF-8">
<title>]po[ Sencha Touch Notes Demo</title>
<script id="microloader" type="text/javascript" src="/senchatouch-v211/microloader/development.js"></script>
</head>
<body>
</body>
</html>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment