ubala / aribaweb

Automatically exported from code.google.com/p/aribaweb
Apache License 2.0
1 stars 2 forks source link

App launch does not open in browser on Windows 7 machine (x64; Eclipse 3.6.1) (fix included) #83

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.(Attempt to) Launch AW app in Eclipse 3.6.1 in Windows 7.

What is the expected output? What do you see instead?
Opens in browser.
Browser does not open.

What version of the product are you using? On what operating system?
5.0GA (p5)
Win7 Home x64
Eclipse 3.6.1 (JEE)
(IE 8 or Firefox 4b9)

Please provide any additional information below.
Here's the fix (build-common.xml is not accounting for Windows 7 at launch!):
Modify build-common.xml, line 896, adding ",Windows 7".
  from:
    <exec executable="cmd.exe" os="Windows 2000,Windows NT,Windows XP,Windows Vista" >
  to:
    <exec executable="cmd.exe" os="Windows 2000,Windows NT,Windows XP,Windows Vista,Windows 7" >

Original issue reported on code.google.com by morton.t...@gmail.com on 16 Jan 2011 at 6:59