Author Topic: Subversion and 10.0.3 (linux), nothing seems to work  (Read 4441 times)

geek_bear

  • Junior Community Member
  • Posts: 2
  • Hero Points: 0
Subversion and 10.0.3 (linux), nothing seems to work
« on: March 02, 2007, 03:02:18 am »
I am trying to get slickedit 10.0.3 to work with subversion (1.4.2) on linux, and having no luck at all.
I have tried to do diffs and look at history, and neither of those work.  The repository access method is svn://,
and subversion works fine from the command line.  VS is configured to use the correct svn executable.

Has anybody gotten this to work?  We recently switched from CVS and I am really missing the integration.


Thanks,
Roy

Matthew

  • SlickEdit Team Member
  • Senior Community Member
  • *
  • Posts: 990
  • Hero Points: 44
Re: Subversion and 10.0.3 (linux), nothing seems to work
« Reply #1 on: March 02, 2007, 07:08:12 pm »
SVN introduced some breaking changes in the admin file format for version 1.4.x. A hotfix for subversion 1.4 support was posted on the website a few months ago.  (http://www.slickedit.com/images/stories/support/hotfixes/hotfix_se1102_subversion.zip) But this was targeted at updating SlickEdit 11.x installations. You could try extracting the 2 macro files from the zip file and then load them to manually update your 10.0.3, but you're in relatively unexplored territory at that point.

geek_bear

  • Junior Community Member
  • Posts: 2
  • Hero Points: 0
Re: Subversion and 10.0.3 (linux), nothing seems to work
« Reply #2 on: March 07, 2007, 01:47:56 am »
I tried this and got it to mostly work.  The history display is missing some information
due to some new functions referenced in the new code.
I had to make a small change to prevent an exception:
--- /home/rfranz/ftp/vs-11.02/subversion.e      2006-10-05 07:56:04.000000000 -0700
+++ subversion.e        2007-03-06 17:46:39.000000000 -0800
@@ -884,6 +884,8 @@
    // This needs data from info
    ctlminihtml1.SVNSetFileInfo(filename,infoStdOutData);
 }
+
+
 
 /**
  * Used by SVNFillInHistory.  Fills in the top left pane of the history dialog with
@@ -896,7 +898,7 @@
    _str stdOutData="";
    int status=0;
    _str line="";
-   boolean revisionInfoSet=_GetDialogInfoHt("revisionInfoSet");
+   boolean revisionInfoSet=1;
    if (revisionInfoSet!=1) {
       status=_SVNGetAttributeFromCommand(filename,"URL",URL,infoStdOutData);
       line='<B>File:</B> 'filename'
';


Thanks,
Roy

Kriz

  • New Community Member
  • Posts: 1
  • Hero Points: 0
Re: Subversion and 10.0.3 (linux), nothing seems to work
« Reply #3 on: August 24, 2007, 11:55:59 am »
The original subversion hotfix disappeard so you have to get http://www.slickedit.com/images/stories/support/hotfixes/hotfix_se1102_cumulative.zip instead and extract cvsutil.e and subversion.e