forked from qooxdoo/qooxdoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-application.py
More file actions
executable file
·31 lines (29 loc) · 891 Bytes
/
Copy pathcreate-application.py
File metadata and controls
executable file
·31 lines (29 loc) · 891 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
# -*- coding: utf-8 -*-
################################################################################
#
# qooxdoo - the new era of web development
#
# http://qooxdoo.org
#
# Copyright:
# 2006-2012 1&1 Internet AG, Germany, http://www.1und1.de
#
# License:
# LGPL: http://www.gnu.org/licenses/lgpl.html
# EPL: http://www.eclipse.org/org/documents/epl-v10.php
# See the LICENSE file in the project's top-level directory for details.
#
# Authors:
# * Thomas Herchenroeder (thron7)
#
################################################################################
##
# Wrapper proxy for tool/bin/create-application.py
##
import sys, os
scriptDir = os.path.dirname(os.path.abspath(__file__))
scriptDir += "/tool/bin"
sys.path.insert(0, scriptDir)
filename = scriptDir+"/create-application.py"
exec(compile(open(filename).read(), filename, "exec"))