Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
0ba4cf0e
Commit
0ba4cf0e
authored
Jun 30, 2008
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Links to exlib added
parent
d3857e81
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
4 deletions
+44
-4
src/exe/co_convert/src/cnv_readwbl.cpp
src/exe/co_convert/src/cnv_readwbl.cpp
+21
-1
src/exe/co_convert/src/cnv_readwbl.h
src/exe/co_convert/src/cnv_readwbl.h
+4
-1
src/exe/co_convert/src/cnv_wbltohtml.cpp
src/exe/co_convert/src/cnv_wbltohtml.cpp
+5
-1
src/exe/co_convert/src/cnv_wbltoxtthelp.cpp
src/exe/co_convert/src/cnv_wbltoxtthelp.cpp
+14
-1
No files found.
src/exe/co_convert/src/cnv_readwbl.cpp
View file @
0ba4cf0e
/*
* Proview $Id: cnv_readwbl.cpp,v 1.1
0 2007-12-06 08:09:56
claes Exp $
* Proview $Id: cnv_readwbl.cpp,v 1.1
1 2008-06-30 05:53:27
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -1002,6 +1002,7 @@ void CnvReadWbl::doc_init()
memset
(
doc_link_text
,
0
,
sizeof
(
doc_link_text
));
memset
(
doc_groups
,
0
,
sizeof
(
doc_groups
));
doc_clink_cnt
=
0
;
doc_xlink_cnt
=
0
;
doc_link_cnt
=
0
;
doc_group_cnt
=
0
;
}
...
...
@@ -1083,6 +1084,25 @@ int CnvReadWbl::doc_add( char *line)
}
doc_clink_cnt
++
;
}
else
if
(
strcmp
(
low
(
line_part
[
1
]),
"@exliblink"
)
==
0
)
{
if
(
doc_xlink_cnt
>=
(
int
)
(
sizeof
(
doc_xlink_ref
)
/
sizeof
(
doc_xlink_ref
[
0
])))
{
printf
(
"Error: max number of classlinks exceeded
\n
"
);
return
1
;
}
for
(
i
=
2
;
i
<
nr
;
i
++
)
{
if
(
i
==
nr
-
1
)
strcpy
(
doc_xlink_ref
[
doc_xlink_cnt
],
line_part
[
i
]);
else
{
if
(
i
==
2
)
strcpy
(
doc_xlink_text
[
doc_xlink_cnt
],
line_part
[
i
]);
else
{
strcat
(
doc_xlink_text
[
doc_xlink_cnt
],
" "
);
strcat
(
doc_xlink_text
[
doc_xlink_cnt
],
line_part
[
i
]);
}
}
}
doc_xlink_cnt
++
;
}
else
if
(
strcmp
(
low
(
line_part
[
1
]),
"@code"
)
==
0
)
{
if
(
nr
>
2
)
strcpy
(
doc_code
,
line_part
[
2
]);
...
...
src/exe/co_convert/src/cnv_readwbl.h
View file @
0ba4cf0e
/*
* Proview $Id: cnv_readwbl.h,v 1.
6 2008-06-24 06:53:19
claes Exp $
* Proview $Id: cnv_readwbl.h,v 1.
7 2008-06-30 05:53:27
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -168,6 +168,9 @@ class CnvReadWbl {
char
doc_clink_ref
[
20
][
80
];
char
doc_clink_text
[
20
][
200
];
int
doc_clink_cnt
;
char
doc_xlink_ref
[
20
][
80
];
char
doc_xlink_text
[
20
][
200
];
int
doc_xlink_cnt
;
char
doc_summary
[
400
];
char
doc_text
[
1000
][
200
];
int
doc_cnt
;
...
...
src/exe/co_convert/src/cnv_wbltohtml.cpp
View file @
0ba4cf0e
/*
* Proview $Id: cnv_wbltohtml.cpp,v 1.1
6 2008-03-05 11:47:59
claes Exp $
* Proview $Id: cnv_wbltohtml.cpp,v 1.1
7 2008-06-30 05:53:27
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -628,6 +628,10 @@ endl <<
html_clf
->
f
<<
"</XMP>"
<<
endl
;
for
(
i
=
0
;
i
<
ctx
->
rw
->
doc_xlink_cnt
;
i
++
)
{
html_clf
->
f
<<
" <A HREF=
\"
"
<<
ctx
->
rw
->
doc_xlink_ref
[
i
]
<<
"
\"
TARGET=
\"
_self
\"
><FONT size=
\"
-1
\"
> "
<<
ctx
->
rw
->
doc_xlink_text
[
i
]
<<
"</FONT></A><BR>"
<<
endl
;
}
for
(
i
=
0
;
i
<
ctx
->
rw
->
doc_clink_cnt
;
i
++
)
{
html_clf
->
f
<<
" <A HREF=
\"
"
<<
ctx
->
rw
->
doc_clink_ref
[
i
]
<<
"
\"
TARGET=
\"
_self
\"
><FONT size=
\"
-1
\"
> "
<<
ctx
->
rw
->
doc_clink_text
[
i
]
<<
"</FONT></A><BR>"
<<
endl
;
...
...
src/exe/co_convert/src/cnv_wbltoxtthelp.cpp
View file @
0ba4cf0e
/*
* Proview $Id: cnv_wbltoxtthelp.cpp,v 1.
9 2006-02-23 14:28:45
claes Exp $
* Proview $Id: cnv_wbltoxtthelp.cpp,v 1.
10 2008-06-30 05:53:27
claes Exp $
* Copyright (C) 2005 SSAB Oxelsund AB.
*
* This program is free software; you can redistribute it and/or
...
...
@@ -144,6 +144,19 @@ Lng::translate("Class") << " " << full_class_name << endl <<
fp_tmp
<<
ctx
->
rw
->
doc_text
[
i
]
<<
endl
;
}
}
for
(
i
=
0
;
i
<
ctx
->
rw
->
doc_xlink_cnt
;
i
++
)
{
if
(
strncmp
(
ctx
->
rw
->
doc_xlink_ref
[
i
],
"../../en_us/man_exlib_"
,
strlen
(
"../../en_us/man_exlib_"
))
==
0
)
strncpy
(
link_ref
,
&
ctx
->
rw
->
doc_xlink_ref
[
i
][
0
]
+
strlen
(
"../../en_us/man_exlib_"
),
sizeof
(
link_ref
));
else
strncpy
(
link_ref
,
ctx
->
rw
->
doc_xlink_ref
[
i
],
sizeof
(
link_ref
));
if
(
(
s
=
strrchr
(
link_ref
,
'.'
)))
*
s
=
0
;
strcat
(
link_ref
,
", ,$pwr_exe/en_us/man_exlib.dat"
);
fp_tmp
<<
" "
<<
ctx
->
rw
->
doc_xlink_text
[
i
]
<<
" <LINK>"
<<
link_ref
<<
endl
;
}
for
(
i
=
0
;
i
<
ctx
->
rw
->
doc_clink_cnt
;
i
++
)
{
strcpy
(
prefix
,
CnvCtx
::
low
(
ctx
->
rw
->
volume_name
));
strcat
(
prefix
,
"_"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment