--server-mode?

View: New views
5 Messages — Rating Filter:   Alert me  

--server-mode?

by brian_gemborys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hi,

I'd like to integrate SmartSVN in small way into Visual Studio 2005.  Ideally I would like to be able to launch SmartSVN much like it's Windows File Explorer integration with a command line like

smartsvn --server-mode -execute-compare -filename1 -filename2

or something similar.  Is there any documentation for server mode available?  I couldn't find any online.  Is this even possible?  Thanks!

Brian



------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/smartsvn/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/smartsvn/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:smartsvn-digest@...
    mailto:smartsvn-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    smartsvn-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Re: --server-mode?

by syntevo Support-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> I'd like to integrate SmartSVN in small way into Visual Studio 2005.
> Ideally I would like to be able to launch SmartSVN much like it's Windows
> File Explorer integration with a command line like
>
> smartsvn --server-mode -execute-compare -filename1 -filename2
>
> or something similar.  Is there any documentation for server mode
> available?
> I couldn't find any online.  Is this even possible?  Thanks!

This should work fine. I've set up a blog article at:

 http://blog.syntevo.net/2009/10/15/1255628460000.html

--
Best regards,
Marc Strapetz
=============
syntevo GmbH
http://www.syntevo.com
http://blog.syntevo.com



"brian_gemborys" <brian.gemborys@...> wrote:

> Hi,
>
> I'd like to integrate SmartSVN in small way into Visual Studio 2005.  Ideally
> I would like to be able to launch SmartSVN much like it's Windows File
> Explorer integration with a command line like
>
> smartsvn --server-mode -execute-compare -filename1 -filename2
>
> or something similar.  Is there any documentation for server mode available?
> I couldn't find any online.  Is this even possible?  Thanks!
>
> Brian
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>








------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/smartsvn/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/smartsvn/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:smartsvn-digest@...
    mailto:smartsvn-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    smartsvn-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Re: --server-mode?

by brian_gemborys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks!  I still don't see how to execute this from the command line though.  I've tried

--server-mode "compare\n" "c:\\svn\\filename.cpp\n" "\n"

and this doesn't work.  I've also tried

--server-mode < compare.txt

where compare.txt contains

compare
c:\\svn\\filename.cpp

-Brian

--- In smartsvn@..., syntevo Support <smartsvn@...> wrote:

>
> > I'd like to integrate SmartSVN in small way into Visual Studio 2005.
> > Ideally I would like to be able to launch SmartSVN much like it's Windows
> > File Explorer integration with a command line like
> >
> > smartsvn --server-mode -execute-compare -filename1 -filename2
> >
> > or something similar.  Is there any documentation for server mode
> > available?
> > I couldn't find any online.  Is this even possible?  Thanks!
>
> This should work fine. I've set up a blog article at:
>
>  http://blog.syntevo.net/2009/10/15/1255628460000.html
>
> --
> Best regards,
> Marc Strapetz
> =============
> syntevo GmbH
> http://www.syntevo.com
> http://blog.syntevo.com
>
>
>
> "brian_gemborys" <brian.gemborys@...> wrote:
>
> > Hi,
> >
> > I'd like to integrate SmartSVN in small way into Visual Studio 2005.  Ideally
> > I would like to be able to launch SmartSVN much like it's Windows File
> > Explorer integration with a command line like
> >
> > smartsvn --server-mode -execute-compare -filename1 -filename2
> >
> > or something similar.  Is there any documentation for server mode available?
> > I couldn't find any online.  Is this even possible?  Thanks!
> >
> > Brian
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
>




------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/smartsvn/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/smartsvn/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:smartsvn-digest@...
    mailto:smartsvn-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    smartsvn-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Re: Re: --server-mode?

by syntevo Support-3 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

> Thanks!  I still don't see how to execute this from the command line
> though.
> I've tried
>
> --server-mode "compare\n" "c:\\svn\\filename.cpp\n" "\n"
>
> and this doesn't work.

You can't specify commands directly via program arguments, but instead have to
use socket communication as described in the blog article.

--
Best regards,
Marc Strapetz
=============
syntevo GmbH
http://www.syntevo.com
http://blog.syntevo.com



"brian_gemborys" <brian.gemborys@...> wrote:

> Thanks!  I still don't see how to execute this from the command line though.
> I've tried
>
> --server-mode "compare\n" "c:\\svn\\filename.cpp\n" "\n"
>
> and this doesn't work.  I've also tried
>
> --server-mode < compare.txt
>
> where compare.txt contains
>
> compare
> c:\\svn\\filename.cpp
>
> -Brian
>
> --- In smartsvn@..., syntevo Support <smartsvn@...> wrote:
> >
> > > I'd like to integrate SmartSVN in small way into Visual Studio 2005.
> > > Ideally I would like to be able to launch SmartSVN much like it's Windows
> > > File Explorer integration with a command line like
> > >
> > > smartsvn --server-mode -execute-compare -filename1 -filename2
> > >
> > > or something similar.  Is there any documentation for server mode
> > > available?
> > > I couldn't find any online.  Is this even possible?  Thanks!
> >
> > This should work fine. I've set up a blog article at:
> >
> >  http://blog.syntevo.net/2009/10/15/1255628460000.html
> >
> > --
> > Best regards,
> > Marc Strapetz
> > =============
> > syntevo GmbH
> > http://www.syntevo.com
> > http://blog.syntevo.com
> >
> >
> >
> > "brian_gemborys" <brian.gemborys@...> wrote:
> >
> > > Hi,
> > >
> > > I'd like to integrate SmartSVN in small way into Visual Studio 2005.  Ideally
> > > I would like to be able to launch SmartSVN much like it's Windows File
> > > Explorer integration with a command line like
> > >
> > > smartsvn --server-mode -execute-compare -filename1 -filename2
> > >
> > > or something similar.  Is there any documentation for server mode available?
> > > I couldn't find any online.  Is this even possible?  Thanks!
> > >
> > > Brian
> > >
> > >
> > >
> > > ------------------------------------
> > >
> > > Yahoo! Groups Links
> > >
> > >
> > >
> > >
> >
>
>
>
>
> ------------------------------------
>
> Yahoo! Groups Links
>
>
>
>








------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/smartsvn/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/smartsvn/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:smartsvn-digest@...
    mailto:smartsvn-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    smartsvn-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/


Re: --server-mode?

by brian_gemborys :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks!  I reworked your java program a bit and it now works perfectly for my purposes.

Brian

--- In smartsvn@..., syntevo Support <smartsvn@...> wrote:

>
> > Thanks!  I still don't see how to execute this from the command line
> > though.
> > I've tried
> >
> > --server-mode "compare\n" "c:\\svn\\filename.cpp\n" "\n"
> >
> > and this doesn't work.
>
> You can't specify commands directly via program arguments, but instead have to
> use socket communication as described in the blog article.
>
> --
> Best regards,
> Marc Strapetz
> =============
> syntevo GmbH
> http://www.syntevo.com
> http://blog.syntevo.com
>
>
>
> "brian_gemborys" <brian.gemborys@...> wrote:
>
> > Thanks!  I still don't see how to execute this from the command line though.
> > I've tried
> >
> > --server-mode "compare\n" "c:\\svn\\filename.cpp\n" "\n"
> >
> > and this doesn't work.  I've also tried
> >
> > --server-mode < compare.txt
> >
> > where compare.txt contains
> >
> > compare
> > c:\\svn\\filename.cpp
> >
> > -Brian
> >
> > --- In smartsvn@..., syntevo Support <smartsvn@> wrote:
> > >
> > > > I'd like to integrate SmartSVN in small way into Visual Studio 2005.
> > > > Ideally I would like to be able to launch SmartSVN much like it's Windows
> > > > File Explorer integration with a command line like
> > > >
> > > > smartsvn --server-mode -execute-compare -filename1 -filename2
> > > >
> > > > or something similar.  Is there any documentation for server mode
> > > > available?
> > > > I couldn't find any online.  Is this even possible?  Thanks!
> > >
> > > This should work fine. I've set up a blog article at:
> > >
> > >  http://blog.syntevo.net/2009/10/15/1255628460000.html
> > >
> > > --
> > > Best regards,
> > > Marc Strapetz
> > > =============
> > > syntevo GmbH
> > > http://www.syntevo.com
> > > http://blog.syntevo.com
> > >
> > >
> > >
> > > "brian_gemborys" <brian.gemborys@> wrote:
> > >
> > > > Hi,
> > > >
> > > > I'd like to integrate SmartSVN in small way into Visual Studio 2005.  Ideally
> > > > I would like to be able to launch SmartSVN much like it's Windows File
> > > > Explorer integration with a command line like
> > > >
> > > > smartsvn --server-mode -execute-compare -filename1 -filename2
> > > >
> > > > or something similar.  Is there any documentation for server mode available?
> > > > I couldn't find any online.  Is this even possible?  Thanks!
> > > >
> > > > Brian
> > > >
> > > >
> > > >
> > > > ------------------------------------
> > > >
> > > > Yahoo! Groups Links
> > > >
> > > >
> > > >
> > > >
> > >
> >
> >
> >
> >
> > ------------------------------------
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
>




------------------------------------

Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/smartsvn/

<*> Your email settings:
    Individual Email | Traditional

<*> To change settings online go to:
    http://groups.yahoo.com/group/smartsvn/join
    (Yahoo! ID required)

<*> To change settings via email:
    mailto:smartsvn-digest@...
    mailto:smartsvn-fullfeatured@...

<*> To unsubscribe from this group, send an email to:
    smartsvn-unsubscribe@...

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/