[ Index ]

PHP Cross Reference of DokuWiki

title

Body

[close]

/vendor/geshi/geshi/src/geshi/ -> 4cs.php (source)

   1  <?php
   2  /*************************************************************************************
   3   * 4cs.php
   4   * ------
   5   * Author: Jason Curl (jason.curl@continental-corporation.com)
   6   * Copyright: (c) 2009 Jason Curl
   7   * Release Version: 1.0.9.1
   8   * Date Started: 2009/09/05
   9   *
  10   * 4CS language file for GeSHi.
  11   *
  12   * CHANGES
  13   * -------
  14   * 2009/09/05
  15   *   -  First Release
  16   *
  17   * TODO (updated 2009/09/01)
  18   * -------------------------
  19   *
  20   *************************************************************************************
  21   *
  22   *     This file is part of GeSHi.
  23   *
  24   *   GeSHi is free software; you can redistribute it and/or modify
  25   *   it under the terms of the GNU General Public License as published by
  26   *   the Free Software Foundation; either version 2 of the License, or
  27   *   (at your option) any later version.
  28   *
  29   *   GeSHi is distributed in the hope that it will be useful,
  30   *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  31   *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  32   *   GNU General Public License for more details.
  33   *
  34   *   You should have received a copy of the GNU General Public License
  35   *   along with GeSHi; if not, write to the Free Software
  36   *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  37   *
  38   ************************************************************************************/
  39  
  40  $language_data = array (
  41      'LANG_NAME' => 'GADV 4CS',
  42      'COMMENT_SINGLE' => array(1 => "//"),
  43      'COMMENT_MULTI' => array(),
  44      'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
  45      'QUOTEMARKS' => array('"'),
  46      'ESCAPE_CHAR' => '',
  47      'KEYWORDS' => array(
  48          1 => array(
  49              'All', 'AllMatches', 'And', 'And_Filters', 'As', 'Asc', 'BasedOn',
  50              'BestMatch', 'Block', 'Buffer', 'ByRef', 'ByVal', 'Call', 'Channel',
  51              'Chr', 'Clear', 'Close', 'Confirm', 'Const', 'Continue', 'Cos',
  52              'Critical', 'Declare', 'Default', 'DefaultChannel', 'DefaultDelayTime',
  53              'DefaultReceiveMode', 'DefaultResponseTime', '#Define', 'DelayTime',
  54              'Delete', 'Div', 'Else', '#Else', 'ElseIf', '#ElseIf', 'End', 'EndCritical',
  55              'EndInlineC', 'EndFunction', 'EndIf', '#EndIf', 'EndInputList',
  56              'EndLocalChannel', 'EndScenario', 'EndSub', 'EndWhile', 'Error',
  57              'ErrorLevelOff', 'ErrorLevelOn', 'ErrorLevelSet', 'ErrorLevelSetRaw',
  58              'Event', 'EventMode', 'EventOff', 'EventOn', 'EventSet', 'EventSetRaw',
  59              'Execute', 'Exit', 'Exp', 'FileClose', 'FilterClear', 'FileEOF', 'FileOpen',
  60              'FileRead', 'FileSize', 'FileWrite', 'FilterAdd', 'FilterMode',
  61              'FilterOff', 'FilterOn', 'For', 'Format', 'Function', 'GoOnline', 'GoTo',
  62              'Handle', 'Hide', 'If', '#If', '#IfDef', '#IfNDef', 'Ignore', '#Include',
  63              'InlineC', 'Input', 'InputItem', 'InputList', 'Kill', 'LBound', 'LocalChannel',
  64              'Local', 'Log', 'Log10', 'LogOff', 'LogOn', 'Loop', 'Message', 'Mod',
  65              'MonitorChannel', 'MostFormat', 'MostMessage', 'Named', 'Never', 'Next',
  66              'NoOrder', 'Not', 'Nothing', 'NoWait', 'Numeric', 'OnError', 'OnEvent',
  67              'Or', 'Or_Filters', 'Order', 'Pass', 'Pow', 'Prototype', 'Quit', 'Raise',
  68              'Random', 'Receive', 'ReceiveMode', 'ReceiveRaw', 'Redim', 'Remote', 'Repeat',
  69              'Repeated', 'ResponseTime', 'Resume', 'ResumeCritical', 'RT_Common',
  70              'RT_Dll_Call', 'RT_FILEIO', 'RT_General', 'RT_HardwareAccess',
  71              'RT_MessageVariableAccess', 'RT_Scenario', 'RT_VariableAccess', 'Runtime',
  72              'Scenario', 'ScenarioEnd', 'ScenarioStart', 'ScenarioStatus', 'ScenarioTerminate',
  73              'Send', 'SendRaw', 'Set', 'SetError', 'Sin', 'Single', 'Show', 'Start',
  74              'StartCritical', 'Starts', 'Static', 'Step', 'Stop', 'String', 'Sub',
  75              'System_Error', 'TerminateAllChilds', 'Terminates', 'Then', 'Throw', 'TimeOut',
  76              'To', 'TooLate', 'Trunc', 'UBound', 'Unexpected', 'Until', 'User_Error',
  77              'View', 'Wait', 'Warning', 'While', 'XOr'
  78              ),
  79          2 => array(
  80              'alias', 'winapi', 'long', 'char', 'double', 'float', 'int', 'short', 'lib'
  81              )
  82          ),
  83      'SYMBOLS' => array(
  84          '=', ':=', '<', '>', '<>'
  85          ),
  86      'CASE_SENSITIVE' => array(
  87          GESHI_COMMENTS => false,
  88          1 => false,
  89          2 => false
  90          ),
  91      'STYLES' => array(
  92          'KEYWORDS' => array(
  93              1 => 'color: #0000C0; font-weight: bold;',
  94              2 => 'color: #808080;'
  95              ),
  96          'COMMENTS' => array(
  97              1 => 'color: #008000;'
  98              ),
  99          'BRACKETS' => array(
 100              0 => 'color: #000080;'
 101              ),
 102          'STRINGS' => array(
 103              0 => 'color: #800080;'
 104              ),
 105          'NUMBERS' => array(
 106              0 => 'color: #cc66cc;'
 107              ),
 108          'METHODS' => array(
 109              1 => 'color: #66cc66;'
 110              ),
 111          'SYMBOLS' => array(
 112              0 => 'color: #000080;'
 113              ),
 114          'ESCAPE_CHAR' => array(
 115              0 => 'color: #000099;'
 116              ),
 117          'SCRIPT' => array(
 118              ),
 119          'REGEXPS' => array(
 120              )
 121          ),
 122      'URLS' => array(
 123          1 => '',
 124          2 => ''
 125          ),
 126      'OOLANG' => true,
 127      'OBJECT_SPLITTERS' => array(
 128          1 => '.'
 129          ),
 130      'REGEXPS' => array(
 131          ),
 132      'STRICT_MODE_APPLIES' => GESHI_NEVER,
 133      'SCRIPT_DELIMITERS' => array(
 134          ),
 135      'HIGHLIGHT_STRICT_BLOCK' => array(
 136          )
 137  );