-
Notifications
You must be signed in to change notification settings - Fork 12
/
Changes
46 lines (26 loc) · 1.28 KB
/
Changes
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
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.)