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
cbf64c7b
Commit
cbf64c7b
authored
Sep 03, 2015
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Version help file moved from exe to load
parent
a822b1e1
Changes
24
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
134 additions
and
111 deletions
+134
-111
sev/exe/sev_xtt/src/xtt_tbl.cpp
sev/exe/sev_xtt/src/xtt_tbl.cpp
+3
-1
sev/exe/sev_xtt/src/xtt_tbl_command.cpp
sev/exe/sev_xtt/src/xtt_tbl_command.cpp
+6
-3
src/doc/man/en_us/man_dg.dat
src/doc/man/en_us/man_dg.dat
+36
-34
src/doc/man/sv_se/man_dg.dat
src/doc/man/sv_se/man_dg.dat
+34
-37
src/tools/pkg/cygwin/pwr/build.sh
src/tools/pkg/cygwin/pwr/build.sh
+2
-2
src/tools/pkg/cygwin/pwrrt/build.sh
src/tools/pkg/cygwin/pwrrt/build.sh
+2
-2
src/tools/pkg/deb/pwr/build.sh
src/tools/pkg/deb/pwr/build.sh
+2
-2
src/tools/pkg/deb/pwrrt/build.sh
src/tools/pkg/deb/pwrrt/build.sh
+2
-2
src/tools/pkg/deb/pwrsev/build.sh
src/tools/pkg/deb/pwrsev/build.sh
+2
-2
src/tools/pkg/deb_armel/pwrrt/build.sh
src/tools/pkg/deb_armel/pwrrt/build.sh
+2
-2
src/tools/pkg/deb_x86_64/pwr/build.sh
src/tools/pkg/deb_x86_64/pwr/build.sh
+2
-2
src/tools/pkg/deb_x86_64/pwrrt/build.sh
src/tools/pkg/deb_x86_64/pwrrt/build.sh
+2
-2
src/tools/pkg/deb_x86_64/pwrsev/build.sh
src/tools/pkg/deb_x86_64/pwrsev/build.sh
+2
-2
src/tools/pkg/raspbian/pwr/build.sh
src/tools/pkg/raspbian/pwr/build.sh
+2
-2
src/tools/pkg/raspbian/pwrrt/build.sh
src/tools/pkg/raspbian/pwrrt/build.sh
+2
-2
src/tools/pkg/raspbian/pwrsev/build.sh
src/tools/pkg/raspbian/pwrsev/build.sh
+2
-2
src/tools/pkg/ubu/pwr/build.sh
src/tools/pkg/ubu/pwr/build.sh
+11
-1
src/tools/pkg/ubu/pwrrt/build.sh
src/tools/pkg/ubu/pwrrt/build.sh
+2
-2
src/tools/pkg/ubu/pwrsev/build.sh
src/tools/pkg/ubu/pwrsev/build.sh
+2
-2
src/tools/pkg/ubu_x86_64/pwr/build.sh
src/tools/pkg/ubu_x86_64/pwr/build.sh
+10
-1
src/tools/pkg/ubu_x86_64/pwrrt/build.sh
src/tools/pkg/ubu_x86_64/pwrrt/build.sh
+2
-2
src/tools/pkg/ubu_x86_64/pwrsev/build.sh
src/tools/pkg/ubu_x86_64/pwrsev/build.sh
+2
-2
wb/lib/wb/src/wb_wnav_command.cpp
wb/lib/wb/src/wb_wnav_command.cpp
+1
-1
xtt/lib/xtt/src/xtt_xnav_command.cpp
xtt/lib/xtt/src/xtt_xnav_command.cpp
+1
-1
No files found.
sev/exe/sev_xtt/src/xtt_tbl.cpp
View file @
cbf64c7b
...
...
@@ -281,7 +281,9 @@ void XttTbl::activate_help_project()
void
XttTbl
::
activate_help_proview
()
{
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_exe/sev_xtt_version_help.dat"
,
0
);
char
cmd
[]
=
"help /version"
;
command
(
cmd
);
}
void
XttTbl
::
sevhist_help_cb
(
void
*
ctx
,
const
char
*
key
)
...
...
sev/exe/sev_xtt/src/xtt_tbl_command.cpp
View file @
cbf64c7b
...
...
@@ -192,9 +192,12 @@ static int xtttbl_help_func( void *client_data,
}
if
(
ODD
(
dcli_get_qualifier
(
"/VERSION"
,
0
,
0
)))
{
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_exe/xtt_version_help.dat"
,
0
);
if
(
EVEN
(
sts
))
xtttbl
->
message
(
'E'
,
"No help on this subject"
);
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_load/xtt_version_help.dat"
,
0
);
if
(
EVEN
(
sts
))
{
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_load/sev_xtt_version_help.dat"
,
0
);
if
(
EVEN
(
sts
))
xtttbl
->
message
(
'E'
,
"No help on this subject"
);
}
return
sts
;
}
...
...
src/doc/man/en_us/man_dg.dat
View file @
cbf64c7b
...
...
@@ -5786,46 +5786,48 @@ For more information about the commands, see chapter Commands.
</topic>
<topic> backup_refman
Backup
verktyg
Backup
utility
Backupverktyget analyserar en runtime backupfil. Den gör det möjligt a
tt
The backup utility analyses a runtime backup file. It makes it possible to
- inspektera innehållet i en backupfil.
- se skillnaden mellan två backupfiler lagrade vid olika tidpunkt.
- se skillnaden mellan en backupfil och motsvarande värden i utvecklingsdatabasen.
- överföra utvalda värden från backupfilen till utvecklingsdatabasen.
- inspect the content of the backup file.
- see the difference between two backup files stored and different times.
- see the difference between the backupfile and the corresponding values in the
development database.
- Transfer selected values from the backup file to the development database.
Backupfunktionen i Proview runtime, lagrar värden på objekt och attribute
specificerade med Backupobjekt, till backupfilen. Backupfilen läses vid
Proview uppstart och de tidigare lagrade värdena läggs in i realtidsdatabasen.
The backup function in the Proview runtime enviroment, stores the values of
objects and attributes specified with Backup objects, in the backup file. The
is read at Proview startup and the previously stored values are inserted into
the realtime database.
<h2>
Visa innehållet i en backupfil
.
Öppna backupfönstret från konfiguratorn för rotvolymen för den node från
vilken
backup
filen har hämtats. Backupfönstret öppnas med kommandot 'backup sho
w'.
A
ktivera File/Open i menyn och välj en backupfil. Backupfilen kan vara en kopi
a
av den nuvarande backupfilen eller en kopia från ett tidigare tillfälle. Al
la
attribut och deras värden visas i backupfönstr
et.
<h2>
Display the content of a backup file
Open the backup utility from the root volume configurator of the node from which the
backup
file is fetched. The backup utility is opened with the command 'backup show'.
A
ctivate File/Open in the menu and select a backup file. The backup file can be a copy
of the current backup file or a copy from a previous occation. All the attributes and
their values are displayed in the backup window
.
<image>dg_fig123.png
<b>Fig
Visa backupfilen
<h2>
Jämför två backupfi
ler
Öppna den första backupfilen för visning som beskrivs ovan. Aktivera se
dan
File/Compare Backup File i
menyn och välj den andra backupfilen. Attribut med värd
en
som skiljer sig mellan filerna visas nu
.
<h2>
Jämför backupfilen med utvecklingsdatabas
en
Öppna backupfilen för visning, och aktivera sedan File/Compare Databse in men
yn.
Attribut med värden som skiljer sig mellan backupfilen och utvecklingsdatabase
n
visas nu
.
<h2>
Överför värden från en backupfil till utvecklingsdatab
asen
Gå till editeringsmod i konfiguratorn, och öppna sedan backupfönstret. Öp
pna
backupfilen för visning, och jämför den med värden från utvecklingsdatab
asen
med File/Compare Database in menyn. Attribut med värden som skiljer mella
n
backup
filen och utvecklingsdatabasen visas nu med checkboxar. Markera de värde
n
som ska överföras till databasen, och activera File/Transfer to database i meny
n.
Aktivera även Save i konfiguratorn för att spara ändringa
rna.
<b>Fig
Display backup file
<h2>
Compare two backup files
Open the first backup file for display as described above. Then activate
File/Compare Backup File i
n the menu and select the other backup file. The attributes
with values that differs between the files are now displayed
.
<h2>
Compare a backup file with the development database
Open the backup file for display, and then activate File/Compare Database in the menu
.
The attributes with values that differs between the backup file and the development
database in now displayed
.
<h2>
Transfer values from a backup file to the development database
Enter edit mode in the configurator and then open the backup utility. Open the backup
file for display, and then compare this with the values in the development database from
File/Compare Database in the menu. The attributes with values that differs between the
backup
file and the database are now displayed with checkboxes. Check the values you
want to transfer, and activate File/Transfer to database in the menu. Finally activate
Save in the configurator to store the modifications
.
</topic>
...
...
src/doc/man/sv_se/man_dg.dat
View file @
cbf64c7b
...
...
@@ -5731,50 +5731,47 @@ Utilities f
För en närmare beskrivning av respektive kommando, se avsnittet Kommandon.
</topic>
<topic> backup_refman
Backup
utility
Backup
verktyg
The backup utility analyses a runtime backup file. It makes it possible to
Backupverktyget analyserar en runtime backupfil. Den gör det möjligt a
tt
- inspect the content of the backup file.
- see the difference between two backup files stored and different times.
- see the difference between the backupfile and the corresponding values in the
development database.
- Transfer selected values from the backup file to the development database.
- inspektera innehållet i en backupfil.
- se skillnaden mellan två backupfiler lagrade vid olika tidpunkt.
- se skillnaden mellan en backupfil och motsvarande värden i utvecklingsdatabasen.
- överföra utvalda värden från backupfilen till utvecklingsdatabasen.
The backup function in the Proview runtime enviroment, stores the values of
objects and attributes specified with Backup objects, in the backup file. The
is read at Proview startup and the previously stored values are inserted into
the realtime database.
Backupfunktionen i Proview runtime, lagrar värden på objekt och attribute
specificerade med Backupobjekt, till backupfilen. Backupfilen läses vid
Proview uppstart och de tidigare lagrade värdena läggs in i realtidsdatabasen.
<h2>
Display the content of a backup file
Open the backup utility from the root volume configurator of the node from which the
backup
file is fetched. The backup utility is opened with the command 'backup show'.
A
ctivate File/Open in the menu and select a backup file. The backup file can be a copy
of the current backup file or a copy from a previous occation. All the attributes and
their values are displayed in the backup window
.
<h2>
Visa innehållet i en backupfil
.
Öppna backupfönstret från konfiguratorn för rotvolymen för den node från
vilken
backup
filen har hämtats. Backupfönstret öppnas med kommandot 'backup sho
w'.
A
ktivera File/Open i menyn och välj en backupfil. Backupfilen kan vara en kopi
a
av den nuvarande backupfilen eller en kopia från ett tidigare tillfälle. Al
la
attribut och deras värden visas i backupfönstr
et.
<image>dg_fig123.png
<b>Fig
Display backup file
<h2>
Compare two backup files
Open the first backup file for display as described above. Then activate
File/Compare Backup File i
n the menu and select the other backup file. The attributes
with values that differs between the files are now displayed
.
<h2>
Compare a backup file with the development database
Open the backup file for display, and then activate File/Compare Database in the menu
.
The attributes with values that differs between the backup file and the development
database in now displayed
.
<h2>
Transfer values from a backup file to the development database
Enter edit mode in the configurator and then open the backup utility. Open the backup
file for display, and then compare this with the values in the development database from
File/Compare Database in the menu. The attributes with values that differs between the
backup
file and the database are now displayed with checkboxes. Check the values you
want to transfer, and activate File/Transfer to database in the menu. Finally activate
Save in the configurator to store the modifications
.
<b>Fig
Visa backupfilen
<h2>
Jämför två backupfi
ler
Öppna den första backupfilen för visning som beskrivs ovan. Aktivera se
dan
File/Compare Backup File i
menyn och välj den andra backupfilen. Attribut med värd
en
som skiljer sig mellan filerna visas nu
.
<h2>
Jämför backupfilen med utvecklingsdatabas
en
Öppna backupfilen för visning, och aktivera sedan File/Compare Databse in men
yn.
Attribut med värden som skiljer sig mellan backupfilen och utvecklingsdatabase
n
visas nu
.
<h2>
Överför värden från en backupfil till utvecklingsdatab
asen
Gå till editeringsmod i konfiguratorn, och öppna sedan backupfönstret. Öp
pna
backupfilen för visning, och jämför den med värden från utvecklingsdatab
asen
med File/Compare Database in menyn. Attribut med värden som skiljer mella
n
backup
filen och utvecklingsdatabasen visas nu med checkboxar. Markera de värde
n
som ska överföras till databasen, och activera File/Transfer to database i meny
n.
Aktivera även Save i konfiguratorn för att spara ändringa
rna.
</topic>
...
...
src/tools/pkg/cygwin/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/wtt_version_help.dat
}
>
$pwr_e
load
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/wtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/wtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/cygwin/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/wtt_version_help.dat
}
>
$pwr_e
load
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/wtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/wtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb/pwrsev/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/sev_xtt_version_help.dat
}
>
$pwr_e
load
/sev_xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/sev_xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/sev_xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb_armel/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
$pwre_host_exe
/co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
$pwre_host_exe
/co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb_x86_64/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -79,10 +79,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/wtt_version_help.dat
}
>
$pwr_e
load
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/wtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/wtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb_x86_64/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/deb_x86_64/pwrsev/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/sev_xtt_version_help.dat
}
>
$pwr_e
load
/sev_xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/sev_xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/sev_xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/raspbian/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/wtt_version_help.dat
}
>
$pwr_e
load
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/wtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/wtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/raspbian/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/raspbian/pwrsev/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/sev_xtt_version_help.dat
}
>
$pwr_e
load
/sev_xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/sev_xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/sev_xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/ubu/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -80,7 +80,17 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_eexe
/wtt_version_help.dat
}
>
$pwr_eload
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_eload
/wtt_version_help.dat
{
echo
"<html><head>"
echo
"<meta http-equiv=
\"
Refresh
\"
content=
\"
5;../wtt_version_help_version.html
\"
>"
echo
"</head></html>"
}
>
$pwr_doc
/en_us/package_version.html
if
[
"
$1
"
==
"-v"
]
;
then
exit
...
...
src/tools/pkg/ubu/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
# Print rt version file
echo
"Version:
$version
"
>
$pwr_eexe
/rt_version.dat
...
...
src/tools/pkg/ubu/pwrsev/build.sh
View file @
cbf64c7b
...
...
@@ -76,10 +76,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/sev_xtt_version_help.dat
}
>
$pwr_e
load
/sev_xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/sev_xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/sev_xtt_version_help.dat
{
echo
"<html><head>"
...
...
src/tools/pkg/ubu_x86_64/pwr/build.sh
View file @
cbf64c7b
...
...
@@ -81,7 +81,16 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_eexe
/wtt_version_help.dat
}
>
$pwr_eload
/wtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_eload
/wtt_version_help.dat
{
echo
"<html><head>"
echo
"<meta http-equiv=
\"
Refresh
\"
content=
\"
5;../wtt_version_help_version.html
\"
>"
echo
"</head></html>"
}
>
$pwr_doc
/en_us/package_version.html
if
[
"
$1
"
==
"-v"
]
;
then
exit
...
...
src/tools/pkg/ubu_x86_64/pwrrt/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/xtt_version_help.dat
}
>
$pwr_e
load
/xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/xtt_version_help.dat
# Print rt version file
echo
"Version:
$version
"
>
$pwr_eexe
/rt_version.dat
...
...
src/tools/pkg/ubu_x86_64/pwrsev/build.sh
View file @
cbf64c7b
...
...
@@ -78,10 +78,10 @@ fi
done
}
<
$datfile
echo
"</topic>"
}
>
$pwr_e
exe
/sev_xtt_version_help.dat
}
>
$pwr_e
load
/sev_xtt_version_help.dat
# Convert to html
co_convert
-t
-d
$pwr_doc
$pwr_e
exe
/sev_xtt_version_help.dat
co_convert
-t
-d
$pwr_doc
$pwr_e
load
/sev_xtt_version_help.dat
{
echo
"<html><head>"
...
...
wb/lib/wb/src/wb_wnav_command.cpp
View file @
cbf64c7b
...
...
@@ -543,7 +543,7 @@ static int wnav_help_func( void *client_data,
}
if
(
ODD
(
dcli_get_qualifier
(
"/VERSION"
,
0
,
0
)))
{
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_
exe
/wtt_version_help.dat"
,
strict
);
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_
load
/wtt_version_help.dat"
,
strict
);
if
(
EVEN
(
sts
))
wnav
->
message
(
'E'
,
"No help on this subject"
);
return
sts
;
...
...
xtt/lib/xtt/src/xtt_xnav_command.cpp
View file @
cbf64c7b
...
...
@@ -489,7 +489,7 @@ static int xnav_help_func( void *client_data,
}
if
(
ODD
(
dcli_get_qualifier
(
"/VERSION"
,
0
,
0
)))
{
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_
exe
/xtt_version_help.dat"
,
0
);
sts
=
CoXHelp
::
dhelp
(
"version"
,
""
,
navh_eHelpFile_Other
,
"$pwr_
load
/xtt_version_help.dat"
,
0
);
if
(
EVEN
(
sts
))
xnav
->
message
(
'E'
,
"No help on this subject"
);
return
sts
;
...
...
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