Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
9f1536a9
Commit
9f1536a9
authored
17 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Fix colour definitions.
All mode bits to be passed in.
parent
84b5e800
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/load/asc2htmlterm.js
+11
-10
11 additions, 10 deletions
exec/load/asc2htmlterm.js
with
11 additions
and
10 deletions
exec/load/asc2htmlterm.js
+
11
−
10
View file @
9f1536a9
...
...
@@ -4,7 +4,7 @@
load
(
"
graphic.js
"
);
function
asc2htmlterm
(
buf
,
dospin
,
partial
)
function
asc2htmlterm
(
buf
,
dospin
,
partial
,
mode
)
{
var
need_table
=
false
;
var
outbuf_table
=
''
;
...
...
@@ -15,20 +15,21 @@ function asc2htmlterm(buf, dospin, partial)
var
spin
=
0
;
var
colour_vals
=
new
Array
(
"
black
"
,
/* black */
"
#a80000
"
,
/* dark red */
"
#00a800
"
,
/* dark green */
"
#a85400
"
,
/* brown (dark yellow) */
"
#0000a8
"
,
/* dark blue */
"
#a800
a8
"
,
/*
magenta
*/
"
#
00
a800
"
,
/*
dark green
*/
"
#00a8a8
"
,
/* cyan */
"
#a80000
"
,
/* dark red */
"
#a800a8
"
,
/* magenta */
"
#a85400
"
,
/* brown (dark yellow) */
"
#a8a8a8
"
,
/* white */
"
#545454
"
,
/* bright black (grey) */
"
#fc5454
"
,
/* bright red */
"
#54fc54
"
,
/* bright green */
"
#fcfc54
"
,
/* bright yellow */
"
#5454fc
"
,
/* bright blue */
"
#fc54
fc
"
,
/* bright
magenta
*/
"
#
54
fc54
"
,
/* bright
green
*/
"
#54fcfc
"
,
/* bright cyan */
"
#fc5454
"
,
/* bright red */
"
#fc54fc
"
,
/* bright magenta */
"
#fcfc54
"
,
/* bright yellow */
"
white
"
/* bright white */
);
...
...
@@ -56,7 +57,7 @@ function asc2htmlterm(buf, dospin, partial)
var
screen
=
new
Graphic
(
cols
,
rows
,
7
,
'
'
);
if
(
dospin
)
console
.
write
(
"
\
x08
"
+
spinner
[(
spin
++
)
%
spinner
.
length
]);
buf
=
screen
.
putmsg
(
1
,
1
,
buf
,
7
,
true
,
true
);
buf
=
screen
.
putmsg
(
1
,
1
,
buf
,
7
,
true
,
true
,
mode
);
if
(
dospin
)
console
.
write
(
"
\
x08
"
+
spinner
[(
spin
++
)
%
spinner
.
length
]);
var
total_rows
=
rows
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment