Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




implemention Rus letters from SVN to Gemini

add-ons

Hello everyone,
we use Gemini, svn and adapter for it. They connected to each other almost without problems, but the comments in SVN written in Russian display correctly, and their representation in Gemini incorrect: "╥хёЄ". maybe anyone can give an advise how to fix this problem

Lana
· 1
Lana
Replies (2)
helpful
0
not helpful

You can try and edit the SVN solution and add encoding of the standard output.

Modify the SvnLookCaller.cs file and add:

svnLook.StartInfo.StandardOutputEncoding = System.Text.Encoding. // Add the encoding for you here.

after the line:

svnLook.StartInfo.RedirectStandardOutput = true;


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

we modify the SvnLookCaller.cs file as you've sad and add this line:
svnLook.StartInfo.StandardOutputEncoding = System.Text.Encoding.Default;
the problem is fixed.
thanks for yours advise.


Lana
· 1
Lana