elibri_onix 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +2 -1
- data/Gemfile.lock +3 -1
- data/elibri_onix.gemspec +48 -5
- data/lib/elibri_onix.rb +3 -0
- data/lib/elibri_onix/inspector.rb +25 -0
- data/lib/elibri_onix/onix_3_0/audience_range.rb +4 -3
- data/lib/elibri_onix/onix_3_0/collection.rb +10 -1
- data/lib/elibri_onix/onix_3_0/contributor.rb +9 -0
- data/lib/elibri_onix/onix_3_0/extent.rb +17 -3
- data/lib/elibri_onix/onix_3_0/header.rb +1 -0
- data/lib/elibri_onix/onix_3_0/imprint.rb +1 -0
- data/lib/elibri_onix/onix_3_0/language.rb +14 -2
- data/lib/elibri_onix/onix_3_0/measure.rb +12 -2
- data/lib/elibri_onix/onix_3_0/onix_message.rb +2 -1
- data/lib/elibri_onix/onix_3_0/price.rb +1 -0
- data/lib/elibri_onix/onix_3_0/product.rb +97 -67
- data/lib/elibri_onix/onix_3_0/product_identifier.rb +10 -1
- data/lib/elibri_onix/onix_3_0/publisher.rb +3 -1
- data/lib/elibri_onix/onix_3_0/publishing_date.rb +11 -2
- data/lib/elibri_onix/onix_3_0/related_product.rb +1 -0
- data/lib/elibri_onix/onix_3_0/sales_restriction.rb +1 -0
- data/lib/elibri_onix/onix_3_0/sender.rb +2 -0
- data/lib/elibri_onix/onix_3_0/stock_quantity_coded.rb +1 -0
- data/lib/elibri_onix/onix_3_0/subject.rb +1 -0
- data/lib/elibri_onix/onix_3_0/supplier.rb +1 -0
- data/lib/elibri_onix/onix_3_0/supplier_identifier.rb +1 -0
- data/lib/elibri_onix/onix_3_0/supply_detail.rb +1 -0
- data/lib/elibri_onix/onix_3_0/supporting_resource.rb +24 -5
- data/lib/elibri_onix/onix_3_0/text_content.rb +15 -2
- data/lib/elibri_onix/onix_3_0/title_detail.rb +21 -9
- data/lib/elibri_onix/onix_3_0/title_element.rb +15 -4
- data/lib/elibri_onix/version.rb +1 -1
- data/test/elibri_audience_range_test.rb +14 -0
- data/test/elibri_contributors_test.rb +37 -0
- data/test/elibri_edition_test.rb +10 -0
- data/test/elibri_extensions_test.rb +14 -0
- data/test/elibri_extent_test.rb +15 -0
- data/test/elibri_languages_test.rb +14 -0
- data/test/elibri_measurement_test.rb +16 -0
- data/test/elibri_onix_release_3_0_onix_message_test.rb +19 -28
- data/test/elibri_product_form_test.rb +12 -0
- data/test/elibri_publisher_info_test.rb +12 -0
- data/test/elibri_publishing_status_test.rb +41 -0
- data/test/elibri_record_identifiers_test.rb +16 -0
- data/test/elibri_sale_restrictions_test.rb +11 -0
- data/test/elibri_series_memberships_test.rb +16 -0
- data/test/elibri_supporting_resources_test.rb +12 -0
- data/test/elibri_texts_test.rb +16 -0
- data/test/elibri_titles_test.rb +24 -0
- data/test/fixtures/old_dialect.xml +10 -0
- data/test/fixtures/onix_announced_product_example.xml +54 -0
- data/test/fixtures/onix_audience_range_example.xml +44 -0
- data/test/fixtures/onix_audiobook_extent_example.xml +39 -0
- data/test/fixtures/onix_collective_work_example.xml +38 -0
- data/test/fixtures/onix_contributors_example.xml +53 -0
- data/test/fixtures/onix_ebook_extent_example.xml +45 -0
- data/test/fixtures/onix_edition_example.xml +35 -0
- data/test/fixtures/onix_elibri_extensions_example.xml +38 -0
- data/test/fixtures/onix_languages_example.xml +42 -0
- data/test/fixtures/onix_measurement_example.xml +55 -0
- data/test/fixtures/onix_no_contributors_example.xml +35 -0
- data/test/fixtures/onix_out_of_print_product_example.xml +34 -0
- data/test/fixtures/onix_preorder_product_example.xml +39 -0
- data/test/fixtures/onix_product_form_example.xml +35 -0
- data/test/fixtures/onix_published_product_example.xml +39 -0
- data/test/fixtures/onix_publisher_info_example.xml +41 -0
- data/test/fixtures/onix_record_identifiers_example.xml +74 -0
- data/test/fixtures/onix_sale_restrictions_example.xml +46 -0
- data/test/fixtures/onix_series_memberships_example.xml +56 -0
- data/test/fixtures/onix_supporting_resources_example.xml +54 -0
- data/test/fixtures/onix_texts_example.xml +65 -0
- data/test/fixtures/onix_title_with_collection_example.xml +53 -0
- data/test/fixtures/onix_titles_example.xml +49 -0
- data/test/helper.rb +6 -0
- metadata +73 -17
@@ -0,0 +1,41 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>01</TitleElementLevel>
|
26
|
+
<TitleText>Nielegalni</TitleText>
|
27
|
+
</TitleElement>
|
28
|
+
</TitleDetail>
|
29
|
+
</DescriptiveDetail>
|
30
|
+
<PublishingDetail>
|
31
|
+
<Imprint>
|
32
|
+
<ImprintName>National Geographic</ImprintName>
|
33
|
+
</Imprint>
|
34
|
+
<Publisher>
|
35
|
+
<PublishingRole>01</PublishingRole>
|
36
|
+
<PublisherName>G+J Gruner+Jahr Polska</PublisherName>
|
37
|
+
</Publisher>
|
38
|
+
<PublishingStatus>04</PublishingStatus>
|
39
|
+
</PublishingDetail>
|
40
|
+
</Product>
|
41
|
+
</ONIXMessage>
|
@@ -0,0 +1,74 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<ProductIdentifier>
|
20
|
+
<ProductIDType>03</ProductIDType>
|
21
|
+
<IDValue>9788324788882</IDValue>
|
22
|
+
</ProductIdentifier>
|
23
|
+
<ProductIdentifier>
|
24
|
+
<ProductIDType>01</ProductIDType>
|
25
|
+
<IDTypeName>Olesiejuk</IDTypeName>
|
26
|
+
<IDValue>355006</IDValue>
|
27
|
+
</ProductIdentifier>
|
28
|
+
<DescriptiveDetail>
|
29
|
+
<ProductComposition>00</ProductComposition>
|
30
|
+
<ProductForm>BA</ProductForm>
|
31
|
+
<TitleDetail>
|
32
|
+
<TitleType>01</TitleType>
|
33
|
+
<TitleElement>
|
34
|
+
<TitleElementLevel>01</TitleElementLevel>
|
35
|
+
<TitleText>Nielegalni</TitleText>
|
36
|
+
</TitleElement>
|
37
|
+
</TitleDetail>
|
38
|
+
</DescriptiveDetail>
|
39
|
+
<PublishingDetail>
|
40
|
+
<PublishingStatus>04</PublishingStatus>
|
41
|
+
</PublishingDetail>
|
42
|
+
<ProductSupply>
|
43
|
+
<SupplyDetail>
|
44
|
+
<Supplier>
|
45
|
+
<SupplierRole>04</SupplierRole>
|
46
|
+
<SupplierIdentifier>
|
47
|
+
<SupplierIDType>02</SupplierIDType>
|
48
|
+
<IDTypeName>NIP</IDTypeName>
|
49
|
+
<IDValue>5272262432</IDValue>
|
50
|
+
</SupplierIdentifier>
|
51
|
+
<SupplierName>Olesiejuk</SupplierName>
|
52
|
+
<TelephoneNumber>22 721 70 07</TelephoneNumber>
|
53
|
+
<Website>
|
54
|
+
<WebsiteLink>www.olesiejuk.pl</WebsiteLink>
|
55
|
+
</Website>
|
56
|
+
</Supplier>
|
57
|
+
<ProductAvailability>21</ProductAvailability>
|
58
|
+
<Stock>
|
59
|
+
<OnHand>1000</OnHand>
|
60
|
+
</Stock>
|
61
|
+
<Price>
|
62
|
+
<PriceType>02</PriceType>
|
63
|
+
<MinimumOrderQuantity>20</MinimumOrderQuantity>
|
64
|
+
<PriceAmount>12.99</PriceAmount>
|
65
|
+
<Tax>
|
66
|
+
<TaxType>01</TaxType>
|
67
|
+
<TaxRatePercent>7</TaxRatePercent>
|
68
|
+
</Tax>
|
69
|
+
<CurrencyCode>PLN</CurrencyCode>
|
70
|
+
</Price>
|
71
|
+
</SupplyDetail>
|
72
|
+
</ProductSupply>
|
73
|
+
</Product>
|
74
|
+
</ONIXMessage>
|
@@ -0,0 +1,46 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage release="3.0" xmlns:elibri="http://elibri.com.pl/ns/extensions" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111113</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>01</TitleElementLevel>
|
26
|
+
<TitleText>Nielegalni</TitleText>
|
27
|
+
</TitleElement>
|
28
|
+
</TitleDetail>
|
29
|
+
</DescriptiveDetail>
|
30
|
+
<PublishingDetail>
|
31
|
+
<PublishingStatus>04</PublishingStatus>
|
32
|
+
<PublishingDate>
|
33
|
+
<PublishingDateRole>01</PublishingDateRole>
|
34
|
+
<DateFormat>00</DateFormat>
|
35
|
+
<Date>20120712</Date>
|
36
|
+
</PublishingDate>
|
37
|
+
<SalesRestriction>
|
38
|
+
<SalesRestrictionType>04</SalesRestrictionType>
|
39
|
+
<SalesOutlet>
|
40
|
+
<SalesOutletName>Empik</SalesOutletName>
|
41
|
+
</SalesOutlet>
|
42
|
+
<EndDate>20120722</EndDate>
|
43
|
+
</SalesRestriction>
|
44
|
+
</PublishingDetail>
|
45
|
+
</Product>
|
46
|
+
</ONIXMessage>
|
@@ -0,0 +1,56 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<Collection>
|
23
|
+
<CollectionType>10</CollectionType>
|
24
|
+
<TitleDetail>
|
25
|
+
<TitleType>01</TitleType>
|
26
|
+
<TitleElement>
|
27
|
+
<TitleElementLevel>02</TitleElementLevel>
|
28
|
+
<PartNumber>2</PartNumber>
|
29
|
+
<TitleText>Lektury szkolne</TitleText>
|
30
|
+
</TitleElement>
|
31
|
+
</TitleDetail>
|
32
|
+
</Collection>
|
33
|
+
<Collection>
|
34
|
+
<CollectionType>10</CollectionType>
|
35
|
+
<TitleDetail>
|
36
|
+
<TitleType>01</TitleType>
|
37
|
+
<TitleElement>
|
38
|
+
<TitleElementLevel>02</TitleElementLevel>
|
39
|
+
<PartNumber>1</PartNumber>
|
40
|
+
<TitleText>Dla Bystrzaków</TitleText>
|
41
|
+
</TitleElement>
|
42
|
+
</TitleDetail>
|
43
|
+
</Collection>
|
44
|
+
<TitleDetail>
|
45
|
+
<TitleType>01</TitleType>
|
46
|
+
<TitleElement>
|
47
|
+
<TitleElementLevel>01</TitleElementLevel>
|
48
|
+
<TitleText>Nielegalni</TitleText>
|
49
|
+
</TitleElement>
|
50
|
+
</TitleDetail>
|
51
|
+
</DescriptiveDetail>
|
52
|
+
<PublishingDetail>
|
53
|
+
<PublishingStatus>04</PublishingStatus>
|
54
|
+
</PublishingDetail>
|
55
|
+
</Product>
|
56
|
+
</ONIXMessage>
|
@@ -0,0 +1,54 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>01</TitleElementLevel>
|
26
|
+
<TitleText>Nielegalni</TitleText>
|
27
|
+
</TitleElement>
|
28
|
+
</TitleDetail>
|
29
|
+
</DescriptiveDetail>
|
30
|
+
<CollateralDetail>
|
31
|
+
<SupportingResource>
|
32
|
+
<ResourceContentType>01</ResourceContentType>
|
33
|
+
<ContentAudience>00</ContentAudience>
|
34
|
+
<ResourceMode>03</ResourceMode>
|
35
|
+
<ResourceVersion>
|
36
|
+
<ResourceForm>02</ResourceForm>
|
37
|
+
<ResourceLink>http://elibri.com.pl/sciezka/do/pliku.png</ResourceLink>
|
38
|
+
</ResourceVersion>
|
39
|
+
</SupportingResource>
|
40
|
+
<SupportingResource>
|
41
|
+
<ResourceContentType>15</ResourceContentType>
|
42
|
+
<ContentAudience>00</ContentAudience>
|
43
|
+
<ResourceMode>04</ResourceMode>
|
44
|
+
<ResourceVersion>
|
45
|
+
<ResourceForm>02</ResourceForm>
|
46
|
+
<ResourceLink>http://elibri.com.pl/sciezka/do/pliku.pdf</ResourceLink>
|
47
|
+
</ResourceVersion>
|
48
|
+
</SupportingResource>
|
49
|
+
</CollateralDetail>
|
50
|
+
<PublishingDetail>
|
51
|
+
<PublishingStatus>04</PublishingStatus>
|
52
|
+
</PublishingDetail>
|
53
|
+
</Product>
|
54
|
+
</ONIXMessage>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage release="3.0" xmlns:elibri="http://elibri.com.pl/ns/extensions" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111112</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>01</TitleElementLevel>
|
26
|
+
<TitleText>Nielegalni</TitleText>
|
27
|
+
</TitleElement>
|
28
|
+
</TitleDetail>
|
29
|
+
</DescriptiveDetail>
|
30
|
+
<CollateralDetail>
|
31
|
+
<TextContent>
|
32
|
+
<TextType>04</TextType>
|
33
|
+
<ContentAudience>00</ContentAudience>
|
34
|
+
<Text>
|
35
|
+
<![CDATA[1. Wprowadzenie<br/>2. Rozdział pierwszy<br/>[...]]]>
|
36
|
+
</Text>
|
37
|
+
</TextContent>
|
38
|
+
<TextContent>
|
39
|
+
<TextType>07</TextType>
|
40
|
+
<ContentAudience>00</ContentAudience>
|
41
|
+
<Text>
|
42
|
+
<![CDATA[Recenzja książki<br/>[...]]]>
|
43
|
+
</Text>
|
44
|
+
<TextAuthor>Jan Kowalski</TextAuthor>
|
45
|
+
</TextContent>
|
46
|
+
<TextContent>
|
47
|
+
<TextType>03</TextType>
|
48
|
+
<ContentAudience>00</ContentAudience>
|
49
|
+
<Text>
|
50
|
+
<![CDATA[Opis książki<br/>[...]]]>
|
51
|
+
</Text>
|
52
|
+
</TextContent>
|
53
|
+
<TextContent>
|
54
|
+
<TextType>14</TextType>
|
55
|
+
<ContentAudience>00</ContentAudience>
|
56
|
+
<Text>
|
57
|
+
<![CDATA[Fragment książki<br/>[...]]]>
|
58
|
+
</Text>
|
59
|
+
</TextContent>
|
60
|
+
</CollateralDetail>
|
61
|
+
<PublishingDetail>
|
62
|
+
<PublishingStatus>04</PublishingStatus>
|
63
|
+
</PublishingDetail>
|
64
|
+
</Product>
|
65
|
+
</ONIXMessage>
|
@@ -0,0 +1,53 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>02</TitleElementLevel>
|
26
|
+
<PartNumber>33</PartNumber>
|
27
|
+
<TitleText>Thorgal</TitleText>
|
28
|
+
</TitleElement>
|
29
|
+
<TitleElement>
|
30
|
+
<TitleElementLevel>01</TitleElementLevel>
|
31
|
+
<TitleText>Statek-Miecz</TitleText>
|
32
|
+
</TitleElement>
|
33
|
+
</TitleDetail>
|
34
|
+
<TitleDetail>
|
35
|
+
<TitleType>03</TitleType>
|
36
|
+
<TitleElement>
|
37
|
+
<TitleElementLevel>01</TitleElementLevel>
|
38
|
+
<TitleText>Thorgal: Le Bateau-Sabre</TitleText>
|
39
|
+
</TitleElement>
|
40
|
+
</TitleDetail>
|
41
|
+
<TitleDetail>
|
42
|
+
<TitleType>10</TitleType>
|
43
|
+
<TitleElement>
|
44
|
+
<TitleElementLevel>01</TitleElementLevel>
|
45
|
+
<TitleText>THORGAL 33 STATEK-MIECZ TWARDA</TitleText>
|
46
|
+
</TitleElement>
|
47
|
+
</TitleDetail>
|
48
|
+
</DescriptiveDetail>
|
49
|
+
<PublishingDetail>
|
50
|
+
<PublishingStatus>04</PublishingStatus>
|
51
|
+
</PublishingDetail>
|
52
|
+
</Product>
|
53
|
+
</ONIXMessage>
|
@@ -0,0 +1,49 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<ONIXMessage xmlns:elibri="http://elibri.com.pl/ns/extensions" release="3.0" xmlns="http://www.editeur.org/onix/3.0/reference">
|
3
|
+
<elibri:Dialect>3.0.1</elibri:Dialect>
|
4
|
+
<Header>
|
5
|
+
<Sender>
|
6
|
+
<SenderName>Elibri.com.pl</SenderName>
|
7
|
+
<ContactName>Tomasz Meka</ContactName>
|
8
|
+
<EmailAddress>kontakt@elibri.com.pl</EmailAddress>
|
9
|
+
</Sender>
|
10
|
+
<SentDateTime>20111111</SentDateTime>
|
11
|
+
</Header>
|
12
|
+
<Product>
|
13
|
+
<RecordReference>fdb8fa072be774d97a97</RecordReference>
|
14
|
+
<NotificationType>03</NotificationType>
|
15
|
+
<ProductIdentifier>
|
16
|
+
<ProductIDType>15</ProductIDType>
|
17
|
+
<IDValue>9788324799992</IDValue>
|
18
|
+
</ProductIdentifier>
|
19
|
+
<DescriptiveDetail>
|
20
|
+
<ProductComposition>00</ProductComposition>
|
21
|
+
<ProductForm>BA</ProductForm>
|
22
|
+
<TitleDetail>
|
23
|
+
<TitleType>01</TitleType>
|
24
|
+
<TitleElement>
|
25
|
+
<TitleElementLevel>01</TitleElementLevel>
|
26
|
+
<TitleText>Światu nie mamy czego zazdrościć.</TitleText>
|
27
|
+
<Subtitle>Zwyczajne losy mieszkańców Korei Północnej.</Subtitle>
|
28
|
+
</TitleElement>
|
29
|
+
</TitleDetail>
|
30
|
+
<TitleDetail>
|
31
|
+
<TitleType>03</TitleType>
|
32
|
+
<TitleElement>
|
33
|
+
<TitleElementLevel>01</TitleElementLevel>
|
34
|
+
<TitleText>Nothing to Envy: Ordinary Lives in North Korea</TitleText>
|
35
|
+
</TitleElement>
|
36
|
+
</TitleDetail>
|
37
|
+
<TitleDetail>
|
38
|
+
<TitleType>10</TitleType>
|
39
|
+
<TitleElement>
|
40
|
+
<TitleElementLevel>01</TitleElementLevel>
|
41
|
+
<TitleText>ŚWIATU NIE MAMY CZEGO ZAZDROŚCIĆ.</TitleText>
|
42
|
+
</TitleElement>
|
43
|
+
</TitleDetail>
|
44
|
+
</DescriptiveDetail>
|
45
|
+
<PublishingDetail>
|
46
|
+
<PublishingStatus>04</PublishingStatus>
|
47
|
+
</PublishingDetail>
|
48
|
+
</Product>
|
49
|
+
</ONIXMessage>
|