X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ea5449ae514c2eba0dae9828cbed53b902b52d89..aca310e5cc45db153540efe2df577d8f985ccfc1:/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 index 0000000000..aafd8b8bf6 --- /dev/null +++ b/wxPython/samples/ide/activegrid/model/projectmodel.py @@ -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]