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
3767c365
Commit
3767c365
authored
Oct 11, 2017
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
java OpPlaceWeb name in html-file, aristotle used for projects with several operator stations
parent
71808c75
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
31 additions
and
1 deletion
+31
-1
java/jpwr/jop/src/JopOpWindowApplet.java
java/jpwr/jop/src/JopOpWindowApplet.java
+13
-0
xtt/lib/ge/src/ge_graph_web.cpp
xtt/lib/ge/src/ge_graph_web.cpp
+18
-1
No files found.
java/jpwr/jop/src/JopOpWindowApplet.java
View file @
3767c365
...
...
@@ -96,6 +96,19 @@ public class JopOpWindowApplet extends JopApplet
setSize
(
new
Dimension
(
370
,
570
));
String
pwrPlace
=
this
.
getParameter
(
"pwrplace"
);
System
.
out
.
println
(
"pwrPlace "
+
pwrPlace
);
if
(
pwrPlace
==
null
)
{
System
.
out
.
println
(
"No pwrPlace specified in applet"
);
return
;
}
if
(
pwrPlace
.
startsWith
(
"$node"
))
{
// Replace with node object
CdhrObjid
roid
=
engine
.
gdh
.
getNodeObject
(
0
);
String
name
=
engine
.
gdh
.
objidToName
(
roid
.
objid
,
Cdh
.
mName_pathStrict
).
str
;
pwrPlace
=
name
+
pwrPlace
.
substring
(
5
);
}
localPanel
=
new
JopOpWindow
(
session
,
(
Object
)
this
,
pwrPlace
);
contentPane
=
(
JPanel
)
this
.
getContentPane
();
contentPane
.
setLayout
(
borderLayout1
);
...
...
xtt/lib/ge/src/ge_graph_web.cpp
View file @
3767c365
...
...
@@ -112,6 +112,8 @@ int Graph::generate_web( ldh_tSesContext ldhses, pwr_tOid opplaceweb_oid)
char
sname
[
80
];
char
arlist
[
400
];
pwr_tOName
opplaceweb_name
;
pwr_tOid
nodeobject_oid
;
pwr_tAName
nodeobject_name
;
ge_get_systemname
(
sname
);
...
...
@@ -238,6 +240,21 @@ int Graph::generate_web( ldh_tSesContext ldhses, pwr_tOid opplaceweb_oid)
strcpy
(
fname
,
"$pwrp_web/pwr_login.html"
);
dcli_translate_filename
(
fname
,
fname
);
// If OpPlaceWeb is positioned under the node object, use $node syntax
sts
=
ldh_GetClassList
(
ldhses
,
pwr_eClass_Node
,
&
nodeobject_oid
);
if
(
EVEN
(
sts
))
return
sts
;
sts
=
ldh_ObjidToName
(
ldhses
,
nodeobject_oid
,
ldh_eName_Hierarchy
,
nodeobject_name
,
sizeof
(
nodeobject_name
),
&
size
);
if
(
EVEN
(
sts
))
return
sts
;
if
(
strncmp
(
nodeobject_name
,
opplaceweb_name
,
strlen
(
nodeobject_name
))
==
0
)
{
pwr_tAName
tmp
;
strcpy
(
tmp
,
&
opplaceweb_name
[
strlen
(
nodeobject_name
)]);
strcpy
(
opplaceweb_name
,
"$node"
);
strcat
(
opplaceweb_name
,
tmp
);
}
fp_login
.
open
(
fname
);
fp_login
<<
...
...
@@ -597,4 +614,4 @@ static int graph_get_applet_size( char *graphname, int *width, int *height)
}
return
GE__NOSIZE
;
}
#endif
\ No newline at end of file
#endif
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