<rss version="2.0">
   <channel>
      <title>MailBucket: subversion-users</title>
      <link>http://www.mailbucket.org</link>
      <description>MailBucket</description>

	              <item>
			         <title>Checksum error during commit</title>
			         <link>http://www.mailbucket.org/subversion-users-6394619.html</link>
			         <description><![CDATA[<pre>
I did a merge followed by a commit and ran into this error . Never seen
this one before

Any clues folks?


==&gt;&gt;
..svn: Commit failed (details follow):
svn: Checksum mismatch for '/data/users/joe/www-dxx/lib/gtern/
cachearchiver/regenerators/.svn/text-base/arps.php.svn-base';
expected '7df4b3bee06e2830e463e9df00849c01', actual:
'dc28016c21fa849f25de873b06799864'

==&gt;

Cheers
murli


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 15:28:39 -0700</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6394619.html</guid>
			      </item>
	              <item>
			         <title>Re: Compression?</title>
			         <link>http://www.mailbucket.org/subversion-users-6394015.html</link>
			         <description><![CDATA[<pre>&gt;&gt;&gt;&gt;&gt; &quot;Holger&quot; == Holger Schulz  writes:

 Holger&gt; Is there any compression active? I have a repository of 200
 Holger&gt; MB, a dump of that repository is about 270 MB. A working copy
 Holger&gt; has mor than 500 MB?

 Holger&gt; How save is my data within that repository?

How many revisions?

I don't know about compression, but a working copy contains two copies
of every file -- the one you see and change, and the hidden one that
is used for diff and revert and the like.  So if you don't have a
whole lot of revisions, a working copy larger than the repository is
perfectly normal.

	  paul


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 17:01:05 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6394015.html</guid>
			      </item>
	              <item>
			         <title>Version Control with Subversion - release date</title>
			         <link>http://www.mailbucket.org/subversion-users-6393945.html</link>
			         <description><![CDATA[<pre>When does the 'Version Control with Subversion' print version book come out?
It's been listed on Amazon.com as &quot;pre order&quot; for a while now.

Thanks,
Mike

 
</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 15:50:01 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6393945.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6393479.html</link>
			         <description><![CDATA[<pre>On Wed, May 14, 2008 at 12:23:28PM -0400, Andy Levy wrote:
&gt; On Wed, May 14, 2008 at 5:55 AM, Ilyes Gouta  wrote:
&gt; &gt; Hi,
&gt; &gt;
&gt; &gt;&gt; Why would you need to create a new branch for every sync?
&gt; &gt;
&gt; &gt; This is how it's explained in the vendor branches paragraph, in the
&gt; &gt; SVN book. As far as I know, we can't update a branch with the
&gt; &gt; revisions coming from another SVN repository. We can import it as a
&gt; &gt; new code, in a new branch, (and then merge it back in the said
&gt; &gt; long-living branch?). Am I right?
&gt; 
&gt; You could also use svn_load_dirs.pl to &quot;import&quot; the latest version,
&gt; with all the adds/deletes/updates since the previous version.

Exactly, with this you only create the vendor branch once.

Ilyes, the basic idea is this:
When updating to a new version of the vendor's code, you check
out the vendor branch, which contains a previous version of the
vendor's code, into a working copy. Then you make that working
copy match the new version of the vendor's code -- this is the part
that should be automated better than it currently is.
Then you commit from the updated working copy to the vendor branch.
Now the vendor branch carries the new upstream version, and you can
merge from it into your own branches (and trunk).

So no, you really don't recreate the vendor branch every time you
do a sync to the vendor's most recent code. You just checkout the
vendor branch, make that working copy match the new version,
and then you commit.

To automate the updating process, we currently only have svn_load_dirs.pl,
piston (http://piston.rubyforge.org/) and similar wrapper solutions.
But they all use the same basic idea explained above.

Stefan
</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 19:38:13 +0200</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6393479.html</guid>
			      </item>
	              <item>
			         <title>Merging two repositories</title>
			         <link>http://www.mailbucket.org/subversion-users-6393472.html</link>
			         <description><![CDATA[<pre>Hi,

Is there any way to merge two repositories and maintain the history of
both?

Thanks,=20
Nick

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 11:36:20 -0600</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6393472.html</guid>
			      </item>
	              <item>
			         <title>Re: How to relocate source repos for svnsync?</title>
			         <link>http://www.mailbucket.org/subversion-users-6393296.html</link>
			         <description><![CDATA[<pre>I don't think there is a way to do this.  We recently ran into the same =
issue as the domain name changed.  The only solution we had was to start =
over.

A way to keep everything from breaking if your old URL/repository is still =
working is to create a new repository with a different name.  Go through =
the steps of initialization and synchronization on the new repository.  =
Once the new repository is synchronized with HEAD on the master, remove/ren=
ame the old repository and then rename the new repository with the old =
repository's name.  This should keep the down time to a near minimum.

Hope this helps,

Johnathan

&gt;&gt;&gt; On Wed, May 14, 2008 at 10:59 AM, in message , Liu
Yubao  wrote:=20
&gt; Hi,
&gt;=20
&gt; I have setuped a repos B to sync from repos A with svnsync:
&gt;=20
&gt;    svnsync init file:///path/to/reposB   http://hostA/reposA
&gt;    svnsync sync file:///path/to/reposB
&gt;=20
&gt; Now I add SSL support to the Apache server on hostA, the
&gt; svnsync's SRCURL is changed to https://hostA/reposA, only the
&gt; procotol changed, how can I relocate the source repos for svnsync?
&gt;=20
&gt; I have tried to do `svn pe svn:sync-from-url --revprop -r 0 \
&gt; file://path/to/reposB` to change the source url, but `svnsync sync`
&gt; tells me &quot;svnsync: Malformed URL for repository&quot;.
&gt;=20
&gt; (I haven't subscribed this mail list, please CC to me, thanks!)
&gt;=20
&gt;=20
&gt; Best regards,
&gt;=20
&gt; Liu Yubao
&gt;=20
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
&gt; For additional commands, e-mail: users-help@subversion.tigris.org



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 12:20:42 -0500</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6393296.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6393213.html</link>
			         <description><![CDATA[<pre>John Peacock wrote:
&gt; Ilyes Gouta wrote:
&gt;&gt; But I'm still a bit worried by the merge details. SVK seems to be
&gt;&gt; exactly what we need, but as a package it doesn't have the visibility
&gt;&gt; other VCSs have...
&gt; 
&gt; FWIW, SVK handles vendor branches without breaking a sweat.  In fact, I 
&gt; have mirrors of multiple different projects that I have occasion to work 
&gt; on (including Subversion itself) and updating my local branch is usually 
&gt; as simple as:
&gt; 
&gt;     $ svk pull
&gt; 
&gt; (from within a working copy of my local branch).  This retrieves all of 
&gt; the updates from the mirror, commits it to the local mirror, then merges 
&gt; those changes to the local branch.  If there is a conflict during the 
&gt; merge (which is always possible), I've got SVK set to popup a graphical 
&gt; merge editor (kdiff3 or meld), so it hardly takes any time at all.
&gt; 
&gt; The one caveat I will mention is that if someone renames a file and 
&gt; changes it in a single commit in Subversion, then SVK can get confused 
&gt; when trying to merge to the local branch.  To resolve this, I merely 
&gt; have to perform the rename in my local branch and commit it.  After 
&gt; that, the merge from upstream can proceed automatically.
&gt; 
&gt; Plus, the SVK repository is an ordinary Subversion repository, so 
&gt; technically you can host that internally using normal Subversion 
&gt; server/clients (be sure to never commit directly to the mirrored paths 
&gt; though).

Speaking of 'less visible' packages... Has anyone looked at pushmi? I 
happened to notice the session mentioned in the upcoming OSCON 
(http://en.oreilly.com/oscon2008/public/schedule/detail/2505) but 
otherwise I don't see much publicity.  Is it like SVK with more 
attention to being able to use the replicated repository directly?

-- 
   Les Mikesell
    lesmikesell@gmail.com

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 12:15:02 -0500</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6393213.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6392675.html</link>
			         <description><![CDATA[<pre>Ilyes Gouta wrote:
&gt; But I'm still a bit worried by the merge details. SVK seems to be
&gt; exactly what we need, but as a package it doesn't have the visibility
&gt; other VCSs have...

FWIW, SVK handles vendor branches without breaking a sweat.  In fact, I 
have mirrors of multiple different projects that I have occasion to work 
on (including Subversion itself) and updating my local branch is usually 
as simple as:

	$ svk pull

(from within a working copy of my local branch).  This retrieves all of 
the updates from the mirror, commits it to the local mirror, then merges 
those changes to the local branch.  If there is a conflict during the 
merge (which is always possible), I've got SVK set to popup a graphical 
merge editor (kdiff3 or meld), so it hardly takes any time at all.

The one caveat I will mention is that if someone renames a file and 
changes it in a single commit in Subversion, then SVK can get confused 
when trying to merge to the local branch.  To resolve this, I merely 
have to perform the rename in my local branch and commit it.  After 
that, the merge from upstream can proceed automatically.

Plus, the SVK repository is an ordinary Subversion repository, so 
technically you can host that internally using normal Subversion 
server/clients (be sure to never commit directly to the mirrored paths 
though).

John

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 12:37:40 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392675.html</guid>
			      </item>
	              <item>
			         <title>One Repo, Multiple projects, diferent passwords</title>
			         <link>http://www.mailbucket.org/subversion-users-6392665.html</link>
			         <description><![CDATA[<pre>Hello!

I want to know if i can have in one repository more than one project and with diferent user/pass for each project.

Now i am creating one repository per project in order to have diferent users/passwords but i have to run the svnserv with listeners in diferent ports for each one.

Thanks in advance!
Regards,
Fernando



      Tarjeta de crÃ©dito Yahoo! de Banco Supervielle.
SolicitÃ¡ tu nueva Tarjeta de crÃ©dito. De tu PC directo a tu casa. www.tuprimeratarjeta.com.ar </pre>]]></description>
			         <pubDate>Wed, 14 May 2008 07:19:20 -0700 (PDT)</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392665.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6392463.html</link>
			         <description><![CDATA[<pre>On Wed, May 14, 2008 at 5:55 AM, Ilyes Gouta  wrote:
&gt; Hi,
&gt;
&gt;&gt; Why would you need to create a new branch for every sync?
&gt;
&gt; This is how it's explained in the vendor branches paragraph, in the
&gt; SVN book. As far as I know, we can't update a branch with the
&gt; revisions coming from another SVN repository. We can import it as a
&gt; new code, in a new branch, (and then merge it back in the said
&gt; long-living branch?). Am I right?

You could also use svn_load_dirs.pl to &quot;import&quot; the latest version,
with all the adds/deletes/updates since the previous version.

&gt; Thank you Stephan for your valuable comments!
&gt;
&gt; BR,
&gt; Ilyes Gouta.
&gt;
&gt;&gt; The idea is to have a single long-living branch receiving all
&gt;&gt; changes from upstream serially, in the same way as upstream applied
&gt;&gt; them. And from that you merge into your branches to get upstream
&gt;&gt; changes into your code.
&gt;
&gt;&gt;&gt; Both Mercurial and git are tempting, these are distributed VCSs and at
&gt;&gt;&gt; some degrees offer SVN mirroring/tracking support. But I'm still a bit
&gt;&gt;&gt; worried by the merge details. SVK seems to be exactly what we need,
&gt;&gt;&gt; but as a package it doesn't have the visibility other VCSs have...
&gt;&gt;
&gt;&gt; As Tom Widmer pointed out, the distributed VCSs have the advantage of making
&gt;&gt; it easier to sync with upstream. I'm very much interested in evaluating
&gt;&gt; the quality of syncs done between Subversion repositories via git, as
&gt;&gt; Tom suggested. I wonder if it's really lossless, and how certain types
&gt;&gt; of conflicts are handled.
&gt;&gt;
&gt;&gt;&gt; Any further comments guys? Thank you again for your help.
&gt;&gt;
&gt;&gt; Tom convinced me that Subversion certainly needs a way to make this
&gt;&gt; easier, at least for the inter-Subversion-repository use case.
&gt;&gt;
&gt;&gt; I faintly remember talk about an augmented diff format, which would
&gt;&gt; mirror svn operations like copy and move that aren't expressible
&gt;&gt; in unidiff. No idea what came out of that effort, but it certainly
&gt;&gt; sounds like it would help a lot to maintain vendor branches in cases
&gt;&gt; where the upstream source is also using Subversion. Of course, this
&gt;&gt; is nothing but vapourware and won't help you solve your problem right now.
&gt;&gt;
&gt;&gt; Inter-repository merges are also possible with 1.5, but are quite
&gt;&gt; primitive, meaning they don't do that much more than diff+patch.
&gt;&gt;
&gt;&gt; Note that the many wrapper solutions around svn that have
&gt;&gt; been suggested in this thread are very, very valuable in providing
&gt;&gt; requirements and ideas for an internal implementation in Subversion
&gt;&gt; for this kind of functionality. So if you use any of those, and provide
&gt;&gt; feedback about them to us, it would certainly help a tiny bit -- but until
&gt;&gt; someone steps up and starts a serious coding effort, you'll still be
&gt;&gt; dependent on the wrapper solution. Which may work well for you or not,
&gt;&gt; that's up to you to decide.
&gt;&gt;
&gt;&gt; Stefan
&gt;&gt;
&gt;
&gt; ---------------------------------------------------------------------
&gt; To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
&gt; For additional commands, e-mail: users-help@subversion.tigris.org
&gt;
&gt;

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 12:23:28 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392463.html</guid>
			      </item>
	              <item>
			         <title>How to relocate source repos for svnsync?</title>
			         <link>http://www.mailbucket.org/subversion-users-6392381.html</link>
			         <description><![CDATA[<pre>Hi,

I have setuped a repos B to sync from repos A with svnsync:

   svnsync init file:///path/to/reposB   http://hostA/reposA
   svnsync sync file:///path/to/reposB

Now I add SSL support to the Apache server on hostA, the
svnsync's SRCURL is changed to https://hostA/reposA, only the
procotol changed, how can I relocate the source repos for svnsync?

I have tried to do `svn pe svn:sync-from-url --revprop -r 0 \
file://path/to/reposB` to change the source url, but `svnsync sync`
tells me &quot;svnsync: Malformed URL for repository&quot;.

(I haven't subscribed this mail list, please CC to me, thanks!)


Best regards,

Liu Yubao

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 23:59:00 +0800</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392381.html</guid>
			      </item>
	              <item>
			         <title>Re: [BUG] Commit places working copy into bad state</title>
			         <link>http://www.mailbucket.org/subversion-users-6392376.html</link>
			         <description><![CDATA[<pre>On Wed, May 14, 2008 at 3:41 AM, Karl Fogel  wrote:
&gt; Yep, there's a bug here.  Could you file an issue for it, so we don't
&gt; lose track, pointing back to your original mail?

Thanks, Karl.  I have filed an issue for the bug.
http://subversion.tigris.org/issues/show_bug.cgi?id=3198

I filed it as P1 because I could not determine a workaround in 1.5.0
rc5.  Plus, I can see the potential for data loss if there are other
modified files in your working copy.  The only way to retain those
changes (including svn cp, svn mv, etc) is to perform a new checkout
and then make every change again manually which could potentially be
very hard to do if there are a lot of modified files.  If you think it
isn't that serious please let me know and I can drop it down to P3.

Would you like me to also repost this to the dev mailing list? Or
would you rather just leave it here and in the issue tracker?

Thank you,
Sebastian

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 09:37:15 -0500</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392376.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6392366.html</link>
			         <description><![CDATA[<pre>Hi,

&gt; Why would you need to create a new branch for every sync?

This is how it's explained in the vendor branches paragraph, in the
SVN book. As far as I know, we can't update a branch with the
revisions coming from another SVN repository. We can import it as a
new code, in a new branch, (and then merge it back in the said
long-living branch?). Am I right?

Thank you Stephan for your valuable comments!

BR,
Ilyes Gouta.

&gt; The idea is to have a single long-living branch receiving all
&gt; changes from upstream serially, in the same way as upstream applied
&gt; them. And from that you merge into your branches to get upstream
&gt; changes into your code.

&gt;&gt; Both Mercurial and git are tempting, these are distributed VCSs and at
&gt;&gt; some degrees offer SVN mirroring/tracking support. But I'm still a bit
&gt;&gt; worried by the merge details. SVK seems to be exactly what we need,
&gt;&gt; but as a package it doesn't have the visibility other VCSs have...
&gt;
&gt; As Tom Widmer pointed out, the distributed VCSs have the advantage of making
&gt; it easier to sync with upstream. I'm very much interested in evaluating
&gt; the quality of syncs done between Subversion repositories via git, as
&gt; Tom suggested. I wonder if it's really lossless, and how certain types
&gt; of conflicts are handled.
&gt;
&gt;&gt; Any further comments guys? Thank you again for your help.
&gt;
&gt; Tom convinced me that Subversion certainly needs a way to make this
&gt; easier, at least for the inter-Subversion-repository use case.
&gt;
&gt; I faintly remember talk about an augmented diff format, which would
&gt; mirror svn operations like copy and move that aren't expressible
&gt; in unidiff. No idea what came out of that effort, but it certainly
&gt; sounds like it would help a lot to maintain vendor branches in cases
&gt; where the upstream source is also using Subversion. Of course, this
&gt; is nothing but vapourware and won't help you solve your problem right now.
&gt;
&gt; Inter-repository merges are also possible with 1.5, but are quite
&gt; primitive, meaning they don't do that much more than diff+patch.
&gt;
&gt; Note that the many wrapper solutions around svn that have
&gt; been suggested in this thread are very, very valuable in providing
&gt; requirements and ideas for an internal implementation in Subversion
&gt; for this kind of functionality. So if you use any of those, and provide
&gt; feedback about them to us, it would certainly help a tiny bit -- but until
&gt; someone steps up and starts a serious coding effort, you'll still be
&gt; dependent on the wrapper solution. Which may work well for you or not,
&gt; that's up to you to decide.
&gt;
&gt; Stefan
&gt;

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 11:55:28 +0200</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392366.html</guid>
			      </item>
	              <item>
			         <title>committing properties across externals</title>
			         <link>http://www.mailbucket.org/subversion-users-6392351.html</link>
			         <description><![CDATA[<pre>Hello! I'm new to this list.

In a post dated Feb 16, 2005 by Mark Zieg  , I can read:

    &quot;if you want to commit changes that you've made in one or more of
    those external working copies, you must run svn commit explicitly on
    those working copies -- committing on the primary working copy will
    not recurse into any external ones&quot;

Has this feature been improved since? Is it possible to &quot;chain&quot; the 
external working copies so that committing on one triggers a commit on 
each of them?

I could find in the documentation that using the &quot;svn:externals&quot; 
property allows to &quot;chain&quot; such external working copies together for 
checking out. But it does not seem to work for committing, unfortunately...

Regards,

Luc.
</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 15:03:15 +0200</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6392351.html</guid>
			      </item>
	              <item>
			         <title>RE:  VSS emulation</title>
			         <link>http://www.mailbucket.org/subversion-users-6390398.html</link>
			         <description><![CDATA[<pre>First, try to send posts to this list in ASCII.  Outlook makes it hard
for people like me to reply to non-ascii messages in anything but
top-post format.   
 
It sounds like you want an SCC plugin for Visual Studio and/or other SCC
complient IDEs.  There are a few out there, like these I got from a
quick google:
 
http://www.pushok.com/soft_svn.php
http://www.daveswebsite.com/software/tamtamsvn/index.shtml
http://tortoisesvnscc.tigris.org/
http://aigenta.com/products/UnifiedScc.aspx
This one lists several including VisualSVN:
http://www.subversionary.org/category/1/12/4

Also, take a look at ankh.  It doesn't use SCC, and from my personal
experience I like it better because there is no invasive SCC clutter
embedded in your project files:  http://ankhsvn.open.collab.net/
 .  It does, however, have some quirks
that some might not want to accept.
 
--
David

________________________________

	From: Furlan Bojan [mailto:furlan@iskratel.si] 
	Sent: Wednesday, May 14, 2008 8:44 AM
	To: users@subversion.tigris.org
	Subject: VSS emulation
	
	

	I know my question may sound stupid to some, but is there a tool
that would enable SVN to act as VSS, at least for IDE integrations? As
far as I know there is a 'standard'  that defines functionalities a tool
must provide to integrate with IDEs which integrate to VSS.

	We are using a tool that is not common and can be integrated to
VSS, but no other SCM tools, and we're forced to use VSS instead of SVN,
which is in use in other development areas.

	If this is not a question for this mailing list, please let me
know wheer to post it.

	 

	Regards

	Bojan Furlan



*************************************************************************
This communication, including attachments, is
for the exclusive use of addressee and may contain proprietary,
confidential and/or privileged information.  If you are not the intended
recipient, any use, copying, disclosure, dissemination or distribution is
strictly prohibited.  If you are not the intended recipient, please notify
the sender immediately by return e-mail, delete this communication and
destroy all copies.
*************************************************************************

</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 09:35:36 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6390398.html</guid>
			      </item>
	              <item>
			         <title>Re: VSS emulation</title>
			         <link>http://www.mailbucket.org/subversion-users-6390149.html</link>
			         <description><![CDATA[<pre>--- On Wed, 5/14/08, Furlan Bojan  wrote:

I know my question may sound stupid to some, but is there a
tool that would enable SVN to act as VSS, at least for IDE integrations? As far
as I know there is a 'standard'  that defines functionalities a tool must
provide to integrate with IDEs which integrate to VSS. 

We are using a tool that is not common and can be integrated
to VSS, but no other SCM tools, and we're forced to use VSS instead of SVN,
which is in use in other development areas. 

If this is not a question for this mailing list, please let
me know wheer to post it. 

   

Regards 

Bojan Furlan

============================================

As far as IDE integration is concerned, I know of one such tool (not free though) &quot;SVN SCC Proxy&quot; which lets you use SVN with any Microsoft SCC enabled IDE. (the tool you are using is most probably connecting to VSS through MS SCC api which means, this proxy tool may work for you).

http://www.pushok.com/soft_svn.php

I have not tried it but you can see if it works for you.

Regards,
Waqas Arshed


 




      

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 07:10:49 -0700 (PDT)</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6390149.html</guid>
			      </item>
	              <item>
			         <title>problem in svn configuration</title>
			         <link>http://www.mailbucket.org/subversion-users-6389140.html</link>
			         <description><![CDATA[<pre>Hi Friends,

I am swamy, I am new to linux, I have a one problem when configuring the
subversion in apache, I installed apache-2.2.8.tar.gz,installed the
subversion and mod_dav_svn using the yum command.whenever I configured
the httpd.conf and start the apache i got error, error was &quot;httpd:
Syntax error on line 54 of /usr/local/apache2/conf/httpd.conf: Cannot
load /usr/local/apache2/modules/mod_dav_svn.so into
server: /usr/lib/libsvn_fs_base-1.so.0: undefined symbol: db_create&quot;.I
do not know how to slove this problem ,if any one know please mail to
me.It is very urgent.

Thanks and Regards

swamy. 



---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 18:42:19 +0530</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6389140.html</guid>
			      </item>
	              <item>
			         <title>VSS emulation</title>
			         <link>http://www.mailbucket.org/subversion-users-6388875.html</link>
			         <description><![CDATA[<pre>I know my question may sound stupid to some, but is there a tool that
would enable SVN to act as VSS, at least for IDE integrations? As far as
I know there is a 'standard'  that defines functionalities a tool must
provide to integrate with IDEs which integrate to VSS.

We are using a tool that is not common and can be integrated to VSS, but
no other SCM tools, and we're forced to use VSS instead of SVN, which is
in use in other development areas.

If this is not a question for this mailing list, please let me know
wheer to post it.

 

Regards

Bojan Furlan

</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 14:43:53 +0200</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6388875.html</guid>
			      </item>
	              <item>
			         <title>Re: A special use-case using subversion</title>
			         <link>http://www.mailbucket.org/subversion-users-6386491.html</link>
			         <description><![CDATA[<pre>On Wed, May 14, 2008 at 09:41:46AM +0200, Ilyes Gouta wrote:
&gt; Hi all,
&gt; 
&gt; Thanks Benjamin for  your input. Actually I've been comparing, for a
&gt; while now and keeping in mind my requirements, between a pure SVN
&gt; approach, SVK, git-svn and hgsvn.
&gt; 
&gt; I don't really like the vendor branches concept since the upstream SVN
&gt; repository (the trunk more specifically) is changing on a daily basis.
&gt; It seems there will be a lot of effort synchronizing between the
&gt; upstream repo. and our local mirror, i.e creating a new branch for
&gt; every change, regenerating the meta-data, merging it with our trunk,
&gt; etc.

Why would you need to create a new branch for every sync?
The idea is to have a single long-living branch receiving all
changes from upstream serially, in the same way as upstream applied
them. And from that you merge into your branches to get upstream
changes into your code.

&gt; Both Mercurial and git are tempting, these are distributed VCSs and at
&gt; some degrees offer SVN mirroring/tracking support. But I'm still a bit
&gt; worried by the merge details. SVK seems to be exactly what we need,
&gt; but as a package it doesn't have the visibility other VCSs have...

As Tom Widmer pointed out, the distributed VCSs have the advantage of making
it easier to sync with upstream. I'm very much interested in evaluating
the quality of syncs done between Subversion repositories via git, as
Tom suggested. I wonder if it's really lossless, and how certain types
of conflicts are handled.

&gt; Any further comments guys? Thank you again for your help.

Tom convinced me that Subversion certainly needs a way to make this
easier, at least for the inter-Subversion-repository use case.

I faintly remember talk about an augmented diff format, which would
mirror svn operations like copy and move that aren't expressible
in unidiff. No idea what came out of that effort, but it certainly
sounds like it would help a lot to maintain vendor branches in cases
where the upstream source is also using Subversion. Of course, this
is nothing but vapourware and won't help you solve your problem right now.

Inter-repository merges are also possible with 1.5, but are quite
primitive, meaning they don't do that much more than diff+patch.

Note that the many wrapper solutions around svn that have
been suggested in this thread are very, very valuable in providing
requirements and ideas for an internal implementation in Subversion
for this kind of functionality. So if you use any of those, and provide
feedback about them to us, it would certainly help a tiny bit -- but until
someone steps up and starts a serious coding effort, you'll still be
dependent on the wrapper solution. Which may work well for you or not,
that's up to you to decide.

Stefan
</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 10:59:33 +0200</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6386491.html</guid>
			      </item>
	              <item>
			         <title>Re: [BUG] Commit places working copy into bad state</title>
			         <link>http://www.mailbucket.org/subversion-users-6386306.html</link>
			         <description><![CDATA[<pre>&quot;Sebastian Celis&quot;  writes:
&gt; As you can see, in this situation 'svn cleanup' complains about just
&gt; b.txt instead of the file under .svn.  This led me down a path which
&gt; eventually fixed my working copy, even though it wasn't pretty.
&gt;
&gt; Am I right in thinking that there are one or two bugs here?  I
&gt; understand that I should have run 'svn revert b.txt' instead of 'rm
&gt; b.txt'.  However, I still feel that my mistake shouldn't have caused
&gt; the trouble that it did.

Yep, there's a bug here.  Could you file an issue for it, so we don't
lose track, pointing back to your original mail?

Thank you,
-Karl

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org


</pre>]]></description>
			         <pubDate>Wed, 14 May 2008 04:41:27 -0400</pubDate>
			         <guid>http://www.mailbucket.org/subversion-users-6386306.html</guid>
			      </item>                 
   </channel>
</rss>

