]>
Commit | Line | Data |
---|---|---|
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 | #---------------------------------------------------------------------------- | |
17 | LANGUAGE_PYTHON = "python" | |
18 | LANGUAGE_PHP = "php" | |
19 | LANGUAGE_DEFAULT = LANGUAGE_PYTHON | |
20 | LANGUAGE_LIST = [LANGUAGE_PHP, LANGUAGE_PYTHON] |