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_logic extends HFile{
00006 function HFile_logic(){
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 "BOOLEAN-EQUATIONS" => "1",
00046 "end" => "1",
00047 "flow-table" => "1",
00048 "function-table" => "1",
00049 "IDENTIFICATION" => "1",
00050 "pal" => "1",
00051 "pins" => "1",
00052 "RUN-CONTROL" => "1",
00053 "special-functions" => "1",
00054 "STATE-ASSIGNMENT" => "1",
00055 "X-NAMES" => "1",
00056 "Y-NAMES" => "1",
00057 "*" => "2",
00058 "binary" => "3",
00059 "listing" => "3",
00060 "PROGFORMAT" => "3",
00061 "Type" => "3",
00062 "EQUATIONS" => "4",
00063 "Relevant" => "4",
00064 "FUSE" => "4",
00065 "GA22V10" => "4",
00066 "JEDEC" => "4",
00067 "PinOut" => "4");
00068
00069
00070
00071
00072
00073
00074
00075
00076 $this->linkscripts = array(
00077 "1" => "donothing",
00078 "2" => "donothing",
00079 "3" => "donothing",
00080 "4" => "donothing");
00081 }
00082
00083
00084 function donothing($keywordin)
00085 {
00086 return $keywordin;
00087 }
00088
00089 }?>