IMO, the better thing to do is bypass the Mono part altogether, and just get the source and do the patching on your Windows machine.
IMO, the better thing to do is bypass the Mono part altogether, and just get the source and do the patching on your Windows machine.
If my post helped you, please click theicon below this post to my reputation. Thanks!
Thank you guys!
I finally succeeded in obtaining the french version of Desktop Connector
All is on this page.
Some content will be added later (already done, but stupidly erased by this wiki when saving...)
To yasuaki : 3 very little corrections added to initial source
- in SettingsDialog.cs defaultButton_Click and deleteButton_Click now test if a line is selected before clicking
- in DekiCommunicator.cs (line 483) DreamMessage now use TEXT_UTF8 to have correct french accentuated characters
Last edited by Bizzz; 12-20-2009 at 11:27 PM.
I'm trying to re-build the CDC w/ the source which Bizzz has posted on his user page.
The sources have been unzipped to a directory to which SglReaderDll.dll, log4net.dll, and mindtouch.dream.dll have been copied. When I try to rebuild, I get the following errors.
Error 1 Inconsistent accessibility: parameter type 'DesktopConnector.NavigateEventArgs' is less accessible than delegate 'DesktopConnector.NavigateEventHandler' C:\Users\jeanpkim\Downloads\DesktopConnector_sourc es_fr\DesktopConnector\DirectoryTreeView.cs 43 26 mindtouch.deki.desktop
Erroir 2 Inconsistent accessibility: parameter type 'DesktopConnector.LoginSettingsEventArgs' is less accessible than delegate 'DesktopConnector.LoginSettingsEventHandler' C:\Users\jeanpkim\Downloads\DesktopConnector_sourc es_fr\DesktopConnector\DirectoryTreeView.cs 44 26 mindtouch.deki.desktop
What am I doing wrong here?
OS: Win7
Compiler: Visual C# Express 2008 (Eng)
This is a problem with compiling with the free Express Edition.
Try changing line 1090 (or nearby):
toCode:internal class LoginSettingsEventArgs : EventArgs {
and the same with NavigateEventArgs on 1139.Code:public class LoginSettingsEventArgs : EventArgs {
Then. join with me in celebrating, as this is my 2000th post.
If my post helped you, please click theicon below this post to my reputation. Thanks!
Bizzz,
Great work! I am convinced of the selection of your correct road because I read your hardship story.I saw your careful work and believe that MindTouch user in francophonie is very happy by your work.
I will port your correction to original code, and I will update build procedure of the "Community Desktop Connector(CDC)".
By the way, I noticed there was a problem in the CDC from a recent event. It is as follows.
1) We want to separate the code and the message, and to prevent the volunteer's effort from getting scattered and lost.
2) We want to integrate the release pages for user's convenience.
However, I am not developer as well as Bizzz but we have not concrete solution.
What idea does everyone have ? Or, is it my imaginary fears?![]()
YasuakiHasegawa
We could host it somewhere like Google Code?
If my post helped you, please click theicon below this post to my reputation. Thanks!
Or we can provide SVN access to a community area. Personally, I'd rather not see this fragmented all over the web. The CDC is hopefully the first of many components that will flourish on their own. Making it easy to discover and participate is as crucial as is good management of contributions. I'll be happy to assist to make this happen.
CRB if you have time to attend our next community task force meeting, please make sure to bring this up.
Steve G. Bjorg - Chief Architect
Did you check the MindTouch FAQ?
Found a bug? Report it.
Follow me on Twitter
Find us on IRC: irc.freenode.net #mindtouch
Yasuaki,
First of all, a big THANK YOU for starting a community version of the Desktop Connector, I think the tool sounds great and I can't wait to use it.
I am having a problem getting the CDC working. The issue I am seeing is once I am connected, I get a blank window (see the attached image for a screenshot). I cannot browse the Wiki or see any pages.
I have monitored the application using Fiddler, and can see that the API path that is being used by the application is "http://wiki_site/@api/..." etc, whereas my install uses a different API path "http://wiki_site/api/..." (minus the "@" symbol). I believe that this may be the cause of the issue as to why I am getting an empty screen on the CDC - the application cannot authenticate me (please see the attached Fiddler screenshot).
I have 2 questions I was hoping you might be able to answer:
1. Do you think this is what could be causing the issue?
2. Do you know if there would be any way to fix this if it is the case?
Many thanks in advance and really hope I can get this application working for me.
Kind regards,
AJ
Hey arandall,
Thanks for your feedback for the CDC. I'm glad your charming compliment.
I guess the cause of the issue are that the API path was hard-coded in source code named "DekiCommunicator.cs"[1] quoted as below.
So I believe you need re-build the CDC before correct above definition to resolve the issue. However we need enough verification. Can you do this ?Code:private const String API_SUBPATH = "/@api/deki";
Perhaps there's the same requirement fix the issue. I'm hoping to take a moment to do this work.
[1] DekiCommunicator.cs https://svn.mindtouch.com/source/pub...ommunicator.cs
YasuakiHasegawa