1<?php
2/*************************************************************************************
3 * ini.php
4 * --------
5 * Author: deguix (cevo_deguix@yahoo.com.br)
6 * Copyright: (c) 2005 deguix
7 * Release Version: 1.0.9.1
8 * Date Started: 2005/03/27
9 *
10 * INI language file for GeSHi.
11 *
12 * CHANGES
13 * -------
14 * 2008/05/23 (1.0.7.22)
15 *   -  Added description of extra language features (SF#1970248)
16 * 2005/12/28 (1.0.1)
17 *   -  Removed unnecessary keyword style index
18 *   -  Added support for " strings
19 * 2005/04/05 (1.0.0)
20 *   -  First Release
21 *
22 * TODO (updated 2005/03/27)
23 * -------------------------
24 *
25 *************************************************************************************
26 *
27 *     This file is part of GeSHi.
28 *
29 *   GeSHi is free software; you can redistribute it and/or modify
30 *   it under the terms of the GNU General Public License as published by
31 *   the Free Software Foundation; either version 2 of the License, or
32 *   (at your option) any later version.
33 *
34 *   GeSHi is distributed in the hope that it will be useful,
35 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
36 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37 *   GNU General Public License for more details.
38 *
39 *   You should have received a copy of the GNU General Public License
40 *   along with GeSHi; if not, write to the Free Software
41 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
42 *
43 ************************************************************************************/
44
45$language_data = array (
46    'LANG_NAME' => 'INI',
47    'COMMENT_SINGLE' => array(),
48    'COMMENT_MULTI' => array(),
49    'COMMENT_REGEXP' => array(0 => '/^\s*;.*?$/m'),
50    'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
51    'QUOTEMARKS' => array('"', "'"),
52    'ESCAPE_CHAR' => '',
53    'KEYWORDS' => array(
54        ),
55    'SYMBOLS' => array(
56        '[', ']', '='
57        ),
58    'CASE_SENSITIVE' => array(
59        GESHI_COMMENTS => false
60        ),
61    'STYLES' => array(
62        'KEYWORDS' => array(
63            ),
64        'COMMENTS' => array(
65            0 => 'color: #666666; font-style: italic;'
66            ),
67        'ESCAPE_CHAR' => array(
68            0 => ''
69            ),
70        'BRACKETS' => array(
71            0 => ''
72            ),
73        'STRINGS' => array(
74            0 => 'color: #933;'
75            ),
76        'NUMBERS' => array(
77            0 => ''
78            ),
79        'METHODS' => array(
80            0 => ''
81            ),
82        'SYMBOLS' => array(
83            0 => 'color: #000066; font-weight:bold;'
84            ),
85        'REGEXPS' => array(
86            0 => 'color: #000066; font-weight:bold;',
87            1 => 'color: #000099;',
88            2 => 'color: #660066;'
89            ),
90        'SCRIPT' => array(
91            0 => ''
92            )
93        ),
94    'URLS' => array(
95        ),
96    'OOLANG' => false,
97    'OBJECT_SPLITTERS' => array(
98        ),
99    'REGEXPS' => array(
100        //Section names
101        0 => '\[.+\]',
102        //Entry names
103        1 => array(
104            GESHI_SEARCH => '^(\s*)([a-zA-Z0-9_\-]+)(\s*=)',
105            GESHI_REPLACE => '\\2',
106            GESHI_MODIFIERS => 'm',
107            GESHI_BEFORE => '\\1',
108            GESHI_AFTER => '\\3'
109            ),
110        //Entry values
111        2 => array(
112            // Evil hackery to get around GeSHi bug: <>" and ; are added so <span>s can be matched
113            // Explicit match on variable names because if a comment is before the first < of the span
114            // gets chewed up...
115            GESHI_SEARCH => '([<>";a-zA-Z0-9_]+\s*)=(.*)',
116            GESHI_REPLACE => '\\2',
117            GESHI_MODIFIERS => '',
118            GESHI_BEFORE => '\\1=',
119            GESHI_AFTER => ''
120            )
121        ),
122    'STRICT_MODE_APPLIES' => GESHI_NEVER,
123    'SCRIPT_DELIMITERS' => array(
124        ),
125    'HIGHLIGHT_STRICT_BLOCK' => array(
126        )
127);
128