Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 4.3.1
-
Fix Version/s: None
-
Component/s: Installer
-
Labels:None
-
Environment:Ubuntu 8.04, jdk 1.6.0_11
-
Number of attachments :
Description
Variables in the HTMLInfoPanel are substituted with their initial values instead of considering user input. Using dynamic variables makes things even worse: some are not substituted at all.
How to reproduce:
install.xml:
<dynamicvariables> <variable name="iz.install.host" value="localhost"/> <variable name="iz.preview.http.port" value="8001"/> </dynamicvariables>
Panel resource:
<html>
...
<a href="http://${iz.install.host}:${iz.preview.http.port}/dashboard">http://${iz.install.host}:${iz.preview.http.port}/dashboard</a>
...
</html>
User interaction:
iz.install.host is set to "myserver"
iz.preview.http.port is set to "9001"
Panel:
http://localhost:${iz.preview.http.port}/dashboard