paulb@16 | 1 | #!/usr/bin/env python |
paulb@16 | 2 | |
paulb@116 | 3 | """ |
paulb@116 | 4 | Constants for XSLForms. |
paulb@116 | 5 | |
paulb@116 | 6 | Copyright (C) 2005 Paul Boddie <paul@boddie.org.uk> |
paulb@116 | 7 | |
paulb@116 | 8 | This library is free software; you can redistribute it and/or |
paulb@116 | 9 | modify it under the terms of the GNU Lesser General Public |
paulb@116 | 10 | License as published by the Free Software Foundation; either |
paulb@116 | 11 | version 2.1 of the License, or (at your option) any later version. |
paulb@116 | 12 | |
paulb@116 | 13 | This library is distributed in the hope that it will be useful, |
paulb@116 | 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
paulb@116 | 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
paulb@116 | 16 | Lesser General Public License for more details. |
paulb@116 | 17 | |
paulb@116 | 18 | You should have received a copy of the GNU Lesser General Public |
paulb@116 | 19 | License along with this library; if not, write to the Free Software |
paulb@116 | 20 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
paulb@116 | 21 | """ |
paulb@16 | 22 | |
paulb@16 | 23 | path_separator = "/" |
paulb@98 | 24 | pair_separator = "$" |
paulb@98 | 25 | multi_separator = "$$" |
paulb@16 | 26 | selector_indicator = "=" |
paulb@16 | 27 | |
paulb@16 | 28 | # vim: tabstop=4 expandtab shiftwidth=4 |