ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
HFile_ugapt.php
Go to the documentation of this file.
1<?php
2$BEAUT_PATH = realpath(".") . "/Services/COPage/syntax_highlight/php";
3if (!isset($BEAUT_PATH)) {
4 return;
5}
6require_once("$BEAUT_PATH/Beautifier/HFile.php");
7 class HFile_ugapt extends HFile
8 {
9 public function HFile_ugapt()
10 {
11 $this->HFile();
12 /*************************************/
13 // Beautifier Highlighting Configuration File
14 // UG/APT Source
15 /*************************************/
16 // Flags
17
18 $this->nocase = "1";
19 $this->notrim = "0";
20 $this->perl = "0";
21
22 // Colours
23
24 $this->colours = array("blue", "purple", "brown", "blue", "purple", "gray", "brown");
25 $this->quotecolour = "blue";
26 $this->blockcommentcolour = "green";
27 $this->linecommentcolour = "green";
28
29 // Indent Strings
30
31 $this->indent = array();
32 $this->unindent = array();
33
34 // String characters and delimiters
35
36 $this->stringchars = array();
37 $this->delimiters = array("~", "!", "@", "%", "^", "&", "*", "(", ")", "+", "=", "|", "\\", "/", "{", "}", "[", "]", ":", ";", "\"", "'", "<", ">", " ", ",", " ", ".", "?");
38 $this->escchar = "";
39
40 // Comment settings
41
42 $this->linecommenton = array("PPR");
43 $this->blockcommenton = array("$");
44 $this->blockcommentoff = array("");
45
46 // Keywords (keyword mapping to colour number)
47
48 $this->keywords = array(
49 "CALL" => "1",
50 "CHOOSE" => "1",
51 "GPOS" => "1",
52 "IDENT" => "1",
53 "LOAD" => "1",
54 "MACRO" => "1",
55 "PARAM" => "1",
56 "TERMAC" => "1",
57 "TEXT" => "1",
58 "RAPID" => "2",
59 "AUXFUN" => "4",
60 "INSERT" => "4",
61 "IF" => "4",
62 "JUMP" => "4",
63 "MODE" => "4",
64 "PLABEL" => "4",
65 "POSTN" => "4",
66 "PREFUN" => "4",
67 "COPY" => "5",
68 "INDEX" => "5",
69 "OPSKIP" => "5",
70 "TRACUT" => "5",
71 "TRANS" => "5",
72 "APPEND" => "6",
73 "CREATE" => "6",
74 "DELIM" => "6",
75 "FILE" => "6",
76 "FETCH" => "6",
77 "FPRINT" => "6",
78 "FTERM" => "6",
79 "READ" => "6",
80 "RESET" => "6",
81 "WRITE" => "6",
82 "LOADTL" => "7",
83 "COOLNT" => "8",
84 "SPINDL" => "8");
85
86 // Special extensions
87
88 // Each category can specify a PHP function that returns an altered
89 // version of the keyword.
90
91
92
93 $this->linkscripts = array(
94 "1" => "donothing",
95 "2" => "donothing",
96 "4" => "donothing",
97 "5" => "donothing",
98 "6" => "donothing",
99 "7" => "donothing",
100 "8" => "donothing");
101 }
102
103
104 public function donothing($keywordin)
105 {
106 return $keywordin;
107 }
108 }
$BEAUT_PATH
Definition: HFile_ugapt.php:2
An exception for terminatinating execution or to throw for unit testing.
donothing($keywordin)