Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/wp-file-.../lib/codemirr.../mode/ttcn-cfg
File: index.html
<!doctype html>
[0] Fix | Delete
[1] Fix | Delete
<title>CodeMirror: TTCN-CFG mode</title>
[2] Fix | Delete
<meta charset="utf-8"/>
[3] Fix | Delete
<link rel=stylesheet href="../../doc/docs.css">
[4] Fix | Delete
[5] Fix | Delete
<link rel="stylesheet" href="../../lib/codemirror.css">
[6] Fix | Delete
<script src="../../lib/codemirror.js"></script>
[7] Fix | Delete
<script src="ttcn-cfg.js"></script>
[8] Fix | Delete
<style type="text/css">
[9] Fix | Delete
.CodeMirror {
[10] Fix | Delete
border-top: 1px solid black;
[11] Fix | Delete
border-bottom: 1px solid black;
[12] Fix | Delete
}
[13] Fix | Delete
</style>
[14] Fix | Delete
<div id=nav>
[15] Fix | Delete
<a href="http://codemirror.net"><h1>CodeMirror</h1>
[16] Fix | Delete
<img id=logo src="../../doc/logo.png">
[17] Fix | Delete
</a>
[18] Fix | Delete
[19] Fix | Delete
<ul>
[20] Fix | Delete
<li><a href="../../index.html">Home</a>
[21] Fix | Delete
<li><a href="../../doc/manual.html">Manual</a>
[22] Fix | Delete
<li><a href="https://github.com/codemirror/codemirror">Code</a>
[23] Fix | Delete
</ul>
[24] Fix | Delete
<ul>
[25] Fix | Delete
<li><a href="../index.html">Language modes</a>
[26] Fix | Delete
<li><a class=active href="http://en.wikipedia.org/wiki/TTCN">TTCN-CFG</a>
[27] Fix | Delete
</ul>
[28] Fix | Delete
</div>
[29] Fix | Delete
<article>
[30] Fix | Delete
<h2>TTCN-CFG example</h2>
[31] Fix | Delete
<div>
[32] Fix | Delete
<textarea id="ttcn-cfg-code">
[33] Fix | Delete
[MODULE_PARAMETERS]
[34] Fix | Delete
# This section shall contain the values of all parameters that are defined in your TTCN-3 modules.
[35] Fix | Delete
[36] Fix | Delete
[LOGGING]
[37] Fix | Delete
# In this section you can specify the name of the log file and the classes of events
[38] Fix | Delete
# you want to log into the file or display on console (standard error).
[39] Fix | Delete
[40] Fix | Delete
LogFile := "logs/%e.%h-%r.%s"
[41] Fix | Delete
FileMask := LOG_ALL | DEBUG | MATCHING
[42] Fix | Delete
ConsoleMask := ERROR | WARNING | TESTCASE | STATISTICS | PORTEVENT
[43] Fix | Delete
[44] Fix | Delete
LogSourceInfo := Yes
[45] Fix | Delete
AppendFile := No
[46] Fix | Delete
TimeStampFormat := DateTime
[47] Fix | Delete
LogEventTypes := Yes
[48] Fix | Delete
SourceInfoFormat := Single
[49] Fix | Delete
LogEntityName := Yes
[50] Fix | Delete
[51] Fix | Delete
[TESTPORT_PARAMETERS]
[52] Fix | Delete
# In this section you can specify parameters that are passed to Test Ports.
[53] Fix | Delete
[54] Fix | Delete
[DEFINE]
[55] Fix | Delete
# In this section you can create macro definitions,
[56] Fix | Delete
# that can be used in other configuration file sections except [INCLUDE].
[57] Fix | Delete
[58] Fix | Delete
[INCLUDE]
[59] Fix | Delete
# To use configuration settings given in other configuration files,
[60] Fix | Delete
# the configuration files just need to be listed in this section, with their full or relative pathnames.
[61] Fix | Delete
[62] Fix | Delete
[EXTERNAL_COMMANDS]
[63] Fix | Delete
# This section can define external commands (shell scripts) to be executed by the ETS
[64] Fix | Delete
# whenever a control part or test case is started or terminated.
[65] Fix | Delete
[66] Fix | Delete
BeginTestCase := ""
[67] Fix | Delete
EndTestCase := ""
[68] Fix | Delete
BeginControlPart := ""
[69] Fix | Delete
EndControlPart := ""
[70] Fix | Delete
[71] Fix | Delete
[EXECUTE]
[72] Fix | Delete
# In this section you can specify what parts of your test suite you want to execute.
[73] Fix | Delete
[74] Fix | Delete
[GROUPS]
[75] Fix | Delete
# In this section you can specify groups of hosts. These groups can be used inside the
[76] Fix | Delete
# [COMPONENTS] section to restrict the creation of certain PTCs to a given set of hosts.
[77] Fix | Delete
[78] Fix | Delete
[COMPONENTS]
[79] Fix | Delete
# This section consists of rules restricting the location of created PTCs.
[80] Fix | Delete
[81] Fix | Delete
[MAIN_CONTROLLER]
[82] Fix | Delete
# The options herein control the behavior of MC.
[83] Fix | Delete
[84] Fix | Delete
TCPPort := 0
[85] Fix | Delete
KillTimer := 10.0
[86] Fix | Delete
NumHCs := 0
[87] Fix | Delete
LocalAddress :=
[88] Fix | Delete
</textarea>
[89] Fix | Delete
</div>
[90] Fix | Delete
[91] Fix | Delete
<script>
[92] Fix | Delete
var ttcnEditor = CodeMirror.fromTextArea(document.getElementById("ttcn-cfg-code"), {
[93] Fix | Delete
lineNumbers: true,
[94] Fix | Delete
matchBrackets: true,
[95] Fix | Delete
mode: "text/x-ttcn-cfg"
[96] Fix | Delete
});
[97] Fix | Delete
ttcnEditor.setSize(600, 860);
[98] Fix | Delete
var mac = CodeMirror.keyMap.default == CodeMirror.keyMap.macDefault;
[99] Fix | Delete
CodeMirror.keyMap.default[(mac ? "Cmd" : "Ctrl") + "-Space"] = "autocomplete";
[100] Fix | Delete
</script>
[101] Fix | Delete
<br/>
[102] Fix | Delete
<p><strong>Language:</strong> Testing and Test Control Notation -
[103] Fix | Delete
Configuration files
[104] Fix | Delete
(<a href="http://en.wikipedia.org/wiki/TTCN">TTCN-CFG</a>)
[105] Fix | Delete
</p>
[106] Fix | Delete
<p><strong>MIME types defined:</strong> <code>text/x-ttcn-cfg</code>.</p>
[107] Fix | Delete
[108] Fix | Delete
<br/>
[109] Fix | Delete
<p>The development of this mode has been sponsored by <a href="http://www.ericsson.com/">Ericsson
[110] Fix | Delete
</a>.</p>
[111] Fix | Delete
<p>Coded by Asmelash Tsegay Gebretsadkan </p>
[112] Fix | Delete
</article>
[113] Fix | Delete
[114] Fix | Delete
[115] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function