Hello.
I'm integrating Subversive 0.7.8 into an Eclipse Platform 3.4.2 RCP app. I want to remove (or disable) the SVN "Commit" action in the popup menu of the "Synchronize" view. How can I do ... ?
Thank you for your help. JM.D
|
|
Hello. I'm integrating Subversive 0.7.8 into an Eclipse Platform 3.4.2 RCP app. I want to remove (or disable) the SVN "Commit" action in the popup menu of the "Synchronize" view. How can I do ... ? Thank you for your help. JM.D |
||
|
|
|
|
Two ways: Either alter the plugin.xml files inside the plugins from subversion to remove the contributions (which means that you have to keep your own version of the plugins), or you can remove specific contributions from the platform. The removal normally takes place in the class that extends the IApplication interface, before you launch the actual Platform. This is basically a hack, but it will allow you to do what you want without touching the subversion plugins. I don't know the names of the contributions (You would have to look them up in the source code from the plugins) but the code looks like:
|
||||
|
|
|
Why would you need to do that ? Can't you simply make it that your users don't have the right to commit using svn rights ? |
||
|