This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> generateSenchaTouch2Project.sh | |
---------------------------------- | |
SENCHA TOUCH 2 PROJECT GENERATOR | |
---------------------------------- | |
Developed by David Tucker (http://www.davidtucker.net) | |
Project Hosted on Github (https://github.com/davidtucker/senchaTouch2Tools) | |
This code is licensed with an MIT License which can be viewed at | |
http://www.opensource.org/licenses/mit-license.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alias /st2 /Projects/SenchaTouch2 | |
<Directory "/Projects/SenchaTouch2"> | |
Options Indexes FollowSymLinks MultiViews | |
AllowOverride All | |
Order allow,deny | |
Allow from all | |
</Directory> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define("CoffeeHunter.view.Main", { | |
extend: "Ext.TabPanel", | |
xtype: "main", | |
config: { | |
tabBarPosition: "bottom", | |
ui: "brown", | |
items: [ | |
{ | |
xtype: "locations", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sample EaselJS Component | |
(function (window) { | |
function SampleComponent () { | |
this.initialize(); | |
} | |
SampleComponent.prototype = new Shape(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
========================================================================== | |
Macro: generateManifestFile | |
Creates a manifest file for components using the [Manifest( "ComponentName" )] | |
metadata. | |
========================================================================== | |
--> | |
<macrodef name="generateManifestFile"> | |
<attribute name="outputFile" default="${basedir}/manifest.xml" /> | |
<attribute name="sourceDirectory" default="src" /> |
NewerOlder