<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>SVNForum.org - Subversion Forum</title>
		<link>http://www.svnforum.org/</link>
		<description>SVNForum.org is a Subversion community help and discussion forum for exchanging information and tips with other users of Subversion.</description>
		<language>en</language>
		<lastBuildDate>Thu, 17 May 2012 11:39:29 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.svnforum.org/images/misc/rss.png</url>
			<title>SVNForum.org - Subversion Forum</title>
			<link>http://www.svnforum.org/</link>
		</image>
		<item>
			<title><![CDATA["svn_load_dirs.pl: import_dir 'trunk' is a directory." when import several snapshots]]></title>
			<link>http://www.svnforum.org/threads/41204-quot-svn_load_dirs-pl-import_dir-trunk-is-a-directory-quot-when-import-several-snapshots?goto=newpost</link>
			<pubDate>Thu, 17 May 2012 11:01:27 GMT</pubDate>
			<description><![CDATA[If I run svn_load_dirs.pl ONCE for one snapshot it's fine. But subsequent report "svn_load_dirs.pl: import_dir 'trunk' is a directory." - but that's...]]></description>
			<content:encoded><![CDATA[<div>If I run svn_load_dirs.pl ONCE for one snapshot it's fine. But subsequent report &quot;svn_load_dirs.pl: import_dir 'trunk' is a directory.&quot; - but that's the trunk - I'm trying to import all the snapshots to the trunk one by one, so why does it stop me?<br />
<br />
<br />
This is the command I am issuing:<br />
<br />
svn_load_dirs.pl -t tags/20111017testcode <a href="http://127.0.0.1:9880/nsr/" target="_blank" rel="nofollow">http://127.0.0.1:9880/nsr/</a> trunk &quot;Y:\My Documents\assignments\nsr\code\20111017testcode&quot;<br />
<br />
<br />
If trunk already exists - i.e. at <a href="http://127.0.0.1:9880/nsr/trunk" target="_blank" rel="nofollow">http://127.0.0.1:9880/nsr/trunk</a> (which it should be, as expected, after all it is the trunk!) then I get the error:<br />
svn_load_dirs.pl: import_dir 'trunk' is a directory<br />
<br />
Surely the point of svn_load_dirs.pl is to provide automation for importing snapshots to the trunk? This error message does not make sense, sure I can see perhaps it is trying to help those that miss out command line arguments but there is a legitimate case for having trunk already present obviously, because it's the trunk.<br />
<br />
<br />
Related threads:<br />
<br />
Someone else wants to import several snapshots:<br />
<a href="http://www.svnforum.org/threads/34514-Import-50-manual-full-backups" target="_blank">http://www.svnforum.org/threads/3451...l-full-backups</a><br />
<br />
<br />
I thought I had solved my import issues, posting my apparent 'success' here:<br />
<a href="http://www.svnforum.org/threads/40434-Import-snapshot-folders-requesting-step-by-step-guide-for-using-svn_load_dirs-pl?p=119080&amp;viewfull=1#post119080" target="_blank">http://www.svnforum.org/threads/4043...l=1#post119080</a><br />
<br />
and here:<br />
<a href="http://www.svnforum.org/threads/40499-Tag-not-showing-after-import-of-code-using-svn_load_dirs-pl-with-tagging-option?p=119081&amp;viewfull=1#post119081" target="_blank">http://www.svnforum.org/threads/4049...l=1#post119081</a><br />
<br />
and here:<br />
<a href="http://www.svnforum.org/threads/41120-SOLVED!-svn_load_dirs-pl-import-to-tags-and-trunk-thanks!?p=119086#post119086" target="_blank">http://www.svnforum.org/threads/4112...086#post119086</a></div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>arjaydavis</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41204-quot-svn_load_dirs-pl-import_dir-trunk-is-a-directory-quot-when-import-several-snapshots</guid>
		</item>
		<item>
			<title>Best Project Layout to Avoid Repeated Dependency Copies using svn:externals</title>
			<link>http://www.svnforum.org/threads/41200-Best-Project-Layout-to-Avoid-Repeated-Dependency-Copies-using-svn-externals?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 15:20:06 GMT</pubDate>
			<description>Here are the semantics I want to achieve, in the simplest form.  Each root project in the repo can stand alone once it is checked out, it will...</description>
			<content:encoded><![CDATA[<div>Here are the semantics I want to achieve, in the simplest form.  Each root project in the repo can stand alone once it is checked out, it will include all dependents as externals and its build system is setup accordingly, so the project is fully self complete.  All projects should be easily integrated into other projects, again using externals, so the final high level project should still be self complete.  However, this leads to repeated file copies in the local working directory.<br />
<br />
/CommonTools--------------------------//Independent Code<br />
/Project1-------------------------------//Independent Code, with dependencies<br />
---------/CommonTools-----------------//  from svn:externals in Project1<br />
/Project2-------------------------------//Independent Code, with dependencies<br />
---------/CommonTools-----------------//  from svn:externals in Project2<br />
/Project3-------------------------------//Independent Code, with dependencies<br />
---------/Project1----------------------//  from svn:externals in Project3<br />
------------------/CommonTools--------//    from svn:externals in Project1-- Repeated!<br />
---------/Project2----------------------//  from svn:externals in Project3<br />
------------------/CommonTools--------//    from svn:externals in Project1-- Repeated!<br />
<br />
Each root folder in the repo (CommonTools, and Projects 1-3) should be able to be checked out and used (compiled, run, etc.) independently, without the user having to manually check out anything else.  When dependencies exist for a project, they are simply pulled automatically with svn:externals.  In this way, the project is 'complete', meaning that its dependents are included during the checkout, to a relative path within the project, and the build files (CMakeLists.txt) are setup to look into the correct relative folder where the dependents exist.  For projects that only require one level of dependencies (Projects 1-2), where their dependents do not have dependents of their own, there is no issue.  However, for a project (project 3) where the dependents are also dependent on other resources, there is a strong possibility that those dependent resources will be repeated throughout the full project (project 3 will have multiple repeat copies of the same externals).<br />
<br />
For small dependencies (with not much code), and where those dependencies are static (they are being used as-is in the current development, from a specific external revision), having multiple copies is perhaps not a serious issue; it's just a small amount of disk space.  However, it is philosophically annoying, and if the dependencies are large in size this starts to become a problem.  Even worse, if the dependency code is actively being modified, where the current project (project3) is the driver, and test case, for improved development, then the user must modify one of the repeated copies, commit the changes to that file, and then do an project update to pull down those changes to the other copies.  This causes a commit before the user can even perform a new compile and test that the changes are good, i.e. very bad semantics.<br />
<br />
The naive solution to this problem is to simply have all dependencies documented for all projects, and to not use svn:externals at all.  Then, when a developer wants to use any of those projects as dependencies for the new project, they simply go and check them out locally into one location.  Or, a branch for the new project can be setup that will include the dependencies using svn:externals, which is basically used as a convenience for the current developer, since, in the end, externals will not be used in the final project.  However, this seems to just be stepping around the problem, and ignoring the potential utility of externals.  Worse, each dependent project 'should' already have a self contained build system, since it will already know of all its own dependents, but with this naive solution this will not work.  The dependents of any project cannot be expected to exist within their own folders, so all projects cannot be 'complete' as they exist in the repo, since the build files will always have to be modified for a given end user.  <br />
<br />
I have searched around for a proper solution to this problem, but all the hits I've found are only about using svn:externals with one level of dependents (and most of the solutions for similar issues are basically the 'naive' solution mentioned above.)  I've not found any reference to this problem of multiple dependent levels leading to multiple copies of common code.  This leads me to think I'm thinking about this the wrong way, if so, let me know.  However, I don't want to have a system of workarounds, I do want to enable the intended simple semantics.  Below is the best solution to this problem I've developed so far, but I've yet to implement it, as it would require modifying many projects, so I'm looking for feedback on this or better solutions.<br />
<br />
/CommonTools--------------------------//Independent Code<br />
/Project1Full----------------------------//Independent Code, with dependencies<br />
------------/Project1-------------------//  *Core code for Project1, requires dependencies in ../Common/<br />
------------/Common-------------------//  convention for relative common location<br />
---------------------/CommonTools-----//  from svn:externals in Project1Full<br />
/Project2Full----------------------------//Independent Code, with dependencies<br />
------------/Project2-------------------//  *Core code for Project2, requires dependencies in ../Common/<br />
------------/Common-------------------//  convention for relative common location<br />
---------------------/CommonTools-----//  from svn:externals in Project2Full<br />
/Project3Full----------------------------//Independent Code, with dependencies<br />
------------/Project3-------------------//  *Core code for Project3, requires dependencies in ../Common/<br />
------------/Common-------------------//  convention for relative common location<br />
---------------------/Project1----------//  from svn:externals in Project3Full - a direct dependent for Project3<br />
---------------------/Project2----------//  from svn:externals in Project3Full - a direct dependent for Project3<br />
---------------------/CommonTools-----//  from svn:externals in Project3Full - a MANUAL merge of svn:externals from Project1Full and Project2Full<br />
<br />
For All Projects: The build files are set to look for dependents in {$Common}/, and at the top of each build file this path is set as ../Common if it is not set already, otherwise, the path will stay the same.  This allows the final top most project's dependencies to all exist at the same directory level.  This build convention is the only way to allow all Projects to build independently, and as a dependent themselves.<br />
<br />
I think I like this solution, over the current layout, but there are three potential problems, however, all of them appear to have acceptable solutions.  <br />
1) There is no guarantee that you will only have a single copy of all required externals.  For example, one dependent project, ProjectA, only externs a single file from the CommonTools toolset, CommonTool1.hpp, since this is the only file that project needs.  Another dependent project, ProjectB, is using much of the CommonTools toolset, and therefore externs the entire folder.  Then, in the final /Common/ folder there will exist both the full folder as well as a second copy of one of the files (two copies of the same file exist, /Common/CommonTools/CommonTool1.hpp and /Common/CommonTool1.hpp).  I don't anticipate that this occurs too often, since usually the toolset is in one of two cases, one, a collection of heterogeneous tools that will almost always be externed specifically one file at a time, or two, a collection of tools intended to work together that must be externed as the full folder.  Also, for any common toolset a convention could be set requiring that any external use of those tools must fall explicitly into only one of those two categories.  <br />
2) The developer of a new project must perform a manual merge of all externals of each of the dependent projects, to remove any duplicates.  By itself, this is not a big deal.  However, the side effect is that any updates to the dependent projects, by other users, which modify the required externals will break the new project, since the manually merged externals will not get this update.  I do not anticipate this as a major problem, because this issue only occurs if the externals are set to pull the head revision, but this would only be the case during constant development of that external in conjunction with the new project.  If this is the case, then both the developer of this new project and the other developers working on the dependent project should be in constant communication anyway.  However, this leads to the final problem...<br />
3) When the externals for a project are set to pull a specific revision, and multiple dependent projects each use a different revision for a common external, this is a clash of dependents.  For example, Project1 pulls /CommonTools revision 1 and Project2 pulls CommonTools revision 2, therefore, each dependent project requires different code in the same location within /Common/.  However, if another convention is adopted, where every external of a specific revision is given a local copy name specific to that revision, then this problem goes away.  For example, Project1 pulls /CommonTools revision1 and renames it /CommonToolsr1, and Project2 pulls /CommonTools revision2 and renames it /CommonToolsr2, then each dependent project will get its own required version of its external, there is no local clash, and any repeated copies of the same external revision, from multiple dependents, will still be consolidated during the manual external merge.  <br />
<br />
All rational advice and critical responses are welcome. Thanks,<br />
Michael</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/26-Version-Control-Practices">Version Control Practices</category>
			<dc:creator>Michael Matthews</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41200-Best-Project-Layout-to-Avoid-Repeated-Dependency-Copies-using-svn-externals</guid>
		</item>
		<item>
			<title>Deleted mergeinfo property entries</title>
			<link>http://www.svnforum.org/threads/41199-Deleted-mergeinfo-property-entries?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 13:10:59 GMT</pubDate>
			<description>Hello, 
 
A little less than a year ago, we switched from SVN v1.4 to v1.6, but everything was fine until just recently.  Over the last four months,...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
A little less than a year ago, we switched from SVN v1.4 to v1.6, but everything was fine until just recently.  Over the last four months, the merginfo property for my project in our repository has been problematic.  In the beginning, trunk to branch merges would result in the mergeinfo property for several subdirectories within the project being deleted.  The problem is, these weren't deleted in the trunk.  After this original issue, single entries of the mergeinfo property would be deleted during synchronization merges.  Again, these weren't deleted in the trunk, so why were they being deleted during the trunk to branch merges?  Both full and single entry deletions are still plaguing the project.  Has anyone noticed something like this happen?<br />
<br />
Thanks,<br />
<br />
Mike</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>mlueken</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41199-Deleted-mergeinfo-property-entries</guid>
		</item>
		<item>
			<title>svnnotify + full path in subject email</title>
			<link>http://www.svnforum.org/threads/41197-svnnotify-full-path-in-subject-email?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 10:30:32 GMT</pubDate>
			<description>I create hook post-commit 
===================== 
........ 
/usr/bin/svnnotify -r $REV -C  -d -p $REPOS -t user@mail.com  -f svn@subversion.com...</description>
			<content:encoded><![CDATA[<div>I create hook post-commit<br />
=====================<br />
........<br />
/usr/bin/svnnotify -r $REV -C  -d -p $REPOS -t <a href="mailto:user@mail.com">user@mail.com</a>  -f <a href="mailto:svn@subversion.com">svn@subversion.com</a><br />
=====================<br />
In subject email : [746] path/trunk/file.xlsx:<br />
How I add full path repo in subject? <a href="http://subversion.com/repo" target="_blank" rel="nofollow">http://subversion.com/repo</a></div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/25-Scripts-Contributions">Scripts/Contributions</category>
			<dc:creator>varag</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41197-svnnotify-full-path-in-subject-email</guid>
		</item>
		<item>
			<title>how to move folder to other folder with in repository</title>
			<link>http://www.svnforum.org/threads/41196-how-to-move-folder-to-other-folder-with-in-repository?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 03:54:08 GMT</pubDate>
			<description>HI:) 
 
 I hav one repository structure 
 
  Repository(assume this is repository) 
               -*1folder * 
               -*2folder* 
          ...</description>
			<content:encoded><![CDATA[<div>HI:)<br />
<br />
 I hav one repository structure<br />
<br />
  Repository(assume this is repository)<br />
               -<b>1folder </b><br />
               -<b>2folder</b><br />
               -<b>3folder</b><br />
                   -1.sub1<br />
                    (subfolder2 should come here)<br />
                   -2.sub2    <br />
              -<b>4folder</b><br />
              -<b>5folder</b><br />
                   1.subfolder1<br />
                   2.subfolder2<br />
                  3.subfolder3<br />
<br />
                                <br />
I want to move <b>subfolder2</b> to <b>3folder</b> .Plz help am confussed:confused:</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/23-Windows-Servers">Windows Servers</category>
			<dc:creator>somsh</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41196-how-to-move-folder-to-other-folder-with-in-repository</guid>
		</item>
		<item>
			<title><![CDATA[Can't authenticate account to get a key]]></title>
			<link>http://www.svnforum.org/threads/41195-Can-t-authenticate-account-to-get-a-key?goto=newpost</link>
			<pubDate>Wed, 16 May 2012 01:14:12 GMT</pubDate>
			<description>Hi all, is there an issue with the email server for the main site? 
Trying to register in order to get a key to complete installation, and have been...</description>
			<content:encoded><![CDATA[<div>Hi all, is there an issue with the email server for the main site?<br />
Trying to register in order to get a key to complete installation, and have been waiting since yesterday for the authentication email.<br />
Tried to sign up using my Gmail account 2 hours ago and that hasn't come through either.<br />
The authentication email to sign up for this forum came through no problem though.<br />
Nothing in SPAM folder and nothing blocking emails from hitting my account.<br />
Any ideas?</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>was</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41195-Can-t-authenticate-account-to-get-a-key</guid>
		</item>
		<item>
			<title>Cannot connect to repo with Adobe Drive</title>
			<link>http://www.svnforum.org/threads/41194-Cannot-connect-to-repo-with-Adobe-Drive?goto=newpost</link>
			<pubDate>Tue, 15 May 2012 15:31:59 GMT</pubDate>
			<description>I have the latest Subversion server setup on a dedicated Mac Pro (OS 10.7.3) acting as a server. I am using the Subversion 1.6.18 binaries. According...</description>
			<content:encoded><![CDATA[<div>I have the latest Subversion server setup on a dedicated Mac Pro (OS 10.7.3) acting as a server. I am using the Subversion 1.6.18 binaries. According to Adobe, any sub-version of the binaries (1.6.x) should work with Dreamweaver (Subversion 1.6.8 binaries) but mentions nothing about Adobe Drive.<br />
 <br />
I set up a test repositry and successfully connected to it via Dreamweaver CS 5.5 and even checked in files, checked out files, and viewed the versions with no problems. When I try to connect Adobe Drive 3 to the repository, I get an error message in Drive saying that it cannot connect to the repository. The SVN logs show the following error:<br />
 <br />
&quot;[error] [client 192.168.***.***] Directory index forbidden by Options directive: /opt/ubersvn/htdocs/content/dam/&quot;<br />
 <br />
Anyone have any idea?<br />
 <br />
Has anyone successfully connected to a Subversion server via Adobe Drive 3?<br />
<br />
Notes:<br />
I have tried Adobe Drive 3.0 and 3.2 on both a PC AND a Mac (different Mac than the one Subversion is running on) getting the same results for all.</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/32-uberSVN-Help-and-Support">uberSVN Help and Support</category>
			<dc:creator>gregb</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41194-Cannot-connect-to-repo-with-Adobe-Drive</guid>
		</item>
		<item>
			<title><![CDATA[change commit message command doesn't work for me ...]]></title>
			<link>http://www.svnforum.org/threads/41193-change-commit-message-command-doesn-t-work-for-me?goto=newpost</link>
			<pubDate>Tue, 15 May 2012 07:23:06 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
Background: 
I've implemented SVN server for my project management on a Windows server. I am accessing svn repository remotely. To enable...]]></description>
			<content:encoded><![CDATA[<div>Hi all,<br />
<br />
Background:<br />
I've implemented SVN server for my project management on a Windows server. I am accessing svn repository remotely. To enable that user can update the commit message after commit, I've created a &quot;pre-revprop-change.bat&quot; file in hook folder of the repository. The file had only one line as 'exit 0'.<br />
<br />
Problem:<br />
I've accessed the same repository from two different machines. I've updated the commit message from one machine and checked that on another machine to verify the implementation. On another machine commit message is older one. New commit message is not reflected at that. I am using SmartSVN as client for the repository.<br />
<br />
I am able to update the commit message on both machines but that updated commit message appears on individual machine only. That doesn't reflect on server I guess because it is not reflected on another machines' cache.<br />
<br />
Please guide me how to resolve this issue.<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>rakishere</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41193-change-commit-message-command-doesn-t-work-for-me</guid>
		</item>
		<item>
			<title>Repositry cannot be connected to Oracle Sqlmodeler</title>
			<link>http://www.svnforum.org/threads/41191-Repositry-cannot-be-connected-to-Oracle-Sqlmodeler?goto=newpost</link>
			<pubDate>Sun, 13 May 2012 21:24:27 GMT</pubDate>
			<description><![CDATA[My newly created ueberSVN repositry is under http://olippxx:9880/sqlmodeler31a 
I'd like now to connect with Oracle Sqlmodeler and then check in my...]]></description>
			<content:encoded><![CDATA[<div>My newly created ueberSVN repositry is under <a href="http://olippxx:9880/sqlmodeler31a" target="_blank" rel="nofollow">http://olippxx:9880/sqlmodeler31a</a><br />
I'd like now to connect with Oracle Sqlmodeler and then check in my sources.<br />
<br />
In SQLmodeler I use <a href="http://olipp03:9880/sqlmodeler31a" target="_blank" rel="nofollow">http://olipp03:9880/sqlmodeler31a</a> and the user credentials to connect to the SVN-Server and repositry. When testing the connection I get the error:<br />
<br />
Lesezugriff für (Read access for) Repository <a href="http://olipp03:9880/sqlmodeler31a" target="_blank" rel="nofollow">http://olipp03:9880/sqlmodeler31a</a> testen...<br />
svn: Could not open the requested SVN filesystem<br />
svn: OPTIONS of '/sqlmodeler31a': 500 Internal Server Error (<a href="http://olipp03:9880" target="_blank" rel="nofollow">http://olipp03:9880</a>)<br />
svn: Could not open the requested SVN filesystem<br />
svn: OPTIONS of '/sqlmodeler31a': 500 Internal Server Error (<a href="http://olipp03:9880" target="_blank" rel="nofollow">http://olipp03:9880</a>)<br />
access denied (Zugriff abgelehnt)<br />
<br />
what is wrong?<br />
<br />
<br />
--------------------<br />
my Installation details<br />
I work with WANdisco 2012 - #12.4-9741 SVN - 1.6<br />
on windows7 64 bit<br />
It is a fresh installation<br />
The browser is Google Chrom WANdisco 2012 - #12.4-9741 SVN - 1.6 (latest build)</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/32-uberSVN-Help-and-Support">uberSVN Help and Support</category>
			<dc:creator>ollio</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41191-Repositry-cannot-be-connected-to-Oracle-Sqlmodeler</guid>
		</item>
		<item>
			<title>how to take folder back.</title>
			<link>http://www.svnforum.org/threads/41190-how-to-take-folder-back?goto=newpost</link>
			<pubDate>Sun, 13 May 2012 06:50:23 GMT</pubDate>
			<description><![CDATA[Hi:) 
 
  How can take backup of single folder ? 
                         
                                   ex : " https:\server\svn\folders\XXX" ...]]></description>
			<content:encoded><![CDATA[<div>Hi:)<br />
<br />
  How can take backup of single folder ?<br />
                        <br />
                                   ex : &quot; https:\server\svn\folders\XXX&quot;   assume in  mentioned URL &quot;XXX&quot; folder is deleted, I need back up of this folder. I have checked &quot;XXX&quot; folder is not there in server. I don't know reason..!? how its get deleted in server..:confused: Pls help solution required..:sad:</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/23-Windows-Servers">Windows Servers</category>
			<dc:creator>somsh</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41190-how-to-take-folder-back</guid>
		</item>
		<item>
			<title>How to get External files to check out Read Only?</title>
			<link>http://www.svnforum.org/threads/41189-How-to-get-External-files-to-check-out-Read-Only?goto=newpost</link>
			<pubDate>Thu, 10 May 2012 23:28:17 GMT</pubDate>
			<description>How do I get a shared (External) file to appear as Read Only when check out is done? ( 
I want some shared files to show up as Read Only when a...</description>
			<content:encoded><![CDATA[<div>How do I get a shared (External) file to appear as Read Only when check out is done? (<br />
I want some shared files to show up as Read Only when a working copy is created, using ‘needs-lock’ only seems to do that if the original file is checked out? <br />
I am trying to set up a repository for several projects which all require some of the same files as a resource. I have set them up to be shared by using the External property using TortoiseSVN. The files are tagged at a specific revision for the property. That all seems to be working fine. Since the files are shared I want them to be locked which also works. However, I would also like developers to know not to accidentally edit the file. I tried using the 'needs-lock' property on the files so they would check out as Read Only. That works if I make a working copy from the &quot;real&quot; source. If I have a working copy that used the External reference to get the file however it doesn't get created as Read Only and there is no way to know it shouldn't be edited until you try to do a commit.<br />
I have been unable to find anything that explains use of locks with External files. Is there another way, maybe I missed something in my setup of the files? Thanks.</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/40-TortoiseSVN-Community-Support">TortoiseSVN Community Support</category>
			<dc:creator>veb3id</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41189-How-to-get-External-files-to-check-out-Read-Only</guid>
		</item>
		<item>
			<title>Windows7: Repositry could not be created: Repositry location is not accessible</title>
			<link>http://www.svnforum.org/threads/41187-Windows7-Repositry-could-not-be-created-Repositry-location-is-not-accessible?goto=newpost</link>
			<pubDate>Thu, 10 May 2012 11:59:21 GMT</pubDate>
			<description>Hi  
 
I installed ueberSVN on my windows7. The services are up an running. I can login to the dashboard...</description>
			<content:encoded><![CDATA[<div>Hi <br />
<br />
I installed ueberSVN on my windows7. The services are up an running. I can login to the dashboard<br />
<a href="http://127.0.0.1:9890/ubersvn/views/platform/dashboard/viewDashboard.jsf" target="_blank" rel="nofollow">http://127.0.0.1:9890/ubersvn/views/...wDashboard.jsf</a><br />
the server is on port 9890<br />
my default repositry path is: D:\Wrk\OLI3\svn\uberSVN\repositories  [a ntfs disk]<br />
<br />
I need now a repository to be able to start working. Therefor I go <br />
<b>Repositry &gt; add</b><br />
<br />
Repository Name:      sqlmodeler31<br />
Repository Location:  sqlmodeler31 (automatically set after entering the name)<br />
<br />
Server tries to create the repostry at: <b><a href="http://olipp03:9880/sqlmodeler31" target="_blank" rel="nofollow">http://olipp03:9880/sqlmodeler31</a></b><br />
<br />
I get the <b>error: </b> <i>Repositry could not be created: Repositry location is not accessible</i><br />
<br />
Might be the service does not have the rights. But I don't get a clue, how to grant these rights. Especially I see unter <b><i>windows7 services.msc</i></b> the two services of <br />
<ul><li style="">WANdisco uberSVN Portal</li><li style="">WANdiscouberSVNSubversionServer</li></ul><br />
Both services have been set by the installation script and run under local services (no user specified). I tried to underlay a proper user, but then the services won't start anymore.<br />
<br />
Can you please help?</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>ollio</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41187-Windows7-Repositry-could-not-be-created-Repositry-location-is-not-accessible</guid>
		</item>
		<item>
			<title>svn executable is missing from my installation, what might be the problem</title>
			<link>http://www.svnforum.org/threads/41186-svn-executable-is-missing-from-my-installation-what-might-be-the-problem?goto=newpost</link>
			<pubDate>Wed, 09 May 2012 16:38:55 GMT</pubDate>
			<description>Hello folks, 
 
My pc had svn installed when I started working on it. 
For some reasons I do not see svn command which I could use in scripts. 
Can...</description>
			<content:encoded><![CDATA[<div>Hello folks,<br />
<br />
My pc had svn installed when I started working on it.<br />
For some reasons I do not see svn command which I could use in scripts.<br />
Can you please help me to understand what needs to be done to fix it.<br />
<br />
Also, I need to get author's id using command line.<br />
Do you know if I could do it through command line and what is the command?<br />
<br />
Thank you, Gene.</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/27-General-Setup-and-Troubleshooting">General Setup and Troubleshooting</category>
			<dc:creator>ggolub</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41186-svn-executable-is-missing-from-my-installation-what-might-be-the-problem</guid>
		</item>
		<item>
			<title>TSVN Scripting and Show Logs -- Tags</title>
			<link>http://www.svnforum.org/threads/41185-TSVN-Scripting-and-Show-Logs-Tags?goto=newpost</link>
			<pubDate>Wed, 09 May 2012 13:35:00 GMT</pubDate>
			<description><![CDATA[Hi  
     I have Couple fo Question: 
 
 
1. Is it possible to do customized automation with ''Show logs' of TSVN? 
 
Objective/Want to do: 
 
I have...]]></description>
			<content:encoded><![CDATA[<div>Hi <br />
     I have Couple fo Question:<br />
<br />
<ol class="decimal"><li style="">Is it possible to do customized automation with ''Show logs' of TSVN?<br />
<br />
Objective/Want to do:<br />
<br />
I have list of 100s of Files , Want to search each and know the status of these Pages , which revisions came before and after of that specific pages i have put for input in Show Logs.<br />
</li></ol><br />
<br />
<br />
<ol class="decimal"><li style="">Secondry , Why SVN Create separate revision for Tags? </li></ol><br />
<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/40-TortoiseSVN-Community-Support">TortoiseSVN Community Support</category>
			<dc:creator>waseem.shahzad</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41185-TSVN-Scripting-and-Show-Logs-Tags</guid>
		</item>
		<item>
			<title>svn repository Backup and Retrieval</title>
			<link>http://www.svnforum.org/threads/41184-svn-repository-Backup-and-Retrieval?goto=newpost</link>
			<pubDate>Wed, 09 May 2012 08:56:54 GMT</pubDate>
			<description>hi, 
   In Windows 2003 server,how to retrieve the backups from a DVD/hard disk. Backup is done by the way of copying the repository to a DVD/Hard...</description>
			<content:encoded><![CDATA[<div>hi,<br />
   In Windows 2003 server,how to retrieve the backups from a DVD/hard disk. Backup is done by the way of copying the repository to a DVD/Hard disk.<br />
<br />
Can anybody tell me the procedure for taking svn repository backup and how to retrieve them in another system.</div>

]]></content:encoded>
			<category domain="http://www.svnforum.org/forums/40-TortoiseSVN-Community-Support">TortoiseSVN Community Support</category>
			<dc:creator>gita</dc:creator>
			<guid isPermaLink="true">http://www.svnforum.org/threads/41184-svn-repository-Backup-and-Retrieval</guid>
		</item>
	</channel>
</rss>

