<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-14534</id>
	<title>Nabble - Netbeans - CVS</title>
	<updated>2008-08-27T23:26:39Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Netbeans---CVS-f14534.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Netbeans---CVS-f14534.html" />
	<subtitle type="html">There appear to be lots of questions about CVS and Netbeans, So here is a forum for those questions.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-19194882</id>
	<title>After checkout how can i do a File lock?</title>
	<published>2008-08-27T23:26:39Z</published>
	<updated>2008-08-27T23:26:39Z</updated>
	<author>
		<name>dam1234</name>
	</author>
	<content type="html">hi all,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;i am able to connect to cvs, checkin and checkout. but after checkout that file, file lock should be acquired.
&lt;br&gt;how can i lock a file?
&lt;br&gt;&lt;br&gt;thanks,
&lt;br&gt;dam</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/After-checkout-how-can-i-do-a-File-lock--tp19194882p19194882.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-17274304</id>
	<title>Problems with checkout</title>
	<published>2008-05-16T06:09:22Z</published>
	<updated>2008-05-16T06:09:22Z</updated>
	<author>
		<name>fjunior</name>
	</author>
	<content type="html">Hi all, I'm new here so if i'm posting in the wrong place please forgive me. I'm from Brazil and my English is terrible.
&lt;br&gt;&lt;br&gt;I'm having &amp;nbsp;trouble with the checkout and import on cvs.
&lt;br&gt;&lt;br&gt;Let me explain the situation. I need to import an old project, that was already in cvs, to a new cvs server. But the old cvs server is not online anymore. I have the project folder in my computer, and I need to import it to the new cvs server.
&lt;br&gt;&lt;br&gt;I use Netbeans 5.5 and I tried to open the project and import. But the import option is not active on the cvs options. So i removed all CVS and CVSROOT folders of my project folder. Then I opened again the project and the import option became active.
&lt;br&gt;&lt;br&gt;So I imported the project to the cvs server. And it works. But when I trie to checkout the project, I can checkout and open the project, but when I trie to run the project, it wasn't work. 
&lt;br&gt;&lt;br&gt;I have the following message on Netbeans:
&lt;br&gt;&lt;br&gt;/nbproject/build-impl.xml:290: The following error occurred while executing this line:
&lt;br&gt;/nbproject/build-impl.xml:146: Compile failed; see the compiler error output for details.
&lt;br&gt;BUILD FAILED (total time: 3 minutes 31 seconds)
&lt;br&gt;&lt;br&gt;I need help please...&lt;img class='smiley' src='http://www.nabble.com/images/smiley/smiley_cry.gif' /&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problems-with-checkout-tp17274304p17274304.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16995037</id>
	<title>Re: Why does Netbeans delete my CVS folder when I do a clean?</title>
	<published>2008-05-01T13:15:40Z</published>
	<updated>2008-05-01T13:15:40Z</updated>
	<author>
		<name>TheKurgan</name>
	</author>
	<content type="html">Fixed this by setting the defaultexcludes=&amp;quot;yes&amp;quot;. &amp;nbsp;Not sure why it is set to no by default. &amp;nbsp;Had to change it for every directory that ant is set to clean.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target depends=&amp;quot;init&amp;quot; if=&amp;quot;no.dist.ear.dir&amp;quot; name=&amp;quot;deps-clean&amp;quot; unless=&amp;quot;no.deps&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target depends=&amp;quot;init&amp;quot; name=&amp;quot;do-clean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;condition property=&amp;quot;build.dir.to.clean&amp;quot; value=&amp;quot;${build.web.dir}&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;isset property=&amp;quot;dist.ear.dir&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/condition&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;property name=&amp;quot;build.dir.to.clean&amp;quot; value=&amp;quot;${build.web.dir}&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;delete includeEmptyDirs=&amp;quot;true&amp;quot; quiet=&amp;quot;true&amp;quot; defaultexcludes=&amp;quot;yes&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fileset dir=&amp;quot;${build.dir.to.clean}/WEB-INF/lib&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/delete&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;delete dir=&amp;quot;${build.dir}&amp;quot; defaultexcludes=&amp;quot;yes&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;available file=&amp;quot;${build.dir.to.clean}/WEB-INF/lib&amp;quot; property=&amp;quot;status.clean-failed&amp;quot; type=&amp;quot;dir&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;delete dir=&amp;quot;${dist.dir}&amp;quot; defaultexcludes=&amp;quot;yes&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target depends=&amp;quot;do-clean&amp;quot; if=&amp;quot;status.clean-failed&amp;quot; name=&amp;quot;check-clean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo message=&amp;quot;Warning: unable to delete some files in ${build.web.dir}/WEB-INF/lib - they are probably locked by the J2EE server. &amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;echo level=&amp;quot;info&amp;quot; message=&amp;quot;To delete all files undeploy the module from Server Registry in Runtime tab and then use Clean again.&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;-post-clean&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- Empty placeholder for easier customization. --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;!-- You can override this target in the ../build.xml file. --&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Why-does-Netbeans-delete-my-CVS-folder-when-I-do-a-clean--tp16993350p16995037.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16993350</id>
	<title>Why does Netbeans delete my CVS folder when I do a clean?</title>
	<published>2008-05-01T10:55:47Z</published>
	<updated>2008-05-01T10:55:47Z</updated>
	<author>
		<name>TheKurgan</name>
	</author>
	<content type="html">Everytime I do a clean and rebuild of my visual web project, Netbeans will delete the CVS folder. &amp;nbsp;CVS uses this folder to track changes so when Netbeans deletes this folder then the CVS repository can't track the changes in the build directory. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I do not wish for this behavior. &amp;nbsp; Is there some way to tell Netbeans to not delete the CVS folder when doing a clean? &amp;nbsp;I tried a couple tricks with the build.xml script and got it to not delete the CVS folder itself but it will still delete the files in CVS folder. ( I did this using &amp;lt;delete dir=&amp;quot;${build.dir}&amp;quot; defaultexcludes=&amp;quot;no&amp;quot;/&amp;gt;)</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Why-does-Netbeans-delete-my-CVS-folder-when-I-do-a-clean--tp16993350p16993350.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16850782</id>
	<title>searching javaCVS api</title>
	<published>2008-04-24T08:00:15Z</published>
	<updated>2008-04-24T08:00:15Z</updated>
	<author>
		<name>RicksMtz</name>
	</author>
	<content type="html">Hello everybody, my problem is that i haven't found javaCVS api, does anybody know where it is?
&lt;br&gt;thanx</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/searching-javaCVS-api-tp16850782p16850782.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-16273147</id>
	<title>problem on import project into cvs</title>
	<published>2008-03-25T03:00:45Z</published>
	<updated>2008-03-25T03:00:45Z</updated>
	<author>
		<name>walid.k</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;i have this error stack when i do this
&lt;br&gt;&lt;br&gt;INFORMATIONAL *********** Exception occurred ************ at 10:03 AM on Mar 25, 2008
&lt;br&gt;java.lang.StringIndexOutOfBoundsException: String index out of range: -1
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.String.substring(String.java:1768)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.response.WrapperSendResponse.parseWrappers(WrapperSendResponse.java:59)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.response.WrapperSendResponse.process(WrapperSendResponse.java:90)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.Client.handleResponse(Client.java:577)
&lt;br&gt;[catch] at org.netbeans.lib.cvsclient.Client.processRequests(Client.java:527)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.Client.getWrappersMap(Client.java:1003)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.command.importcmd.ImportCommand.execute(ImportCommand.java:255)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.lib.cvsclient.Client.executeCommand(Client.java:636)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.CommandRunnable$1.run(CommandRunnable.java:77)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.lang.Thread.run(Thread.java:595)
&lt;br&gt;*********** Exception occurred ************ at 10:03 AM on Mar 25, 2008
&lt;br&gt;java.lang.NullPointerException
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.ImportExecutor.copyFolderMeta(ImportExecutor.java:115)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.ImportExecutor.copyMetadata(ImportExecutor.java:107)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.ImportExecutor.run(ImportExecutor.java:96)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ExecutorGroupBar.execute(ExecutorGroupBar.java:90)
&lt;br&gt;[catch] at org.netbeans.modules.versioning.system.cvss.ExecutorGroup.execute(ExecutorGroup.java:359)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.AddToRepositoryAction.async(AddToRepositoryAction.java:260)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.AddToRepositoryAction.access$000(AddToRepositoryAction.java:84)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.modules.versioning.system.cvss.ui.actions.project.AddToRepositoryAction$1.run(AddToRepositoryAction.java:211)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.openide.util.RequestProcessor$Task.run(RequestProcessor.java:499)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.openide.util.RequestProcessor$Processor.run(RequestProcessor.java:932)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/file/p16273147/messages.log&quot; target=&quot;_top&quot;&gt;messages.log&lt;/a&gt;&lt;br&gt;&lt;br&gt;thanks for your Help it's urgent</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/problem-on-import-project-into-cvs-tp16273147p16273147.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-15253384</id>
	<title>Where can I find a later version?</title>
	<published>2008-02-03T05:21:30Z</published>
	<updated>2008-02-03T05:21:30Z</updated>
	<author>
		<name>esharris</name>
	</author>
	<content type="html">I was trying to use Netbeans IDE 6.0 CVS to import a project into my company's internal repository (Internal source forge).
&lt;br&gt;&lt;br&gt;The process crashed with a &amp;quot;received broken pipe signal&amp;quot;.
&lt;br&gt;&lt;br&gt;I did some research. Our repository requires cvs 1.11.14.
&lt;br&gt;My netbeans plugin is 1.9.2.1.42.1. I didn't see any new CVS updates to install.
&lt;br&gt;There is a CVS version v1.12.12.1.
&lt;br&gt;&lt;br&gt;Where can I find a later version that can be intergrated into Netbeans?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Where-can-I-find-a-later-version--tp15253384p15253384.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-14291900</id>
	<title>Import Verioning</title>
	<published>2007-12-12T01:57:37Z</published>
	<updated>2007-12-12T01:57:37Z</updated>
	<author>
		<name>zuzzi100</name>
	</author>
	<content type="html">Help me!!!
&lt;br&gt;I use Netbeans 6 and in versioning &amp;quot;Import in to repository&amp;quot; is disabled. Why?
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Import-Verioning-tp14291900p14291900.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-14125094</id>
	<title>Subversion</title>
	<published>2007-12-02T23:44:31Z</published>
	<updated>2007-12-02T23:44:31Z</updated>
	<author>
		<name>javaFreakShow</name>
	</author>
	<content type="html">Hey guys!!!
&lt;br&gt;&lt;br&gt;This is my first post in this forum. 
&lt;br&gt;&lt;br&gt;I am using Netbeans 5.5.1 and I cannot get Subversion to work with it. 
&lt;br&gt;&lt;br&gt;Steps I followed:-
&lt;br&gt;&lt;br&gt;1) Downloaded Subversion client and installed it.
&lt;br&gt;2) Logged off and re-logged in for the environment variables to take effect.
&lt;br&gt;3) Command like SVN --version works and doesn't give any errors.
&lt;br&gt;&lt;br&gt;Yet when I try to spot Subversion in the main menu, I don't seam to be able to do that (my sight is not all that bad &lt;img class='smiley' src='http://www.nabble.com/images/smiley/smiley_happy.gif' /&gt;). 
&lt;br&gt;&lt;br&gt;&amp;nbsp;Note that for some reason my update center is not working, so I don't have this as an alternative solution to getting Subversion to work with Netbeans. 
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Subversion-tp14125094p14125094.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-14107487</id>
	<title>SVN - working on the same package in two projects</title>
	<published>2007-12-01T09:34:17Z</published>
	<updated>2007-12-01T09:34:17Z</updated>
	<author>
		<name>conor.mccarthy</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm developing two projects which both use the same package (call it package1), which is also under development. Can I, using svn integrated with netbeans, set it up so that I can edit package1 in either project but store it in a single location in the svn repository. So if I make a change to package1 in projectA then I can just update projectB and see the same changes?
&lt;br&gt;&lt;br&gt;Any tips much appreciated.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SVN---working-on-the-same-package-in-two-projects-tp14107487p14107487.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12889209</id>
	<title>Re: HELP!!!</title>
	<published>2007-09-25T15:44:49Z</published>
	<updated>2007-09-25T15:44:49Z</updated>
	<author>
		<name>pprzybysz</name>
	</author>
	<content type="html">I had a similar problem. It was caused by incorrect path of temp directory. 
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/HELP%21%21%21-tp11667933p12889209.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-12776830</id>
	<title>can i use SSHConnection.java for creating SSHConnection to execute CVS commands</title>
	<published>2007-09-19T06:54:15Z</published>
	<updated>2007-09-19T06:54:15Z</updated>
	<author>
		<name>prasankn</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I found the file SSHConnection.java from the below link. 
&lt;br&gt;&lt;a href=&quot;http://javacvs.netbeans.org/source/browse/javacvs/cvsmodule/src/org/netbeans/modules/versioning/system/cvss/SSHConnection.java&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://javacvs.netbeans.org/source/browse/javacvs/cvsmodule/src/org/netbeans/modules/versioning/system/cvss/SSHConnection.java&lt;/a&gt;&lt;br&gt;&lt;br&gt;This is used to create SSHConnection to a host.
&lt;br&gt;&lt;br&gt;I found the corresponding jar for the above java in org-netbeans-modules-versioning-system-cvss.jar which is available in netbeans IDE.
&lt;br&gt;&lt;br&gt;Can i use bundle this jar into my product for commercial purpose.
&lt;br&gt;&lt;br&gt;I am in need of suggestions whether to use the class for commercial purposes.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;prasanna</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/can-i-use-SSHConnection.java-for-creating-SSHConnection-to-execute-CVS-commands-tp12776830p12776830.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-11667933</id>
	<title>HELP!!!</title>
	<published>2007-07-18T06:46:56Z</published>
	<updated>2007-07-18T06:46:56Z</updated>
	<author>
		<name>lonetlove</name>
	</author>
	<content type="html">java.lang.IllegalStateException: Out of bounds
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument$DO.calc(OutputDocument.java:620)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument$DO.getOffset(OutputDocument.java:659)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at javax.swing.text.DefaultCaret$Handler.insertUpdate(DefaultCaret.java:1663)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument.fireDocumentEvent(OutputDocument.java:386)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument.access$200(OutputDocument.java:47)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument$1.run(OutputDocument.java:317)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.openide.util.Mutex.doEvent(Mutex.java:1158)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.openide.util.Mutex.readAccess(Mutex.java:284)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at org.netbeans.core.output2.OutputDocument.stateChanged(OutputDocument.java:314)
&lt;br&gt;[catch] at org.netbeans.core.output2.AbstractLines.run(AbstractLines.java:193)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventQueue.dispatchEvent(EventQueue.java:597)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/HELP%21%21%21-tp11667933p11667933.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-11515678</id>
	<title>CVS beginner</title>
	<published>2007-07-10T00:46:23Z</published>
	<updated>2007-07-10T00:46:23Z</updated>
	<author>
		<name>creatorul</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I have an account on CVSdude website and I co not know how to upload my existing netbeans project to the server. Is there any IDE option for uploading an existing project?
&lt;br&gt;&lt;br&gt;Thanks</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/CVS-beginner-tp11515678p11515678.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-11392923</id>
	<title>cvs Java IDE</title>
	<published>2007-07-02T06:28:21Z</published>
	<updated>2007-07-02T06:28:21Z</updated>
	<author>
		<name>Claes</name>
	</author>
	<content type="html">I am looking for support for the rdiff command in the netbeans java IDE. I can't find it. Can someone help or confirm that it isn't implemented. Considering that diff, log and rlog are implemented it seems surprising if rdiff isn't.
&lt;br&gt;&lt;br&gt;Regards, Claes</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/cvs-Java-IDE-tp11392923p11392923.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-10301145</id>
	<title>Re: VSS Integration with NetBeans 5.5</title>
	<published>2007-05-03T03:01:29Z</published>
	<updated>2007-05-03T03:01:29Z</updated>
	<author>
		<name>Sriniavsa Rao</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;I am looking for VSS plug in with Net Beans 5.5, can any open give me some information about this. Any links or any information forward to me.
&lt;br&gt;&lt;br&gt;This is my id: srinivasarao.u@imimobile.com
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Srinivas</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/VSS-Integration-with-NetBeans-5.5-tp9526719p10301145.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-9980563</id>
	<title>Delete a project after adding it to CVS problem</title>
	<published>2007-04-13T08:58:54Z</published>
	<updated>2007-04-13T08:58:54Z</updated>
	<author>
		<name>Deepak Arora</name>
	</author>
	<content type="html">1. Create a web project &amp;quot;WebApp&amp;quot; in Netbeans 5.5
&lt;br&gt;2. Add the project to the CVS repository using Import into Repository
&lt;br&gt;3. Delete the project in Netbeans. Select the option to delete from file system too.
&lt;br&gt;4. Physically delete the project folder from the file system
&lt;br&gt;5. Create a web project with the same name again
&lt;br&gt;6. Netbeans still thinks that the project is under CVS !!!
&lt;br&gt;&lt;br&gt;How does one clean the CVS settings for such a scenario ? Any help would be appreciated.
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;Deepak
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Delete-a-project-after-adding-it-to-CVS-problem-tp9980563p9980563.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-9526719</id>
	<title>VSS Integration with NetBeans 5.5</title>
	<published>2007-03-16T23:41:47Z</published>
	<updated>2007-03-16T23:41:47Z</updated>
	<author>
		<name>v4u2chat</name>
	</author>
	<content type="html">Hi,

I want to integrate VSS (VisualSourceSafe) with NetBeans 5.5. Do we have any plugin for that..? If so plz provide me those links and links for UserGuide to setup?

Thanks in Advance,
 
          -- V ---</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/VSS-Integration-with-NetBeans-5.5-tp9526719p9526719.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-8615236</id>
	<title>import binary files</title>
	<published>2007-01-25T05:34:50Z</published>
	<updated>2007-01-25T05:34:50Z</updated>
	<author>
		<name>ruchira</name>
	</author>
	<content type="html">hi,
&lt;br&gt;&amp;nbsp; &amp;nbsp; I am using netbeans javacvs api +java.Can any one plese help me out to explain how to import binary files in cvs repository with importcommand.
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Which of the importcommand's method is use for import binary files.
&lt;br&gt;&amp;nbsp; &amp;nbsp; please give me example of code to import binary files.
&lt;br&gt;&lt;br&gt;Thanks in advance. 
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;Ruchira 
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/import-binary-files-tp8615236p8615236.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-8521383</id>
	<title>not able to open binary file after import</title>
	<published>2007-01-23T05:08:25Z</published>
	<updated>2007-01-23T05:08:25Z</updated>
	<author>
		<name>ruchira</name>
	</author>
	<content type="html">hi ,this is my problem----
&lt;br&gt;&amp;nbsp; &amp;nbsp;I am using netbean api for cvs command.I am having the &amp;nbsp;problem that i am 
&lt;br&gt;not able to open binary file after importing in cvs repository.
&lt;br&gt;&amp;nbsp; &amp;nbsp;I want to import a directory which contain both text and binary file.
&lt;br&gt;&amp;nbsp; can you please help me out &amp;nbsp;how to import a directory which contain binary 
&lt;br&gt;files.
&lt;br&gt;&lt;br&gt;MY CODES
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; ImportCommand command = new ImportCommand();
&lt;br&gt;&amp;nbsp; &amp;nbsp;Map wrapperMap = new HashMap();
&lt;br&gt;&amp;nbsp; &amp;nbsp;String filenamePattern=&amp;quot;*.ppt&amp;quot;;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;KeywordSubstitutionOptions keywordSubstitutionOptions;
&lt;br&gt;&amp;nbsp; &amp;nbsp;Object b= KeywordSubstitutionOptions.BINARY;
&lt;br&gt;&amp;nbsp; &amp;nbsp;wrapperMap.put(new SimpleStringPattern(filenamePattern),b);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;command.addWrapper(filenamePattern,org.netbeans.lib.cvsclient.command.KeywordSubstitutionOptions.BINARY);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setWrappers(wrapperMap);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setModule(module);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setLogMessage(comment);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setReleaseTag(releaseTag);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setImportDirectory(path);
&lt;br&gt;&amp;nbsp; &amp;nbsp;client.setLocalPath(path);
&lt;br&gt;&amp;nbsp; &amp;nbsp;command.setVendorTag(vendorTag);
&lt;br&gt;&amp;nbsp; &amp;nbsp; result = client.executeCommand(command, globalOptions);
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;ruchira
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/not-able-to-open-binary-file-after-import-tp8521383p8521383.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-8008907</id>
	<title>Re: Netbeans ssh authentication</title>
	<published>2006-12-21T06:40:31Z</published>
	<updated>2006-12-21T06:40:31Z</updated>
	<author>
		<name>lobais</name>
	</author>
	<content type="html">I'm afraid I gave it up, and started using subversion. I know sourceforge has got some subversion support now, but I also switched to google code hosting.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Netbeans-ssh-authentication-tp3237376p8008907.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-8008095</id>
	<title>Re: Netbeans ssh authentication</title>
	<published>2006-12-21T05:44:55Z</published>
	<updated>2006-12-21T05:44:55Z</updated>
	<author>
		<name>Jerven</name>
	</author>
	<content type="html">Hi lobias,
&lt;br&gt;&lt;br&gt;I have the same problem and am not able to resolve it either :(
&lt;br&gt;&lt;br&gt;Have you manged to find a solution else where?
&lt;br&gt;&lt;br&gt;Thanks, and I hope you find an answer ;)
&lt;br&gt;&lt;br&gt;Jerven
&lt;br&gt;&lt;br&gt;One thingh I did notice is that when I did on the shell
&lt;br&gt;ssh -v -l user host &amp;quot;cvs&amp;quot; 
&lt;br&gt;I got a return value
&lt;br&gt;but none when I did
&lt;br&gt;ssh -v -l user host &amp;quot;cvs server&amp;quot; </content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Netbeans-ssh-authentication-tp3237376p8008095.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-7686522</id>
	<title>How can I locally set up CVS repository on my Windows XP box?</title>
	<published>2006-12-04T12:21:03Z</published>
	<updated>2006-12-04T12:21:03Z</updated>
	<author>
		<name>Voit</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I hope it is not completely off topic.
&lt;br&gt;&lt;br&gt;Under NetBeans 5.5 IDE I wrote a project that the first version of I want to put into CVS. How can I locally set up CVS repository on my Windows XP box? Below I present what I am unsuccessfully doing:
&lt;br&gt;&amp;nbsp; 1) I downloaded &lt;i&gt;cvs-1-11-22.zip&lt;/i&gt;, unzipped &lt;i&gt;cvs.exe&lt;/i&gt;&amp;nbsp;to a folder which name exists on &lt;i&gt;PATH&lt;/i&gt;&lt;br&gt;&amp;nbsp; 2) I started the command:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;i&gt;C:\&amp;gt; cvs &amp;nbsp;-dc:\ &amp;nbsp;init&lt;/i&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; This resulted in a creation of &lt;i&gt;c:\CVSROOT &lt;/i&gt;&amp;nbsp;directory populated with many files and &amp;quot;Emptydir&amp;quot; directory. 
&lt;br&gt;&amp;nbsp; 3) I “&lt;i&gt;set CVSROOT=c:\&lt;/i&gt;” environmental variable
&lt;br&gt;&amp;nbsp; 4) I launched NetBeans, right-clicked on the project name in project browser window, and chose “&lt;i&gt;CVS -&amp;gt; Import into Repository&lt;/i&gt;&amp;quot;
&lt;br&gt;&amp;nbsp; 5) In the “&lt;i&gt;Import Project Options&lt;/i&gt;” dialog that appeared I entered &lt;i&gt;“:local:c:\CVSROOT\&lt;/i&gt;” into CVS Root field.
&lt;br&gt;&amp;nbsp; 6) I pressed “&lt;i&gt;Next&lt;/i&gt;” button
&lt;br&gt;&amp;nbsp; 7) Since that moment progress bar start swing from left to right endlessly!!! (until I press stop button). No file from my project is stored in &lt;i&gt;c:\CVSROOT &lt;/i&gt;&amp;nbsp;folder neither!
&lt;br&gt;&lt;br&gt;What am I doing wrong?
&lt;br&gt;&lt;br&gt;Voit</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-can-I-locally-set-up-CVS-repository-on-my-Windows-XP-box--tp7686522p7686522.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-3237376</id>
	<title>Netbeans ssh authentication</title>
	<published>2006-03-04T03:59:29Z</published>
	<updated>2006-03-04T03:59:29Z</updated>
	<author>
		<name>lobais</name>
	</author>
	<content type="html">I've been trying to make netbeans ssh authentication work for more than 1½ week now, so that I can commit updates to my sourceforge project.
&lt;br&gt;I've found out that netbeans don't support key authentication in their internal ssh, so I've been trying to figure out how to make the external one work.
&lt;br&gt;&lt;br&gt;I use &amp;quot;:ext:thomasda@cvs.radiorec.sourceforge.net:/cvsroot/radiorec&amp;quot; for the path and &amp;quot;ssh -l thomasda cvs.radiorec.sourceforge.net &amp;quot;cvs server&amp;quot;&amp;quot; for the external ssh command. I nicely asks me for my password, but then is tells me, that username/path/password is wrong, or that it just can't find /cvsroot/radiorec&amp;quot;.
&lt;br&gt;&lt;br&gt;have anyone got netbeans working with sourceforge?</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Netbeans-ssh-authentication-tp3237376p3237376.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-2853888</id>
	<title>Re: Problem creating a new Project OUTSIDE CVS</title>
	<published>2006-02-09T08:54:48Z</published>
	<updated>2006-02-09T08:54:48Z</updated>
	<author>
		<name>Roridge</name>
	</author>
	<content type="html">I logged this as a bug on Netbeans community, and i have been informed that this is because of creating a new project in a folder that already has cvs projects in it, or is a sub folder of folder that has CVS projects in it.
&lt;br&gt;&lt;br&gt;Therefore i suggest for now you create a folder in a completely different location for CVS.</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-creating-a-new-Project-OUTSIDE-CVS-tp2852330p2853888.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-2853622</id>
	<title>Re: Problem creating a new Project OUTSIDE CVS</title>
	<published>2006-02-09T08:42:52Z</published>
	<updated>2006-02-09T08:42:52Z</updated>
	<author>
		<name>Roridge</name>
	</author>
	<content type="html">You can do a work around if you click on CVS&amp;gt;Ignore &amp;lt;project name&amp;gt;
&lt;br&gt;&lt;br&gt;but still not a real solution</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-creating-a-new-Project-OUTSIDE-CVS-tp2852330p2853622.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-2852330</id>
	<title>Problem creating a new Project OUTSIDE CVS</title>
	<published>2006-02-09T07:42:16Z</published>
	<updated>2006-02-09T07:42:16Z</updated>
	<author>
		<name>Roridge</name>
	</author>
	<content type="html">&lt;br&gt;Hi all
&lt;br&gt;&lt;br&gt;I have used Netbeans 5.0 with CVS and everything is fine, but now EVERY new project I create in the IDE, Netbeans treats as if its going to be in the CVS repository.
&lt;br&gt;&lt;br&gt;Is there anyway to solve this?
&lt;br&gt;&lt;br&gt;Perhaps clear out the CVS login list? Or perhaps set it up so it doesn't log into CVS until you want it to? Or anyway you can just detach a project from CVS?
&lt;br&gt;&lt;br&gt;Regards
&lt;br&gt;Roridge</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Problem-creating-a-new-Project-OUTSIDE-CVS-tp2852330p2852330.html" />
</entry>

</feed>
