Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6758491
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T13:47:48+00:00 2026-05-26T13:47:48+00:00

Until recently it was simple to read all the SVN:Externals referenced in a subversion

  • 0

Until recently it was simple to read all the SVN:Externals referenced in a subversion working copy by just reading some text files stored in the .svn subdirectory. With the change to a new on disk structure using mysql tables this is no longer that simple.

I want to update an internally used tool that used to read that list of externals to using the new structure. The Tool is written in Delphi 2007 so I would prefer some code written in Delphi.

There is Version Insight for RAD Studio on sourceforge which might contain some code to do the trick but I wonder if any body else has maybe already gone through the work of extracting the required parts from that project or has an alternative.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T13:47:49+00:00Added an answer on May 26, 2026 at 1:47 pm

    You can also do it programmatically, using the Subversion client DLLs. Here is a minimal example written in Delphi XE:

    program svnext;
    
    {$APPTYPE CONSOLE}
    
    uses
      SysUtils,
      SvnClient;
    
    procedure Main;
    var
      SvnClient: TSvnClient;
      SvnItem: TSvnItem;
    begin
      // Subversion client DLL directory; here I simply use the .exe's directory
      // (I copied the DLLs there manually.)
      BaseDllDir := ExtractFilePath(ParamStr(0));
    
      SvnClient := nil;
      SvnItem := nil;
      try
        SvnClient := TSvnClient.Create;
        SvnClient.Initialize;
        SvnItem := TSvnItem.Create(SvnClient, nil, ParamStr(1));
        Writeln(SvnItem.PropValues['svn:externals']);
      finally
        SvnItem.Free;
        SvnClient.Free;
      end;
    end;
    
    begin
      try
        Main;
      except
        on E: Exception do
        begin
          ExitCode := 1;
          Writeln(Format('[%s] %s', [E.ClassName, E.Message]));
        end;
      end;
    end.
    

    You might have to tweak the code for Delphi 2007. It seems Version Insight has evolved in the meantime and lost (some of) the backward compatibility.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been working with Java a couple of years, but up until recently
I've been working on an app for some time now.. Up until now i've
Until recently I was a read-only user of an open-source project on GoogleCode. I've
Up until recently I had a working service using NHibernate 2.0. I have upgraded
I recently developed a simple application for displaying a list of files to some
Until recently, I've used MySQL for all my database needs in all my server
Up until recently everything was working fine on my machines but since a few
Until recently I'd considered myself to be a pretty good web programmer (coming up
Until recently I thought limit on number of columns in Oracle DB was 255.
Until recently, I believed that the .NET runtime only increases the reference count of

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.