mirror of
https://github.com/outbackdingo/parodus.git
synced 2026-01-28 18:20:04 +00:00
* [new] Added initial files to implement a client regression test on the browsers (using dojo, javascript, etc). Added initial tests and fixings some issues around masking content over 125 bytes. BIG! * [new] Added new regression test (test_04) to C reg test to check UTF-8 content and how it applies to masking. Applied several cleanups to the code to to ensure both server and client (C) do not leak any memory. Updated API to new function functions: - nopoll_conn_ref_count - nopoll_ctx_ref_count - nopoll_loop_stop * [fix] Updated nopoll_conn_send_text to allow sending content without telling the length, making the function to guess it (only for c-like strings).
94 lines
1.1 KiB
CSS
94 lines
1.1 KiB
CSS
body {
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font-family: arial, verdana, trebuchetms;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1 {
|
|
color: white;
|
|
margin: 0px;
|
|
}
|
|
|
|
.aspl-logo {
|
|
float: right;
|
|
}
|
|
|
|
.aspl-logo img {
|
|
border: 0px;
|
|
height: 44px;
|
|
}
|
|
|
|
.nopoll-regtest-header {
|
|
width: 100%;
|
|
padding: 0px;
|
|
margin: 0px;
|
|
height: 46px;
|
|
background: #062149;
|
|
color: white;
|
|
padding-top: 5px;
|
|
}
|
|
|
|
.nopoll-regtest-header img {
|
|
float: left;
|
|
padding-right: 10px;
|
|
}
|
|
|
|
.nopoll-regtest-header h1 {
|
|
padding: 10px;
|
|
}
|
|
|
|
.log-line {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
font-size: 9pt;
|
|
color: white;
|
|
border-bottom: 1px solid white;
|
|
}
|
|
|
|
.error {
|
|
background: #cc0000;
|
|
}
|
|
|
|
.ok {
|
|
background: #118a11;
|
|
}
|
|
|
|
.final-ok {
|
|
background: #118a11;
|
|
font-weight: bold;
|
|
font-size: 11pt;
|
|
padding: 10px;
|
|
}
|
|
|
|
.info {
|
|
background: #0073b5;
|
|
}
|
|
|
|
#control-panel {
|
|
padding: 10px;
|
|
# border-bottom: 1px solid #383838;
|
|
}
|
|
|
|
#global-container {
|
|
width: 100%;
|
|
height: 100px;
|
|
}
|
|
|
|
#log-panel {
|
|
overflow: auto;
|
|
}
|
|
|
|
pre {
|
|
font-family: arial, verdana, trebuchetms;
|
|
}
|
|
|
|
.sep {
|
|
width: 1px;
|
|
border-left: 1px solid #acacac;
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
height: 10px;
|
|
|
|
}
|