Skip to content

Commit

Permalink
Initial add of StoreMap for Ext JS
Browse files Browse the repository at this point in the history
  • Loading branch information
Stuart98 committed Jan 6, 2014
1 parent d517227 commit 5d2e234
Show file tree
Hide file tree
Showing 7,619 changed files with 2,931,265 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
11 changes: 11 additions & 0 deletions .sencha/workspace/plugin.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<project basedir=".">
<!--
If framework.config.dir is already set, this next task will do nothing and
the original value will remain... but if framework.config.dir is not yet
defined, we are running in a workspace sans framework and so we need to go
directly to the plugin base from cmd.config.dir instead.
-->
<property name="framework.config.dir" value="${cmd.config.dir}"/>

<import file="${framework.config.dir}/plugin.xml"/>
</project>
35 changes: 35 additions & 0 deletions .sencha/workspace/sencha.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#Mon, 23 Dec 2013 22:28:51 +0000
# -----------------------------------------------------------------------------
# This file contains configuration options that apply to all applications in
# the workspace. By convention, these options start with "workspace." but any
# option can be set here. Options specified in an application's sencha.cfg will
# take priority over those values contained in this file. These options will
# take priority over configuration values in Sencha Cmd or a framework plugin.

# -----------------------------------------------------------------------------
# This configuration property (if set) is included by default in all compile
# commands executed according to this formulation:
#
# sencha compile -classpath=...,${framework.classpath},${workspace.classpath},${app.classpath}

#workspace.classpath=

#------------------------------------------------------------------------------
# This is the folder for build outputs in the workspace

workspace.build.dir=${workspace.dir}/build

#------------------------------------------------------------------------------
# This folder contains all generated and extracted packages.

workspace.packages.dir=${workspace.dir}/packages

workspace.theme.dir=${workspace.packages.dir}/${args.themeName}

# =============================================================================
# Customizations go below this divider to avoid merge conflicts on upgrade
# =============================================================================

workspace.cmd.version=4.0.1.45

ext.dir=${workspace.dir}/ext
Binary file added build/Ext.ux.StoreMap/Ext.ux.StoreMap.pkg
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// @tag full-page
// @require /Users/stuart/Documents/Workspace/Ext.ux.StoreMap/StoreMap/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Ext.setVersion("ext-theme-base", "4.2.1");
Ext.setVersion("ext-theme-classic", "4.2.1");
Ext.setVersion("ext-theme-neutral", "4.2.1");
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// @tag full-page
// @require /Users/stuart/Documents/Workspace/Ext.ux.StoreMap/packages/Ext.ux.StoreMap/examples/TouchSample/app.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Ext.setVersion("Ext.ux.StoreMap", "1.0.0");
Ext.setVersion("ext-theme-base", "4.2.1");
Ext.setVersion("ext-theme-classic", "4.2.1");
Ext.setVersion("ext-theme-neutral", "4.2.1");
77 changes: 77 additions & 0 deletions ext/bootstrap.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
/*
This file is part of Ext JS 4.2
Copyright (c) 2011-2013 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314)
*/
/**
* Load the library located at the same path with this file
*
* Will automatically load ext-all-dev.js if any of these conditions is true:
* - Current hostname is localhost
* - Current hostname is an IP v4 address
* - Current protocol is "file:"
*
* Will load ext-all.js (minified) otherwise
*/
(function() {
var scripts = document.getElementsByTagName('script'),
localhostTests = [
/^localhost$/,
/\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)(:\d{1,5})?\b/ // IP v4
],
host = window.location.hostname,
isDevelopment = null,
queryString = window.location.search,
test, path, i, ln, scriptSrc, match;

for (i = 0, ln = scripts.length; i < ln; i++) {
scriptSrc = scripts[i].src;

match = scriptSrc.match(/bootstrap\.js$/);

if (match) {
path = scriptSrc.substring(0, scriptSrc.length - match[0].length);
break;
}
}

if (queryString.match('(\\?|&)debug') !== null) {
isDevelopment = true;
}
else if (queryString.match('(\\?|&)nodebug') !== null) {
isDevelopment = false;
}

if (isDevelopment === null) {
for (i = 0, ln = localhostTests.length; i < ln; i++) {
test = localhostTests[i];

if (host.search(test) !== -1) {
isDevelopment = true;
break;
}
}
}

if (isDevelopment === null && window.location.protocol === 'file:') {
isDevelopment = true;
}

document.write('<script type="text/javascript" charset="UTF-8" src="' +
path + 'ext-all' + (isDevelopment ? '-dev' : '') + '.js"></script>');
})();
Loading

0 comments on commit 5d2e234

Please sign in to comment.