Re: SVN MFA

2025-04-28 Thread Andreas Stieger
It has been a while since I worked on that platform, so I cannot test out a working configuration for an authoritative answer. In any case the VisualSVN Server commercial product claims integrated windows AUTH and 2FA support. AndreasOn 28. Apr 2025, at 20:19, Prasu S wrote:Hello Andreas,We are u

Re: SVN MFA

2025-04-28 Thread Prasu S
Hello Andreas, We are using an Apache server, which is installed on a Windows server. We want to implement OTP. We are using Tortoise SVN to access the repositories.I'm checking to see how we can implement MFA. Thanks! Regards, Prasanna On Tue, Apr 22, 2025 at 12:44 PM Prasu S wrote: > Thanks

Re: svn status --xml with -u and --depth=empty lost the entry block

2025-04-28 Thread Daniel Sahlberg
Hi, Den sön 27 apr. 2025 kl 13:02 skrev Jian Wang : > Hi~ > I'm coding to use svn in my Unity project, and want find a way to get file > status > I've tried `svn status` command, in most cases it works well, > however when -u and --depth=empty are both enabled, the entry block is > missing. > Th

Re: svn status --xml with -u and --depth=empty lost the entry block

2025-04-27 Thread Lorenz via users
Hi, hm, with depth=empty you're telling svn to only consider the root folder itself. In that case the entry tag would be empty ( and therefore perhaps omitted) in case there are no changes/updates regarding the folder. Lorenz -- Jian Wang wrote: >Hi~ >I'm coding to use svn in my Unity project,

Re: SVN MFA

2025-04-24 Thread Jeffrey Walton
On Tue, Apr 22, 2025 at 11:49 AM Peter Balogh wrote: > > Andreas can you please share more about this? > I've been looking for a solution for this for a while, but I only found > hacks like when entering your password, also add your OTP at the end > every time you do an svn operation Yuk, what a

Re: SVN MFA

2025-04-22 Thread Peter Balogh
Hi, I have rather simple implementation plan, to handle a special response with a 2fa challenge in cli, or by opening a browser window for auth, than storing the session cookie next to usual svn credentials I wrote up my plans in the dev mailing list, I'm happy to further discuss it, before I

Re: SVN MFA

2025-04-22 Thread Prasu S
Thanks Andreas for your quick response. Does Apache Subversion support organisation MFA or external MFA? We are using Tortoise SVN to access the repositories. Is it possible to set up MFA through Tortoise SVN? Thanks On Tue, Apr 22, 2025 at 11:29 AM Andreas Stieger wrote: > Hello, > > On 20

Re: SVN MFA

2025-04-22 Thread Mark Phippard
Supporting this from a CLI is next to impossible. I would look at how it is done with Git and see if it is possible to make the SVN CLI directly use the Git Credential Manager: https://github.com/git-ecosystem/git-credential-manager You would then need to work backwards from there to an Apache sol

Re: SVN MFA

2025-04-22 Thread Peter Balogh
Hi, Andreas can you please share more about this? I've been looking for a solution for this for a while, but I only found hacks like when entering your password, also add your OTP at the end every time you do an svn operation Is a modern OTP or Oauth authentication possible with httpd and the s

Re: SVN MFA

2025-04-22 Thread Peter Balogh
Hi, We're working on contributing a 2FA solution to subversion, if you can share your requirements, we'll try to support it in the future What server are you planning to use? apache or svnserve? What MFA solution would satisfy your requirements? One time passwords, external 2nd factor like Duo

Re: SVN MFA

2025-04-22 Thread Andreas Stieger
Hello, On 2025-04-22 16:37, Prasu S wrote: Our team is using SVN as a version control tool for source code. We are looking into implementing MFA. Does SVN have built-in MFA capabilities? If so, can you please point me to the documentation? I appreciate any help you can provide. Apache Subve

Re: svn unlock all files locked by a specific user

2025-03-24 Thread Branko Čibej
On 19. 3. 25 19:10, Sean McBride wrote: Hi all, Is there an easy way to force unlock all files currently locked by a specific user? Consider an employee that leaves, and needing to then unlock anything she still had locked. You'll have to script it. You can use 'svn ls -R -v URL' to get the

Re: svn unlock all files locked by a specific user

2025-03-19 Thread Sean McBride
Thanks to you both. I ended up doing this on the server: ``` svnadmin lslocks /usr/local/repositories/reponame/ | grep -B3 "Owner: alice" | grep "Path: " | sed 's/^Path: \//svn unlock --force "/' | sed 's/$/"/' > ~/svnunlock.sh ``` then running that result on my own computer against my local

Re: svn unlock all files locked by a specific user

2025-03-19 Thread Andreas Stieger
On 2025-03-19 19:10, Sean McBride wrote: Is there an easy way to force unlock all files currently locked by a specific user? It's easy enough to get a full list: https://svnbook.red-bean.com/nightly/en/svn.advanced.locking.html#svn.advanced.locking.break-steal grep -B3 [...], grep, awk/cu

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/local -disable-static --locals

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --prefix=/usr/local -disable-static --locals

Re: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64

2025-03-10 Thread Branko Čibej
On 10. 3. 25 20:09, Branko Čibej wrote: On 10. 3. 25 13:45, John Frankish wrote: Svn-1.14.3 and svn1.14.5 segfault using 32-bit x86, but not on 64-bit x86_64 using the same distro (tinycorelinux) and the same machine. Building from source using: CC="gcc -ggdb" CXX="g++ -ggdb" ./configure --pr

RE: SVN Invalid Authz Configuration

2024-11-26 Thread Latoya A. Green via users
<mailto:latoya.gr...@us.abb.com> abb.com<https://www.abb.com/> From: Daniel Sahlberg Sent: Tuesday, November 26, 2024 1:23 AM To: Latoya A. Green Cc: users@subversion.apache.org Subject: Re: SVN Invalid Authz Configuration BeSecure! This email comes from outside of ABB. Make sure yo

Re: SVN Invalid Authz Configuration

2024-11-25 Thread Daniel Sahlberg
Den tis 26 nov. 2024 kl 01:21 skrev Latoya A. Green via users < users@subversion.apache.org>: > My SVN server was recently updated, and now when I try to connect to the > repository in eclipse, I receive the below error: > > > > "Error validating location: "org.apache.subversion.javahl.ClientExcep

Re: svn log gives E130003: Malformed XML via DAV

2024-10-19 Thread Daniel Sahlberg
On 2024/10/01 14:00:54 Franz Sirl wrote: (snip) > PS: While investigating that I found a small cosmetic bug in the > prototype (fortunately the code follows the definition) for do_logs() in > subversion/libsvn_repos/log.c: > ``` > Index: subversion/libsvn_repos/log.c > ===

Re: svn log gives E130003: Malformed XML via DAV

2024-10-04 Thread Franz Sirl
Hi Nathan, after further checking it turns out the failure mode I see is exactly the same like issue 4856, only you need to use --verbose and http to see it (`r` is the repository like created by `repro-4856.sh`): ``` > svn log --xml --verbose --use-merge-history -r 9:10 http://svn/r/A4 >/de

Re: svn log gives E130003: Malformed XML via DAV

2024-10-03 Thread Franz Sirl
Am 2024-10-02 um 17:10 schrieb Franz Sirl: So I came up with the attached tentative and so far untested patch. I'm currently building packages and will test them as soon as build is finished. Unfortunately the patch is just papering over the real bug. The XML error is gone, but the transferre

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Franz Sirl
Am 2024-10-02 um 16:02 schrieb Nathan Hartman: On Tue, Oct 1, 2024 at 10:03 AM Franz Sirl wrote: Looking at the transferred data with wireshark shows this at the end: ``` ... ... (>4 lines of modified-path/added-path redacted) ... ``` So the closing tag `` is missing. This closing tag is

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Nathan Hartman
On Wed, Oct 2, 2024 at 10:02 AM Nathan Hartman wrote: > > On Tue, Oct 1, 2024 at 10:03 AM Franz Sirl > wrote: > > > > Hi, > > > > recently this svn log command started to fail like that: > > > > ``` > > > svn log --xml --verbose --search @ --use-merge-history --incremental > > --revision 172342:

Re: svn log gives E130003: Malformed XML via DAV

2024-10-02 Thread Nathan Hartman
On Tue, Oct 1, 2024 at 10:03 AM Franz Sirl wrote: > > Hi, > > recently this svn log command started to fail like that: > > ``` > > svn log --xml --verbose --search @ --use-merge-history --incremental > --revision 172342:{2024-09-30} > http://svn/svn/project/branches/cd/2024_09 >/dev/null > svn: E

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
> This may be a silly question, but has hardware been checked? I would > start by checking: network wiring to the machine; the machine's RAM. I don't mind silly; I'm just that desperate. I'll do what I can to check those things, but given that I've seen the same results with the test server on a

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Nathan Hartman
On Thu, Sep 26, 2024 at 4:57 PM Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users wrote: > > I was pulled away from this problem, so I quoted our last exchange. Daniel, > you asked to test svn co but keeping communications entirely on the server > machine. I did that by usin

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-09-26 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
I was pulled away from this problem, so I quoted our last exchange. Daniel, you asked to test svn co but keeping communications entirely on the server machine. I did that by using an https://localhost URL. I also had to turn off Kerberos authentication, use "Require all granted", and hide the

Re: SVN over NFS/CIFS (Windows client to Linux server)

2024-06-18 Thread Daniel Sahlberg
Den tis 18 juni 2024 kl 17:49 skrev Johnston, Tim < tim.johns...@christiedigital.com>: > We are using SVN 1.7 repositories which are checked out to a Linux file > server. Users access their files via TortoiseSVN (1.7.15, which is also > built against SVN 1.7.x), either via CIFS or NFS. > That is

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-06-02 Thread Daniel Sahlberg
Den mån 27 maj 2024 kl 14:18 skrev Johan Corveleyn : > On Sat, May 25, 2024 at 12:12 AM Williams, James P. {Jim} > (JSC-CD4)[KBR Wyle Services, LLC] via users > wrote: > > > > > Den lör 11 maj 2024 kl 03:00 skrev Williams, James P. {Jim} > (JSC-CD4)[KBR Wyle Services, LLC] via users : > > > > > Y

Re: SVN issue - Repository - not able to login

2024-05-28 Thread Roshan Pardeshi
Hello Daniel, We have checked from below link but not find the solution. If we create a new repository named as *Utilities *that repository is getting created but when user is trying to login that repository by using URL as - *svn://192.168.213.190/SVN/Utilities

Re: SVN issue - Repository - not able to login

2024-05-27 Thread Daniel Sahlberg
Den mån 27 maj 2024 kl 14:50 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hello Daniel, > > We are using below mentioned path for access in SVN through > TortoiseSVN->Repo Browser. > > svn://___.__.__.___(server ip)/SVN/aedge > So you are using svnserve. Can you double check your settin

Re: SVN issue - Repository - not able to login

2024-05-27 Thread Roshan Pardeshi
Hello Daniel, We are using below mentioned path for access in SVN through TortoiseSVN->Repo Browser. svn://___.__.__.___(server ip)/SVN/aedge Regards,

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-27 Thread Johan Corveleyn
On Sat, May 25, 2024 at 12:12 AM Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users wrote: > > > Den lör 11 maj 2024 kl 03:00 skrev Williams, James P. {Jim} (JSC-CD4)[KBR > > Wyle Services, LLC] via users : > > > You previously mentioned Subversion 1.14.1, is that on the server

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-24 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
y. Unfortunately, I don't have the access needed to create a ramdisk. I'm able to checkout onto a local or NFS-mounted disk though. I would think the former is equivalent. No? Thanks for the reply, Daniel. Jim From: Daniel Sahlberg Sent: Saturday, May 11, 2024 1:51 PM To:

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Daniel Sahlberg
Den tors 23 maj 2024 kl 18:03 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hello Team, > > Please find the my input inline below. > > Which protocol are you using to access the repository? - Tortoise SVN - > Repo Browser > Are you using Apache/mod_dav_svn (http[s]://..), svnserve (sv

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Roshan Pardeshi
Hello Team, Please find the my input inline below. Which protocol are you using to access the repository? - Tortoise SVN - Repo Browser Do you have other repositories where this works? - No Can you share your server configuration? - its a Redhat Linux with 16 GB RAM and 4 core CPU. Regards,

Re: SVN issue - Repository - not able to login

2024-05-23 Thread Daniel Sahlberg
Den tors 23 maj 2024 kl 16:07 skrev Roshan Pardeshi < roshan.parde...@ncdex.com>: > Hi All, > > We are not getting Authentication window(using TortoriseSVN Repo Browser) > after creating a new repository in SVN to access that repository > > Else if we are getting authentication window then after

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-17 Thread Daniel Sahlberg
Den fre 17 maj 2024 kl 00:20 skrev Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users : > > BTW: as Daniel asked: You previously mentioned Subversion 1.14.1, is > > that on the server or on the client? > > I've been testing with SVN 1.14.1 on both the client and server. > Perfec

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-16 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
> > > > I've tried with multiple repos of different sizes and ages. The > > > smaller repo I mentioned has about 150 files in trunk, mostly 50 KB > or > > > smaller, and about 500 revisions. A larger repo with the same > problems > > > has about 5000 files in trunk and 10,000 revisions. > > > > >

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-15 Thread Johan Corveleyn
On Wed, May 15, 2024 at 12:41 AM Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users wrote: > > From: Nico Kadel-Garcia > > Sent: Saturday, May 11, 2024 10:47 AM ... > > > I've tried with multiple repos of different sizes and ages. The > > smaller repo I mentioned has about 150

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-14 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
> From: Nico Kadel-Garcia > Sent: Saturday, May 11, 2024 10:47 AM > > > How did you upgrade your server from RHEL 6 to RHEL 8? > > > > Because so much changed from RHEL 6 to 8, including Apache from 2.2.15 > to 2.4.37, all the Apache modules, etc., I started from the skeleton > configuration the o

Re: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-11 Thread Daniel Sahlberg
Hi, I've added a few comments/questions below. Kind regards, Daniel Sahlberg Den lör 11 maj 2024 kl 03:00 skrev Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users : > > How did you upgrade your server from RHEL 6 to RHEL 8? > > Because so much changed from RHEL 6 to 8, includi

RE: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-10 Thread Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] via users
y. Jim -Original Message- From: Nico Kadel-Garcia Sent: Friday, May 10, 2024 6:03 PM To: Williams, James P. {Jim} (JSC-CD4)[KBR Wyle Services, LLC] Cc: users@subversion.apache.org Subject: [EXTERNAL] Re: svn checkout Hangs/Crashes/Succeeds Over HTTP CAUTION: This email originated from o

Re: svn checkout Hangs/Crashes/Succeeds Over HTTP

2024-05-10 Thread Nico Kadel-Garcia
How did you upgrade your server from RHEL 6 to RHEL 8? Did you run "svnadmin upgrade" on the repo? And just how *big* is the repo? Does your client setup work with a notably smaller repo? And do the problems happen if you use svn:// rather than https:// ? Because I've been dealing with Subversion

RE: SVN Desktopversion

2024-04-12 Thread Jans, Ullrich
Hi, das ist ziemlich sicher nicht der richtige Kanal. Der Absenderadresse nach ist das ein von der Volkswagen IT verwaltetes Geraet, vielleicht da mal ein Ticket aufmachen und nachfragen. 😊 Gruss, Ulli From: tg.freigmbh.de via users Sent: Friday, April 12, 2024 11:34 AM To: Kramer, Ricarda (E

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 1:04 PM Stanley Gilliam wrote: > > If I am understanding correctly, we need to add something like: > 1 s:/DC=com/DC=corpnet1/DC=wmservice/CN=GSK Issuing CA 1 > i:/DC=com/DC=corpnet1/DC=wmservice/CN=GSK Root CA > > to which config file? Apologies I did not set up the s

Re: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
Would it be OpenSSL.conf? Get Outlook for iOS<https://aka.ms/o0ukef> From: Stanley Gilliam Sent: Monday, March 25, 2024 1:04:11 PM To: noloa...@gmail.com Cc: Daniel Sahlberg ; users@subversion.apache.org Subject: RE: SVN does not trust cert Hi Jeff, I

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
lliam System Administrator GSK 14200 Shady Grove Rd Rockville, MD 20850 678-548-7768 -Original Message- From: Jeffrey Walton Sent: Monday, March 25, 2024 12:34 PM To: Stanley Gilliam Cc: Daniel Sahlberg ; users@subversion.apache.org Subject: Re: SVN does not trust cert On Mon, Mar 25, 20

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 12:26 PM Stanley Gilliam wrote: > > Here is the output: > > [I am root!@uptus060-1:private]# echo "$cert" | openssl x509 -inform PEM > -text -noout > unable to load certificate > 139671613519760:error:0906D06C:PEM routines:PEM_read_bio:no start > line:pem_lib.c:707:Expect

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
23 85 e3 d9 75 .q._.c.#...u 0090 - 17 09 46 ac 5a 7b 03 01-55 95 19 80 81 f3 11 19 ..F.Z{..U... 00a0 - e5 e2 03 cc cd 8b 3c 63-8c fb 91 99 4c 98 9c 64 .. Sent: Monday, March 25, 2024 12:16 PM To: Stanley Gilliam Cc: Daniel Sahlberg ; users@subversion.apache.org Subject: Re

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 12:01 PM Daniel Sahlberg wrote: > > Den mån 25 mars 2024 kl 16:34 skrev Stanley Gilliam > : >> >> Hello, >> >> So we use appview to update our certificates and our cert team confirmed >> that the cert was updated correctly. Is there another way to possibly verify >> this

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
nday, March 25, 2024 12:01 PM To: Stanley Gilliam Cc: noloa...@gmail.com; users@subversion.apache.org Subject: Re: SVN does not trust cert Den mån 25 mars 2024 kl 16: 34 skrev Stanley Gilliam : Hello, So we use appview to update our certificates and our cert team confirmed that the cert was update

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 11:55 AM Stanley Gilliam wrote: > > I apologize for the miscommunication. Here is the output from the openssl > command: > > [I am root!@uptus060-1:conf.d]# openssl s_client -connect hpc.gsk.com:443 You should use -servername here. It triggers Server Name Indication (SNI)

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
Adding @Jung Yi Stanley Gilliam System Administrator GSK 14200 Shady Grove Rd Rockville, MD 20850 678-548-7768 -Original Message- From: Stanley Gilliam Sent: Monday, March 25, 2024 11:55 AM To: noloa...@gmail.com Cc: Daniel Sahlberg ; users@subversion.apache.org Subject: RE: SVN does

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
ubject: Re: SVN does not trust cert Den mån 25 mars 2024 kl 15: 19 skrev Jeffrey Walton : On Mon, Mar 25, 2024 at 9: 54 AM Stanley Gilliam via users wrote: > > I am a system admin for GlaxoSmithKline. We are currently Den mån 25 mars 2024 kl 15:19 skrev Jeffrey Walton mailto:noloa...@gma

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
11:42 AM To: Stanley Gilliam Cc: Daniel Sahlberg ; users@subversion.apache.org Subject: Re: SVN does not trust cert On Mon, Mar 25, 2024 at 11:34 AM Stanley Gilliam wrote: > > So we use appview to update our certificates and our cert team confirmed that > the cert was updated correctly

Re: SVN does not trust cert

2024-03-25 Thread Daniel Sahlberg
liam > > System Administrator > > GSK > > 14200 Shady Grove Rd > > Rockville, MD 20850 > > 678-548-7768 > > > > *From:* Daniel Sahlberg > *Sent:* Monday, March 25, 2024 11:17 AM > *To:* noloa...@gmail.com > *Cc:* Stanley Gilliam ; > users@subver

RE: SVN does not trust cert

2024-03-25 Thread Stanley Gilliam via users
? Stanley Gilliam System Administrator GSK 14200 Shady Grove Rd Rockville, MD 20850 678-548-7768 From: Daniel Sahlberg Sent: Monday, March 25, 2024 11:17 AM To: noloa...@gmail.com Cc: Stanley Gilliam ; users@subversion.apache.org Subject: Re: SVN does not trust cert Den mån 25 mars 2024 kl 15: 19

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 11:34 AM Stanley Gilliam wrote: > > So we use appview to update our certificates and our cert team confirmed that > the cert was updated correctly. Is there another way to possibly verify this. > There may also be something to the second option, I am on a linux RH OS. Is

Re: SVN does not trust cert

2024-03-25 Thread Daniel Sahlberg
Den mån 25 mars 2024 kl 15:19 skrev Jeffrey Walton : > On Mon, Mar 25, 2024 at 9:54 AM Stanley Gilliam via users > wrote: > > > > I am a system admin for GlaxoSmithKline. We are currently having issues > getting our svn instance to authenticate. This all happened after the cert > was updated. We

Re: SVN does not trust cert

2024-03-25 Thread Jeffrey Walton
On Mon, Mar 25, 2024 at 9:54 AM Stanley Gilliam via users wrote: > > I am a system admin for GlaxoSmithKline. We are currently having issues > getting our svn instance to authenticate. This all happened after the cert > was updated. We are currently getting the message : > > svn: E175002: OPTION

Re: SVN log --xml version omits line count

2024-03-05 Thread sebb
On Tue, 5 Mar 2024 at 19:01, Daniel Sahlberg wrote: > > Den tis 5 mars 2024 kl 18:09 skrev sebb : >> >> I would expect svn log --xml to include all the same info as the >> non-xml version, but that is not the case. The number of lines changed >> is not visible in the xml version. > > > The figure

Re: SVN log --xml version omits line count

2024-03-05 Thread Daniel Sahlberg
Den tis 5 mars 2024 kl 18:09 skrev sebb : > I would expect svn log --xml to include all the same info as the > non-xml version, but that is not the case. The number of lines changed > is not visible in the xml version. The figure is the number of lines in the log message, not the number of chang

Re: SVN update not working in MacOS Sonoma

2023-10-11 Thread Sean McBride
On 6 Oct 2023, at 10:40, Daniel Sahlberg wrote: > Pavel has confirmed that Subversion works for him without any issues on macOS > 14 FWIW svn 1.14.2 from MacPorts has been working for me fine throughout the macOS 14 beta cycle, and with the final release. Sean

Re: SVN update not working in MacOS Sonoma

2023-10-06 Thread Daniel Sahlberg
Den fre 6 okt. 2023 kl 10:58 skrev : > Hi Daniel, > > I tried Fiddler, but no network data is capturing when I run the SVN > commands in the terminal. Check the attached video > > May I know what exactly you are looking for in the network data, I just > wanted to know why the svn commands working

Re: SVN update not working in MacOS Sonoma

2023-10-05 Thread pavan . kumar
Hi Daniel, What exactly you are referring about "Have you tried to catch the network traffic?" , can you please help how to check this network network traffic while running svn commands Regards Pavan On 5 Oct 2023 at 1:25 PM +0530, Daniel Sahlberg , wrote: > Den ons 4 okt. 2023 kl 11:22 skrev

Re: SVN update not working in MacOS Sonoma

2023-10-05 Thread Daniel Sahlberg
Den tors 5 okt. 2023 kl 10:13 skrev : > Hi Daniel, > > What exactly you are referring about "Have you tried to catch the network > traffic?" , can you please help how to check this network network traffic > while running svn commands > > Regards > Pavan > Someone with more MacOS experience can pr

Re: SVN update not working in MacOS Sonoma

2023-10-05 Thread Daniel Sahlberg
Den ons 4 okt. 2023 kl 11:22 skrev : > Hi Daniel, > > I attempted to use svn commands in the terminal on the latest version of > MacOS and encountered errors with both "svn update" and "svn checkout". > However, when I ran the same commands on an earlier version of MacOS using > a virtual machine,

Re: SVN update not working in MacOS Sonoma

2023-10-04 Thread pavan . kumar
Hi Daniel, I attempted to use svn commands in the terminal on the latest version of MacOS and encountered errors with both "svn update" and "svn checkout". However, when I ran the same commands on an earlier version of MacOS using a virtual machine, I did not encounter any issues. On 4 Oct 2023

Re: SVN update not working in MacOS Sonoma

2023-10-04 Thread Daniel Sahlberg
Den tis 3 okt. 2023 kl 11:09 skrev : > Hi Daniel, > > Thanks for the quick reply. > > > Our repository is currently hosted on AWS EC2. > > To check the issue in other OS's, I have set up Ubuntu and MacOS 13 > virtual machines on my MacBook using UTM. I have not encountered any issues > with the "s

Re: SVN update not working in MacOS Sonoma

2023-10-03 Thread pavan . kumar
Hi Daniel, Thanks for the quick reply. Our repository is currently hosted on AWS EC2. To check the issue in other OS's, I have set up Ubuntu and MacOS 13 virtual machines on my MacBook using UTM. I have not encountered any issues with the "svn update" and "svn checkout" commands while running

Re: SVN update not working in MacOS Sonoma

2023-10-03 Thread Daniel Sahlberg
Den tis 3 okt. 2023 kl 08:28 skrev : > Hi Pavel, > > Thanks for the quick reply. > > I m using my personal macbook, so I dont have any proxy server, reverse > proxy or application firewall. > Where is your repository located? A reverse proxy is something you would expect to have on the server si

Re: SVN update not working in MacOS Sonoma

2023-10-02 Thread suwanji
Hi Pavel, Thanks for the quick reply. I m using my personal macbook, so I dont have any proxy server, reverse proxy or application firewall. This error is coming only after updating the macos, earlier I didnt faced any issues Please help Regards Pavan On 2 Oct 2023 at 11:52 PM +0530, Pavel

Re: SVN update not working in MacOS Sonoma

2023-10-02 Thread Pavel Lyalyakin via users
On Mon, 2 Oct 2023 at 14:22, wrote: > > Hi, > > Since the latest version of the MacOS Sonoma, I m facing issues with SVN. > > Please check the following > > svn update >

RE: svn up -r {DATE} returns E1000104

2023-06-20 Thread Mun Johl
Hi Daniel, [... snip ...] Which protocol do you use for accessing the repository? (svn info --show-item url should give the url, the protocol is the first part) [Mun] svn: Thanks for checking! Then we need to look at svnserve. Can you figure out how it is started? It can be run either in daemo

Re: svn up -r {DATE} returns E1000104

2023-06-17 Thread Daniel Sahlberg
Den tis 13 juni 2023 kl 17:33 skrev Mun Johl : [... snip ...] > Which protocol do you use for accessing the repository? (svn info > --show-item url should give the url, the protocol is the first part) > > > > *[Mun] svn:* > Thanks for checking! Then we need to look at svnserve. Can you figure o

RE: svn up -r {DATE} returns E1000104

2023-06-13 Thread Mun Johl
Hi Daniel, Thank you very much for your reply. Please see my comments below. Hi all, Let me start out by saying I know we are on an old version of SVN on RHEL7, and I apologize in advance for that fact. Our SVN revision is: v1.9.12 We had to obsolete our old local SVN server and then we move

Re: svn up -r {DATE} returns E1000104

2023-06-13 Thread Daniel Sahlberg
Den mån 12 juni 2023 kl 20:45 skrev Mun Johl : > Hi all, > > > > Let me start out by saying I know we are on an old version of SVN on > RHEL7, and I apologize in advance for that fact. Our SVN revision is: > v1.9.12 > > > > We had to obsolete our old local SVN server and then we moved to a remote

Re: Svn server uses up all disk, how to fix?

2023-05-09 Thread Pavel Lyalyakin via users
On Tue, May 9, 2023 at 7:45 PM Bo Berglund wrote: > > I have an svn server running as a backup system on an Ubuntu 20.04.6 LTS > SERVER. > > $ svn --version > svn, version 1.13.0 (r1867053) >compiled May 12 2022, 20:47:08 on x86_64-pc-linux-gnu > > Today after returning from a 2-week trip I d

Re: SVN tool to get the Line of code

2022-11-16 Thread Pavel Lyalyakin via users
On Wed, Nov 16, 2022 at 3:08 PM Daniel Sahlberg wrote: > > Den tis 15 nov. 2022 kl 20:45 skrev JITHIN K : >> >> Hello Team, >> >> We are using Subversion for the source code management ( Software >> development ). >> Are there any SVN tools available to calculate the line of code >> > > I can't

Re: SVN tool to get the Line of code

2022-11-16 Thread Daniel Sahlberg
Den tis 15 nov. 2022 kl 20:45 skrev JITHIN K : > Hello Team, > > We are using Subversion for the source code management ( Software > development ). > Are there any SVN tools available to calculate the line of code > > I can't really understand what you are looking for, it seems the question was c

Re: SVN being impacted with CVE-2022-42889

2022-10-31 Thread Thorsten
Subversion is not affected since its not written in java.  If you are using SVNKit which is written in java you will have to ask them. Best regards, Thorsten Goetzke Am 31/10/2022 um 10:42 schrieb lavanya.shanthaku...@infineon.com: Dear Community Users, Can I know if Subversion is affected

Re: SVN pre- commit hook failed

2022-09-20 Thread Daniel Sahlberg
Den tis 20 sep. 2022 kl 21:42 skrev Balaji, Yuvaraj via users < users@subversion.apache.org>: > > > Hi, > > I was not able to commit the changes in one of my repository after > merging. > > Kindly let me know how can make it work. > > It will take more time for Merging if I need to redo it again.

Re: svn client - how do I force IPv6?

2022-09-19 Thread Mark Phippard
On Mon, Sep 19, 2022 at 8:49 AM Graham Leggett wrote: > > On 19 Sep 2022, at 13:36, Mark Phippard wrote: > > Daniel gave the answer I was typing. Here is info on enabling IPv6 for your > JVM: > > https://stackoverflow.com/questions/18697091/ipv6-support-in-java > > > Alas this is the info for th

Re: svn client - how do I force IPv6?

2022-09-19 Thread Daniel Sahlberg
Den mån 19 sep. 2022 kl 14:49 skrev Graham Leggett : > On 19 Sep 2022, at 13:36, Mark Phippard wrote: > > Daniel gave the answer I was typing. Here is info on enabling IPv6 for > your JVM: > > https://stackoverflow.com/questions/18697091/ipv6-support-in-java > > > Alas this is the info for the JV

Re: svn client - how do I force IPv6?

2022-09-19 Thread Graham Leggett via users
On 19 Sep 2022, at 13:36, Mark Phippard wrote: > Daniel gave the answer I was typing. Here is info on enabling IPv6 for your > JVM: > > https://stackoverflow.com/questions/18697091/ipv6-support-in-java > Alas this is the info

Re: svn client - how do I force IPv6?

2022-09-19 Thread Graham Leggett via users
On 19 Sep 2022, at 13:15, Daniel Sahlberg wrote: > SVNKit is a Java implementation of Subversion and doesn't share any code with > Apache Subversion. Even if SVNKit honors the configuration in ~/.subversion, > there are no guarantees that a particular option used by Apache Subversion > works t

Re: svn client - how do I force IPv6?

2022-09-19 Thread Mark Phippard
On Mon, Sep 19, 2022 at 7:15 AM Daniel Sahlberg wrote: > > Den mån 19 sep. 2022 kl 11:50 skrev Graham Leggett via users > : >> >> Hi all, >> >> What setting option under the ~/.subversion directory will force the use of >> IPv6 on outbound connections? >> >> The backstory is that I have some SVN

Re: svn client - how do I force IPv6?

2022-09-19 Thread Daniel Sahlberg
Den mån 19 sep. 2022 kl 11:50 skrev Graham Leggett via users < users@subversion.apache.org>: > Hi all, > > What setting option under the ~/.subversion directory will force the use > of IPv6 on outbound connections? > > The backstory is that I have some SVNKit code that is stubbornly insisting > on

Re: "svn info" results in a timeout, but only when called from a specific server

2022-07-20 Thread Daniel Sahlberg
Hi René, Den mån 18 juli 2022 kl 14:51 skrev René Ederer : > Hello, > > I'm a little baffled by a timeout. > > The command I'm trying to execute is: > *svn.exe info --username U --password P --no-auth-cache > "http://192.168.48.249/svn/SENSO/trunk/wls_intern/wls_config_11.1/Middleware/user_projec

Re: "svn info" results in a timeout, but only when called from a specific server

2022-07-19 Thread Nico Kadel-Garcia
On Mon, Jul 18, 2022 at 8:51 AM René Ederer wrote: > > Hello, > > I'm a little baffled by a timeout. > > The command I'm trying to execute is: > svn.exe info --username U --password P --no-auth-cache > "http://192.168.48.249/svn/SENSO/trunk/wls_intern/wls_config_11.1/Middleware/user_projects/doma

Re: SVN Diff fails with error

2022-05-12 Thread Daniel Shahaf
Aravind Raj wrote on Mon, 09 May 2022 09:27 +00:00: > As the changes are huge we are getting the above error, this does not > happen when the change is short. Another important observation is, this > issue does not happen in Tortoise SVN version below 1.8. So, *assuming for > Subversion client with

Re: svn file rename fails, but recreating a new file and copying the previous contents works

2022-02-19 Thread Mark Phippard
On Sat, Feb 19, 2022 at 11:07 AM Mark Phippard wrote: > > On Sat, Feb 19, 2022 at 9:48 AM William Muriithi > wrote: > > > > Morning Mark > > > > Thanks a lot for the quick suggestion. I don't have a proxy in front > > of the SVN though. The svn client (Which is also subversion 1.14) > > conne

Re: svn file rename fails, but recreating a new file and copying the previous contents works

2022-02-19 Thread Mark Phippard
On Sat, Feb 19, 2022 at 9:48 AM William Muriithi wrote: > > Morning Mark > > Thanks a lot for the quick suggestion. I don't have a proxy in front > of the SVN though. The svn client (Which is also subversion 1.14) > connects to apache server that is running mod_dav_svn to serve a svn > repo.

Re: svn file rename fails, but recreating a new file and copying the previous contents works

2022-02-19 Thread William Muriithi
Morning Mark Thanks a lot for the quick suggestion. I don't have a proxy in front of the SVN though. The svn client (Which is also subversion 1.14) connects to apache server that is running mod_dav_svn to serve a svn repo. I am not sure if this apache server can then be called a proxy, as all

Re: svn file rename fails, but recreating a new file and copying the previous contents works

2022-02-18 Thread Mark Phippard
On Fri, Feb 18, 2022 at 5:52 PM William Muriithi wrote: > > Hello, > > I have this setup: > - httpd-2.4.37-43 > - subversion-1.14.1-1 > - mod_dav_svn-1.14.1-1 > - openssl-1.1.1k-5 > > The svn on Rocky Linux that is accessible only over https (Apache) and > everything works fine with exemption of "

Re: SVN PROBLEM

2022-02-17 Thread Bo Berglund
On Thu, 17 Feb 2022 16:34:16 +0300, NICK Margeyt wrote: >Hello,Please help in solving the problem, why the authorization window >for connecting to the repository does not appear, I have already tried >everything possible from reinstalling SVN to updating, anyway, any >user from the network can go

Re: svn::auto-props and svn:needs-lock

2021-12-10 Thread Daniel Sahlberg
Den tors 9 dec. 2021 kl 11:18 skrev Sebastian Weilhammer < sebastian.weilham...@madheadgames.com>: > Is that not what I'm doing by setting svn:auto-props to *= on the child > node? > I have tried the following, I think this is matches what you are trying to do. This is done using Subversion 1.14.

Re: svn::auto-props and svn:needs-lock

2021-12-09 Thread Justin MASSIOT | Zentek
Not if the needs-lock attribute is also set by a "svn:auto-props" property, I suppose. Justin MASSIOT | Zentek On Thu, 9 Dec 2021 at 11:18, Sebastian Weilhammer < sebastian.weilham...@madheadgames.com> wrote: > Is that not what I'm doing by setting svn:auto-props to *= on the child > node? >

  1   2   3   4   5   6   7   8   9   10   >