]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/ide/activegrid/model/projectmodel.py
DocView and ActiveGrid IDE updates from Morgan Hua:
[wxWidgets.git] / wxPython / samples / ide / activegrid / model / projectmodel.py
CommitLineData
aca310e5
RD
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#----------------------------------------------------------------------------
17LANGUAGE_PYTHON = "python"
18LANGUAGE_PHP = "php"
19LANGUAGE_DEFAULT = LANGUAGE_PYTHON
20LANGUAGE_LIST = [LANGUAGE_PHP, LANGUAGE_PYTHON]