00001 <?php
00002 $BEAUT_PATH = realpath(".")."/syntax_highlight/php";
00003 if (!isset ($BEAUT_PATH)) return;
00004 require_once("$BEAUT_PATH/Beautifier/HFile.php");
00005 class HFile_cuesheet extends HFile{
00006 function HFile_cuesheet(){
00007 $this->HFile();
00008
00009
00010
00011
00012
00013
00014 $this->nocase = "1";
00015 $this->notrim = "0";
00016 $this->perl = "0";
00017
00018
00019
00020 $this->colours = array("blue", "purple", "gray", "brown");
00021 $this->quotecolour = "blue";
00022 $this->blockcommentcolour = "green";
00023 $this->linecommentcolour = "green";
00024
00025
00026
00027 $this->indent = array();
00028 $this->unindent = array();
00029
00030
00031
00032 $this->stringchars = array();
00033 $this->delimiters = array("!", "@", "%", "^", "&", "*", "(", ")", "-", "+", "=", "|", "\\", "[", "]", ";", "\"", "'", "<", ">", " ", ",", " ", ".");
00034 $this->escchar = "";
00035
00036
00037
00038 $this->linecommenton = array("");
00039 $this->blockcommenton = array("");
00040 $this->blockcommentoff = array("");
00041
00042
00043
00044 $this->keywords = array(
00045 "CATALOG" => "1",
00046 "FILE" => "1",
00047 "TRACK" => "2",
00048 "FLAGS" => "3",
00049 "INDEX" => "3",
00050 "ISRC" => "3",
00051 "POSTGAP" => "3",
00052 "PREGAP" => "3",
00053 "REM" => "3",
00054 "4CH" => "4",
00055 "AIFF" => "4",
00056 "AUDIO" => "4",
00057 "BINARY" => "4",
00058 "CDG" => "4",
00059 "DCP" => "4",
00060 "MODE1/2048" => "4",
00061 "MODE1/2352" => "4",
00062 "MODE2/2336" => "4",
00063 "MODE2/2352" => "4",
00064 "MOTOROLA" => "4",
00065 "PRE" => "4",
00066 "WAVE" => "4");
00067
00068
00069
00070
00071
00072
00073
00074
00075 $this->linkscripts = array(
00076 "1" => "donothing",
00077 "2" => "donothing",
00078 "3" => "donothing",
00079 "4" => "donothing");
00080 }
00081
00082
00083 function donothing($keywordin)
00084 {
00085 return $keywordin;
00086 }
00087
00088 }?>