forked from duncantl/XMLRPC
-
Notifications
You must be signed in to change notification settings - Fork 4
/
NEWS
58 lines (34 loc) · 1.58 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Version 0.4.0
* Fork from omegahat.net version
* Drop RCurl in favour of httr
* No longer provide XMLRPCServer
* Move to testthat
* Move to base64enc instead of RCurl::base64
Version 0.3-1
* Fix from Joseph Guillaume to recursively call rpc.serialize() on elements of a list.
Version 0.3-0
* Serialization of R vectors to XML is much faster now, using parseXMLAndAdd().
Thanks to Paul Shannon for noticing the very long delays in serializing
large vectors.
Version 0.2-5
* Fixed the rpc.serialize method for raw so that it doesn't convert the values
to character strings implicitly via a call go gsub().
Version 0.2-4
* Removed trailing , in switch() call.
Version 0.2-3
* Remove any newlines (\n) in base64 encoded content returned in an XMLRPC call.
Version 0.2-1
* Enclose <array> within a <value> node.
Version 0.2-1
* Handle string values that are returned as <value>string content</value> with no
outer <string>...</string>. Doagnosed and suggested by Paul Shannon.
Version 0.2-0
* Put text in CDATA nodes.
* Handle the conversion of results for lists better so as not to simplify them inappropriately.
* Added serialization for raw vectors to base64 encoded content in base64 nodes.
* convertToR doesn't try to simplify the results (i.e. it does not use xpathSApply) for each
of the value nodes in the response.
Version 0.1-2
* Patches from Andrea Bisognin to detect errors
Version 0.1-1
* Put primitive values inside a <value> node as they should be. (Strings are a special optional case.)