RE: is it necessary to svnsync copy-revprops all reversions everytime executing svnsync?

2018-04-21 Thread Bert Huijben
changes. Bert From: Keva-Slient [mailto:356730...@qq.com] Sent: vrijdag 20 april 2018 14:48 To: users Subject: is it necessary to svnsync copy-revprops all reversions everytime executing svnsync? is it necessary to svnsync copy-revprops all reversions everytime executing

RE: File not accepted as valid addition to svn

2018-02-16 Thread Bert Huijben
erable program or batch file. F:\> It is a separator between multiple operations on the same line. You could quote the argument with "-characters, which usually just pressing TAB would do for you on Windows if the file exists. Another option is adding a ^ in front of the &. Bert

RE: Searching for a C++ API

2018-01-31 Thread Bert Huijben
is C++/CLI, to allow operation with the .Net environment, but there is enough plain C++ inside that might be able to get you started with the C library. The code is Apache licensed so you can mostly use it however you like. Bert

RE: when will file ./svn/tmp/svn-XXXXXX be created? and why?

2017-12-21 Thread Bert Huijben
In many cases Subversion will create files there, then write its contents and when done move the file to the required location in your working copy. This makes sure that you will never see half written files during operations… and by that loose valuable information. Bert

RE: Access Violation problem in Code Collaborator tool

2017-11-23 Thread Bert Huijben
rsion project) are no longer providing patches for Subversion 1.7.7. Bert From: gopayya.devarako...@dell.com [mailto:gopayya.devarako...@dell.com] Sent: donderdag 23 november 2017 14:31 To: users@subversion.apache.org Subject: Access Violation problem in Code Collaborator tool

RE: svn merge failed

2017-10-26 Thread Bert Huijben
repository is too old to support client requests for these features. The administrator should run 'svnadmin upgrade repository' to bump the format to enable this feature... For better results he/she should also upgrade the server to a fully supported version but this doesn't help when the filesystem is not upgraded. Bert

RE: GitHub svn bridge corrupting working copies

2017-10-16 Thread Bert Huijben
ing copy was found > > That's interesting; why would there be an obstruction? > > Maybe a file by this name already existed at some point, and was not > removed cleanly? > > Or perhaps github reported the 'add' to the client twice? One probable cause for this would be that they somehow changed the revision number to hash mapping. I would hope they change the repository UUID in this case, but given how easy it is to change history in git, I wouldn't count on this. Is this problem reproducible on a clean checkout from the same base revision? Bert

RE: Problem with file name encoding during merge - URL Encoding (Percent Encoding)

2017-10-07 Thread Bert Huijben
o... But I wouldn’t be surprised to see some of these issues with Subversion 1.6 or earlier under some specific circumstances. We didn't have all these nice url and path helper functions with strictly defined behavior in those older releases. Bert

RE: override global-ignores from server side

2017-09-19 Thread Bert Huijben
strict policy that we don't release binaries that are built on normal workstations, just those on regulated build systems where we can 100% reproduce previous builds. Having a default that would make users commit locally build artifacts would go against that. We manage these artifacts using different tooling that was designed for that purpose. Bert

RE: override global-ignores from server side

2017-09-19 Thread Bert Huijben
large and you can add items via svn:ignore and svn:global-ignores properties on a directory. Bert > > Best regards, > Peter

RE: Subversion svn+ssh, sshd 100% CPU

2017-09-19 Thread Bert Huijben
. On most *nix systems this would be openssh, while on most Windows systems I would see some putty based tools. Bert > > -- > Johan

RE: Checksum mismatch bug in 1.8.18

2017-07-29 Thread Bert Huijben
ve time to look into this before Monday though, so perhaps one of the other developers beats me to it. Bert From: David Engel [mailto:den...@magnitude.com] Sent: zaterdag 29 juli 2017 00:01 To: users@subversion.apache.org Subject: Checksum mismatch bug in 1.8.18 Hi, I thi

RE: "Unable to parse reversed revision range" when merging from trunk to branch

2017-07-07 Thread Bert Huijben
, but perhaps I missed the earlier discussion. Bert From: Paul Hammant [mailto:p...@hammant.org] Sent: vrijdag 7 juli 2017 13:25 To: Jens Restemeier Cc: Stefan Sperling ; Johan Corveleyn ; users@subversion.apache.org Subject: Re: "Unable to parse reversed revision range&

RE: --editor-cmd not working with paths with spaces?

2017-07-07 Thread Bert Huijben
w): > > svn: E200012: system('C:/Program Files/Git/usr/bin/vi svn-commit.4.tmp') Where is your vi.exe located? If it is in C:\usr\bin\vi.exe I would recommend using --editor-cmd "C:\usr\bin\vi.exe" or if VI is in your path you could just use --editor-cmd vi. (I often use --editor-cmd notepad2, which is just located somewhere in my PATH dirs.) Bert

RE: "Unable to parse reversed revision range" when merging from trunk to branch

2017-07-04 Thread Bert Huijben
ive mergeinfo inside the same range... (The ranges with and without a '*' in the string). I see that your example case in the issue has quite a bit of overlap with both these kinds of ranges. It looks like your case triggers a very interesting edge case. Bert

RE: "svn status" does not show unversioned items been deleted but not committed

2017-06-14 Thread Bert Huijben
l the delete was committed and we explicitly handled this case this way. On the API level there is no real issue, as the information that something exists locally is already available there... So the thing that is missing is how to show this information from the 'svn' tool without breaking backwards compatibility. Bert

RE: "svn pget svn:externals -r . -R" dramatically slow

2017-05-22 Thread Bert Huijben
to indicate that the file was deleted, but still exists on disk. > > The more interesting question is how, if at all, this would affect the > Subversion API. The api already has this information, as there is some on-disk info in the status api that isn't reported by 'svn' (but is used by other clients). Note that 'svn rm --keep-local Q' is the only thing necessary to trigger this case. And before 1.7 (pre WC-NG) we always had to keep deleted directories until after they were committed, but we didn't want to report these as still existing. That is probably why nobody bothered adding UI for this to 'svn' yet. Bert

RE: "svn pget svn:externals -r . -R" dramatically slow

2017-05-18 Thread Bert Huijben
cords are left after an upgrade from a previous version of > database, but why is the svn runs so slow about it? Anyway, i can't just > cleanup the externals because they are from 3dparty repository in which i > have no access. > > Thanks for bringing the issue here to the list. There is no optimized code path for retrieving properties recursively directly from the server. The implementation of this specific command is like running 'svn ls' on every directory + fetching the properties on every file and every directory. (It is slightly more optimized than that, but not much) Bert

RE: svn generates long lists of empty diffs with --diff-cmd

2017-04-20 Thread Bert Huijben
re actually different, but your diff command reports that they are not different (e.g. after normalizing whitespace). I think this header is printed on changed files, right before invoking the diff command. Bert > > Regards, > Alexey.

RE: Using UTF8 in repository name?

2017-04-11 Thread Bert Huijben
. Bert From: Doug Robinson [mailto:doug.robin...@wandisco.com] Sent: maandag 10 april 2017 22:17 To: Branko Čibej Cc: users@subversion.apache.org Subject: Re: Using UTF8 in repository name? Brane: Thank you for replying. Based on this post: https://www.svnforum.org/forum/opensource

RE: [BUG] svn update produces unexpected result

2017-03-13 Thread Bert Huijben
E' base rev of item's working copy 'COMMITTED' last commit at or before BASE 'PREV' revision just before COMMITTED Bert From: Deng, Xiao [mailto:x

RE: Is Subversion compatible and supported for Windows 10?

2017-02-22 Thread Bert Huijben
everyone on users@ does.) It really depends on the distribution you use for the fine details, but I can say that for the CollabNet and SlikSVN Subversion binaries and other products based on SharpSvn (including AnkhSVN), Windows 10 is a fully supported platform. Bert >

RE: How to check which branches have specific commit

2017-02-22 Thread Bert Huijben
EAD, and the default for TARGET is HEAD for a URL or BASE for a WC path. The depth can be 'empty' or 'infinity'; the default is 'empty'. ]] With some simple scripting you should be able to run this on all branches below a specific directory, etc. Thanks / Met vriendelijke groeten, Bert

RE: [Bug] svn export -r of single file fails if there is a newer revision available than the exported one

2017-02-16 Thread Bert Huijben
can combine these functions to trace a url backwards starting with a specific revision) So this is most likely the completely documented behavior. See the Subversion book on <http://svnbook.red-bean.com> http://svnbook.red-bean.com Bert From: Schedel, A

RE: how to detect read-only branch from client?

2017-02-15 Thread Bert Huijben
ration, but *not* specify a log message and configure no editor either. In that case the operation will fail client side after these checks via the missing log message. But then there is always the option that the read-only-ness is applied via a hook script... And in this case this trickery just fails. Bert

RE: svn_dirent_t::size: often not the "real" file size

2017-02-02 Thread Bert Huijben
. The list function works 100% repository side and we simply don’t know the size the file would be in some working copy, as the size might be different in other working copies. Bert From: Bijewitz, Volker [mailto:v.bijew...@baum.de] Sent: donderdag 2 februari 2017 09:22 To

RE: problem authz_svn_module

2017-01-17 Thread Bert Huijben
CollabNet SvnEdge use this configuration to avoid that problem I just described with hiding subdirectories for specific users. In your case I think you want to change your httpd.conf block to apply to the repository root to make it include the private urls, and add the now missing methods to the LimitEx

RE: How to hide unversioned files from svn status

2016-11-22 Thread Bert Huijben
;> (Put that in your shell's dotfiles.) > > I'm not a fan of such hacks.. ;) > > Wouldn't it make sense to have a conf file option for this? > > > In short ... no. The svn:ignore property already does what you need, > with less chance of shooting yourself in the foot. You can always set > svn:ignore to * if you really want that ... Or set [miscellany] global-ignores = * In ~/.subversion/config Bert

RE: discrepancies between 'svn -R list' and 'svn -R propget' (on windows using TSVN build command line client)

2016-11-16 Thread Bert Huijben
> -Original Message- > From: Lorenz [mailto:loren...@yahoo.com] > Sent: woensdag 16 november 2016 15:02 > To: users@subversion.apache.org > Subject: Re: discrepancies between 'svn -R list' and 'svn -R propget' (on > windows using TSVN build comman

RE: discrepancies between 'svn -R list' and 'svn -R propget' (on windows using TSVN build command line client)

2016-11-16 Thread Bert Huijben
nly? The standard 'svn' clients will all use the same formatting as they share the same code here. (TortoiseSVN compiles the standard 'svn' sourcecode for their svn binary) The formatting is really part of the client as internally Subversion always uses '/', so any other client than 'svn' may use different formatting, but I think you can expect 'svn' to keep using the existing formats. Bert > > > I'm on win7 using the command line client that ships with tortoise svn > (TSVN 1.9.4 linked against svn 1.9.4) > -- > > Lorenz

RE: Re: subversion issue: ignore server invaild certificate in linux

2016-10-21 Thread Bert Huijben
y_save to TRUE if the checkbox is checked. */ svn_boolean_t may_save; /** Bit mask of the accepted failures */ apr_uint32_t accepted_failures; } svn_auth_cred_ssl_server_trust_t; If svn uses a different way to change a value in the caller that is a bug that should be fixed there. Bert

RE: svn switch, touches files with svn:keywords

2016-09-26 Thread Bert Huijben
can reproduce this with current trunk and I agree it's a (minor) bug. See also issue #1975, which documented the opposite behavior as a bug, which was fixed in 1.9.0 http://subversion.apache.org/issue1975 Bert

RE: Can't compile Subversion against Serf-1.3.9.

2016-09-07 Thread Bert Huijben
#x27;openssl-devel' port. The normal openssl package is 1.0.2, while the base system is still at 1.0.1. My guess would be that you have an apr-util or cyrus sasl port that is linked to the base system version. (On FreeBSD apr and apr-util are a single package) Bert

RE: SVN Feature Request: Selecting the revision for pinning externals

2016-09-03 Thread Bert Huijben
> -Original Message- > From: Stefan Sperling [mailto:s...@elego.de] > Sent: zaterdag 3 september 2016 12:49 > To: Alfred von Campe > Cc: Bert Huijben ; Israel Sadeh vision.com>; users@subversion.apache.org > Subject: Re: SVN Feature Request: Selecting the revision

RE: SVN Feature Request: Selecting the revision for pinning externals

2016-09-02 Thread Bert Huijben
TH URL. Perhaps revert the local copy after this) Bert From: Israel Sadeh [mailto:israel.sa...@rtc-vision.com] Sent: donderdag 1 september 2016 18:47 To: users@subversion.apache.org Subject: SVN Feature Request: Selecting the revision for pinning externals Hi, The new

RE: svnserve takes too much memory for "svn blame"

2016-07-27 Thread Bert Huijben
sions is far more interesting... as is how much really changed in the file. Bert

RE: Commit Size Restriction

2016-07-13 Thread bert
would just use a simple commit filter if necessary, to avoid users accidentally committing DVD images. Bert Sent from Mail for Windows 10 From: Siva Sent: woensdag 13 juli 2016 16:07 To: subversion-users Subject: Commit Size Restriction Hi All, My Subversion Edge is installed in Windows Server

RE: Subversion Exception! - on cleanup after uncomplete checkout

2016-05-02 Thread Bert Huijben
n\subversion\libsvn_client\cleanup.c' > > line 227: assertion failed (svn_dirent_is_absolute(dir_abspath)) This is an assertion on the very first line of svn_client_cleanup2(), asserting that the passed argument is an absolute path (required, as documented). Please report this issue at TortoiseSVN, as they somehow call this function with an invalid path. Bert

RE: A verbose option to "svn update"?

2016-04-27 Thread Bert Huijben
some time ago, but non that we liked enough to release in ‘svn’) Bert Sent from Mail for Windows 10 From: Doug Robinson Sent: woensdag 27 april 2016 22:57 To: users@subversion.apache.org Subject: A verbose option to "svn update"? Folks: A suggestion from one of our customers: I see

RE: Error---After upgrading from subversion 1.6 to 1.8.

2016-03-29 Thread Bert Huijben
e the file that you configured in [[ AuthzSVNAccessFile /u10//svnauthfile ]] in your configuration. Bert

RE: Upgrade Subversion from 1.5 to 1.9

2016-03-22 Thread Bert Huijben
version (or 1.6.x) prior to upgrading to Subversion 1.7 or newer. You would have seen an error at the end of the operation and/or explicitly cancelled the operation as a user in all cases where you need this. Bert From: Safarulla Meerasahib [mailto:safarulla.meerasa...@or

RE: Weird Behaviour: Files reverted that didn't show up in a status --no-ignore

2016-03-03 Thread Bert Huijben
#x27;t mention the version of svn client. Maybe it's a > notification bug in the client that's already fixed? One known case of this would be if some files were not writable. svn revert will restore writability/non writability based on whether a local lock is owned and/or svn:needs-lock is set, while status doesn't report this as a modification. Bert

RE: Modifying svn:log property: good or bad?

2016-02-29 Thread Bert Huijben
d. For ^/subversion in the ASF repository that would be commits@subversion.a.o. Bert

RE: (unknown)

2016-02-22 Thread Bert Huijben
[Moving thread to dev@s.a.o from users@] > -Original Message- > From: Bert Huijben [mailto:b...@qqmail.nl] > Sent: maandag 22 februari 2016 13:21 > To: 'Daniel Shahaf' ; 'Michal Matyl' > > Cc: users@subversion.apache.org > Subject: RE: (unknown

RE: (unknown)

2016-02-22 Thread Bert Huijben
oduce the kind of conflict that you would really want here. And I'm not sure In the optimal case we would flag one conflict containing both changes *as one*, but that will take more work. Note that the 'whitespace' (noted in original report) is completely unrelated to this issue. Our diff code works with tokens, while the whitespace is handled in the tokenizer. I can easily reproduce this issue without any whitespace changes. Bert

RE: svn_fs for rename file and folder

2016-02-21 Thread Bert Huijben
Currently not. We still express moves as copies+delete. (There is some experimental support hidden in the implementations, but that isn’t used yet) Bert Sent from Mail for Windows 10 From: Ren Wang Sent: zondag 21 februari 2016 16:44 To: users@subversion.apache.org Subject: svn_fs for rename

RE: upgrade Subversion from version 1.6 to svn, version 1.8.15 (r1718365)

2016-02-20 Thread Bert Huijben
Are you sure the directory you tried to upgrade is a 'working copy'? The way you describe it, it looks like it is a repository. Subversion 1.9 and 1.8 can just use 1.6 repositories without upgrade. or you can run 'svnadmin upgrade' on them to enable new features.

RE: Subversion exception report

2016-02-19 Thread Bert Huijben
is reproducable by committing files from two different drives on Windows. $ F:\>svn ci f:\svn-dev\dev g:\brk svn: E235000: In file '..\..\..\subversion\libsvn_client\commit_util.c' line 1197: assertion failed (svn_dirent_is_absolute(base_dir_abspath)) Confirmed with 1.9.3. Bert

RE: files always reported as reverted for different owner

2016-02-15 Thread Bert Huijben
have any specific 'svn:' properties set on it? I'm guessing that it has a 'svn:eol-style' set on it. The only known reproducible case of this issue involves getting a non-standard encoded EOL in your repository, with an eol-style defined that should convert it to another style. Bert

RE: Commit Error using ms onedrive repo

2016-02-14 Thread Bert Huijben
if you somehow get it running... The documentation even documents that you shouldn't run repositories on network drives that don't provide the necessary ACID behavior. Bert

RE: svnversion output changed when redirecting the output. Why?

2016-02-11 Thread Bert Huijben
same program, causing undefined behavior inside Visual C++ code. Bert From: Steenveld, Andre [mailto:a.h.m.steenv...@marin.nl] Sent: woensdag 10 februari 2016 16:09 To: users@subversion.apache.org Subject: svnversion output changed when redirecting the output. Why? Hi

RE: Question to svn merge (merge just parts of a diff)

2016-02-09 Thread Bert Huijben
between 2 and 3 would show someting like: > A > -C > -D > +B > +E If everything is committed, then this is unrelated information. It is local modified vs unmodified that handles the first step. Otherwise updates that skip revisions aren't possible, etc. etc. I think you

RE: Subversion crashes on list with an empty format 3 repo

2016-02-07 Thread Bert Huijben
e the format entirely platform-independent. No, it uses a LF only, like on other platforms. (I think that should be clear about this bug report... We fail when we have a file with that byte sequence we never create ourselves). We open most text files as binary in the libsvn_* code on Windows. (Note that we use the other default in our python testsuite) It is probably nice to fix this specific case as it is above the FS layer, but I don't think we should really start to look at fsfs as EOL agnostic. Bert

RE: Svn 1.9 repository 20% bigger than svn 1.8 repository

2016-02-01 Thread Bert Huijben
at bump. We could even backport changes that allow this, but I'm still waiting on real world test experience with format 7. There are still far too many users delaying their upgrades to 1.9 waiting for others to switch :( Waiting for the ASF to perform a major upgrade is on reason I hear quite often... Bert

RE: Svn 1.9 repository 20% bigger than svn 1.8 repository

2016-01-28 Thread Bert Huijben
testcase at hand :-) But with such a size repository it might be hard to test different variants. Bert

RE: Compiling ZLIB for svn 1.9.3 on Windows 7 using MSVC 2008

2016-01-04 Thread Bert Huijben
ine and as intended by adding the > ZLIB_WINAPI define. That's how it should also work. > I've to admit that I didn't test it using VS 2008 (but rather 2010 and > 2015), but I would not expect that having an impact on the reported > linker error you got. > Might it be that you compiled another lib which pulled in zlib without > defining ZLIB_WINAPI? Then that would explain the linker error you are > reporting. The ZLIB_WINAPI patch changes the calling convention of the library. That is not necessary for Subversion's usage, but it might be necessary if you use the same ZLIB dll file from something else. Just make sure both the headers and the actual libraries use the same convention or you see huge problems in edge scenarios. In general I would recommend using a normal static compilation of ZLIB for Subversion or otherwise one with LTCG enabled, to allow completely inlining things in the linker step. That allows even further optimizations than just changing the calling convention. Bert

RE: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Bert Huijben
that doesn’t tell us much why a request failed. Bert From: Chris Capon [mailto:ttab...@gmail.com] Sent: dinsdag 8 december 2015 15:29 To: users@subversion.apache.org Subject: Re: Unexpected HTTP status 400 'Bad request'. Hi Bert. The only log I know of is

RE: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Bert Huijben
cusing your search to a disk problem (probably caused by hints on this list), while you are trying to determine what causes a 'bad HTTP request' error. Bad requests on these urls may be caused by sending bad header values... I've seen those before when using nginx as proxy with a too strict caching policy. Bert

RE: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Bert Huijben
These are both about bodies… The headers causing that lock problem are not part of the body. There is probably another configuration knob for them. Bert From: Yves Martin [mailto:ymartin1...@gmail.com] Sent: dinsdag 8 december 2015 12:10 To: Subversion Subject: Re

RE: Unexpected HTTP status 400 'Bad request'.

2015-12-08 Thread Bert Huijben
) Bert From: Yves Martin [mailto:ymartin1...@gmail.com] Sent: dinsdag 8 december 2015 11:06 To: users@subversion.apache.org Subject: Re: Unexpected HTTP status 400 'Bad request'. Hello​ Is your repository served read-write by other services like svnserve or

RE: SVN 1.6.17 dump is growing larger than repository size (approx. more than 10 times)

2015-11-25 Thread Bert Huijben
ation. Bert From: Barry Gershenfeld [mailto:gbarr...@gmail.com] Sent: woensdag 25 november 2015 21:57 To: Subversion Subject: Re: SVN 1.6.17 dump is growing larger than repository size (approx. more than 10 times) Unless svn's changed, you can look in your repositories

RE: API for creating file and revision

2015-11-25 Thread Bert Huijben
few properties if we want to make the behavior explicit. Bert From: Ren Wang [mailto:renwang...@gmail.com] Sent: woensdag 25 november 2015 13:27 To: users@subversion.apache.org Subject: API for creating file and revision First of all, I would like to express my apprecia

RE: svn_repos_fs_commit_txn error

2015-11-24 Thread Bert Huijben
is the parent error and the * SVN_ERR_REPOS_POST_COMMIT_HOOK_FAILED wrapped error is the child * error. * * @a conflict_p, @a new_rev, and @a txn are as in svn_fs_commit_txn(). */ svn_error_t * svn_repos_fs_commit_txn(const char **conflict_p, svn_repos_t *repos, svn_revnum_t *new_rev, svn_fs_txn_t *txn, apr_pool_t *pool); -- Bert

RE: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Bert Huijben
d, replaced and modified. Some other VCSes don't version directories, so they can't express copies of a directory... only of the files inside them. Subversion does express copies of directories. Bert

RE: svnlook changed doesn't include all of the files that are part of the commit

2015-11-23 Thread Bert Huijben
Diff reports copies of directories as adds of the individual files, while svnlook changed reports a copy on the root and only interesting changes below that. Just like how 'svn status' would have reported it before the commit. Bert From: Hartleroad,

RE: how to get node property by using C API

2015-11-20 Thread Bert Huijben
There should be an api for the size. Author, creation info, etc. are attached to the revision in which the file was created. Bert From: Ren Wang [mailto:renwang...@gmail.com] Sent: vrijdag 20 november 2015 16:19 To: users@subversion.apache.org Subject: how to get node

RE: Subversion C API

2015-11-08 Thread Bert Huijben
till private API behind svnmucc can already help you there) Bert From: Ren Wang [mailto:renwang...@gmail.com] Sent: vrijdag 6 november 2015 19:44 To: users@subversion.apache.org Subject: Subversion C API I have posted the same question to the stackoverflow, here it i

RE: subversion 1.9.2 could not be built "all-static" on FreeBSD 10+

2015-10-19 Thread Bert Huijben
> -Original Message- > From: Bert Huijben [mailto:b...@qqmail.nl] > Sent: maandag 19 oktober 2015 13:22 > To: 'Philip Martin' ; 'Lev Serebryakov' > > Cc: 'Daniel Shahaf' ; > users@subversion.apache.org > Subject: RE: subversi

RE: subversion 1.9.2 could not be built "all-static" on FreeBSD 10+

2015-10-19 Thread Bert Huijben
g Subversion to add it. What does your > configure line look like? Have you build any of the dependencies > yourself? I think I found these flags in /usr/local/libdata/pkgconfig/serf-1.pc [[ SERF_MAJOR_VERSION=1 prefix=/usr/local exec_prefix=${prefix} libdir=/usr/local/lib includedir=${prefix}/include/serf-1 Name: serf Description: HTTP client library Version: 1.3.8 Requires.private: Libs: -L${libdir} -lserf-${SERF_MAJOR_VERSION} Libs.private: -L/usr/local/lib -R/usr/local/lib -laprutil-1 -ldb-5.3 -lgdbm -lexpat -L/usr/local/lib -R/usr/local/lib -lapr-1 -lcrypt -lpthread -lz -L/usr/lib -lssl -lcrypto Cflags: -I${includedir} ]] Bert

RE: svn segfaults on relocate when having a not checked out external

2015-10-06 Thread Bert Huijben
new code checks what is really there. (Will even relocate working copies that are still there, but already removed from svn:externals) Bert From: Axel Kittenberger [mailto:axk...@gmail.com] Sent: dinsdag 6 oktober 2015 13:25 To: users@subversion.apache.org Subject: svn

RE: Bug report: The auto-props setting of svn:mime-type is impossible to avoid.

2015-10-06 Thread Bert Huijben
type map before we call into magic. But looking at this... the way to disable the option with 1.9+ is $ svn add --config-option config:miscellany:enable-magic-file=no file.xml That doesn't depend on libmagic implementation details such as the environment variable. With 1.7 and 1.8 you can use the mimetype file with your overrides, as this is processed before libmagic $ svn add --config-option config:miscellany: mime-types-file=mimemap file.xml (the mime-types-file option was added to the config in 1.5, but we didn't have --config-option there) The file 'mimemap' can then contain something like [[ text/plain .xml ]] (First token on the line is the mimetype. All further tokens are extensions. # lines allowed) Bert

RE: Bug report: The auto-props setting of svn:mime-type is impossible to avoid.

2015-10-05 Thread Bert Huijben
at enabling this feature on Windows. > > And nobody has been asking for it to be enabled? I don't remember anybody asking... I doubt many users explicitly enable it on other platforms either, but we do an autodetect there, which usually just works. Bert

RE: Bug report: The auto-props setting of svn:mime-type is impossible to avoid.

2015-10-04 Thread Bert Huijben
dds a file of their choosing to Subversion though :-) This whole discussion -in its many iterations- is one of the reasons why I never looked at enabling this feature on Windows. Bert

RE: Bug report: The auto-props setting of svn:mime-type is impossible to avoid.

2015-10-04 Thread Bert Huijben
#x27;t think that is really an interesting scenario). Note that the Cygwin version is an exception to most of this... It is a Windows build but tries to do everything the unix way. Bert

RE: Bug report: The auto-props setting of svn:mime-type is impossibleto avoid.

2015-10-04 Thread bert
by the xml inventers was a safe decision. Your files are just not 'generic xml', and should have a more specific type. Bert From: Ivan Zhakov Sent: zondag 4 oktober 2015 11:35 To: Edward d'Auvergne Cc: users@subversion.apache.org Subject: Re: Bug report: The auto-props se

RE: Redirection "svn info -r HEAD"

2015-09-18 Thread bert
. They reverted to using a shared CRT in the latest builds which fixes these problems. Bert From: Fredrik Klasson Sent: vrijdag 18 september 2015 13:36 To: b...@qqmail.nl Cc: users@subversion.apache.org Subject: Re: Redirection "svn info -r HEAD" Ok thanks for the input :) Sounds

RE: Redirection "svn info -r HEAD"

2015-09-18 Thread bert
I don’t have this known broken set of commandline binaries installed on my system. (I had to track a few similar cases earlier this week, all caused by this CRT linkage problem) Bert From: Fredrik Klasson Sent: vrijdag 18 september 2015 11:34 To: users@subversion.apache.org Subject: Redirection

RE: Incomplete SVN dump files

2015-09-16 Thread Bert Huijben
en loading from a stream we can't continue reading to the end to see if there is a final marker, as at that point we aren't able to go back to the start and start the whole process. (I've used '$ svn dump | ssh svnadmin load ...' more than a few times for repository migrations) Bert

RE: Incomplete SVN dump files

2015-09-15 Thread bert
editing the revisions in this format; as is sometimes done on migrations) Bert From: Eric Johnson Sent: dinsdag 15 september 2015 07:16 To: users@subversion.apache.org Subject: Incomplete SVN dump files I'm in a situation where I'm dumping Subversion repositories from remote locati

RE: 1.9 - Can't resolve to 'mine full' option for binary file conflict

2015-09-14 Thread Bert Huijben
tended). In case of a binary file the original working copy version is left as the working version, whereas for text conflict the working copy version is changed into a mine version and a best effort merge is performed to the a new working copy version potentially containing conflict markers. In this case you probably get the result you want by just choosing the working copy version. The Subversion developer responsible for choosing this UI determined that it didn't make much sense to offer two different resolve options with exactly the same result. Bert > > -- > Regards, > Stefan Hett

RE: win32svn for 1.9.1?

2015-09-10 Thread Bert Huijben
; There were a lot more compilation errors than in 1.8.x where I've > > already patched a lot, and the time to look deeper then didn't exist. > > Maybe there isn't any specific windows api issues or other features, > > but the old C standard (MS-standard) in VC6 makes the burden, right > > now at least, to much. > > > > Regards, > > David Darj a.k.a. Alagazam > > Maintainer of Win32SVN > > Hello David, > > Do you think it would be possible to migrate the scripts to VC2010? > I mean, I have it installed and am using it on a regular basis, so I > could help with building part if need be. If you try this as a group effort I would recommend directly going to VS 2013 or VS 2015, as those are now available for free for noncommercial usage via the new 'Community Edition'. With 2010 you are still limited to those who have access to these versions. Note that if you want to remain compatible with Windows XP and 2003 with those versions, you need special options which will mostly get you back at the VS 2010 tools. Bert

RE: chcp has no effect on output encoding for chcp

2015-09-08 Thread Bert Huijben
library (.Net on Windows). This library has a higher level SvnLookClient class which has mostly the same functions as 'svnlook'. You can find some examples on StackOverflow via http://stackoverflow.com/search?q=SvnLookClient Bert

RE: Access denied error on checkout-commit after updating to 1.9.X

2015-09-05 Thread Bert Huijben
other common similarities? Are you all using the same virus scanner on either the client or the server, or the same windows version on client and/or server? (Or not even using Windows at all on the server?) Bert From: Daniele Pedroni [mailto:pedroni.dani...@zapispa.it

RE: Can't dump a subtree using svnrdump

2015-08-30 Thread Bert Huijben
aths. So yes, you will see many more revisions than just your own project... but if filtered correctly not the changes in those revisions. Once you have dumps you can use tools like 'svndumpfilter' to filter out dummy/stub revisions, fixing things like copies and merges. I just used this to import the Serf repository into https://svn.apache.org/repos/asf/serf, while filtering a thousand stub revisions. Bert

RE: How to pass a message file in UTF8 encoding to svn commit?

2015-08-27 Thread Bert Huijben
e? How > can I force SVN to treat the file contents as UTF8? I think at least "UTF-8" as passed value should work. That encoding name is hardcoded to avoid the entire conversion. The other values might depend on what iconv settings are used by your specific client. Bert

RE: svn (un)lock commands succeed when pre-(un)lock hooks fail on svn 1.9

2015-08-22 Thread bert
, and it is not clear which part you call succeeded? The number of regression test of this operation was increased significantly for 1.9, as the behavior was made more consistent over the different ra layers and atomicity was improved. Bert Sent from Mail for Windows 10 From: Gustavo

RE: Is it safe to redirect from HTTP to HTTPS in case of svn:externals?

2015-08-19 Thread Bert Huijben
ternals; see 'svn help propset' [[ The URL may be a full URL or a relative URL starting with one of: ../ to the parent directory of the extracted external ^/ to the repository root /to the server root // to the URL scheme ^/../ to a sibling repository beneath the same SVNParentPath location ]] Bert

RE: Can the Apache front end and svnserve service run on the sameserver?

2015-08-07 Thread bert
See also http://subversion.apache.org/docs/release-notes/1.7.html#per-repos-authz Bert Sent from Mail for Windows 10 From: Thorsten Schöning Sent: woensdag 5 augustus 2015 21:34 To: users@subversion.apache.org Subject: Re: Can the Apache front end and svnserve service run on the sameserver

Re: Broken SVN revision paths encoding

2015-07-28 Thread Bert Huijben
that answer is also relevant) Bert Sent from Surface From: dpsen...@apache.org Sent: ‎Tuesday‎, ‎July‎ ‎28‎, ‎2015 ‎4‎:‎11‎ ‎PM To: users@subversion.apache.org Hi there, Somehow I was able to commit a file with a broken filename encoding and now the svn client can no l

RE: Feature request: Save the old file when svn revert

2015-07-22 Thread Bert Huijben
e some sha-1 hash... But I doubt the user would know that hash, and without that he/she would be unable to retrieve it, unless we build some UI. In that case I would start by looking at the UI. Bert

RE: E175002

2015-07-13 Thread Bert Huijben
Jenkins. I think you should ask at either of these project's support mailinglists. The 'Caused by: java.lang.NoClassDefFoundError: hudson/remoting/RemoteClassLoader$RemoteIClassLoader' would point towards a bit more towards Jenkins, than to SvnKit.

RE: Subversion 1.8.13 on Cygwin: E170000 or E180001: Unable to connect to a repository at URL , Unable to open an ra_local session to URL

2015-06-26 Thread Bert Huijben
the problem) or to use a proper Windows subversion client. Bert From: MORGAN Marc [mailto:marc.mor...@csem.ch] Sent: vrijdag 26 juni 2015 11:41 To: Bert Huijben; users@subversion.apache.org Subject: RE: Subversion 1.8.13 on Cygwin: E17 or E180001: Unable to connect to

Re: Subversion 1.8.13 on Cygwin: E170000 or E180001: Unable to connect to a repository at URL , Unable to open an ra_local session to URL

2015-06-25 Thread Bert Huijben
file://myserver/share/path to \\myserver\share\path. If you would like to use the cygwin version, you should probably map the network share and then relocate your working copy. Bert Sent from Surface From: MORGAN Marc Sent: ‎Thursday‎, ‎June‎ ‎25‎, ‎2015 ‎3‎:‎47‎ ‎PM To:

RE: building SVN trunk on Windows fails on python gen-make.py

2015-06-22 Thread Bert Huijben
to msbuild. This is how the first version of XP compatibility in VS2012+ was implemented. (And this is also how VC 2010+'s C++/CLI can target .Net 2.0-3.5) Bert

RE: svn 1.8.13 test failures: wc-queries-test.exe and move_tests.py

2015-06-01 Thread Bert Huijben
> -Original Message- > From: Cooke, Mark [mailto:mark.co...@siemens.com] > Sent: maandag 1 juni 2015 08:24 > To: users@subversion.apache.org > Cc: Bert Huijben > Subject: RE: svn 1.8.13 test failures: wc-queries-test.exe and move_tests.py > > > > -Or

RE: svn 1.8.13 test failures: wc-queries-test.exe and move_tests.py

2015-05-29 Thread Bert Huijben
cases you can ignore the wc-query-expectations error failure, which only signals some performance loss. But it is hard to tell what failure you see if you only post the name of the .exe where one (or more) of the tests failed. The summary at the bottom is more valuable, and the test log contains the real details. Bert

RE: Error with quick-start experiment

2015-05-28 Thread Bert Huijben
. Bert From: Antti Simola [mailto:asimol...@gmail.com] Sent: donderdag 28 mei 2015 12:49 To: Bert Huijben Cc: users@subversion.apache.org Subject: Re: Error with quick-start experiment Thanks! I got it working now by following the updated quick-start. There's perhap

RE: Error with quick-start experiment

2015-05-28 Thread Bert Huijben
reate directory structure." " file:///%REPOS_DIR:\=/%/trunk" " file:///%REPOS_DIR:\=/%\branches" " file:///%REPOS_DIR:\=/%\tags" But it might be easier to just set the properly encoded path in REPOS_DIR From: Antti Simola [mailto:asimol...@gmail.com] Se

RE: Error with quick-start experiment

2015-05-28 Thread Bert Huijben
Hi, You could use %REPOS_DIR:\=/% instead of just %REPOS_DIR% to replace all ‘\’ characters with ‘/’ (In batch scripts you might have to enable cmd extensions, but on the commandline this is enabled by default) Bert From: Antti Simola

RE: API accessing property diff of svn:mergeinfo

2015-05-06 Thread Bert Huijben
ures. That's just a hash+list intersection. In AnkhSVN I usually skip the diff apis and just obtain the whole files ('svn cat FILE' 'svn cat FILE@BASE') and properties ('svn proplist FILE' 'svn proplist FILE@BASE) and do the calculations myself. That way I also have access to what is not changed. Specifically for svn:mergeinfo you might be better of using the dedicated apis (which in many cases contact the server), but for all other properties I would guess just obtaining the values and explicitly apply further processing yourself is most likely far more future proof. Bert

  1   2   3   4   5   >