Re: [xwiki-devs] [xwiki-notifications] r19164 - xoffice/trunk/xword/XWikiLib/Clients
fciubotaru (SVN) wrote:
Author: fciubotaru Date: 2009-04-28 18:39:39 +0200 (Tue, 28 Apr 2009) New Revision: 19164
Modified: xoffice/trunk/xword/XWikiLib/Clients/XWikiHTTPClient.cs xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs Log: XOFFICE-67 Implement the XmlRpc client using the CookComputing proxy Modified: xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs =================================================================== --- xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs 2009-04-28 15:46:05 UTC (rev 19163) +++ xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs 2009-04-28 16:39:39 UTC (rev 19164) @@ -2,20 +2,52 @@
This should be configurable, since not all instances use /xwiki/
+ private const string XML_RPC_PATH = "/xwiki/xmlrpc";
Typo:
+ /// <param name="password">The passowrd used to authenticate.</param>
You forgot to implement this:
+ /// <summary> + /// G + /// </summary> + /// <param name="docName"></param> + /// <returns></returns> public System.IO.Stream GetWikiPageAsPlainHTML(string docName) { throw new NotImplementedException(); }
-- Sergiu Dumitriu http://purl.org/net/sergiu/
Sergiu Dumitriu wrote:
fciubotaru (SVN) wrote:
Author: fciubotaru Date: 2009-04-28 18:39:39 +0200 (Tue, 28 Apr 2009) New Revision: 19164
Modified: xoffice/trunk/xword/XWikiLib/Clients/XWikiHTTPClient.cs xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs Log: XOFFICE-67 Implement the XmlRpc client using the CookComputing proxy Modified: xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs =================================================================== --- xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs 2009-04-28 15:46:05 UTC (rev 19163) +++ xoffice/trunk/xword/XWikiLib/Clients/XWikiXMLRPCClient.cs 2009-04-28 16:39:39 UTC (rev 19164) @@ -2,20 +2,52 @@
This should be configurable, since not all instances use /xwiki/
It will be. There is no way to get the server settings with the current API. It needs to be enriched. Another solution is to let the user to set the full address(as in XEclipse), but even devs has problems with that, I don't think it's the best option for XWord users.
+ private const string XML_RPC_PATH = "/xwiki/xmlrpc";
Typo:
OK, thanks.
+ /// <param name="password">The passowrd used to authenticate.</param>
You forgot to implement this:
This one was removed in the next commit(R19165). I still have some unimplemented methods, I'll commit them in more then one step. The class is not used yet in the Add-in.
+ /// <summary> + /// G + /// </summary> + /// <param name="docName"></param> + /// <returns></returns> public System.IO.Stream GetWikiPageAsPlainHTML(string docName) { throw new NotImplementedException(); }
participants (2)
-
Florin Ciubotaru -
Sergiu Dumitriu