<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-3102446817425511011</id><updated>2011-11-22T17:05:06.983+05:30</updated><category term='SVN'/><title type='text'>ActionScript 3, Flex, .net, ASP, Java</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://9developers.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3102446817425511011/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://9developers.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Chetan Sachdev</name><uri>http://www.blogger.com/profile/15158224488419854441</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='22' height='32' src='http://3.bp.blogspot.com/_P5ZqfjbUO4E/SuUY-i_BasI/AAAAAAAAAY0/f7tT3HlzBfE/S220/chetan.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-3102446817425511011.post-8096037813334464507</id><published>2008-01-05T00:47:00.001+05:30</published><updated>2008-03-23T01:18:20.859+05:30</updated><category scheme='http://www.blogger.com/atom/ns#' term='SVN'/><title type='text'>How to install SVN</title><content type='html'>How to configure SVN&lt;br /&gt;&lt;br /&gt;Well, I would not like to tell &lt;a href="http://en.wikipedia.org/wiki/Subversion_%28software%29"&gt;what is SVN&lt;/a&gt;, better google for it. I was configuring on my local machine so that we can create a common repository and then give it access to other friends using Apache HTTP Server. To configure SVN on your machine, firstly download the following three.&lt;br /&gt;&lt;br /&gt;1. Apache 2.0.59 (apache_2.0.59-win32-x86-no_ssl) http://httpd.apache.org/download.cgi&lt;br /&gt;&lt;br /&gt;2. SVN1Click Setup (Svn1ClickSetup-1.4.4) http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91&lt;br /&gt;&lt;br /&gt;3. Tortoise SVN 1.4.5 http://tortoisesvn.net/downloads&lt;br /&gt;&lt;br /&gt;Install the above three.&lt;br /&gt;Now you need to configure Apache HTTP Server.&lt;br /&gt;Follow the following Steps : -&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 1.&lt;/span&gt;&lt;br /&gt;Copy the module files mod_authz_svn and mod_dav_svn from installtion directory of SVN (In my case it is C:\Program Files\Subversion\bin ) and paste it into Apache HTTP Server installation directory modules folder (In my case C:\Program Files\Apache Group\Apache2\modules )&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 2.&lt;/span&gt;&lt;br /&gt;Now open httpd.conf from installtion directory of Apache HTTP Server 2.0.59 (In my case it is C:\Program Files\Apache Group\Apache2\conf\httpd.conf )&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 3.&lt;/span&gt;&lt;br /&gt;In this file search&lt;br /&gt;LoadModule&lt;br /&gt;You will find a number of lines starting with LoadModule, in the beginning of it i.e. after&lt;br /&gt;# Example:&lt;br /&gt;# LoadModule foo_module modules/mod_foo.so&lt;br /&gt;#&lt;br /&gt;Paste this&lt;br /&gt;#Added by me begin&lt;br /&gt;LoadModule dav_svn_module modules/mod_dav_svn.so&lt;br /&gt;LoadModule authz_svn_module modules/mod_authz_svn.so&lt;br /&gt;#Added by me end&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 4.&lt;/span&gt;&lt;br /&gt;look for LoadModule line ending with "mod_dav.so". You will see that this line begins with # (it is commented, remove '#' to uncomment it)&lt;br /&gt;LoadModule dav_module modules/mod_dav.so&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Step 5.&lt;/span&gt;&lt;br /&gt;Now, press PGDOWN and go to end of this file and paste the following at the end of httpd.conf&lt;br /&gt;  # Configure Subversion repository&lt;br /&gt;  &lt;location&gt;&lt;br /&gt;  DAV svn&lt;br /&gt;  SVNPath "D:\svn"&lt;br /&gt;  AuthType Basic&lt;br /&gt;  AuthName "Subversion repository"&lt;br /&gt;  AuthUserFile "D:\svn_conf\passwd"&lt;br /&gt;  Require valid-user&lt;br /&gt;  &lt;/location&gt;&lt;br /&gt;Save this file and Now you are almost done, without knowing what you are doing ;-)&lt;br /&gt;Now create two folders namely svn and svn_conf in &lt;span style="font-weight: bold;"&gt;D drive&lt;/span&gt;.&lt;br /&gt;right-click the svn folder and select TortoiseSVN -&gt; Create repository here... command. Now,TortoiseSVN will ask for what type of repository you'd like to create. Select Native filesystem (FSFS) and click OK. You will get a message telling you that "The Repository was successfully created."&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Creating user for your SVN&lt;/span&gt;&lt;br /&gt;Open command prompt and Move to Installation directory of Apache HTTP Server (In my case it is cd "&lt;span style="font-style: italic;"&gt;C:\Program Files\Apache Group\Apache2\bin&lt;/span&gt;" )&lt;br /&gt;Now run the following&lt;br /&gt;&lt;blockquote&gt;    htpasswd -c D:\svn_conf\passwd cksachdev&lt;/blockquote&gt;&lt;br /&gt;This will ask you for password for user cksachdev 2 times and then password will get stored to passwd file. Very simple. Now to add more users here are the steps ....&lt;br /&gt;The next step is to create user for your SVN and providing them authentication. For this you need to create a password file. If you see the last step i.e. Step 5 you specified one file D:\svn_conf\passwd This file will serve the purpose of authentication. Here is command you need to use for creating the users of your SVN and with authentication. The password will be stored in MD5 encryption format.&lt;br /&gt;&lt;blockquote&gt;htpasswd -mb D:\svn_conf\passwd UserName PassWord&lt;/blockquote&gt;&lt;br /&gt;If Apache HTTP Server is already running then you can find it in your taskbar and click on Restart to apply the changes you made in above steps.If every thing goes fine then your SVN is configured.&lt;br /&gt;If you are facing some error then please let me know in comments so that I can make prior changes in steps and make it a very short tutorial to configure SVN.&lt;br /&gt;Here is one link with steps http://jamesselvakumar.wordpress.com/2008/03/14/extending-subversion-by-using-tortoisesvn/&lt;br /&gt;&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;--&lt;br /&gt;Chetan Sachdev&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3102446817425511011-8096037813334464507?l=9developers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://9developers.blogspot.com/feeds/8096037813334464507/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3102446817425511011&amp;postID=8096037813334464507' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3102446817425511011/posts/default/8096037813334464507'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3102446817425511011/posts/default/8096037813334464507'/><link rel='alternate' type='text/html' href='http://9developers.blogspot.com/2008/01/how-to-install-svn.html' title='How to install SVN'/><author><name>Chetan Sachdev</name><uri>http://www.blogger.com/profile/15158224488419854441</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='22' height='32' src='http://3.bp.blogspot.com/_P5ZqfjbUO4E/SuUY-i_BasI/AAAAAAAAAY0/f7tT3HlzBfE/S220/chetan.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-3102446817425511011.post-8253297873001851085</id><published>2007-12-20T22:01:00.000+05:30</published><updated>2007-12-20T22:07:54.535+05:30</updated><title type='text'>Spring in .net</title><content type='html'>Does any one read about this ?&lt;br /&gt;http://www.springframework.net/overview.html&lt;br /&gt;&lt;br /&gt;Do we need this in asp.net , I think asp.net already provide a quite flexible structure for that .&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;I thin if hibernate is present there in asp.net then it would be more beneficiary .&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/3102446817425511011-8253297873001851085?l=9developers.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://9developers.blogspot.com/feeds/8253297873001851085/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=3102446817425511011&amp;postID=8253297873001851085' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/3102446817425511011/posts/default/8253297873001851085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/3102446817425511011/posts/default/8253297873001851085'/><link rel='alternate' type='text/html' href='http://9developers.blogspot.com/2007/12/spring-in-net.html' title='Spring in .net'/><author><name>Anurag Bajpai</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='24' height='32' src='http://1.bp.blogspot.com/_b5coskaT4Vs/S8dqU2jEFWI/AAAAAAAABvs/Sr8EXTZ1Kdg/S220/me_office.jpg'/></author><thr:total>2</thr:total></entry></feed>
