This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 29297 - Empty Working Dir text box on OpenVMS doesn't work correctly
Summary: Empty Working Dir text box on OpenVMS doesn't work correctly
Status: RESOLVED FIXED
Alias: None
Product: obsolete
Classification: Unclassified
Component: vcsgeneric (show other bugs)
Version: 3.x
Hardware: Other OpenVMS
: P4 blocker (vote)
Assignee: Martin Entlicher
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-12-04 18:50 UTC by lingram
Modified: 2009-11-07 13:34 UTC (History)
1 user (show)

See Also:
Issue Type: TASK
Exception Reporter:


Attachments
Patch file generated by cvs diff for VcsCustomizer.java (745 bytes, patch)
2002-12-04 18:51 UTC, lingram
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description lingram 2002-12-04 18:50:44 UTC
We need to make a permanent change to 
VcsCustomizer.java in vcsgeneric
to properly handle an empty "Working 
Dir" text box on the Generic VCS
Mount Wizard on OpenVMS. This change 
is as follows:

  Currently:  if (Utilities.isUnix())

  Change to:  if (Utilities.isUnix() ||
                  
(Utilities.getOperatingSystem() == 
Utilities.OS_VMS))
Comment 1 lingram 2002-12-04 18:51:21 UTC
Created attachment 8174 [details]
Patch file generated by cvs diff for VcsCustomizer.java
Comment 2 Martin Entlicher 2002-12-05 10:14:18 UTC
Maxym, do you agree with adding this into 3.4.1? It seems, that this
is necessary for OpenVMS.
The patch is trivial and should not cause any problems.
Comment 3 _ mihmax 2002-12-06 12:36:14 UTC
Do I agree or not is NOT an issue.
If it's a BUGFIX, feel free to include it into 3.4.1 codebase (P4 are
not subject to reviewing).

Sincere Max
Comment 4 _ mihmax 2002-12-06 12:39:52 UTC
BTW: The patch is really trivial, please commit. Thank you.
Comment 5 Martin Entlicher 2002-12-09 18:29:26 UTC
The patch was applied in both release341 branch and the main trunk.