VCS Open API updating plugin from build 813 to 896
It has been a while since I have a time to play with the EAP and now I want to update my AccuRev plug in.
Any pointers would be very helpful.
Especially where did the mark as up to date item disappear to?
Thanks
Joey
Please sign in to leave a comment.
Did you mean "Mark as Current" menu item?
Override "AbstractVCS.supportsMarkSourcesAsCurrent" and return true.
--
Best regards,
Olesya Smirnova
JetBrains, Inc / IntelliJ Software
http://www.intellij.com
"Develop with pleasure!"
"Joey Edelstein" <no_mail@jetbrains.com> wrote in message
news:30911703.1061453394567.JavaMail.itn@is.intellij.net...
want to update my AccuRev plug in.
>
Thanks that did the trick.
One more thing. The colloring of the files (brown for unknown, blue for modifed etc. ) dosn't work I assume there is something else I am missing?
TIA
Joey
Try to override AbstactVcs.getFileStatusProvider()
Return LocalVcsServices.getInstance(myProject).getFileStatusProvider() or
your own FileStatusProvider implementation
--
Best regards,
Olesya Smirnova
JetBrains, Inc / IntelliJ Software
http://www.intellij.com
"Develop with pleasure!"
"Joey Edelstein" <no_mail@jetbrains.com> wrote in message
news:6427427.1061469938663.JavaMail.itn@is.intellij.net...
modifed etc. ) dosn't work I assume there is something else I am missing?
>
Once again that did the trick at least on the file level.
What about marking the changes in the file I enabled diffrent colors for added and modifed lines in the IDEA settings but it dosn't seem to work.
Is that what the EditFileProvider is?
added and modifed lines in the IDEA settings but it dosn't seem to work.
public UpToDateRevisionProvider getUpToDateRevisionProvider() {
return
LocalVcsServices.getInstance(myProject).getUpToDateRevisionProvider();
}
Using EditFileProvider IDEA gets read-only fiels from VCS (checkout command
for StarTeam or Edit for CVS)
--
Best regards,
Olesya Smirnova
JetBrains, Inc / IntelliJ Software
http://www.intellij.com
"Develop with pleasure!"
"Joey Edelstein" <no_mail@jetbrains.com> wrote in message
news:4572015.1061497127327.JavaMail.itn@is.intellij.net...
Thanks!!!! This is much better then the reverse engineering I had to do to get version 1 running against Aridana.
I think I am all set unless there are any new tricks added that I should and could be using. Anything new I should know about?
Again thank you for the help.
Joey