libxml4r 0.0.0 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- data/.autotest +30 -0
- data/README.rdoc +113 -9
- data/Rakefile +2 -1
- data/VERSION +1 -1
- data/lib/libxml4r.rb +229 -0
- data/libxml4r.gemspec +98 -0
- data/test/test_helper.rb +39 -0
- data/test/test_libxml4r.rb +34 -3
- data/test/test_xml_modifiers.rb +57 -0
- data/test/test_xml_outputters.rb +53 -0
- data/test/test_xml_readers.rb +59 -0
- data/test/xml/atom.xml +13 -0
- data/test/xml/books.xml +146 -0
- data/test/xml/breakfast_menu.xml +38 -0
- data/test/xml/document.xml +49 -0
- data/test/xml/merge_bug_data.xml +58 -0
- data/test/xml/namespaces.xml +22 -0
- data/test/xml/parts_system.xml +31 -0
- data/test/xml/plant_catalog.xml +336 -0
- data/test/xml/recipie.xml +18 -0
- data/test/xml/rss1.xml +58 -0
- data/test/xml/rss2.xml +56 -0
- data/test/xml/ruby_lang.xhtml +238 -0
- data/test/xml/rubynet.xml +79 -0
- data/test/xml/shiporder.xls +86 -0
- data/test/xml/shiporder.xml +23 -0
- data/test/xml/shiporder.xsd +31 -0
- data/test/xml/soap_create_path.xml +15 -0
- data/test/xml/soap_create_path_response.xml +16 -0
- data/test/xml/soap_create_reservation.xml +25 -0
- data/test/xml/soap_create_reservation_response.xml +64 -0
- data/test/xml/soap_get_price.xml +11 -0
- data/test/xml/soap_get_price_response.xml +11 -0
- data/test/xml/soap_manufacturer_names_response.xml +27 -0
- data/test/xml/soap_order_item.xml +17 -0
- data/test/xml/soap_order_item_response.xml +10 -0
- data/test/xml/soap_refresh_path.xml +15 -0
- data/test/xml/soap_refresh_path_response.xml +16 -0
- data/test/xml/soap_teardown_path.xml +15 -0
- data/test/xml/soap_teardown_path_response.xml +16 -0
- metadata +52 -3
@@ -0,0 +1,86 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<!--
|
3
|
+
|
4
|
+
relax ng schema in compact syntax; this cannot be used within libxml but
|
5
|
+
was used to write the schema as it's easier to understand
|
6
|
+
|
7
|
+
-->
|
8
|
+
<grammar xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://relaxng.org/ns/structure/1.0">
|
9
|
+
<start>
|
10
|
+
<ref name="shiporder"/>
|
11
|
+
</start>
|
12
|
+
<define name="shiporder">
|
13
|
+
<element name="shiporder">
|
14
|
+
<attribute name="orderid"/>
|
15
|
+
<attribute name="xsi:noNamespaceSchemaLocation"/>
|
16
|
+
<ref name="orderperson"/>
|
17
|
+
<ref name="shipto"/>
|
18
|
+
<zeroOrMore>
|
19
|
+
<ref name="item"/>
|
20
|
+
</zeroOrMore>
|
21
|
+
</element>
|
22
|
+
</define>
|
23
|
+
<define name="orderperson">
|
24
|
+
<element name="orderperson">
|
25
|
+
<text/>
|
26
|
+
</element>
|
27
|
+
</define>
|
28
|
+
<define name="shipto">
|
29
|
+
<element name="shipto">
|
30
|
+
<ref name="name"/>
|
31
|
+
<ref name="address"/>
|
32
|
+
<ref name="city"/>
|
33
|
+
<ref name="country"/>
|
34
|
+
</element>
|
35
|
+
</define>
|
36
|
+
<define name="name">
|
37
|
+
<element name="name">
|
38
|
+
<text/>
|
39
|
+
</element>
|
40
|
+
</define>
|
41
|
+
<define name="address">
|
42
|
+
<element name="address">
|
43
|
+
<text/>
|
44
|
+
</element>
|
45
|
+
</define>
|
46
|
+
<define name="city">
|
47
|
+
<element name="city">
|
48
|
+
<text/>
|
49
|
+
</element>
|
50
|
+
</define>
|
51
|
+
<define name="country">
|
52
|
+
<element name="country">
|
53
|
+
<text/>
|
54
|
+
</element>
|
55
|
+
</define>
|
56
|
+
<define name="item">
|
57
|
+
<element name="item">
|
58
|
+
<ref name="title"/>
|
59
|
+
<optional>
|
60
|
+
<ref name="note"/>
|
61
|
+
</optional>
|
62
|
+
<ref name="quantity"/>
|
63
|
+
<ref name="price"/>
|
64
|
+
</element>
|
65
|
+
</define>
|
66
|
+
<define name="title">
|
67
|
+
<element name="title">
|
68
|
+
<text/>
|
69
|
+
</element>
|
70
|
+
</define>
|
71
|
+
<define name="note">
|
72
|
+
<element name="note">
|
73
|
+
<text/>
|
74
|
+
</element>
|
75
|
+
</define>
|
76
|
+
<define name="quantity">
|
77
|
+
<element name="quantity">
|
78
|
+
<text/>
|
79
|
+
</element>
|
80
|
+
</define>
|
81
|
+
<define name="price">
|
82
|
+
<element name="price">
|
83
|
+
<text/>
|
84
|
+
</element>
|
85
|
+
</define>
|
86
|
+
</grammar>
|
@@ -0,0 +1,23 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<shiporder orderid="889923"
|
3
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
+
xsi:noNamespaceSchemaLocation="shiporder.xsd">
|
5
|
+
<orderperson>John Smith</orderperson>
|
6
|
+
<shipto>
|
7
|
+
<name>Ola Nordmann</name>
|
8
|
+
<address>Langgt 23</address>
|
9
|
+
<city>4000 Stavanger</city>
|
10
|
+
<country>Norway</country>
|
11
|
+
</shipto>
|
12
|
+
<item>
|
13
|
+
<title>Empire Burlesque</title>
|
14
|
+
<note>Special Edition</note>
|
15
|
+
<quantity>1</quantity>
|
16
|
+
<price>10.90</price>
|
17
|
+
</item>
|
18
|
+
<item>
|
19
|
+
<title>Hide your heart</title>
|
20
|
+
<quantity>1</quantity>
|
21
|
+
<price>9.90</price>
|
22
|
+
</item>
|
23
|
+
</shiporder>
|
@@ -0,0 +1,31 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1" ?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
3
|
+
<xs:element name="shiporder">
|
4
|
+
<xs:complexType>
|
5
|
+
<xs:sequence>
|
6
|
+
<xs:element name="orderperson" type="xs:string"/>
|
7
|
+
<xs:element name="shipto">
|
8
|
+
<xs:complexType>
|
9
|
+
<xs:sequence>
|
10
|
+
<xs:element name="name" type="xs:string"/>
|
11
|
+
<xs:element name="address" type="xs:string"/>
|
12
|
+
<xs:element name="city" type="xs:string"/>
|
13
|
+
<xs:element name="country" type="xs:string"/>
|
14
|
+
</xs:sequence>
|
15
|
+
</xs:complexType>
|
16
|
+
</xs:element>
|
17
|
+
<xs:element name="item" maxOccurs="unbounded">
|
18
|
+
<xs:complexType>
|
19
|
+
<xs:sequence>
|
20
|
+
<xs:element name="title" type="xs:string"/>
|
21
|
+
<xs:element name="note" type="xs:string" minOccurs="0"/>
|
22
|
+
<xs:element name="quantity" type="xs:positiveInteger"/>
|
23
|
+
<xs:element name="price" type="xs:decimal"/>
|
24
|
+
</xs:sequence>
|
25
|
+
</xs:complexType>
|
26
|
+
</xs:element>
|
27
|
+
</xs:sequence>
|
28
|
+
<xs:attribute name="orderid" type="xs:string" use="required"/>
|
29
|
+
</xs:complexType>
|
30
|
+
</xs:element>
|
31
|
+
</xs:schema>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:createPath xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId >
|
12
|
+
</m:createPath>
|
13
|
+
</soap:Body>
|
14
|
+
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:createPathResponse xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId>
|
12
|
+
<m:status>ACTIVE</m:status>
|
13
|
+
</m:createPathResponse>
|
14
|
+
</soap:Body>
|
15
|
+
|
16
|
+
</soap:Envelope>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:createReservation xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:startTime>1179755264</m:startTime>
|
12
|
+
<m:endTime>1179755864</m:endTime>
|
13
|
+
<m:bandwidth>1000</m:bandwidth>
|
14
|
+
<m:description>Example reservation</m:description>
|
15
|
+
<m:pathInfo>
|
16
|
+
<m:pathSetupMode>user-xml</pathSetupMode>
|
17
|
+
<m:layer2Info>
|
18
|
+
<m:srcEndpoint>urn:ogf:network:domain1:node1:port1:link1</m:srcEndpoint>
|
19
|
+
<m:destEndpoint>urn:ogf:network:domain3:node2:port2:link1</m:destEndpoint>
|
20
|
+
</m:layer2Info>
|
21
|
+
</m:pathInfo>
|
22
|
+
</m:createReservation>
|
23
|
+
</soap:Body>
|
24
|
+
|
25
|
+
</soap:Envelope>
|
@@ -0,0 +1,64 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:createReservationResponse xmlns:m="http://oscars.es.net/OSCARS"
|
11
|
+
xmlns:ctrlp="http://ogf.org/schema/network/topology/ctrlPlane/20070707">
|
12
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId>
|
13
|
+
<m:status>PENDING</m:status>
|
14
|
+
<m:pathInfo>
|
15
|
+
<m:pathSetupMode>user-xml</m:pathSetupMode>
|
16
|
+
<ctrlp:path id="path1">
|
17
|
+
<ctrlp:hop id="1">
|
18
|
+
<ctrlp:linkIdRef>
|
19
|
+
urn:ogf:network:domain1:node1:port1:link1
|
20
|
+
</ctrlp:linkIdRef>
|
21
|
+
</ctrlp:hop>
|
22
|
+
|
23
|
+
<ctrlp:hop id="2">
|
24
|
+
<ctrlp:linkIdRef>
|
25
|
+
urn:ogf:network:domain1:node2:port2:link1
|
26
|
+
</ctrlp:linkIdRef>
|
27
|
+
</ctrlp:hop>
|
28
|
+
|
29
|
+
<ctrlp:hop id="3">
|
30
|
+
<ctrlp:linkIdRef>
|
31
|
+
urn:ogf:network:domain2:node1:port1:link1
|
32
|
+
</ctrlp:linkIdRef>
|
33
|
+
</ctrlp:hop>
|
34
|
+
|
35
|
+
<ctrlp:hop id="4">
|
36
|
+
<ctrlp:linkIdRef>
|
37
|
+
urn:ogf:network:domain2:node2:port2:link1
|
38
|
+
</ctrlp:linkIdRef>
|
39
|
+
</ctrlp:hop>
|
40
|
+
|
41
|
+
<ctrlp:hop id="5">
|
42
|
+
<ctrlp:linkIdRef>
|
43
|
+
urn:ogf:network:domain3:node1:port1:link1
|
44
|
+
</ctrlp:linkIdRef>
|
45
|
+
</ctrlp:hop>
|
46
|
+
|
47
|
+
<ctrlp:hop id="6">
|
48
|
+
<ctrlp:linkIdRef>
|
49
|
+
urn:ogf:network:domain3:node2:port2:link1
|
50
|
+
</ctrlp:linkIdRef>
|
51
|
+
</ctrlp:hop>
|
52
|
+
</ctrlp:path>
|
53
|
+
|
54
|
+
<m:layer2Info>
|
55
|
+
<m:srcEndpoint>urn:ogf:network:domain1:node1:port1:link1</m:srcEndpoint>
|
56
|
+
<m:srcVtag tagged="true">3000</m:srcVtag>
|
57
|
+
<m:destEndpoint>urn:ogf:network:domain3:node2:port2:link1</m:destEndpoint>
|
58
|
+
<m:destVtag tagged="true">3000</m:destVtag>
|
59
|
+
</m:layer2Info>
|
60
|
+
</m:pathInfo>
|
61
|
+
</m:createReservationResponse>
|
62
|
+
</soap:Body>
|
63
|
+
|
64
|
+
</soap:Envelope>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://www.w3schools.com/SOAP/soap_body.asp -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
<soap:Body>
|
7
|
+
<m:GetPrice xmlns:m="http://www.w3schools.com/prices">
|
8
|
+
<m:Item>Apples</m:Item>
|
9
|
+
</m:GetPrice>
|
10
|
+
</soap:Body>
|
11
|
+
</soap:Envelope>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://www.w3schools.com/SOAP/soap_body.asp -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
<soap:Body>
|
7
|
+
<m:GetPriceResponse xmlns:m="http://www.w3schools.com/prices">
|
8
|
+
<m:Price>1.90</m:Price>
|
9
|
+
</m:GetPriceResponse>
|
10
|
+
</soap:Body>
|
11
|
+
</soap:Envelope>
|
@@ -0,0 +1,27 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
2
|
+
<soap:Envelope
|
3
|
+
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
|
4
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
5
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
6
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
7
|
+
<soap:Body>
|
8
|
+
<getManufacturerNamesResponse name="widgestRus" xmlns="http://services.somewhere.com">
|
9
|
+
<IDAndNameList xmlns="http://services.somewhere.com">
|
10
|
+
<ns1:IdAndName xmlns:ns1="http://domain.somewhere.com">
|
11
|
+
<id xmlns="http://domain.somewhere.com">1</id>
|
12
|
+
<name xmlns="http://domain.somewhere.com">man1</name>
|
13
|
+
|
14
|
+
</ns1:IdAndName>
|
15
|
+
<ns1:IdAndName xmlns:ns1="http://domain.somewhere.com">
|
16
|
+
<id xmlns="http://domain.somewhere.com">2</id>
|
17
|
+
<name xmlns="http://domain.somewhere.com">man2</name>
|
18
|
+
|
19
|
+
</ns1:IdAndName>
|
20
|
+
<ns1:IdAndName xmlns:ns1="http://domain.somewhere.com">
|
21
|
+
<id xmlns="http://domain.somewhere.com">3</id>
|
22
|
+
<name xmlns="http://domain.somewhere.com">man3</name>
|
23
|
+
</ns1:IdAndName>
|
24
|
+
</IDAndNameList>
|
25
|
+
</getManufacturerNamesResponse>
|
26
|
+
</soap:Body>
|
27
|
+
</soap:Envelope>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/rzamy/50/webserv/wssoapexam.htm -->
|
3
|
+
<SOAP-ENV:Envelope
|
4
|
+
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
|
5
|
+
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
|
6
|
+
<SOAP-ENV:Body>
|
7
|
+
<m:OrderItem xmlns:m="Some-URI">
|
8
|
+
<RetailerID>557010</RetailerID>
|
9
|
+
<ItemNumber>1050420459</ItemNumber>
|
10
|
+
<ItemName>AMF Night Hawk Pearl M2</ItemName>
|
11
|
+
<ItemDesc>Bowling Ball</ItemDesc>
|
12
|
+
<OrderQuantity>100</OrderQuantity>
|
13
|
+
<WholesalePrice>130.95</WholeSalePrice>
|
14
|
+
<OrderDateTime>2000-06-19 10:09:56</OrderDateTime>
|
15
|
+
</m:OrderItem>
|
16
|
+
</SOAP-ENV:Body>
|
17
|
+
</SOAP-ENV:Envelope>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- http://publib.boulder.ibm.com/infocenter/iseries/v5r4/topic/rzamy/50/webserv/wssoapexam.htm -->
|
3
|
+
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
|
4
|
+
SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
5
|
+
<SOAP-ENV:Body>
|
6
|
+
<m:OrderItemResponse xmlns:m="Some-URI">
|
7
|
+
<OrderNumber>561381</OrderNumber>
|
8
|
+
</m:OrderItemResponse>
|
9
|
+
</SOAP-ENV:Body>
|
10
|
+
</SOAP-ENV:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:refreshPath xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId >
|
12
|
+
</m:refreshPath>
|
13
|
+
</soap:Body>
|
14
|
+
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:refreshPathResponse xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId>
|
12
|
+
<m:status>ACTIVE</m:status>
|
13
|
+
</m:refreshPathResponse>
|
14
|
+
</soap:Body>
|
15
|
+
|
16
|
+
</soap:Envelope>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:teardownPath xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId >
|
12
|
+
</m:teardownPath>
|
13
|
+
</soap:Body>
|
14
|
+
|
15
|
+
</soap:Envelope>
|
@@ -0,0 +1,16 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<!-- https://wiki.internet2.edu/confluence/display/CPD/OSCARS+Client+Messaging -->
|
3
|
+
<soap:Envelope
|
4
|
+
xmlns:soap="http://www.w3.org/2001/12/soap-envelope"
|
5
|
+
soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding">
|
6
|
+
|
7
|
+
<!-- Security headers and X.509 go here -->
|
8
|
+
|
9
|
+
<soap:Body>
|
10
|
+
<m:teardownPathResponse xmlns:m="http://oscars.es.net/OSCARS">
|
11
|
+
<m:globalReservationId>domain1-1000</m:globalReservationId>
|
12
|
+
<m:status>PENDING</m:status>
|
13
|
+
</m:teardownPathResponse>
|
14
|
+
</soap:Body>
|
15
|
+
|
16
|
+
</soap:Envelope>
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libxml4r
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dreamcat4
|
@@ -9,9 +9,19 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2010-03-
|
12
|
+
date: 2010-03-09 00:00:00 +00:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: libxml-ruby
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.1.3
|
24
|
+
version:
|
15
25
|
- !ruby/object:Gem::Dependency
|
16
26
|
name: thoughtbot-shoulda
|
17
27
|
type: :development
|
@@ -32,7 +42,7 @@ dependencies:
|
|
32
42
|
- !ruby/object:Gem::Version
|
33
43
|
version: "0"
|
34
44
|
version:
|
35
|
-
description: Libxml4r is a light set of methods and bolt-ons which aren't maintained by the core libxml ruby library. These methods aim to provide a more easy to use xml API. All libxml4r methods are mixed into the original LibXML::classes. (This gem was previously called
|
45
|
+
description: Libxml4r is a light set of methods and bolt-ons which aren't maintained by the core libxml ruby library. These methods aim to provide a more easy to use xml API. All libxml4r methods are mixed into the original LibXML::classes. (This gem was previously called libxml4r).
|
36
46
|
email: dreamcat4@gmail.com
|
37
47
|
executables: []
|
38
48
|
|
@@ -42,6 +52,7 @@ extra_rdoc_files:
|
|
42
52
|
- LICENSE
|
43
53
|
- README.rdoc
|
44
54
|
files:
|
55
|
+
- .autotest
|
45
56
|
- .document
|
46
57
|
- .gitignore
|
47
58
|
- LICENSE
|
@@ -49,8 +60,42 @@ files:
|
|
49
60
|
- Rakefile
|
50
61
|
- VERSION
|
51
62
|
- lib/libxml4r.rb
|
63
|
+
- libxml4r.gemspec
|
52
64
|
- test/helper.rb
|
65
|
+
- test/test_helper.rb
|
53
66
|
- test/test_libxml4r.rb
|
67
|
+
- test/test_xml_modifiers.rb
|
68
|
+
- test/test_xml_outputters.rb
|
69
|
+
- test/test_xml_readers.rb
|
70
|
+
- test/xml/atom.xml
|
71
|
+
- test/xml/books.xml
|
72
|
+
- test/xml/breakfast_menu.xml
|
73
|
+
- test/xml/document.xml
|
74
|
+
- test/xml/merge_bug_data.xml
|
75
|
+
- test/xml/namespaces.xml
|
76
|
+
- test/xml/parts_system.xml
|
77
|
+
- test/xml/plant_catalog.xml
|
78
|
+
- test/xml/recipie.xml
|
79
|
+
- test/xml/rss1.xml
|
80
|
+
- test/xml/rss2.xml
|
81
|
+
- test/xml/ruby_lang.xhtml
|
82
|
+
- test/xml/rubynet.xml
|
83
|
+
- test/xml/shiporder.xls
|
84
|
+
- test/xml/shiporder.xml
|
85
|
+
- test/xml/shiporder.xsd
|
86
|
+
- test/xml/soap_create_path.xml
|
87
|
+
- test/xml/soap_create_path_response.xml
|
88
|
+
- test/xml/soap_create_reservation.xml
|
89
|
+
- test/xml/soap_create_reservation_response.xml
|
90
|
+
- test/xml/soap_get_price.xml
|
91
|
+
- test/xml/soap_get_price_response.xml
|
92
|
+
- test/xml/soap_manufacturer_names_response.xml
|
93
|
+
- test/xml/soap_order_item.xml
|
94
|
+
- test/xml/soap_order_item_response.xml
|
95
|
+
- test/xml/soap_refresh_path.xml
|
96
|
+
- test/xml/soap_refresh_path_response.xml
|
97
|
+
- test/xml/soap_teardown_path.xml
|
98
|
+
- test/xml/soap_teardown_path_response.xml
|
54
99
|
has_rdoc: true
|
55
100
|
homepage: http://github.com/dreamcat4/libxml4r
|
56
101
|
licenses: []
|
@@ -81,4 +126,8 @@ specification_version: 3
|
|
81
126
|
summary: Libxml4r provides convenience methods around the core libxml-ruby classes.
|
82
127
|
test_files:
|
83
128
|
- test/helper.rb
|
129
|
+
- test/test_helper.rb
|
84
130
|
- test/test_libxml4r.rb
|
131
|
+
- test/test_xml_modifiers.rb
|
132
|
+
- test/test_xml_outputters.rb
|
133
|
+
- test/test_xml_readers.rb
|