]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/samples/ide/activegrid/model/projectmodel.py
DocView and ActiveGrid IDE updates from Morgan Hua:
[wxWidgets.git] / wxPython / samples / ide / activegrid / model / projectmodel.py
diff --git a/wxPython/samples/ide/activegrid/model/projectmodel.py b/wxPython/samples/ide/activegrid/model/projectmodel.py
new file mode 100644 (file)
index 0000000..aafd8b8
--- /dev/null
@@ -0,0 +1,20 @@
+#----------------------------------------------------------------------------
+# Name:         projectmodel.py
+# Purpose:      This file contains project model information
+#
+# Author:       Morgan Hua
+#
+# Created:      4/18/06
+# CVS-ID:       $Id$
+# Copyright:    (c) 2006 ActiveGrid, Inc.
+# License:      wxWindows License
+#----------------------------------------------------------------------------
+
+
+#----------------------------------------------------------------------------
+# Constants
+#----------------------------------------------------------------------------
+LANGUAGE_PYTHON = "python"
+LANGUAGE_PHP = "php"
+LANGUAGE_DEFAULT = LANGUAGE_PYTHON
+LANGUAGE_LIST = [LANGUAGE_PHP, LANGUAGE_PYTHON]