_id
stringlengths
36
36
bug_id
int64
1
425k
description
stringlengths
1
373k
bug_severity
stringclasses
7 values
bug_status
stringclasses
3 values
resolution
stringclasses
8 values
{'$oid': '52e9b44c54dc1c25ebdb1f49'}
99
Whenever I attempt to release a whole project, it takes a long time to compute the outgoing changes. In some cases, I even know I want to override fully what is on the server, and would be happy with a release no compare. What I mean is that the release operation should trigger a lazy compare action. It would be fine to simply show me the first affected children (could be a folder) which I can expand if I do care. Currently, the comparison is performed until all the leaves, and I can still decide to override conflicting changes all at once (which is fine), so why then forcing me to get the big penalty upfront when comparing. NOTES: JohnA (5/29/2001 11:13:25 AM) It isn't comparing any contents, it's just comparing the local workspace with the server to see at a resource granularity what has changed. This has to happen before you can catchup or release anything, because otherwise it doesn't know what to release or load. We never want to allow releasing without first checking if the outgoing change conflicts with changes on the server, so this step is necessary. Kevinm (5/29/01 3:12:04 PM) We should (future) see if this can be sped up though. Other thought is that the actual tree filling and comparer opening could be taking time, so an optimized (just release if no conflicts) action would be faster.
normal
RESOLVED
FIXED
{'$oid': '52e9b44c54dc1c25ebdb1f4a'}
102
It would be really nice if we had an accelerator for stepping (eg. cntrl-N). Having to pick an icon is bad for accessibility and slows things down since you move from editing text to back up to the 'next' buttons. NOTES: AW (31.05.01 20:17:58) Yes! AW (01.06.01 20:50:30) Fixed in > 0.116. There is a new org.eclipse.compare.internal.NavigationAction that the SyncView might want to use. The cntrl-N/P shortcuts are independent from the actions (since there is no platform support for doing this kind of stuff) so they should work without installing the actions; however it would be nice if the up/down arrows would appears in the SyncView's titlebar (as in the Search result viewer). JohnA (6/4/2001 4:52:38 PM) Moving this PR to ITPVCM for consideration of adding next & previous actions to the sync view toolbar. Easy change, but I'm not crazy about the idea of adding YET ANOTHER pair of up/down arrows. The distinction with these ones is that they go to the next change regardless of file boundaries. JEM (6/6/2001 11:32:04 AM) How about a toggle button on the local tool bar which determines the behaviour of the up/down buttons, rather than another set of buttons?
normal
RESOLVED
FIXED
{'$oid': '52e9b44c54dc1c25ebdb1f4b'}
103
Version a project (in the workspace) as v123. Version again. The dialog should suggest v124 as the version number; instead it has no suggestion. NOTES: KM(5/30/01 6:21:30 PM) Seems to work for me. Did you have several projects selected? KM (5/30/01 6:23:40 PM) Its not clear to me how its picking the 'next' number. It seems to start from v1 and work its way forward looking for a free one. So if you version as follows: v1 v2 v10 next time it will prompt for v3. JohnA (5/30/2001 9:28:50 PM) No, it starts from the "previous version", which it guesses to be the last item in the IVersionHistory for that project. In fact, that array doesn't seem to have a consistent order. Before, it couldn't do much better without fetching the creation date for each version from the server. Now that we have a multi fetchStateInfo on IVersionHistory this is more feasible because it can be done in one extra round trip. This should be added time permitting.
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f4c'}
104
- Create a new CVS repository location - Put anything in the fields of the wizard (e.g. 'a', 'a', 'a') and finish - When trying to access the streams, you are prompted to enter a password. No password should be required as the connection will fail anyway. It comes from the constructor of class Client in core.cvs. A user authentication is performed before creating the connection. We could first try to create a connection with no password to check that the location is valid. NOTES:
normal
VERIFIED
FIXED
{'$oid': '52e9b44c54dc1c25ebdb1f4d'}
105
If you call ISharingManager#getIgnored() on resources that are children of ignored folders (such as bin), it returns false. It should return true if any parent is ignored. NOTES: Jean-Michel (31/05/2001 6:58:18 PM) JohnA will be handling this by passing a IResource[] with parents to getIgnored. JohnA (6/1/2001 4:25:55 PM) Now handling this. The ignore API needs to be clarified/rethunk in this area. Moving to the future.
normal
VERIFIED
FIXED
{'$oid': '52e9b44c54dc1c25ebdb1f4e'}
106
The "ingore resources" page has the list box far down in the dialog. NOTES: JEM (5/31/01 7:14:41 PM) Hmm, it was fine when I wrote it. JEM (6/1/01 10:41:28 AM) Fixed JEM (6/4/01 9:53:51 AM) Did this fix not get in? Still looks odd.
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f4f'}
108
HackFinder cleanup. CVS Subscriber.confirmMerge() is eating a CoreException (logs it now) and should probably propagate the exception to the caller. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f50'}
109
HackFinder cleanup. Subscriber.buildBaseVersionAfterLoad states that we need to solve the problem of the parents having to exist. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f51'}
107
HackFinder cleanup. TeamStreamHandle.fetchBaseVersion only works for files. Additional API is required from the repository adapter to implement this for non-files. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f52'}
110
HackFinder cleanup. In CVSResource.getServerWorkspace, we shouldn't be exposing the context, but didn't know how to implement fetchFileHistory() without it. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f53'}
111
HackFinder cleanup. CVSAdapter.getKnownRemoteDirectories has a hack to add the project directories that should be fixed properly. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f54'}
112
HackFinder cleanup. The following API methods have unimplemented stubs: Handle.fetchReferencedProjectVersions Handle.fetchSharingRecommendations Handle.fetchProperties Handle.fetchDescription SharingManager.getRecommendedSharing SharingManager.setRecommendedSharing NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f55'}
113
There are different core delete methods if you want to delete files and folders but keep local history. We should consider using those methods when we delete stuff in our replace with code, that way local history would be maintained. Currently, replace with calls the wrong core methods, and local history gets wiped out. Probably a future item... a bit risky trying to add this now. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f56'}
115
When creating a new repository location, the fields of the wizard are always empty. Thus the user has to enter his name, the host and the path each time he creates a new location. However, the user name and the host name are bound to be the same for every new location while the paths must not be very different. So why not print the last entered values in the fields as default values? NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44c54dc1c25ebdb1f57'}
114
When asking to save the sync view buffer to disk, check that the file has not been modified since the sync view read it. There can be conflicts between changes in the sync view and changes made in other editors. NOTES:
normal
VERIFIED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f58'}
117
(There was a PR about this in the Inbox earlier today. I could not find it anymore, creating a new one.) Merge managers put sync info in the resource tree which is persisted across sessions. We need to clean up. NOTES: BB (6/1/2001 7:13:10 PM) Since we don't have ongoing merges (yet, this would be "subscribing to changes"), it is easiest to flush the sync info for all merge managers on startup. Created stream for this (BRANCH_1GEO006, based on v117) and released fix. Jean-Michel, please approve and merge into HEAD. Jean-Michel (02/06/2001 2:32:42 PM) Performed merge. Moving to future for reconsideration of merge life-cycles.
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f59'}
116
(From Julian J) When the user selects the "Version from stream..." action in the Repository view, I'd recommend you refresh the view once the action has been completed. NOTES: KM (6/1/01 11:26:01 AM) We need to be careful here due to performance issues on refresh in the repo view, especially over slow connection. Make it user pref? KM (6/1/01 12:00:48 PM) Or we need a model event for versioning and selectively refresh the one item. Much more work has the preferable behaviour.
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f5a'}
118
The message says: "Resource was out of sync with the file system: x/y/j.txt". It should be more informative: "foo/bar.txt was out of sync with the file system. Unable to delete and continue load operation.' NOTES: Jean-Michel (01/06/2001 3:18:12 PM) Low priority :)
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f5b'}
119
- In Repo view, select a folder: only its name is displayed in the Properties view, the other fields are empty. - Select a project in stream 'HEAD': again, only its name is available, but this time "n/a" is printed in the 'author', 'comment' and 'version' fields and the current system date is printed in the 'modified' field. Shouldn't the same values be printed in both cases? It can also be confusing to print the current date in the 'modified' field whereas the information is actually not available. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f5c'}
120
The SSH client does not close the connection to the server properly. The log output of sshd on a Linux machine contains entries like "fatal: Connection closed by remote host. debug: Calling cleanup 0x8055fe0(0x0)". This does not appear when using the cvs command line client with ssh; instead, there are log entries like: "debug: EOF received for stdin. debug: Received SIGCHLD. debug: End of interactive session; ... debug: Command exited with status 0. debug: Received exit confirmation." NOTES: BB (6/1/2001 7:23:33 PM) SSH works even though we do not close the connection properly. We should be nicer citizens though. (Eventually.)
normal
VERIFIED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f5d'}
121
We need to remove merge manager sync info fomr the tree. 1. change sync name for merge manager, replace prefix with "merge" (optional) 2. flush on plugin startup searching for merge manager sync info and delete. NOTES: KM (6/1/01 6:25:09 PM) Don't want to mess with sync info now. Jean-Michel (04/06/2001 2:49:45 PM) This has been fixed and is dup of: 1GEO006: ITPVCM:ALL - VCM: get rid of sync info for merge managers on startup. The above PR is still open so that we can correctly implement life cycles in the next release.
normal
VERIFIED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f5e'}
122
After having synchronized and released successfully with teamstream (on zrhcvs), I attempted to version the project org.eclipse.jdt.core and got a dialog saying "CVS communication error", following stack trace was in the log: Log: Sat Jun 02 00:45:55 CEST 2001 4 org.eclipse.vcm.core 4 CVS communication error java.io.InterruptedIOException: Read timed out at java.net.SocketInputStream.socketRead(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java(Compiled Code)) at java.io.BufferedInputStream.fill(BufferedInputStream.java(Compiled Code)) at java.io.BufferedInputStream.read(BufferedInputStream.java(Compiled Code)) at org.eclipse.vcm.internal.core.ccvs.client.Connection.readLineOrUntil(Connection.java(Compiled Code)) at org.eclipse.vcm.internal.core.ccvs.client.Connection.readToken(Connection.java(Compiled Code)) at org.eclipse.vcm.internal.core.ccvs.client.Client.processResponses(Client.java(Compiled Code)) at org.eclipse.vcm.internal.core.ccvs.client.Client.processResponses(Client.java:397) at org.eclipse.vcm.internal.core.ccvs.client.Client.execute(Client.java:257) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.createProjectVersion(CVSAdapter.java:313) at org.eclipse.vcm.internal.core.SharingManager.createProjectVersion(SharingManager.java:71) at org.eclipse.vcm.internal.ui.actions.VersionAction$VersionLocalOperation.version(VersionAction.java:121) at org.eclipse.vcm.internal.ui.VersionResourcesOperation.run(VersionResourcesOperation.java:45) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) NOTES: PM (6/2/2001 12:48:47 AM) My network connection did not drop. I am connected over VPN from home to OTT. Next versioning attempt worked fine.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b44d54dc1c25ebdb1f5f'}
125
1. create a new java project with a main class 2. sync the main class 3. try to release just that resource Get the no-lock error. If you then pick the project to release you still can't (I think you'ld need to resync the project). NOTES: KM (6/5/01 7:50:22 PM) Verified, still exists in 118. Jean-Michel (06/06/2001 9:40:11 AM) We should refresh parents when showing the sync view. I think that John already auto-releases parents if they are outgoing creations. But when you call sync on one resource only that resource is refreshed, ui doesn't know that parents are outgoing creations. JohnA (6/7/2001 8:46:00 PM) Isn't this a fairly costly thing to do, just for supporting that uncommon case? JohnA (6/7/2001 9:22:36 PM) Added support, tested, it works. We can discuss implications with JML tomorrow. JohnA (6/8/2001 11:06:21 AM) Support had side-effects. Bailing out. All parents of the released file were showing up as incoming creations on next attempt to synchronize. JohnA (6/9/2001 3:26:52 PM) Moving to future.
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f60'}
124
When we load a version of a project without first connected to a stream, we don't keep any sync info. But yet we know the version IDs of all the resources when we load them. What if we: 1. separate the notion of connection to a repo from that of connecting to a stream 2. keep sync info based on repo 3. allow you to then attach to a stream. If its in the same repo, you can keep the sync info. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f61'}
123
This scenario happens very often to me - I change a file in my workspace to test something - I do a release - in the release I encounter that there is no need to release the file - I want to replace it from the stream but a corresponding action is missing Now I have to go to the navigator to do the job. NOTES: JEM (6/2/01 12:25:00 PM) I agree, I have often wanted to do this but had to go to the navigator instead.
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f62'}
126
while releasing a file, I got the following error message: Repository colsed connection Details>> cvs [server aborted]: cannot rename file d:\cvsroot.../,ProblemReportView.java, to d:\cvsroot.../,ProblemReportView.java,v: File Exists NOTES: JohnA (8/10/2001 12:20:44 PM) She was using the repo on James' computer, WinNT server. JEM (8/13/2001 4:49:48 PM) Is it possible she changed the case of the file? I.e. Changed from ProblemREportView -> ProblemReportView JohnA (10/1/2001 4:02:55 PM) No, she hadn't. I was working with her at the time. I believe JML looked at it briefly and it seemed that the server was in some funky state.
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f63'}
128
It is impossible to turn off the sharing for a project. Are there any cases where this would be useful? Perhaps an item for future consideration. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f64'}
127
If you sync on an ignored .class file it says "Resources are the same...". It should say you can't since its ignored. NOTES: JEM (6/6/01 2:43:23 PM) What if you sync on multiple files, some of which are ignore and some aren't, and there are no changes? We need one generic message that conveys that there are no changes.
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f65'}
129
If you try and discard a repository location that is being shared with projects in your workbench the dialog should show all projects shared with the location (e.g. use the DetailsDialog). The message should tell the user how he can discard a repo location: "Cannot discard this location while projects in your workspace are shared with <location name>." The details as the list of projects that are currently shared with the location. NOTES: Jean-Michel (07/06/2001 10:54:39 AM) Fixed. To be reviewed by JohnA. Jean-Michel (08/06/2001 10:47:58 AM) Approved by John, released to HEAD. OC (08/06/2001 2:56:16 PM) The behaviour is not good. On my workspace I have several projects shared on the same repository (scratchrepo). I add a second repository (vcmrepo) then I select both repositories and try to discard them. I get the error message twice for scratchrepo and vcmrepo is not discarded.
normal
VERIFIED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f66'}
130
1) Select multiple Project in Navigator 2) Version from workspace issue #1: What about a 'Yes to all' if conflicting resources issue #2: The increment of the long operation finishes before we preocessed all the projects NOTES: KM (6/5/01 6:04:57 PM) Issue #1 is future. KM (6/6/01 4:02:03 PM) Seems ok to me. JEM (10/1/2001 3:36:21 PM) The increment of the long op is a problem.
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f67'}
133
Why is the Show in Resource History enabled in the history view? What is it supposed to do? NOTES: KM (6/4/01 3:21:57 PM) Previously PR'd. Its actually hard to get rid of it. JohnA (6/4/2001 3:30:15 PM) Actions don't know what view they're in. Note that this will get the latest history, so it acts a bit like a refresh operation for that view.
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f68'}
131
1) Create a resource that is the only resource in its folder. 2) Release this change to the cvs repository. 3) Delete the resource from your workspace. 4) Release this change to the cvs repository. Note: Because this was the only thing in the folder, th folder gets removed too. 5) Expand project versions to find the resource you want to add back in. 6) Select add to workspace. Get an error dialog and a log entry: Errors adding project. Resource /org.eclipse.swt/ws/photon must exist. An internal error has occurred, consult the error log for details. (where /org.eclipse.swt/ws/photon was the folder my resource was in) Log: Mon Jun 04 09:20:28 EDT 2001 4 org.eclipse.vcm.ui 1 Errors adding project 1=============<children>============= 4 org.eclipse.core.resources 273 Could not delete: c:\development\target\eclipse\plugins\Eclipse Launcher\launcher_117.zip. 1=============</children>============= Log: Mon Jun 04 09:20:31 EDT 2001 4 org.eclipse.core.resources 273 Could not delete: c:\development\target\eclipse\plugins\Eclipse Launcher\launcher_117.zip. Log: Mon Jun 04 11:40:53 EDT 2001 4 org.eclipse.vcm.core.cvs 4 Project version tag not found in history file Log: Mon Jun 04 12:03:59 EDT 2001 4 org.eclipse.vcm.ui 1 Errors adding project 1=============<children>============= 4 org.eclipse.core.resources 368 Resource /org.eclipse.swt/ws/photon must exist. 4 org.eclipse.vcm.ui 1 An internal error has occurred, consult the error log for details. java.lang.NullPointerException at org.eclipse.core.internal.resources.SaveManager.sortTrees(SaveManager.java:981) at org.eclipse.core.internal.resources.SaveManager.collapseTrees(SaveManager.java:182) at org.eclipse.core.internal.resources.SaveManager.save(SaveManager.java:740) at org.eclipse.core.internal.resources.SaveManager.snapshotIfNeeded(SaveManager.java:881) at org.eclipse.core.internal.resources.Workspace.endOperation(Workspace.java:672) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1188) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) 1=============</children>============= NOTES: VI (6/4/2001 12:13:45 PM) I went and manually add the parent folder and then did "Add to workspace" and this worked. KM (6/4/01 12:13:43 PM) This I assume is a side effect that we are not auto-loading/creating parents when adding from workspace. CM (6/21/2001 11:02:18 AM) Another way to reproduce this problem: - delete a package from a project (package must have been versioned at one time) - go to repository, select deleted package, add to workspace (get error dialog)
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f69'}
132
You are working away on your project and decide to release. The sync view shows your outgoing changes, at this point you realize that you don't want to release, or ever will want to, some resources. What can you do? Curently our story is very weak. NOTES: Jean-Michel (04/06/2001 2:01:53 PM) Currently when the user gets to this point (e.g. resources in the sync view) they are already managed (auto-manage happens in refresh) and any means the user makes to unmange them is futile. We should think about having a context menu item on resources in the sync view which is called (Ignore...). When this happens a dialog appears allowing you to add this file, or a pattern based on the file into the ignored list. After the ignore, the file list in the sync view is updated by removing newly ignored resources and unmanaging them such that subsequent sync actions correctly ignore these resources. I don't think the current API supports the unmanage method. It probably should. But what happens if you unmanage a resource, and would like to manage it again? Just remove it from the ignore list and refresh. It will become managed via the auto manage from the ui.
normal
RESOLVED
FIXED
{'$oid': '52e9b44d54dc1c25ebdb1f6a'}
134
The following operations on unmanaged resource provide different style dialogs for errors. I'm not sure what we should use, but they should a least be the same? version history => information compare with stream resource => error compare with version => information replace with stream resource => error NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f6b'}
135
Select to version a project from the workspace, if the project has been versioned often (e.g. org.eclipse.vcm.core) the dialog takes >10s to appear. If you then chose the "name each" option, it takes another >10s to appear. I think we may be doing extra round trips here because in order to show the first dialog the project history should already of been received, there is no need for another round trip when opening the "name each". NOTES: BB (6/5/2001 3:54:17 AM) Note that this is particularly painful for the connectivity-challenged <g>...
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f6c'}
137
- Create a new file - When you compare with Stream resource you get a "... is not released in a stream" message, while when you try to replace with Stream resource you get a "... does not belong to a stream" message. The titles are different too. I suppose it would be more consistent to print the same message as the situation is almost the same in both cases. - Also, when you try to compare/replace with version you get an information dialog box for comparing and an error dialog box for replacing. NOTES: JEM (6/6/01 3:07:54 PM) 1. Messages are now the same. 2. Titles are now consistent: "Unable to Compare", "Unable to Replace" 3. Both are now errors. Fixed. OC (08/06/2001 3:51:57 PM) Some are fixed but others are remaining. - Stream Contents: Compare -> "...is not released in a stream" Replace -> "...does not belong to a stream" Texts are still different - Version: Compare -> title "No Versions To Compare", should be "Unable to Compare"
normal
RESOLVED
INVALID
{'$oid': '52e9b44d54dc1c25ebdb1f6d'}
136
We don't provide progress monitoring during a merge. There is a lot of work going on here (e.g. at least 2 full refreshes) and other comparisons. We must show progress for this long running operation. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f6e'}
138
The context menu items regarding VCM should either not be present or disabled wheb the project isn't connected with a repository. There are also strange differences in enablement of the menus: For example Replace with stream (and version) is disabled while Replace with version is enabled (on a CU). NOTES: JEM (6/5/2001 9:30:41 AM) I don't think all VCM operations should be disabled. The release operation, for example, helps the user by prompting them to choose a stream if the project is not already associated with one. Without this feature, it is much harder for the beginner user to figure out how to begin working with streams. EG (6/5/2001 3:36:14 AM) not critical. given that VCM operations are "supportive" they can be left in the menu. The current behaviour is also consistent with the VCM contributed actions to the navigator. Moving to ITPVCM for consideration. JohnA (6/5/2001 9:51:24 AM) If you are not connected to a stream, it is impossible to "Replace With Stream", but it is still possible to "Replace With Version". We could possibly check if there are any repository connections at all, and if not, disable all Compare/Replace actions. KM (6/5/01 2:28:42 PM) We are a little overgenerous in our lack of disabling. eg. Version should probably be disabled instead of giving a helpful failing message as it does now. This is consistent then with rest of Eclipse.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f6f'}
141
Recommend dialog automatically select a stream. Options - select 1st stream - if dialog is being run a second time then select the stream the user chose last time he used the dialog. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f70'}
139
After using it awhile, I really think we should automatically switch to release mode when there's no more to catchup. As it is, it starts up in catchup mode by default, and once the user has caught up to all incoming changes, it's easy to get the impression that they're in sync, because the view is empty. One possibility: when there is no more to catchup, but there are still things to release, a dialog appears saying, "There are no more incoming changes, do you want to switch to release mode to release the outgoing changes?". The options would be "Yes/No/Always". Picking "Always" would set a user preference (also visible from the VCM pref page), so that it would always auto-switch when no more incoming changes. NOTES: KM (6/5/01 2:23:36 PM) Good idea. The only way we can do this is with a preference or prompting, otherwise people will get confused. GDA (6/5/01 8:01:04 PM) * A dialog is not a good idea -- too intrusive. For example do I end up always getting the dialog until I submit and say "aways" ? * Switching automatically may potentially cause people to not realize they have been switched to release mode. This might be ok for experts but might cause some confusion for newbies. Let me make a counter arguement - in va/smalltalk it was annoying to have to click public, then private, then class, then public, then private. This says that we should flow the user through things. Unfortunately this is hard to tell without trying it. Given where we are if this goes in it must be defeatable with a preference. There is possibility this will make things nicer. JohnA (6/6/2001 11:44:51 AM) So the dialog could have Yes/No/Always/Never, which would link to a user preference. The preference page would have a radio button group: When in catchup mode of the sync view, and there are no more incoming changes: o Switch to release mode automatically. o Always prompt to switch to release mode. o Do nothing. JohnA (6/7/2001 9:23:35 PM) Deferring to future.
enhancement
RESOLVED
WONTFIX
{'$oid': '52e9b44e54dc1c25ebdb1f71'}
140
Close a project. Replace with version. The project is re-opened. NOTES: JEM (6/5/01 10:13:58 AM) Replace with version menu item should be disabled on closed projects. JEM (6/6/01 12:48:50 PM) Fixed JEM (6/7/01 12:24:32 PM) Backed out, this is valid behaviour. There are cases where we don't want to be forced to open a project (and thus cause a build) just to be able to replace with another version. Ideally we could load in the new version in a closed state, but I don't think that's easy to do. Recommend no action. KM (6/8/01 3:03:59 PM) Closed is not just for builders, it indicates whether you are working on it or not (hence no children when closed). We should disable operation. I don't understand the usage case where I want it closed but want to replace contents given that when its closed I can't even see the original contents. JEM (6/8/2001 3:18:00 PM) John can perhaps explain better than I, but he often has a closed project and wants to replace it with another version without opening it first. Of course, in that case you would expect the newly-loaded version to be closed as well, which I believe is not possible currently.
normal
RESOLVED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f72'}
142
The Repository arrows are left right arrows although they are used to navigate up and down in the list - the up and down arrows should be used instead. NOTES: JohnA (6/5/2001 2:10:40 PM) These arrows are supplied by DrillDownAdapter, part of org.eclipse.ui. I think left&right icons make more sense, because it's a web/gopher style of navigation that everyone these days is familiar with. If Netscape had up & down arrows, people would be pretty confused. You're not just going up and down a list, you're actually creating a new tree with a different input element each time the buttons are pressed. Moving to ITPUI for consideration. KH (6/5/2001 7:47:16 PM) This is how the DrillDownAdapter works.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f73'}
143
When I 'Version from workspace' a project and set an already-existing version name as the new version name, for example "MyVersion", the operation first seems to work (progress bar) then I get the following error message: (title) "Versioning Problems" (text) "Versioning Problems" (details) "W bin/mypackage/MyClass.class: MyVersion already exists on version 1.2: NOT MOVING tag to version 1.3" W mypackage/MyClass.java: MyVersion already exists on version 1.3: NOT MOVING tag to version 1.4" To get a clearer message, we may check for already-existing names before trying to perform the operation. Besides, when you "Version from Stream" you get no message at all, so you don't know when the operation fails (which happens when you version with an already-existing name). NOTES: KM (6/5/01 2:47:02 PM) The previous names are checked when offering you a default. We SHOULD however report the conflict when versioning from the stream.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f74'}
145
* Connect to cvslnxtest * expand Head * expand DaveHelloWorld project * select file readme.txt.1.1 * choose Add to Workspace from pop up menu Note: I have never had DaveHelloWorld in my workspace Log: Wed Jun 06 00:31:47 EDT 2001 4 org.eclipse.vcm.ui 1 Errors adding project 1=============<children>============= 4 org.eclipse.vcm.ui 1 An internal error has occurred, consult the error log for details. java.lang.NullPointerException at org.eclipse.core.internal.resources.File.create(File.java:79) at org.eclipse.vcm.internal.core.SharingManager.doLoadFileOrFolder(SharingManager.java:171) at org.eclipse.vcm.internal.core.SharingManager$2.run(SharingManager.java:128) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1183) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:532) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:671) at org.eclipse.vcm.internal.core.SharingManager.doLoad(SharingManager.java:137) at org.eclipse.vcm.internal.core.SharingManager.load(SharingManager.java:541) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResource(ResourceLoader.java:154) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResources(ResourceLoader.java:171) at org.eclipse.vcm.internal.ui.ResourceLoader.access$0(ResourceLoader.java:166) at org.eclipse.vcm.internal.ui.ResourceLoader$2.execute(ResourceLoader.java:218) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1183) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) 1=============</children>============= Log: Wed Jun 06 00:32:21 EDT 2001 4 org.eclipse.vcm.ui 1 An internal error has occurred, consult the error log for details. java.lang.NullPointerException at org.eclipse.core.internal.resources.File.create(File.java:79) at org.eclipse.vcm.internal.core.SharingManager.doLoadFileOrFolder(SharingManager.java:171) at org.eclipse.vcm.internal.core.SharingManager$2.run(SharingManager.java:128) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1183) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:532) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:671) at org.eclipse.vcm.internal.core.SharingManager.doLoad(SharingManager.java:137) at org.eclipse.vcm.internal.core.SharingManager.load(SharingManager.java:541) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResource(ResourceLoader.java:154) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResources(ResourceLoader.java:171) at org.eclipse.vcm.internal.ui.ResourceLoader.access$0(ResourceLoader.java:166) at org.eclipse.vcm.internal.ui.ResourceLoader$2.execute(ResourceLoader.java:218) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1183) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) NOTES: KM (06/06/01 12:57:50 AM) Dup - this is auto-create on load problem. This flavor is worse because project doesn't exist and so get exception. JM (6/6/2001 5:51:31 AM) Unclear if this problem is specific to projects. If it is, just make the failure mode better. That is, do not do autoload of projects and spank nicely is someone tries. It is not unreasonable to say that you must have the project first then you can get stuff. Projects don't come for free anywhere else. BTW, if the project were to come for free, would I be prompted for its local location? Contact if you want to do more of a change. KM (6/6/01 10:16:40 AM) Yup, helpful message was all we were going to do. Loading project seemed rude since we'ld also need to load the .vcm_meta, but then what about the .classpath, etc. In other words, its hard to just get the container without the children. Jean-Michel (07/06/2001 12:03:49 PM) I can't reproduce this exact stack trace. Instead I get a NPE in core as described by PR: 1GEWH3K: ITPVCM:WIN2000 - NPE when synching I will re-investigate when new core drop is available. KM (6/7/01 12:30:47 PM) We should just disable the menu entry if the parent of the resource to be added does not exist. This presumably this is a fast check (necessary for a menu disable), to be done for every element of the selection. Jean-Michel (08/06/2001 3:54:09 PM) "Resource <parent> does not exist" is the error message I am getting. The exception does not occur, I assume because of a fix in core.
normal
VERIFIED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f75'}
144
CTRL + C does not work in " New CVS Repository Location " dialog When you select some text and hit CTRL + C, weird chars show up. NumLock does not make any difference in this case. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f76'}
146
UnknownHostException is not caught when the host name is invalid 1. in the Repositories view, New->CVS repository location 2. put a garbage host name( e.g. eh? ) 3. complete the wizard. 4. expand the "Project Version" UHE is thrown. Log: Wed Jun 06 12:51:50 EDT 2001 4 org.eclipse.vcm.core 4 Cannot locate host eh? java.net.UnknownHostException: eh? at java.net.InetAddress.getAllByName0(InetAddress.java:585) at java.net.InetAddress.getAllByName0(InetAddress.java:554) at java.net.InetAddress.getByName(InetAddress.java:463) at java.net.Socket.<init>(Socket.java:112) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.createSocket (PServerConnection.java:140) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.open (PServerConnection.java:190) at org.eclipse.vcm.internal.core.ccvs.client.Connection.open (Connection.java:224) at org.eclipse.vcm.internal.core.ccvs.client.Client.<init> (Client.java:226) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.internalFetchMemberNames (CVSAdapter.java:768) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.fetchTeamStreamProjectNames (CVSAdapter.java:591) at org.eclipse.vcm.internal.core.TeamStream.fetchProjects (TeamStream.java:58) at org.eclipse.vcm.internal.ui.model.TeamStreamElement.internalGetChildren (TeamStreamElement.java:82) at org.eclipse.vcm.internal.ui.model.TeamStreamElement$1.run (TeamStreamElement.java:39) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:97) at org.eclipse.vcm.internal.ui.model.TeamStreamElement.getChildren (TeamStreamElement.java:37) at org.eclipse.ui.model.WorkbenchContentProvider.getChildren (WorkbenchContentProvider.java:53) at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren (AbstractTreeViewer.java:568) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren (StructuredViewer.java:281) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren (StructuredViewer.java:378) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren (AbstractTreeViewer.java:238) at org.eclipse.jface.viewers.AbstractTreeViewer.handleTreeExpand (AbstractTreeViewer.java:611) at org.eclipse.jface.viewers.AbstractTreeViewer$2.treeExpanded (AbstractTreeViewer.java:631) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java (Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Tree.wmNotifyChild(Tree.java(Compiled Code)) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java(Compiled Code)) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java(Compiled Code)) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.CallWindowProc(Native Method) at org.eclipse.swt.widgets.Tree.callWindowProc(Tree.java(Compiled Code)) at org.eclipse.swt.widgets.Tree.WM_LBUTTONDOWN(Tree.java:1043) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DispatchMessage(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java (Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java (Compiled Code)) at org.eclipse.ui.internal.Workbench.run(Workbench.java:620) at org.eclipse.core.internal.boot.InternalBootLoader.run (InternalBootLoader.java:815) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:69) at org.eclipse.core.launcher.Main.run(Main.java:311) at org.eclipse.core.launcher.Main.main(Main.java:198) NOTES: KM (6/7/01 2:50:06 PM) Recommend we catch at level of TeamStreamElement.internalGetChildren() and do ErrorDialog.openError(...) Recommend that class because its only UI place we can catch, and its already catching CoreExceptions there anyway. There are other places you could get this error since we lazy verify connections but this is the most common. Also, noticed that in VCMModelElement.handle() (where this IS being caught) we should not be loging info messages, only errors. KH (6/8/2001 5:47:05 PM) Yes
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b44e54dc1c25ebdb1f77'}
147
After adding a file and releasing it, it won't show up in the repository view NOTES: JEM (6/22/2001 9:22:50 AM) Known deficiency. We currently only have events on a repository and stream basis, not on individual resources. JohnA (6/25/2001 11:11:41 AM) Use the refresh button in the repo view (or hit F5) to discover new files in the repository. Note, try to include the Eclipse Platform release number (such as 0.122, R0.9) whenever possible, we don't necessarily know the mapping from VAME builds to the platform drop it is based on.
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44e54dc1c25ebdb1f78'}
149
Synchronize a very large project with the server. The line in the progress monitor says "Determining incoming changes: <x>", where <x> is the file it's currently comparing. When it gets to the end, the last file to be compared is displayed, in my case, "Determining incoming changes: yesno.c" and this message appears for over a minute as the tree is constructed. I thought it hung on this file until I realized that yesno.c was the last file. We should change the progress monitor at this point to something more useful so the user doesn't think it's hung. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f79'}
148
Not high priority, but we should be setting the hover and disable icons for our actions. Note that we only need to set hover for actions that appear in toolbars. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f7a'}
150
While merging changes from my stream into HEAD, I had to merge a couple of conflicts. When I was prompted to save, it took >15 seconds to perform the save. The icon did not change to an hourglass and for a second I thought that Eclipse was dying a slow death. We should be nice and show an hourglass :) NOTES: JEM (9/25/2001 10:04:31 AM) Same problem in the sync view.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f7b'}
152
Add to Workspace overwrites read-only 1. For a versioned project, make it and its files read only 2. Do Show in Resource History to it 3. In the resouce history, do Add to Workspace. 4. The dialog asks whether to overwrite the existing project. Click yes( not yes to all ) Notice that it doesn't confirm you for its read only files and goes on to overwrite 'em all It also changed the states of all the files in the project to NOT read only NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f7c'}
153
- Create a new project - In its Properties dialog, select Team and choose a repository. - Try to version from workspace - You are first prompted for a version name, then you get a message dialog "Versioning Problems". This message has title and text identical. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f7d'}
151
Whenever you cancel the operation on the repositories, InterruptedIOExceptions are not caught. 1. For a project which has been released to a stream, modify one of its files. 2. Do a Synch on the file. 3. When the progress information dialog shows _the message_ "Computing differences..", click Cancel. The dialog freezes for 10 seconds. The error message shows and IIOE is thrown. The same problem occurs when cancelling the compare, etc. ( different walkback tho ) Walkback for the sync Log: Fri Jun 08 13:13:05 EDT 2001 4 org.eclipse.vcm.core 4 CVS communication error java.io.InterruptedIOException: Read timed out at java.net.SocketInputStream.socketRead(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java(Compiled Code)) at java.io.BufferedInputStream.read(BufferedInputStream.java(Compiled Code)) at java.io.BufferedInputStream.read(BufferedInputStream.java(Compiled Code)) at java.io.FilterInputStream.read(FilterInputStream.java:99) at org.eclipse.vcm.internal.core.ccvs.client.Connection.readPendingInput(Connection.java:290) at org.eclipse.vcm.internal.core.ccvs.client.Connection.close(Connection.java:82) at org.eclipse.vcm.internal.core.ccvs.client.Client.disconnect(Client.java:250) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.fetchRemoteTree(CVSAdapter.java:568) at org.eclipse.vcm.internal.core.Subscriber.refresh(Subscriber.java:513) at org.eclipse.vcm.internal.core.Subscriber$3.run(Subscriber.java:481) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1193) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:532) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:671) at org.eclipse.vcm.internal.core.Subscriber.refresh(Subscriber.java:475) at org.eclipse.vcm.internal.ui.sync.Repository.doServerDelta(Repository.java:181) at org.eclipse.vcm.internal.ui.sync.Repository$1.execute(Repository.java:225) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1193) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.vcm.internal.ui.sync.Repository.localServerDelta(Repository.java:229) at org.eclipse.vcm.internal.ui.sync.SyncCompareInput.prepareInput(SyncCompareInput.java:420) at org.eclipse.compare.CompareEditorInput.run(CompareEditorInput.java:596) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) NOTES: KM (6/8/01 5:22:28 PM) Got the freezing but no errors, and was hard to get. Moving to future.
normal
VERIFIED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f7e'}
154
Much of the code in VCMEditionSelectionDialog is copied from HistoryView. The common code needs to be factored out. NOTES: JEM (9/19/2001 4:56:57 PM) VCMEditionSelecitonDialog is gone now, but code is now duplicated in CompareResourceEditorInput.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f7f'}
155
The change button sits in the middle of nowhere in the Team properties dialog. It is not clear which entries it is related to. STEPS 1) Select a project 2) Open properties dialog 3) Select Team NOTES: JEM (9/7/2001 11:51:23 AM) I'm not sure what we can do to make that better; it's directly beside the Team label, to which it refers.
normal
RESOLVED
INVALID
{'$oid': '52e9b44e54dc1c25ebdb1f80'}
156
If load fails, it has already deleted all resources. It should only delete old resources after successfully loading all new resources. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44e54dc1c25ebdb1f81'}
157
Suspect progress changes also broke refresh by introducing multiple beginTasks. NOTES:
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44e54dc1c25ebdb1f82'}
158
When trying to Replace with Version a project/folder, or trying to Compare with Version a project/folder/file, you are prompted for a location and a version even if the resource has never been synchronized. However, if you try to Replace with Version a non-synchronized file, you get a "Unable to replace" message. So you cannot replace by a file that has the same name on repo whereas you can do it with projects and folders. NOTES: OC (11/06/2001 5:22:31 PM) In addition, the error message contains "Resource(s) could not be loaded" instead of "could not be added".
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44f54dc1c25ebdb1f83'}
159
ZRH manages a stable stream to share stable code with SNZ and MIN. To do so we created a stable stream into which we copy our a stable version almost every day. Since ZRH has to copy 11 projects, the current UI support to do so isn't very user friendly. I have to do the following - open dialog for (int i= 0; i < 11; i++) { - select right project in left viewer - find right version in right viewer - check it } I would like to select the 11 project choose a single version (we version all project before promoting them to STABLE). NOTES: DB (26.09.2001 18:38:26) What we really want to have is CVS's moving tag support. The goal of the whole procedure from above is, to give other people access to a stable version in the stream HEAD. Because the VCM plugin doesn't support moving tags the only solution that came to our mind was using streams. But streams are the wrong concept to use, since they generate a branch point and therefore give you write access to the stream (you can checkin on that branch). Is there a better solution than using streams for the above scenario. Jean-Michel (9/26/01 5:15:07 PM) Sorry for the bad support for this workflow. We need to be able to move a tag, this is a common build requirement: if( perform build && sniff tests ) { move STABLE tag to current lineup; }
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f84'}
160
Connect to anonymous@cvs.slashcode.com:/cvsroot/slashcode Expand HEAD. The CVS repository reported problems. cvs-sf server: Updating . cvs-sf server: New directory `CVSROOT' -- ignored cvs-sf server: New directory `Comments' -- ignored cvs-sf server: New directory `SimpleStory' -- ignored ... etc for `new-slashd', `slash', `slash-bak' and `slash-stats'. Nothing appears in the tree under head. There should actually be 6 items in the tree. NOTES: KM (6/12/01 12:41:05 PM) CVSROOT is magic and we don't store locally. JEM (6/12/01 1:02:12 PM) Yup. The 6 items should be Comments, SimpleStory, new-slashd, slash, slash-bak and slash-stats. Jean-Michel (6/12/01 1:49:28 PM) The server running at this site is customized. Notice that the output shows 'cvs-sf server:' instead of 'cvs server:'. The cvs adapter is not able to parse the modified server messages.
enhancement
RESOLVED
DUPLICATE
{'$oid': '52e9b44f54dc1c25ebdb1f85'}
161
Add repository connection anonymous anoncvs.gnome.org /cvs/gnome, no pw Expand to gnome-pilot in HEAD Add to workspace. Right-click project. Synchronize. The directory 'macros' and its contents show up as incoming changes, even though you just added to workspace and even though macros is in .cvsignore. If you right-click and catchup the macros directory, nothing happens but it disappears from the list. Subsequent catchups do not show macros as an incoming change. NOTES: Jean-Michel (6/12/01 3:08:21 PM) This is a bizzare case. I don't think that it has anything to do with the ignore. If you browse the repo the 'macros' folder does not appear. I'm not sure why load would tranfer that directory? The incoming deletions are valid in this case.
normal
RESOLVED
WORKSFORME
{'$oid': '52e9b44f54dc1c25ebdb1f86'}
162
You are allowed to compare a non-shared project (eg. a new project) to a version of a project that has the same name on a repo. However, the comparison behaves as follows: - Every resource on server appears as a deletion - Everything else is ignored, independently of the contents of the local project. NOTES: OC (12/06/2001 10:22:27 AM) As soon as you Synchronize with Stream before comparing (the project becomes shared), the result is correct. OC (13/06/2001 1:50:27 PM) Besides, comparing a file or a folder from a non-shared project does not work at all: you are prompted to select a version but none appears in the dialog, even if an identical project exists on a repo location.
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f87'}
163
AK (6/12/01 4:55:24 PM) i got this exception last night when i was working at home - not connected to the internet don't remember what i pressed. 'synchronize with stream' i think. not sure though there're 2 walkbacks but i guess they're related 4 org.eclipse.vcm.core 4 Cannot locate host zrhcvs.zrh.oti.com java.net.UnknownHostException: zrhcvs.zrh.oti.com at java.net.InetAddress.getAllByName0(InetAddress.java:585) at java.net.InetAddress.getAllByName0(InetAddress.java:554) at java.net.InetAddress.getByName(InetAddress.java:463) at java.net.Socket.<init>(Socket.java:112) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.createSocket(PServerConnection.java:140) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.open(PServerConnection.java:190) at org.eclipse.vcm.internal.core.ccvs.client.Connection.open(Connection.java:224) at org.eclipse.vcm.internal.core.ccvs.client.Client.<init>(Client.java:226) at org.eclipse.vcm.internal.core.ccvs.Context.fetchResourceAt(Context.java:96) at org.eclipse.vcm.internal.core.TeamStreamHandle.getServerResource(TeamStreamHandle.java:92) at org.eclipse.vcm.internal.core.TeamStreamHandle.fetchVersionHistory(TeamStreamHandle.java:55) at org.eclipse.vcm.internal.ui.VersionSelectionDialog$6.run(VersionSelectionDialog.java:221) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:98) at org.eclipse.vcm.internal.ui.VersionSelectionDialog$5.getElements(VersionSelectionDialog.java:215) at org.eclipse.jface.viewers.StructuredViewer.getRawChildren(StructuredViewer.java:332) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java:281) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java:378) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:425) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:572) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:542) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:570) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:562) at org.eclipse.jface.viewers.TableViewer.inputChanged(TableViewer.java:383) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:234) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:655) at org.eclipse.vcm.internal.ui.VersionSelectionDialog.handleRepositorySelectionChanged(VersionSelectionDialog.java:269) at org.eclipse.vcm.internal.ui.VersionSelectionDialog.initialize(VersionSelectionDialog.java:300) at org.eclipse.vcm.internal.ui.VersionSelectionDialog.create(VersionSelectionDialog.java:78) at org.eclipse.jface.window.Window.open(Window.java:510) at org.eclipse.vcm.internal.ui.actions.CompareWithVersionAction.getEditionsToCompare(CompareWithVersionAction.java:64) at org.eclipse.vcm.internal.ui.actions.CompareWithAction.run(CompareWithAction.java:51) at org.eclipse.ui.internal.PluginAction.run(PluginAction.java:125) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:408) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:362) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:353) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:47) at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java:622) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.run(Workbench.java:620) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:815) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:69) at org.eclipse.core.launcher.Main.run(Main.java:311) at org.eclipse.core.launcher.Main.main(Main.java:198) Log: Tue Jun 12 03:02:48 CEST 2001 1 org.eclipse.core.resources 4 Unhandled exception caught in event loop. Log: Tue Jun 12 03:02:48 CEST 2001 4 org.eclipse.ui 0 java.lang.NullPointerException java.lang.NullPointerException at org.eclipse.vcm.internal.ui.VCMEditionSelectionDialog$HistoryLabelProvider.getColumnText(VCMEditionSelectionDialog.java:93) at org.eclipse.jface.viewers.TableViewer.doUpdateItem(TableViewer.java:180) at org.eclipse.jface.viewers.StructuredViewer.updateItem(StructuredViewer.java:879) at org.eclipse.jface.viewers.TableViewer.internalRefresh(TableViewer.java:465) at org.eclipse.jface.viewers.StructuredViewer$1.run(StructuredViewer.java:572) at org.eclipse.jface.viewers.StructuredViewer.preservingSelection(StructuredViewer.java:542) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:570) at org.eclipse.jface.viewers.StructuredViewer.refresh(StructuredViewer.java:562) at org.eclipse.jface.viewers.TableViewer.inputChanged(TableViewer.java:383) at org.eclipse.jface.viewers.ContentViewer.setInput(ContentViewer.java:234) at org.eclipse.jface.viewers.StructuredViewer.setInput(StructuredViewer.java:655) at org.eclipse.vcm.internal.ui.VCMEditionSelectionDialog.selectEdition(VCMEditionSelectionDialog.java:491) at org.eclipse.vcm.internal.ui.actions.CompareWithAction.runFileCompare(CompareWithAction.java:89) at org.eclipse.vcm.internal.ui.actions.CompareWithAction.runCompare(CompareWithAction.java:70) at org.eclipse.vcm.internal.ui.actions.CompareWithAction.run(CompareWithAction.java:53) at org.eclipse.ui.internal.PluginAction.run(PluginAction.java:125) at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:408) at org.eclipse.jface.action.ActionContributionItem.handleWidgetEvent(ActionContributionItem.java:362) at org.eclipse.jface.action.ActionContributionItem.access$0(ActionContributionItem.java:353) at org.eclipse.jface.action.ActionContributionItem$ActionListener.handleEvent(ActionContributionItem.java:47) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.notifyListeners(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java(Compiled Code)) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.run(Workbench.java:620) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:815) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:69) at org.eclipse.core.launcher.Main.run(Main.java:311) at org.eclipse.core.launcher.Main.main(Main.java:198) NOTES: JohnA (6/13/2001 9:40:21 AM) Looks like he did "Compare With" on a file. This is the error case that will be fixed in 1GF5W6U: ITPVCM:WIN2000 - NullPointerException in the "compare with version" dialog.
critical
VERIFIED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f88'}
165
Releasing to multiple repositories makes the Synchronize window report conflicts for every class in the project which makes it unusable. STEPS: 1. Get a wad of code. 2. Attach to repository A 3. Release it to the HEAD team stream 4. Make some modifications 5. Attach to repository B 6. Release to repository B 7. Notice in the Synchronize window that all the classes are "conflicts" including the changed files Note: You may need to remove all the source between steps 4 & 5 (and/or remove the .metadata ) NOTES: Jean-Michel (6/12/01 1:52:56 PM) This is expected. What else could we do if you haven't loaded from B to update your resource's sync information. However, until we allow pseudo-conflict filtering in the sync viewer, you can use the compare operation to see changes while ignoring the sync info. For example, in our scenario above, after step 5, select the project and compare with stream. Then 'real' changes between the project and the stream will be shown (it may be slow).
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44f54dc1c25ebdb1f89'}
164
- Create a new empty project, name it by the same name as a project on repo but change the case (for example capitalize one letter) - Select the project on repo and Add to workspace - You get a message: "... already exists in the local file system. Overwrite?" - Click Yes - You get a "Error adding project": "Resource ... already exists." - Finally it actually added the project but you have to Refresh from local to get it. I guess this is due to Windows' file system that does not distinguish cases. NOTES:
normal
VERIFIED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f8a'}
166
We have discussed the problem of how to show what the input set to the sync view is. Jeem had the idea of showing the parents of the sync view inputs in grey, ala VA/Java class hierarchy. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f8b'}
168
Since chaging the sharing of a project to another repo essentialy blows away the sync info, we should warn the user in the case that the project has unreleased or outgoing changes. NOTES: KM Readme
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f8c'}
167
From Jeem: Whenever the server is being contacted, there should be a progress monitor (either dialog or status line), that the user can cancel. The cancelation should be supported at the lowest level of the client code. I.e., the loop that is waiting for a response from the server should also be polling the cancelation flag to see whether to stop the transaction. This would allow the user to cancel after realizing that the server is down, not responding, etc. This would also allow us to increase our timeout so that slow connection users don't hit the timeout erroneously. NOTES:
normal
RESOLVED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f8d'}
169
VCMPropertyPage tries to contact the server before control is created in VCMPropertyPage#createControl, the call to initialize() should come after the call to setControl(). Otherwise, if errors occur during initialize (for example if the server is down), it has no way of opening an error dialog because it has no parent control yet. NOTES: JohnA (6/13/2001 9:38:28 AM) Recommend deferring. Behaviour is not bad (no error shown to user, but an error is logged, the property page shows the last known values for base, common, remote).
normal
RESOLVED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f8e'}
170
When the connection to the repositories fails, InterruptedIOException is not caught. Log: Wed Jun 13 12:13:40 EDT 2001 4 org.eclipse.vcm.core 4 Cannot connect to host cvslnxtest java.io.InterruptedIOException: Operation timed out: no further information at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:329) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:141) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:128) at java.net.Socket.<init>(Socket.java:285) at java.net.Socket.<init>(Socket.java:112) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.createSocket(PServerConnection.java:140) at org.eclipse.vcm.internal.core.ccvs.client.PServerConnection.open(PServerConnection.java:190) at org.eclipse.vcm.internal.core.ccvs.client.Connection.open(Connection.java:224) at org.eclipse.vcm.internal.core.ccvs.client.Client.<init>(Client.java:227) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.internalFetchMemberNames(CVSAdapter.java:778) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.fetchProjectNames(CVSAdapter.java:485) at org.eclipse.vcm.internal.core.Repository.fetchProjectList(Repository.java:128) at org.eclipse.vcm.internal.ui.model.ProjectVersionsCategory.internalGetChildren(ProjectVersionsCategory.java:92) at org.eclipse.vcm.internal.ui.model.ProjectVersionsCategory$1.run(ProjectVersionsCategory.java:48) at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java(Compiled Code)) at org.eclipse.vcm.internal.ui.model.ProjectVersionsCategory.getChildren(ProjectVersionsCategory.java:46) at org.eclipse.ui.model.WorkbenchContentProvider.getChildren(WorkbenchContentProvider.java:51) at org.eclipse.jface.viewers.AbstractTreeViewer.getRawChildren(AbstractTreeViewer.java:568) at org.eclipse.jface.viewers.StructuredViewer.getFilteredChildren(StructuredViewer.java(Compiled Code)) at org.eclipse.jface.viewers.StructuredViewer.getSortedChildren(StructuredViewer.java(Compiled Code)) at org.eclipse.jface.viewers.AbstractTreeViewer.createChildren(AbstractTreeViewer.java(Compiled Code)) at org.eclipse.jface.viewers.AbstractTreeViewer.handleTreeExpand(AbstractTreeViewer.java:611) at org.eclipse.jface.viewers.AbstractTreeViewer$2.treeExpanded(AbstractTreeViewer.java:631) at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java(Compiled Code)) at org.eclipse.swt.widgets.Tree.wmNotifyChild(Tree.java(Compiled Code)) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java(Compiled Code)) at org.eclipse.swt.widgets.Composite.WM_NOTIFY(Composite.java(Compiled Code)) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.CallWindowProc(Native Method) at org.eclipse.swt.widgets.Tree.WM_LBUTTONDOWN(Tree.java(Compiled Code)) at org.eclipse.swt.widgets.Tree.WM_LBUTTONDOWN(Tree.java(Compiled Code)) at org.eclipse.swt.widgets.Control.windowProc(Control.java(Compiled Code)) at org.eclipse.swt.widgets.Display.windowProc(Display.java(Compiled Code)) at org.eclipse.swt.internal.win32.OS.DispatchMessage(Native Method) at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java(Compiled Code)) at org.eclipse.ui.internal.Workbench.run(Workbench.java:620) at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:815) at org.eclipse.core.boot.BootLoader.run(BootLoader.java:285) at java.lang.reflect.Method.invoke(Native Method) at org.eclipse.core.launcher.Main.basicRun(Main.java:126) at org.eclipse.core.launcher.Main.run(Main.java:408) at org.eclipse.core.launcher.Main.main(Main.java:281) NOTES:
normal
VERIFIED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f8f'}
171
(inspired by this morning's server problems) - add some projects to your workspace from a team stream in some repository - unplug your network connection from the wall - select all of the projects, right-click -> Replace With -> Stream Contents - this of course leads to an error dialog, OK - now all of the resources that were to be replaced with those read from the repository are gone While there wasn't any real data lose here since by invoking Replace With Stream Contents I conceded that I wanted to replace my workspace contents anyways, I was left in a position where I really couldn't resume working since even the slightly stale resources that I originally did have in my workspace were purged. NOTES: KM (6/13/01 12:36:50 PM) Dup PR. We are deleting before replacing which is overly aggressive.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b44f54dc1c25ebdb1f90'}
172
Some problems in the code of ResourceEditionNode: - Two dead methods, loadCache and loadContent are never called - Class no longer needs to implement IModificationDate, so method getModificationDate can be removed - if getModificationDate was not removed, it should at least check for the possiblity of a null modification date. - should not be overriding getContents(), just override createStream and compare FW does the rest. - method getResourceEdition has no javadoc NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f91'}
173
If you select a file with a conflict in the sync view, 4 round trips are performed to get the content. I would expect at most 2 (common, and remote). NOTES: JohnA (6/13/2001 3:37:19 PM) It's actually only on the very first selected item when the view is opened that it does four round trips. This is because both Andre & I wrote code to navigate automatically to the first change when the view is opened. As a result, it does two round trips for the common, and two round trips for the remote. After first selection, it only does the expected two round trips. I am creating a seperate PR against Compare FW that it should not fetch the content for the ancestor pane until it is visible. In the case of a non-conflict, it's always fetching the contents for the common resource even though it's never shown. JohnA (6/14/2001 11:15:53 AM) Future.
normal
VERIFIED
FIXED
{'$oid': '52e9b44f54dc1c25ebdb1f92'}
175
Compare/Replace with base version, when file is not dirty, should tell me they're the same, rather than opening a compare editor or performing an unnecessary load. Compare with stream contents on a file should tell me if the files are the same, rather than opening the compare dialog on identical contents. NOTES: JEM (9/13/2001 5:13:34 PM) Comparing/Replacing with base version on a clean file now informs the user and doesn't open an editor. Released in HEAD.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b44f54dc1c25ebdb1f93'}
174
In the (not common) case where you create a non-existing repo location and share a project on it via Properties -> Team, if you: - Version from Workspace, the dialog box proposes an empty version name by default, which makes it impossible to validate. If you enter a version name then validate, you get a message saying "Versioning Problems" both in text and title (should be in title only as Problems is capitalized). - I got an empty message when trying to Compare with Version too, but cannot reproduce for the moment. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b44f54dc1c25ebdb1f94'}
177
I have released a project, without initially providing .cvsignore. That copied my bin directory to cvs. I later created .cvsignore and put "bin" as a content, to prevent bin from being copied to CVS. I have removed bin from .cvsignore to be able to delete bin, but no matter what I do I cannot delete bin from CVS. I have removed bin from .cvsignore, changed my output dir to "bin2", deleted bin from the resource tree, versioned the project, restarted Eclipse. The bin never appear in the comparision tree, while it does not exists on my system, and still shows up in the project under CVS head. NOTES: JohnA (6/14/2001 11:02:01 AM) CVS does not allow clients to delete folders from the server, ever. The only way to get rid of bin on the server is to ask your CVS administrator to delete it (or login to the server and delete it yourself if you have permission). README.
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44f54dc1c25ebdb1f95'}
176
When using the right-button popup on a project version (inside the repository view, when intending to add a different version to workspace), the menu is extremely slow to open. It feels like it is spending time talking to the CVS repository, and this does not seem to make any sense simply for opening the menu NOTES: KM(9/12/2001 1:37:46 PM) We need to check what code we run for enable status. JEM (9/19/2001 12:38:32 PM) Popping up the menu on a project version results in zero round trips. One round trip is performed when the version is initially selected, presumably so we can populate the properties view. When popping up the menu, no trips are performed.
normal
RESOLVED
WONTFIX
{'$oid': '52e9b44f54dc1c25ebdb1f96'}
178
It would be nice if when things got filtered out, their expansion would be remembered, so that when the item is revealed again it has the correct expansion. For example, if you have one outgoing change, switch to the catchup pane and then come back, the tree is completly collapsed. NOTES:
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b44f54dc1c25ebdb1f97'}
179
I get an error message in one repeatable case. To reproduce: - Add to workspace vcm.ui from vcmrepo and cancel the operation. - You eventually get a message saying "CVS communication error" The log: Log: Wed Jun 13 16:58:42 EDT 2001 4 org.eclipse.vcm.ui 1 Errors adding project 1=============<children>============= 4 org.eclipse.vcm.core 4 CVS communication error java.io.InterruptedIOException: Read timed out at java.net.SocketInputStream.socketRead(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java:104) at java.io.BufferedInputStream.read1(BufferedInputStream.java:229) at java.io.BufferedInputStream.read(BufferedInputStream.java:286) at java.io.FilterInputStream.read(FilterInputStream.java:99) at org.eclipse.vcm.internal.core.ccvs.client.Connection.readPendingInput(Connection.java:299) at org.eclipse.vcm.internal.core.ccvs.client.Connection.close(Connection.java:83) at org.eclipse.vcm.internal.core.ccvs.client.Client.disconnect(Client.java:251) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.load(CVSAdapter.java:1132) at org.eclipse.vcm.internal.core.SharingManager.doLoadProject(SharingManager.java:429) at org.eclipse.vcm.internal.core.SharingManager$3.run(SharingManager.java:353) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:540) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:661) at org.eclipse.vcm.internal.core.SharingManager.doLoad(SharingManager.java:364) at org.eclipse.vcm.internal.core.SharingManager.loadProject(SharingManager.java:382) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResource(ResourceLoader.java:152) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResources(ResourceLoader.java:172) at org.eclipse.vcm.internal.ui.ResourceLoader.access$0(ResourceLoader.java:166) at org.eclipse.vcm.internal.ui.ResourceLoader$2.execute(ResourceLoader.java:219) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) 1=============</children>============= Log: Wed Jun 13 16:59:04 EDT 2001 4 org.eclipse.vcm.core 4 CVS communication error java.io.InterruptedIOException: Read timed out at java.net.SocketInputStream.socketRead(Native Method) at java.net.SocketInputStream.read(SocketInputStream.java:104) at java.io.BufferedInputStream.read1(BufferedInputStream.java:229) at java.io.BufferedInputStream.read(BufferedInputStream.java:286) at java.io.FilterInputStream.read(FilterInputStream.java:99) at org.eclipse.vcm.internal.core.ccvs.client.Connection.readPendingInput(Connection.java:299) at org.eclipse.vcm.internal.core.ccvs.client.Connection.close(Connection.java:83) at org.eclipse.vcm.internal.core.ccvs.client.Client.disconnect(Client.java:251) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.load(CVSAdapter.java:1132) at org.eclipse.vcm.internal.core.SharingManager.doLoadProject(SharingManager.java:429) at org.eclipse.vcm.internal.core.SharingManager$3.run(SharingManager.java:353) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:540) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:661) at org.eclipse.vcm.internal.core.SharingManager.doLoad(SharingManager.java:364) at org.eclipse.vcm.internal.core.SharingManager.loadProject(SharingManager.java:382) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResource(ResourceLoader.java:152) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResources(ResourceLoader.java:172) at org.eclipse.vcm.internal.ui.ResourceLoader.access$0(ResourceLoader.java:166) at org.eclipse.vcm.internal.ui.ResourceLoader$2.execute(ResourceLoader.java:219) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) NOTES: JEM (6/15/01 1:47:07 PM) See also 1GFA042: ITPVCM:WIN2000 - Cancelling Add to Workspace can not finish? JEM (6/15/01 3:45:38 PM) Fixed
normal
VERIFIED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1f98'}
180
Random code review comments about types in the sync package: IRepositoryDeltaCollector method should be renamed to not use CVS-like terminology: - shouldn't take MergeResource, need an interface to allow plugin of other implementations. public void locallyAdded(MergeResource cvsFile); -> outgoingAdd public void locallyModified(MergeResource cvsFile); -> outgoingChange public void locallyRemoved(MergeResource cvsFile); -> outgoingDelete public void needsCheckout(MergeResource cvsFile); -> incomingChange public void needsMerge(MergeResource cvsFile); -> conflictingChange public void serverAdded(MergeResource cvsFile); -> incomingAdd public void serverAddedDirectory(MergeResource cvsFolder); -> Remove (don't need folder special case) public void serverRemoved(MergeResource cvsFile); -> incomingDelete public void unknownStatus(String status); -> Remove this method MergeResource can delete the following methods: - isLeaf - getName - getPath - getExtension replace setLabels with getLocalLabel, getCommonLabel, getRemoteLabel rename getLatestRevision to getRemoteEdition rename getBaseRevision to getCommonEdition remove hasBaseRevision and hasLatestRevision (can use get*Label methods that may return null. MergeResource can now be a local class of Repository, nobody else needs to know about it. SyncCompareInput - isSaveNeeded should always return false - shouldn't be displaying low-level warnings in performSync... should just propagate an exception out to the run method, which should use getProblemMessage to show the appropriate message. - getProblemTitle should be removed, inline it. - getDiffRoot should be removed -- it is a duplicate of CompareEditorInput#getCompareResult - SyncCompareInput and MergeCompareInput shouldn't subclass getTitle. MergeCompareInput should just call setTitle in its prepareInput. - don't need initialSelectionAndExpansion state, should make use of DiffTreeViewer#navigate, this means don't need to subclass createContents. - collectParentCreations should be revisited. Not clear that this is something that we should be doing for free. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1f99'}
181
Why does the synchronize view has a title bar with buttons, and then another one below 'Structure compare' with again another set of buttons (up/down arrows). Both bars should be merged so as to maximize the available space. I do not see the added value of showing 'Structure compare'. NOTES: JohnA (7/25/2001 2:04:58 PM) This is really due to the division between compare framework components and VCM UI. However, I still think there is some value in the "Structure compare" toolbar, although the text could perhaps be changed to give a better indication of what that pane contains.
normal
RESOLVED
WONTFIX
{'$oid': '52e9b45054dc1c25ebdb1f9a'}
182
In the merge dialog we allow you to select the project from which you would like to merge changes. Our implementation does not allow this since we don't do the right path magic to load files form ProjectA into ProjectB. To duplicate create two projects in your workspace that have streams that could be merged. Chose merge on ProjectA and merge changes from ProjectB. The merge dialogs will appear but when you catchup you are actually modifying the contents of ProjectB in your workspace. NOTES: Jean-Michel (14/06/2001 12:42:35 PM) A documentation candidate or remove the project selection list from the merge wizard.
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1f9b'}
183
We need to tell people that they must refresh from local if using external editors. Otherwise our sync info is out of date and it may not show as an outgoing change. NOTES:
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b45054dc1c25ebdb1f9c'}
184
(Minor - Just for improvement of the next version of Eclipse) When you add a project to workspace from a stream different from HEAD, the effective presence of a version of the project on the stream is checked late. For example: - Create a new stream - 'Add to workspace' a project that does not have any version on the stream and that's present on the workspace - You are prompted to overwrite your local project - Click yes: your local project is first deleted, then you get the error message saying there's no version to add. May be better to detect that there's no version before prompting to overwrite. NOTES:
normal
RESOLVED
WONTFIX
{'$oid': '52e9b45054dc1c25ebdb1f9d'}
185
:extssh:james@dj:/home/james/repo Add Large Project to workspace. 1st time: Error closing connection. 2nd and subsequent times: Unsupported Handler. NOTES: Jean-Michel (18/06/2001 4:46:38 PM) Reproduced first error, second try worked for me. It appears to be happening in the SSH code. Log: Mon Jun 18 16:41:51 EDT 2001 4 org.eclipse.vcm.core 4 Cannot close connection java.io.IOException: crc error at org.eclipse.vcm.internal.core.ccvs.ssh.ServerPacket$PacketInputStream.close(ServerPacket.java(Compiled Code)) at org.eclipse.vcm.internal.core.ccvs.ssh.Client$StandardInputStream.close(Client.java:111) at org.eclipse.vcm.internal.core.ccvs.ssh.SSHServerConnection.close(SSHServerConnection.java:39) at org.eclipse.vcm.internal.core.ccvs.client.Connection.close(Connection.java:83) at org.eclipse.vcm.internal.core.ccvs.client.Client.disconnect(Client.java:251) at org.eclipse.vcm.internal.core.ccvs.CVSAdapter.load(CVSAdapter.java:1117) at org.eclipse.vcm.internal.core.SharingManager.doLoadProject(SharingManager.java:254) at org.eclipse.vcm.internal.core.SharingManager$2.run(SharingManager.java:127) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.vcm.internal.core.Subscriber.run(Subscriber.java:535) at org.eclipse.vcm.internal.core.SharingManager.run(SharingManager.java:676) at org.eclipse.vcm.internal.core.SharingManager.doLoad(SharingManager.java:138) at org.eclipse.vcm.internal.core.SharingManager.loadProject(SharingManager.java:549) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResource(ResourceLoader.java:151) at org.eclipse.vcm.internal.ui.ResourceLoader.doLoadResources(ResourceLoader.java:171) at org.eclipse.vcm.internal.ui.ResourceLoader.access$0(ResourceLoader.java:165) at org.eclipse.vcm.internal.ui.ResourceLoader$2.execute(ResourceLoader.java:218) at org.eclipse.ui.actions.WorkspaceModifyOperation$1.run(WorkspaceModifyOperation.java:64) at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1194) at org.eclipse.ui.actions.WorkspaceModifyOperation.run(WorkspaceModifyOperation.java:78) at org.eclipse.jface.operation.ModalContext$ModalContextThread.run(ModalContext.java:98) JEM (6/19/01 10:48:09 AM) I cannot reproduce the Unsupported Handler message. I get the Cannot Close Connection error the first time I load the project; subsequent times it works fine. I can only reproduce this on LargeProject, other projects work fine. Suggested README: "When adding certain large projects to the workspace using the SSH method, it is possible that you will receive an error message "Cannot Close Connection", and the project will not be loaded. The workaround for this behaviour is to add the project a second time." JohnA (6/19/2001 12:39:51 PM) Added to readme.
normal
RESOLVED
DUPLICATE
{'$oid': '52e9b45054dc1c25ebdb1f9e'}
186
Not a big deal, but really funny :) - Enter a long comment into the release comment dialog (e.g. 2000 characters). - Try another release. The release comment dialog will default to the width of the last comment, the dialog is huge. NOTES: Jean-Michel (6/18/01 8:58:30 PM) Also, it seems that long comments are being truncated? Move to future.
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1f9f'}
187
1. Create a java project 2. Create a package and a class 3. Release the project to a repo 4. Modify the .classpath (by hand to simulate a build path change) 5. Select Compare with Stream Contents on the .classpath file. The compare dialog opens and the history shows (error) for the version and the compare view editor shows Internal Error. I can however use the show resource history on .classpath. I'm not sure what is being done differently in the compare? NOTES: OC (19/06/2001 9:22:04 AM) Weird, I can't reproduce. JEM (6/19/2001 10:36:39 AM) Reproduced. Jean-Michel (19/06/2001 10:40:41 AM) This was because of an error connecting to host fiji. We forgot to reset the 'cps' setting in the xinetd config. However, the exception should of been either logged or shown to the user. Move to future.
normal
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1fa0'}
189
1) Start with a workbench containing a project that has an incoming creation 2) In the sync view, select the file that is an incoming creation 3) In the compare panes, select "Copy current change from right to left" 4) On the left hand side, right click, and choose save. Step 4 creates the resource, and converts from an incoming change to an outgoing change. The problem is, it leaves the change marked as a creation, so it now shows up as an outgoing creation, which is wrong. Not a major bug, basically just means the icon annotating the file is wrong (has no lower level effect). Releasing the change works fine. NOTES: JohnA (6/19/2001 12:56:09 PM) Added to readme.
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fa1'}
188
Steps: 1) During a large release, I killed the workbench from task manager 2) Restarted eclipse, did a synchronize with stream. 3) Everything is in conflict, as expected. 4) Chose to release all again, an error occurred during release: cvs server: cannot add file '..../yours.gif' when RCS file '/home/cvs/scratchrepo/..../yours.gif,v' already exists cvs [server aborted]: correct above errors first! NOTES: JohnA (6/19/2001 4:41:06 PM) Could not reproduce.
normal
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1fa2'}
190
1) Start with a single project/folder/file 2) Synchronize with stream (open sync view, choose release) 3) Change sharing of project, then change back to original stream 4) Choose "Synchronize With Stream" (everything should be in conflict). 5) It starts you in catchup mode. Select the file, catchup. 6) Note that the folder is still in conflict, and that the "Catchup" menu item is still available on the folder 7) Switch to release mode. Note that "Release" is not available. 8) Switch to "Power User" mode, "Release" still not available. You should always be able to release a conflict in release/power user modes. NOTES: JohnA (6/19/2001 4:35:15 PM) Not even really worth readme-ing. Catchup and release are equivalent operations on a conflicting folder whose children are in sync.
normal
VERIFIED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fa3'}
191
Select a file in an unshared project. Compare With->Version. "/James Proj/file1.txt has no versions to compare with". Replace With->Version. "Resource(s) could not be loaded. The resource(s) may not exist on the server, or you may not have permission to access them. Reason: /James Proj/file1.txt has no versions to replace with". The message is long and confusing, especially since I wasn't trying to load anything; I just wanted to see a list of versions to select from. NOTES: JohnA (6/20/2001 10:25:23 AM) Known issue. Since load failure can sometimes give a strange error message, we added that extra long message to make it clearer about what went wrong.
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fa4'}
192
I can't repeat this. I created .cvsignore with contents 'file1.txt' Create file file1.txt. file1.txt had a '>' beside it in the navigator. I edited the file and resaved it. The '>' disappeared. NOTES:
normal
RESOLVED
WORKSFORME
{'$oid': '52e9b45054dc1c25ebdb1fa5'}
194
1) Add a global ignore pattern "BazProject" 2) Create a simple project called "BazProject" 3) Team->Version->Automatic->Ok 4) Error dialog: Title: Versioning Problems Message: The following resources cannot be versioned: No details area. It doesn't say what resources couldn't be versioned. NOTES:
major
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1fa6'}
193
New project Proj New file file1.txt, add some contents to it. Release Proj and file1.txt to stream. On 2nd workspace, Load Proj Delete file1.txt Release the deletion. In 1st workspace, Compare file1.txt to stream contents. A compare dialog opens up, comparing the workspace file to an empty file that it claims is in HEAD. Instead, it should open a dialog saying that the resource could not be found in the stream. NOTES: JEM (6/20/01 11:40:38 AM) The 'empty' file in the stream was labelled version 1.2. 1.2 does not show up in the list when shown in the resource history view, is it a kind of placeholder?
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fa7'}
195
1) Release a project and file to the stream 2) Delete the file locally 3) Select the project, compare with stream 4) Select the file in the compare editor. Click "Copy whole document from right to left" 5) In the left hand side, click save. Nothing happens (it doesn't create the file). If you do the exact same thing in the sync view, it creates the file. NOTES:
major
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fa8'}
196
Started with following structure: JFinalSmoke (project) - org - baz -foo abc.txt C.java - foo - C.java Did "Replace With Stream" on project Canceled the replace in the middle. It deleted everything except the project. Team->Synchronize With Stream In catchup/release mode, select "org", and catchup. Error occurs, dialog: Title: Problems During Synchronization Message: IO errors while adding Details: Problems while creating parents Problems while creating parents The catchup is successful, but the error dialog shows up anyway. NOTES: JohnA (6/20/2001 1:17:55 PM) Pretty rare case. Only happens when you cancel, then try to resuscitate the deletions from the sync view. Also, it succeeds, but shows an error dialog for no apparent reason.
major
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1fa9'}
198
Start with the following structure locally: JProject - folder -file1.txt -file2.txt Release to stream Delete "folder" locally Select two files in repositories view, choose "Add to Workspace". Error dialog appears: Title: Errors adding project Message: Errors adding project Details: Resource JProject/folder does not exist. Resource JProject/folder does not exist. It should not say "Errors adding project", since I was adding files. NOTES:
normal
RESOLVED
INVALID
{'$oid': '52e9b45054dc1c25ebdb1faa'}
197
Compare project or folder with stream resource. Select a changed file. Edit the local file in the left-hand pane. There is no visual indication that the file has been changed. Furthermore, closing the compare editor does not prompt to save changes. NOTES: JEM (9/12/2001 3:31:02 PM) Waiting on Compare PR: 1GJYGAX: ITPJUI:WIN2000 - Compare: Save code path problematic
normal
RESOLVED
FIXED
{'$oid': '52e9b45054dc1c25ebdb1fab'}
199
In drop 120 (actually 120a?), we deleted a package from a project. In drop 121, we decided that we wanted it back, so we added it back (luckily, we had a copy). Today (125) we wanted to look at the history of that particular package pre-120. There was no history at all - the package versions from 105 (our starting point in CVS) to 120 were all gone. NOTES: CM (6/21/2001 11:05:56 AM) We know that this is a "it's the way CVS works" problem. Apparently there is an "attic"? Can Eclipse VCM use this to get back the history of the deleted stuff? JohnA (6/21/2001 11:23:53 AM) This works for me. Are you sure you didn't rename either the package or the project? CM (6/21/2001 11:45:53 AM) Further info about the actual package that we saw the problem with: - repository /home/cvs/swt on cvslnx - SWT_Shipping stream - project org.eclipse.swt.examples - package org.eclipse.swt.examples.controlexample This package definitely existed up until about drop 120. Jean-Michel (21/06/2001 11:52:26 AM) If you release deletions the files in CVS will go into the Attic sub-directory of their parent directory. If a file with the same name is released to the same directory the file will be recovered from the Attic. I have tried this via Eclipse before and verified again. This works as expected. What I find strange is that the directory in your CVS repo does NOT have an Attic directory. It should still exist even if all the files have been recovered. Are you sure that the directory was deleted directly from the repo when you decided to delete the package?
normal
RESOLVED
WORKSFORME
{'$oid': '52e9b45054dc1c25ebdb1fac'}
200
Depending on the selection there are some properties that may not be able to be determined (e.g. modification date for projects in the repository). In this cases we display "n/a" or worse, empty string, in the properties view. We should omit these properties from the list altogether if they are not applicable. NOTES: JEM (9/19/2001 2:33:25 PM) Waiting on 1GJUHBB: ITPVCM:WIN2000 - Core: Modification date should be allowed to be null
normal
RESOLVED
FIXED