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
88e05b81
Commit
88e05b81
authored
May 06, 2009
by
Claes pwr46/data0/x4-6-0
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Default browser changed to firefox and bugfix
parent
eef33003
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
20 deletions
+25
-20
xtt/lib/xtt/src/xtt_url.cpp
xtt/lib/xtt/src/xtt_url.cpp
+25
-20
No files found.
xtt/lib/xtt/src/xtt_url.cpp
View file @
88e05b81
...
@@ -42,8 +42,8 @@ int xnav_open_URL( pwr_tURL url)
...
@@ -42,8 +42,8 @@ int xnav_open_URL( pwr_tURL url)
{
{
char
cmd
[
200
];
char
cmd
[
200
];
int
sts
;
int
sts
;
pwr_sClass_WebBrowserConfig
*
config_p
;
pwr_sClass_WebBrowserConfig
*
config_p
=
0
;
char
browser
[
40
]
=
"
netscape
"
;
char
browser
[
40
]
=
"
firefox
"
;
pwr_tObjid
config_objid
;
pwr_tObjid
config_objid
;
sts
=
gdh_GetClassList
(
pwr_cClass_WebBrowserConfig
,
&
config_objid
);
sts
=
gdh_GetClassList
(
pwr_cClass_WebBrowserConfig
,
&
config_objid
);
...
@@ -53,6 +53,7 @@ int xnav_open_URL( pwr_tURL url)
...
@@ -53,6 +53,7 @@ int xnav_open_URL( pwr_tURL url)
if
(
ODD
(
sts
))
{
if
(
ODD
(
sts
))
{
if
(
strcmp
(
config_p
->
WebBrowser
,
""
)
!=
0
)
if
(
strcmp
(
config_p
->
WebBrowser
,
""
)
!=
0
)
strcpy
(
browser
,
config_p
->
WebBrowser
);
strcpy
(
browser
,
config_p
->
WebBrowser
);
}
if
(
strncmp
(
url
,
"$pwr_lang/"
,
10
)
==
0
)
{
if
(
strncmp
(
url
,
"$pwr_lang/"
,
10
)
==
0
)
{
// If file in $pwr_lang, check if file exist, else take en_us
// If file in $pwr_lang, check if file exist, else take en_us
...
@@ -74,7 +75,7 @@ int xnav_open_URL( pwr_tURL url)
...
@@ -74,7 +75,7 @@ int xnav_open_URL( pwr_tURL url)
}
}
replace_symbol
(
url
,
url
,
config_p
);
replace_symbol
(
url
,
url
,
config_p
);
}
if
(
strcmp
(
browser
,
"mozilla"
)
==
0
||
if
(
strcmp
(
browser
,
"mozilla"
)
==
0
||
strcmp
(
browser
,
"rt_mozilla"
)
==
0
)
{
strcmp
(
browser
,
"rt_mozilla"
)
==
0
)
{
// Try remote display first
// Try remote display first
...
@@ -112,6 +113,10 @@ static int replace_symbol( pwr_tURL in, pwr_tURL out,
...
@@ -112,6 +113,10 @@ static int replace_symbol( pwr_tURL in, pwr_tURL out,
else
else
strncpy
(
url
,
in
,
sizeof
(
pwr_tURL
));
strncpy
(
url
,
in
,
sizeof
(
pwr_tURL
));
if
(
!
config
)
{
strcpy
(
out
,
url
);
return
XNAV__SUCCESS
;
}
sym_start
=
0
;
sym_start
=
0
;
t
=
tmp
;
t
=
tmp
;
...
...
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