]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/ide/activegrid/model/projectmodel.py
DocView and ActiveGrid IDE updates from Morgan Hua:
[wxWidgets.git] / wxPython / samples / ide / activegrid / model / projectmodel.py
1 #----------------------------------------------------------------------------
2 # Name: projectmodel.py
3 # Purpose: This file contains project model information
4 #
5 # Author: Morgan Hua
6 #
7 # Created: 4/18/06
8 # CVS-ID: $Id$
9 # Copyright: (c) 2006 ActiveGrid, Inc.
10 # License: wxWindows License
11 #----------------------------------------------------------------------------
12
13
14 #----------------------------------------------------------------------------
15 # Constants
16 #----------------------------------------------------------------------------
17 LANGUAGE_PYTHON = "python"
18 LANGUAGE_PHP = "php"
19 LANGUAGE_DEFAULT = LANGUAGE_PYTHON
20 LANGUAGE_LIST = [LANGUAGE_PHP, LANGUAGE_PYTHON]