wordpress-exporter 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (62) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +39 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +8 -0
  5. data/CHANGELOG.md +4 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +75 -0
  8. data/LICENSE +22 -0
  9. data/README.md +71 -0
  10. data/Rakefile +8 -0
  11. data/bin/wordpress-exporter +46 -0
  12. data/lib/cli.rb +11 -0
  13. data/lib/configuration.rb +28 -0
  14. data/lib/converters/content_types_structure_creator.rb +58 -0
  15. data/lib/converters/contentful_model_to_json.rb +119 -0
  16. data/lib/converters/markup_converter.rb +35 -0
  17. data/lib/migrator.rb +30 -0
  18. data/lib/version.rb +3 -0
  19. data/lib/wordpress/blog.rb +83 -0
  20. data/lib/wordpress/category.rb +54 -0
  21. data/lib/wordpress/export.rb +30 -0
  22. data/lib/wordpress/post.rb +94 -0
  23. data/lib/wordpress/post_attachment.rb +44 -0
  24. data/lib/wordpress/post_category_domain.rb +71 -0
  25. data/lib/wordpress/tag.rb +56 -0
  26. data/spec/fixtures/blog/assets/attachment_post/attachment_post_15.json +5 -0
  27. data/spec/fixtures/blog/assets/attachment_post/attachment_post_21.json +5 -0
  28. data/spec/fixtures/blog/entries/blog/blog_1.json +62 -0
  29. data/spec/fixtures/blog/entries/category/category_11599757.json +5 -0
  30. data/spec/fixtures/blog/entries/category/category_14786.json +5 -0
  31. data/spec/fixtures/blog/entries/category/category_2214351.json +5 -0
  32. data/spec/fixtures/blog/entries/category/category_8076.json +5 -0
  33. data/spec/fixtures/blog/entries/post/post_1.json +7 -0
  34. data/spec/fixtures/blog/entries/post/post_11.json +31 -0
  35. data/spec/fixtures/blog/entries/post/post_15.json +11 -0
  36. data/spec/fixtures/blog/entries/post/post_21.json +11 -0
  37. data/spec/fixtures/blog/entries/post/post_3.json +13 -0
  38. data/spec/fixtures/blog/entries/post/post_5.json +13 -0
  39. data/spec/fixtures/blog/entries/post/post_9.json +13 -0
  40. data/spec/fixtures/blog/entries/tag/tag_2656354.json +5 -0
  41. data/spec/fixtures/blog/entries/tag/tag_306830130.json +5 -0
  42. data/spec/fixtures/default_contentful_structure.json +78 -0
  43. data/spec/fixtures/wordpress.xml +551 -0
  44. data/spec/lib/configuration_spec.rb +23 -0
  45. data/spec/lib/converters/markup_converter_spec.rb +27 -0
  46. data/spec/lib/wordpress/blog_spec.rb +64 -0
  47. data/spec/lib/wordpress/category_spec.rb +39 -0
  48. data/spec/lib/wordpress/export_spec.rb +27 -0
  49. data/spec/lib/wordpress/post_category_domain_spec.rb +41 -0
  50. data/spec/lib/wordpress/post_spec.rb +41 -0
  51. data/spec/lib/wordpress/tag_spec.rb +39 -0
  52. data/spec/spec_helper.rb +13 -0
  53. data/spec/support/db_rows_json.rb +5 -0
  54. data/spec/support/shared_configuration.rb +13 -0
  55. data/wordpress_exporter.gemspec +33 -0
  56. data/wordpress_settings/contentful_model.json +288 -0
  57. data/wordpress_settings/contentful_structure.json +78 -0
  58. data/wordpress_settings/default_contentful_structure.json +78 -0
  59. data/wordpress_settings/export_wordpress.xml +380 -0
  60. data/wordpress_settings/wordpress.xml +570 -0
  61. data/wordpress_settings/wordpress_settings.yml +13 -0
  62. metadata +288 -0
@@ -0,0 +1,56 @@
1
+ require_relative 'blog'
2
+
3
+ module Contentful
4
+ module Exporter
5
+ module Wordpress
6
+ class Tag < Blog
7
+ attr_reader :xml, :settings
8
+
9
+ def initialize(xml, settings)
10
+ @xml = xml
11
+ @settings = settings
12
+ end
13
+
14
+ def tags_extractor
15
+ output_logger.info 'Extracting blog tags...'
16
+ create_directory("#{settings.entries_dir}/tag")
17
+ extract_tags
18
+ end
19
+
20
+ private
21
+
22
+ def extract_tags
23
+ tags.each_with_object([]) do |tag, tags|
24
+ normalized_tag = extracted_data(tag)
25
+ write_json_to_file("#{settings.entries_dir}/tag/#{id(tag)}.json", normalized_tag)
26
+ tags << normalized_tag
27
+ end
28
+ end
29
+
30
+ def extracted_data(tag)
31
+ {
32
+ id: id(tag),
33
+ nicename: slug(tag),
34
+ name: name(tag)
35
+ }
36
+ end
37
+
38
+ def tags
39
+ xml.xpath('//wp:tag').to_a
40
+ end
41
+
42
+ def id(tag)
43
+ "tag_#{tag.xpath('wp:term_id').text}"
44
+ end
45
+
46
+ def slug(tag)
47
+ tag.xpath('wp:tag_slug').text
48
+ end
49
+
50
+ def name(tag)
51
+ tag.xpath('wp:tag_name').text
52
+ end
53
+ end
54
+ end
55
+ end
56
+ end
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "attachment_post_15",
3
+ "description": "MOJ_DESC",
4
+ "url": "https://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm.png"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "attachment_post_21",
3
+ "description": null,
4
+ "url": "https://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm1.png"
5
+ }
@@ -0,0 +1,62 @@
1
+ {
2
+ "id": "blog_id",
3
+ "title": "Moj blog 2",
4
+ "posts": [
5
+ {
6
+ "id": "post_1",
7
+ "type": "Entry"
8
+ },
9
+ {
10
+ "id": "post_3",
11
+ "type": "Entry"
12
+ },
13
+ {
14
+ "id": "post_5",
15
+ "type": "Entry"
16
+ },
17
+ {
18
+ "id": "post_9",
19
+ "type": "Entry"
20
+ },
21
+ {
22
+ "id": "post_11",
23
+ "type": "Entry"
24
+ },
25
+ {
26
+ "id": "post_15",
27
+ "type": "Entry"
28
+ },
29
+ {
30
+ "id": "post_21",
31
+ "type": "Entry"
32
+ }
33
+ ],
34
+ "categories": [
35
+ {
36
+ "id": "category_14786",
37
+ "type": "Entry"
38
+ },
39
+ {
40
+ "id": "category_2214351",
41
+ "type": "Entry"
42
+ },
43
+ {
44
+ "id": "category_8076",
45
+ "type": "Entry"
46
+ },
47
+ {
48
+ "id": "category_11599757",
49
+ "type": "Entry"
50
+ }
51
+ ],
52
+ "tags": [
53
+ {
54
+ "id": "tag_2656354",
55
+ "type": "Entry"
56
+ },
57
+ {
58
+ "id": "tag_306830130",
59
+ "type": "Entry"
60
+ }
61
+ ]
62
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "category_11599757",
3
+ "nicename": "puchatka",
4
+ "name": "puchatka"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "category_14786",
3
+ "nicename": "bez-kategorii",
4
+ "name": "Bez kategorii"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "category_2214351",
3
+ "nicename": "chatka",
4
+ "name": "chatka"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "category_8076",
3
+ "nicename": "dom",
4
+ "name": "dom"
5
+ }
@@ -0,0 +1,7 @@
1
+ {
2
+ "id": "post_1",
3
+ "title": "Informacje",
4
+ "wordpress_url": "http://szpryc.wordpress.com/informacje/",
5
+ "content": "This is an example of a page. Unlike posts, which are displayed on your blog’s front page in the order they’re published, pages are better suited for more timeless content that you want to be easily accessible, like your About or Contact information. Click the Edit link to make changes to this page or <a title=\"Direct link to Add New in the Admin Dashboard\" href=\"/wp-admin/post-new.php?post_type=page\">add another page</a>.",
6
+ "created_at": "2014-11-26"
7
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "id": "post_11",
3
+ "title": "wpis numer dwa/2",
4
+ "wordpress_url": "http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa-2/",
5
+ "content": "[caption id=\"\" align=\"alignnone\" width=\"500\"]<a href=\"http://www.mojegotowanie.pl/var/self/storage/images/media/images/artykuly/pigwa/1961757-1-pol-PL/pigwa_popup.jpg\"><img class=\"\" src=\"http://www.mojegotowanie.pl/var/self/storage/images/media/images/artykuly/pigwa/1961757-1-pol-PL/pigwa_popup.jpg\" alt=\"piwa alter tekscik\" width=\"500\" height=\"366\" /></a> pigwy etykieta[/caption]\n<h1 class=\"entry-title\" style=\"text-align:center;\"> tekst wpis numer dwa content /2222</h1>",
6
+ "created_at": "2014-11-26",
7
+ "tags": [
8
+ {
9
+ "id": "tag_2656354",
10
+ "type": "Entry"
11
+ },
12
+ {
13
+ "id": "tag_306830130",
14
+ "type": "Entry"
15
+ }
16
+ ],
17
+ "categories": [
18
+ {
19
+ "id": "category_2214351",
20
+ "type": "Entry"
21
+ },
22
+ {
23
+ "id": "category_8076",
24
+ "type": "Entry"
25
+ },
26
+ {
27
+ "id": "category_11599757",
28
+ "type": "Entry"
29
+ }
30
+ ]
31
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "post_15",
3
+ "title": "reka",
4
+ "wordpress_url": "http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa-2/screen-shot-2014-11-27-at-12-34-47-pm/#main",
5
+ "content": "opis opis",
6
+ "created_at": "2014-11-27",
7
+ "attachment": {
8
+ "id": "attachment_post_15",
9
+ "type": "File"
10
+ }
11
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "id": "post_21",
3
+ "title": "Screen Shot 2014-11-27 at 12.34.47 PM",
4
+ "wordpress_url": "http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa/screen-shot-2014-11-27-at-12-34-47-pm-2/#main",
5
+ "content": "",
6
+ "created_at": "2014-11-27",
7
+ "attachment": {
8
+ "id": "attachment_post_21",
9
+ "type": "File"
10
+ }
11
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "post_3",
3
+ "title": "pierwszy wpis",
4
+ "wordpress_url": "http://szpryc.wordpress.com/2014/11/26/pierwszy-wpis/",
5
+ "content": "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla blandit lacinia dui, vitae venenatis elit adipiscing at. Pellentesque blandit eros quis magna <a href=\"http://www.dropstore.pl/\">gravida et semper</a> turpis bibendum. Donec tristique velit ac lectus luctus a porttitor felis hendrerit. Sed feugiat mi id quam molestie sollicitudin. In rhoncus congue turpis, a iaculis est vehicula ut. Ut fermentum nunc eget augue posuere lacinia. In fermentum nunc et felis scelerisque bibendum. In hac habitasse platea dictumst. Fusce cursus vulput\n\n<hr />\n\nate velit non pulvinar. Sed lacinia adipiscing erat, nec fringilla ante aliquam sit amet. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Quisque rutrum suscipit auctor. Donec accumsan egestas magna accumsan iaculis. Sed sagittis velit ac ipsum dignissim vestibulum. Donec elementum quam vel diam consequat commodo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis massa odio, ultricies ornare sagittis et, imperdiet quis dui. Phasellus faucibus auctor porttitor. Vestibulum ac nulla diam, id dignissim erat. Nulla facilisi. Nam volutpat eleifend mauris, ac pretium eros bibendum eget. Morbi nec nulla risus, non ultrices velit. Pellentesque et neque leo, id vestibulum velit. Integer mauris mi, semper et porttitor eu, dictum vel quam. Morbi ultrices erat eu ante tempus lacinia. Phasellus rhoncus consectetur fermentum. Praesent eget ante metus, vel dictum diam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla blandit velit tortor, sit amet dapibus sapien. Phasellus dictum facilisis mauris, convallis placerat turpis tincidunt ac. Maecenas dapibus nisl in metus ornare ac ornare massa dapibus. Nam ut pretium felis. Donec lobortis, urna eget sodales elementum, lectus turpis ullamcorper ipsum, eu imperdiet sem massa a quam. Ut rutrum, neque sed dictum interdum, sapien augue tincidunt nunc, id mollis felis turpis a mi. Mauris tur\n\npis sapien, imperdiet eget mollis eu, rutrum ut lacus. Nam laoreet nisi quis ligula consequat mollis. Ut sed dolor at mi adipiscing egestas. Aenean ultrices molestie leo eget hendrerit. Duis pharetra neque molestie velit pretium aliquam. Praesent convallis, libero vel tincidunt eleifend, libero orci tristique urna, sed vestibulum quam magna id sem. Proin adipiscing varius malesuada. Aenean condimentum, sem vitae mattis imperdiet, lacus nunc mattis nulla, iaculis fringilla sem turpis quis felis. Donec tempus tellus aliquam metus ornare eleifend. Nullam non dui quis velit suscipit pulvinar eu a elit. In nisl erat, ultrices non blandit quis, vestibulum vitae dolor. Nam nisl lacus, rutrum eu pharetra eu, venenatis et leo. Etiam eget orci arcu.\n\nQuisque sit amet feugiat dolor. Quisque porta dictum tellus sed faucibus. Donec hendrerit velit vel neque vehicula hendrerit. Mauris pulvinar condimentum massa, a molestie nibh malesuada vel. Nulla sit amet turpis eget augue iaculis cursus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.",
6
+ "created_at": "2014-11-26",
7
+ "categories": [
8
+ {
9
+ "id": "category_14786",
10
+ "type": "Entry"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "post_5",
3
+ "title": "wpis numer dwa",
4
+ "wordpress_url": "http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa/",
5
+ "content": "22Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla blandit lacinia dui, vitae venenatis elit adipiscing at. Pellentesque blandit eros quis magna <a href=\"http://www.dropstore.pl/\">gravida et semper</a> turpis bibendum. Donec tristique velit ac lectus luctus a porttitor felis hendrerit. Sed feugiat mi id quam molestie sollicitudin. In rhoncus congue turpis, a iaculis est vehicula ut. Ut fermentum nunc eget augue posuere lacinia. In fermentum nunc et felis scelerisque bibendum. In hac habitasse platea dictumst. Fusce cursus vulput\n\n<hr />\n\nate velit non pulvinar. Sed lacinia adipiscing erat, nec fringilla ante aliquam sit amet. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Quisque rutrum suscipit auctor. Donec accumsan egestas magna accumsan iaculis. Sed sagittis velit ac ipsum dignissim vestibulum. Donec elementum quam vel diam consequat commodo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis massa odio, ultricies ornare sagittis et, imperdiet quis dui. Phasellus faucibus auctor porttitor. Vestibulum ac nulla diam, id dignissim erat. Nulla facilisi. Nam volutpat eleifend mauris, ac pretium eros bibendum eget. Morbi nec nulla risus, non ultrices velit. Pellentesque et neque leo, id vestibulum velit. Integer mauris mi, semper et porttitor eu, dictum vel quam. Morbi ultrices erat eu ante tempus lacinia. Phasellus rhoncus consectetur fermentum. Praesent eget ante metus, vel dictum diam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla blandit velit tortor, sit amet dapibus sapien. Phasellus dictum facilisis mauris, convallis placerat turpis tincidunt ac. Maecenas dapibus nisl in metus ornare ac ornare massa dapibus. Nam ut pretium felis. Donec lobortis, urna eget sodales elementum, lectus turpis ullamcorper ipsum, eu imperdiet sem massa a quam. Ut rutrum, neque sed dictum interdum, sapien augue tincidunt nunc, id mollis felis turpis a mi. Mauris tur\n\npis sapien, imperdiet eget mollis eu, rutrum ut lacus. Nam laoreet nisi quis ligula consequat mollis. Ut sed dolor at mi adipiscing egestas. Aenean ultrices molestie leo eget hendrerit. Duis pharetra neque molestie velit pretium aliquam. Praesent convallis, libero vel tincidunt eleifend, libero orci tristique urna, sed vestibulum quam magna id sem. Proin adipiscing varius malesuada. Aenean condimentum, sem vitae mattis imperdiet, lacus nunc mattis nulla, iaculis fringilla sem turpis quis felis. Donec tempus tellus aliquam metus ornare eleifend. Nullam non dui quis velit suscipit pulvinar eu a elit. In nisl erat, ultrices non blandit quis, vestibulum vitae dolor. Nam nisl lacus, rutrum eu pharetra eu, venenatis et leo. Etiam eget orci arcu.\n\nQuisque sit amet feugiat dolor. Quisque porta dictum tellus sed faucibus. Donec hendrerit velit vel neque vehicula hendrerit. Mauris pulvinar condimentum massa, a molestie nibh malesuada vel. Nulla sit amet turpis eget augue iaculis cursus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.22",
6
+ "created_at": "2014-11-26",
7
+ "categories": [
8
+ {
9
+ "id": "category_14786",
10
+ "type": "Entry"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "post_9",
3
+ "title": "wpis numer dwa",
4
+ "wordpress_url": "http://szpryc.wordpress.com/?p=9",
5
+ "content": "asd asd",
6
+ "created_at": "2014-11-26",
7
+ "categories": [
8
+ {
9
+ "id": "category_14786",
10
+ "type": "Entry"
11
+ }
12
+ ]
13
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "tag_2656354",
3
+ "nicename": "testowy",
4
+ "name": "testowy"
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "id": "tag_306830130",
3
+ "nicename": "testowy2",
4
+ "name": "testowy2"
5
+ }
@@ -0,0 +1,78 @@
1
+ {
2
+ "Blog": {
3
+ "id": "blog",
4
+ "name": "Blog",
5
+ "description": null,
6
+ "displayField": "title",
7
+ "fields": {
8
+ "Posts": {
9
+ "id": "posts",
10
+ "type": "Array",
11
+ "link_type": "Entry",
12
+ "link": "Link"
13
+ },
14
+ "title": "Text",
15
+ "Categories": {
16
+ "id": "categories",
17
+ "type": "Array",
18
+ "link_type": "Entry",
19
+ "link": "Link"
20
+ },
21
+ "Tags": {
22
+ "id": "tags",
23
+ "type": "Array",
24
+ "link_type": "Entry",
25
+ "link": "Link"
26
+ }
27
+ }
28
+ },
29
+ "Tag": {
30
+ "id": "tag",
31
+ "name": "Tag",
32
+ "description": null,
33
+ "displayField": "nicename",
34
+ "fields": {
35
+ "nicename": "Text",
36
+ "name": "Text"
37
+ }
38
+ },
39
+ "Post": {
40
+ "id": "post",
41
+ "name": "Post",
42
+ "description": null,
43
+ "displayField": "title",
44
+ "fields": {
45
+ "title": "Text",
46
+ "content": "Text",
47
+ "Tags": {
48
+ "id": "tags",
49
+ "type": "Array",
50
+ "link_type": "Entry",
51
+ "link": "Link"
52
+ },
53
+ "Categories": {
54
+ "id": "categories",
55
+ "type": "Array",
56
+ "link_type": "Entry",
57
+ "link": "Link"
58
+ },
59
+ "wordpress_url": "Text",
60
+ "Attachment": {
61
+ "id": "attachment",
62
+ "type": "Asset",
63
+ "link": "Link"
64
+ },
65
+ "created_at": "Date"
66
+ }
67
+ },
68
+ "Category": {
69
+ "id": "category",
70
+ "name": "Category",
71
+ "description": null,
72
+ "displayField": "name",
73
+ "fields": {
74
+ "nicename": "Text",
75
+ "name": "Text"
76
+ }
77
+ }
78
+ }
@@ -0,0 +1,551 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <rss version="2.0" xmlns:excerpt="http://wordpress.org/export/1.2/excerpt/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wp="http://wordpress.org/export/1.2/">
3
+ <channel>
4
+ <title>Moj blog 2</title>
5
+ <link>http://szpryc.wordpress.com</link>
6
+ <description/>
7
+ <pubDate>Mon, 01 Dec 2014 09:12:28 +0000</pubDate>
8
+ <language>pl</language>
9
+ <wp:wxr_version>1.2</wp:wxr_version>
10
+ <wp:base_site_url>http://wordpress.com/</wp:base_site_url>
11
+ <wp:base_blog_url>http://szpryc.wordpress.com</wp:base_blog_url>
12
+ <wp:wp_author>
13
+ <wp:author_login>szpryc</wp:author_login>
14
+ <wp:author_email>komarpro@gmail.com</wp:author_email>
15
+ <wp:author_display_name><![CDATA[szpryc]]></wp:author_display_name>
16
+ <wp:author_first_name><![CDATA[]]></wp:author_first_name>
17
+ <wp:author_last_name><![CDATA[]]></wp:author_last_name>
18
+ </wp:wp_author>
19
+ <wp:category>
20
+ <wp:term_id>14786</wp:term_id>
21
+ <wp:category_nicename>bez-kategorii</wp:category_nicename>
22
+ <wp:category_parent/>
23
+ <wp:cat_name><![CDATA[Bez kategorii]]></wp:cat_name>
24
+ </wp:category>
25
+ <wp:category>
26
+ <wp:term_id>2214351</wp:term_id>
27
+ <wp:category_nicename>chatka</wp:category_nicename>
28
+ <wp:category_parent/>
29
+ <wp:cat_name><![CDATA[chatka]]></wp:cat_name>
30
+ </wp:category>
31
+ <wp:category>
32
+ <wp:term_id>8076</wp:term_id>
33
+ <wp:category_nicename>dom</wp:category_nicename>
34
+ <wp:category_parent/>
35
+ <wp:cat_name><![CDATA[dom]]></wp:cat_name>
36
+ </wp:category>
37
+ <wp:category>
38
+ <wp:term_id>11599757</wp:term_id>
39
+ <wp:category_nicename>puchatka</wp:category_nicename>
40
+ <wp:category_parent/>
41
+ <wp:cat_name><![CDATA[puchatka]]></wp:cat_name>
42
+ </wp:category>
43
+ <wp:tag>
44
+ <wp:term_id>2656354</wp:term_id>
45
+ <wp:tag_slug>testowy</wp:tag_slug>
46
+ <wp:tag_name><![CDATA[testowy]]></wp:tag_name>
47
+ </wp:tag>
48
+ <wp:tag>
49
+ <wp:term_id>306830130</wp:term_id>
50
+ <wp:tag_slug>testowy2</wp:tag_slug>
51
+ <wp:tag_name><![CDATA[testowy2]]></wp:tag_name>
52
+ </wp:tag>
53
+ <generator>http://wordpress.com/</generator>
54
+ <image>
55
+ <url>https://s2.wp.com/i/buttonw-com.png</url>
56
+ <title> &#187; Moj blog 2</title>
57
+ <link>http://szpryc.wordpress.com</link>
58
+ </image>
59
+ <item>
60
+ <title>Informacje</title>
61
+ <link>http://szpryc.wordpress.com/informacje/</link>
62
+ <pubDate>Wed, 26 Nov 2014 11:49:06 +0000</pubDate>
63
+ <dc:creator>szpryc</dc:creator>
64
+ <guid isPermaLink="false">http://szpryc.wordpress.com/?page_id=1</guid>
65
+ <description/>
66
+ <content:encoded><![CDATA[This is an example of a page. Unlike posts, which are displayed on your blog’s front page in the order they’re published, pages are better suited for more timeless content that you want to be easily accessible, like your About or Contact information. Click the Edit link to make changes to this page or <a title="Direct link to Add New in the Admin Dashboard" href="/wp-admin/post-new.php?post_type=page">add another page</a>.]]></content:encoded>
67
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
68
+ <wp:post_id>1</wp:post_id>
69
+ <wp:post_date>2014-11-26 11:49:06</wp:post_date>
70
+ <wp:post_date_gmt>2014-11-26 11:49:06</wp:post_date_gmt>
71
+ <wp:comment_status>open</wp:comment_status>
72
+ <wp:ping_status>open</wp:ping_status>
73
+ <wp:post_name>informacje</wp:post_name>
74
+ <wp:status>publish</wp:status>
75
+ <wp:post_parent>0</wp:post_parent>
76
+ <wp:menu_order>0</wp:menu_order>
77
+ <wp:post_type>page</wp:post_type>
78
+ <wp:post_password/>
79
+ <wp:is_sticky>0</wp:is_sticky>
80
+ <wp:postmeta>
81
+ <wp:meta_key>_wp_page_template</wp:meta_key>
82
+ <wp:meta_value><![CDATA[default]]></wp:meta_value>
83
+ </wp:postmeta>
84
+ </item>
85
+ <item>
86
+ <title>pierwszy wpis</title>
87
+ <link>http://szpryc.wordpress.com/2014/11/26/pierwszy-wpis/</link>
88
+ <pubDate>Wed, 26 Nov 2014 11:51:02 +0000</pubDate>
89
+ <dc:creator>szpryc</dc:creator>
90
+ <guid isPermaLink="false">http://szpryc.wordpress.com/?p=3</guid>
91
+ <description/>
92
+ <content:encoded><![CDATA[Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla blandit lacinia dui, vitae venenatis elit adipiscing at. Pellentesque blandit eros quis magna <a href="http://www.dropstore.pl/">gravida et semper</a> turpis bibendum. Donec tristique velit ac lectus luctus a porttitor felis hendrerit. Sed feugiat mi id quam molestie sollicitudin. In rhoncus congue turpis, a iaculis est vehicula ut. Ut fermentum nunc eget augue posuere lacinia. In fermentum nunc et felis scelerisque bibendum. In hac habitasse platea dictumst. Fusce cursus vulput
93
+
94
+ <hr />
95
+
96
+ ate velit non pulvinar. Sed lacinia adipiscing erat, nec fringilla ante aliquam sit amet. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Quisque rutrum suscipit auctor. Donec accumsan egestas magna accumsan iaculis. Sed sagittis velit ac ipsum dignissim vestibulum. Donec elementum quam vel diam consequat commodo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis massa odio, ultricies ornare sagittis et, imperdiet quis dui. Phasellus faucibus auctor porttitor. Vestibulum ac nulla diam, id dignissim erat. Nulla facilisi. Nam volutpat eleifend mauris, ac pretium eros bibendum eget. Morbi nec nulla risus, non ultrices velit. Pellentesque et neque leo, id vestibulum velit. Integer mauris mi, semper et porttitor eu, dictum vel quam. Morbi ultrices erat eu ante tempus lacinia. Phasellus rhoncus consectetur fermentum. Praesent eget ante metus, vel dictum diam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla blandit velit tortor, sit amet dapibus sapien. Phasellus dictum facilisis mauris, convallis placerat turpis tincidunt ac. Maecenas dapibus nisl in metus ornare ac ornare massa dapibus. Nam ut pretium felis. Donec lobortis, urna eget sodales elementum, lectus turpis ullamcorper ipsum, eu imperdiet sem massa a quam. Ut rutrum, neque sed dictum interdum, sapien augue tincidunt nunc, id mollis felis turpis a mi. Mauris tur
97
+
98
+ pis sapien, imperdiet eget mollis eu, rutrum ut lacus. Nam laoreet nisi quis ligula consequat mollis. Ut sed dolor at mi adipiscing egestas. Aenean ultrices molestie leo eget hendrerit. Duis pharetra neque molestie velit pretium aliquam. Praesent convallis, libero vel tincidunt eleifend, libero orci tristique urna, sed vestibulum quam magna id sem. Proin adipiscing varius malesuada. Aenean condimentum, sem vitae mattis imperdiet, lacus nunc mattis nulla, iaculis fringilla sem turpis quis felis. Donec tempus tellus aliquam metus ornare eleifend. Nullam non dui quis velit suscipit pulvinar eu a elit. In nisl erat, ultrices non blandit quis, vestibulum vitae dolor. Nam nisl lacus, rutrum eu pharetra eu, venenatis et leo. Etiam eget orci arcu.
99
+
100
+ Quisque sit amet feugiat dolor. Quisque porta dictum tellus sed faucibus. Donec hendrerit velit vel neque vehicula hendrerit. Mauris pulvinar condimentum massa, a molestie nibh malesuada vel. Nulla sit amet turpis eget augue iaculis cursus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.]]></content:encoded>
101
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
102
+ <wp:post_id>3</wp:post_id>
103
+ <wp:post_date>2014-11-26 12:51:02</wp:post_date>
104
+ <wp:post_date_gmt>2014-11-26 11:51:02</wp:post_date_gmt>
105
+ <wp:comment_status>open</wp:comment_status>
106
+ <wp:ping_status>open</wp:ping_status>
107
+ <wp:post_name>pierwszy-wpis</wp:post_name>
108
+ <wp:status>publish</wp:status>
109
+ <wp:post_parent>0</wp:post_parent>
110
+ <wp:menu_order>0</wp:menu_order>
111
+ <wp:post_type>post</wp:post_type>
112
+ <wp:post_password/>
113
+ <wp:is_sticky>0</wp:is_sticky>
114
+ <category domain="category" nicename="bez-kategorii"><![CDATA[Bez kategorii]]></category>
115
+ <wp:postmeta>
116
+ <wp:meta_key>_wpas_skip_facebook</wp:meta_key>
117
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
118
+ </wp:postmeta>
119
+ <wp:postmeta>
120
+ <wp:meta_key>_wpas_skip_google_plus</wp:meta_key>
121
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
122
+ </wp:postmeta>
123
+ <wp:postmeta>
124
+ <wp:meta_key>_wpas_skip_twitter</wp:meta_key>
125
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
126
+ </wp:postmeta>
127
+ <wp:postmeta>
128
+ <wp:meta_key>_wpas_skip_linkedin</wp:meta_key>
129
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
130
+ </wp:postmeta>
131
+ <wp:postmeta>
132
+ <wp:meta_key>_wpas_skip_tumblr</wp:meta_key>
133
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
134
+ </wp:postmeta>
135
+ <wp:postmeta>
136
+ <wp:meta_key>_wpas_skip_path</wp:meta_key>
137
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
138
+ </wp:postmeta>
139
+ <wp:postmeta>
140
+ <wp:meta_key>_publicize_pending</wp:meta_key>
141
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
142
+ </wp:postmeta>
143
+ <wp:postmeta>
144
+ <wp:meta_key>_rest_api_published</wp:meta_key>
145
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
146
+ </wp:postmeta>
147
+ <wp:postmeta>
148
+ <wp:meta_key>_rest_api_client_id</wp:meta_key>
149
+ <wp:meta_value><![CDATA[-1]]></wp:meta_value>
150
+ </wp:postmeta>
151
+ <wp:comment>
152
+ <wp:comment_id>1</wp:comment_id>
153
+ <wp:comment_author><![CDATA[szpryc]]></wp:comment_author>
154
+ <wp:comment_author_email>komarpro@gmail.com</wp:comment_author_email>
155
+ <wp:comment_author_url>http://szpryciarz.wordpress.com</wp:comment_author_url>
156
+ <wp:comment_author_IP>109.231.20.12</wp:comment_author_IP>
157
+ <wp:comment_date>2014-11-26 12:51:26</wp:comment_date>
158
+ <wp:comment_date_gmt>2014-11-26 11:51:26</wp:comment_date_gmt>
159
+ <wp:comment_content><![CDATA[komentarz 1]]></wp:comment_content>
160
+ <wp:comment_approved>1</wp:comment_approved>
161
+ <wp:comment_type/>
162
+ <wp:comment_parent>0</wp:comment_parent>
163
+ <wp:comment_user_id>72688371</wp:comment_user_id>
164
+ <wp:commentmeta>
165
+ <wp:meta_key>jabber_published</wp:meta_key>
166
+ <wp:meta_value>1417002686</wp:meta_value>
167
+ </wp:commentmeta>
168
+ <wp:commentmeta>
169
+ <wp:meta_key>akismet_result</wp:meta_key>
170
+ <wp:meta_value>false</wp:meta_value>
171
+ </wp:commentmeta>
172
+ <wp:commentmeta>
173
+ <wp:meta_key>akismet_history</wp:meta_key>
174
+ <wp:meta_value>a:4:{s:4:"time";d:1417002686.7098119258880615234375;s:7:"message";s:34:"Akismet przepuścił ten komentarz";s:5:"event";s:9:"check-ham";s:4:"user";s:6:"szpryc";}</wp:meta_value>
175
+ </wp:commentmeta>
176
+ <wp:commentmeta>
177
+ <wp:meta_key>email_notification_notqueued</wp:meta_key>
178
+ <wp:meta_value>1417002686</wp:meta_value>
179
+ </wp:commentmeta>
180
+ </wp:comment>
181
+ <wp:comment>
182
+ <wp:comment_id>2</wp:comment_id>
183
+ <wp:comment_author><![CDATA[szpryc]]></wp:comment_author>
184
+ <wp:comment_author_email>komarpro@gmail.com</wp:comment_author_email>
185
+ <wp:comment_author_url>http://szpryciarz.wordpress.com</wp:comment_author_url>
186
+ <wp:comment_author_IP>109.231.20.12</wp:comment_author_IP>
187
+ <wp:comment_date>2014-11-26 12:51:44</wp:comment_date>
188
+ <wp:comment_date_gmt>2014-11-26 11:51:44</wp:comment_date_gmt>
189
+ <wp:comment_content><![CDATA[komentarz 2 do pierwszy wpis]]></wp:comment_content>
190
+ <wp:comment_approved>1</wp:comment_approved>
191
+ <wp:comment_type/>
192
+ <wp:comment_parent>0</wp:comment_parent>
193
+ <wp:comment_user_id>72688371</wp:comment_user_id>
194
+ <wp:commentmeta>
195
+ <wp:meta_key>jabber_published</wp:meta_key>
196
+ <wp:meta_value>1417002704</wp:meta_value>
197
+ </wp:commentmeta>
198
+ <wp:commentmeta>
199
+ <wp:meta_key>akismet_result</wp:meta_key>
200
+ <wp:meta_value>false</wp:meta_value>
201
+ </wp:commentmeta>
202
+ <wp:commentmeta>
203
+ <wp:meta_key>akismet_history</wp:meta_key>
204
+ <wp:meta_value>a:4:{s:4:"time";d:1417002704.550846099853515625;s:7:"message";s:34:"Akismet przepuścił ten komentarz";s:5:"event";s:9:"check-ham";s:4:"user";s:6:"szpryc";}</wp:meta_value>
205
+ </wp:commentmeta>
206
+ <wp:commentmeta>
207
+ <wp:meta_key>email_notification_notqueued</wp:meta_key>
208
+ <wp:meta_value>1417002704</wp:meta_value>
209
+ </wp:commentmeta>
210
+ </wp:comment>
211
+ <wp:comment>
212
+ <wp:comment_id>3</wp:comment_id>
213
+ <wp:comment_author><![CDATA[szpryc]]></wp:comment_author>
214
+ <wp:comment_author_email>komarpro@gmail.com</wp:comment_author_email>
215
+ <wp:comment_author_url>http://szpryciarz.wordpress.com</wp:comment_author_url>
216
+ <wp:comment_author_IP>109.231.20.12</wp:comment_author_IP>
217
+ <wp:comment_date>2014-11-26 12:51:59</wp:comment_date>
218
+ <wp:comment_date_gmt>2014-11-26 11:51:59</wp:comment_date_gmt>
219
+ <wp:comment_content><![CDATA[komentarz 3 do pierwszy wpis]]></wp:comment_content>
220
+ <wp:comment_approved>1</wp:comment_approved>
221
+ <wp:comment_type/>
222
+ <wp:comment_parent>0</wp:comment_parent>
223
+ <wp:comment_user_id>72688371</wp:comment_user_id>
224
+ <wp:commentmeta>
225
+ <wp:meta_key>jabber_published</wp:meta_key>
226
+ <wp:meta_value>1417002719</wp:meta_value>
227
+ </wp:commentmeta>
228
+ <wp:commentmeta>
229
+ <wp:meta_key>akismet_result</wp:meta_key>
230
+ <wp:meta_value>false</wp:meta_value>
231
+ </wp:commentmeta>
232
+ <wp:commentmeta>
233
+ <wp:meta_key>akismet_history</wp:meta_key>
234
+ <wp:meta_value>a:4:{s:4:"time";d:1417002720.1313059329986572265625;s:7:"message";s:34:"Akismet przepuścił ten komentarz";s:5:"event";s:9:"check-ham";s:4:"user";s:6:"szpryc";}</wp:meta_value>
235
+ </wp:commentmeta>
236
+ <wp:commentmeta>
237
+ <wp:meta_key>email_notification_notqueued</wp:meta_key>
238
+ <wp:meta_value>1417002720</wp:meta_value>
239
+ </wp:commentmeta>
240
+ </wp:comment>
241
+ </item>
242
+ <item>
243
+ <title>wpis numer dwa</title>
244
+ <link>http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa/</link>
245
+ <pubDate>Wed, 26 Nov 2014 11:52:36 +0000</pubDate>
246
+ <dc:creator>szpryc</dc:creator>
247
+ <guid isPermaLink="false">http://szpryc.wordpress.com/?p=5</guid>
248
+ <description/>
249
+ <content:encoded><![CDATA[22Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla blandit lacinia dui, vitae venenatis elit adipiscing at. Pellentesque blandit eros quis magna <a href="http://www.dropstore.pl/">gravida et semper</a> turpis bibendum. Donec tristique velit ac lectus luctus a porttitor felis hendrerit. Sed feugiat mi id quam molestie sollicitudin. In rhoncus congue turpis, a iaculis est vehicula ut. Ut fermentum nunc eget augue posuere lacinia. In fermentum nunc et felis scelerisque bibendum. In hac habitasse platea dictumst. Fusce cursus vulput
250
+
251
+ <hr />
252
+
253
+ ate velit non pulvinar. Sed lacinia adipiscing erat, nec fringilla ante aliquam sit amet. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Quisque rutrum suscipit auctor. Donec accumsan egestas magna accumsan iaculis. Sed sagittis velit ac ipsum dignissim vestibulum. Donec elementum quam vel diam consequat commodo. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Duis massa odio, ultricies ornare sagittis et, imperdiet quis dui. Phasellus faucibus auctor porttitor. Vestibulum ac nulla diam, id dignissim erat. Nulla facilisi. Nam volutpat eleifend mauris, ac pretium eros bibendum eget. Morbi nec nulla risus, non ultrices velit. Pellentesque et neque leo, id vestibulum velit. Integer mauris mi, semper et porttitor eu, dictum vel quam. Morbi ultrices erat eu ante tempus lacinia. Phasellus rhoncus consectetur fermentum. Praesent eget ante metus, vel dictum diam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Nulla blandit velit tortor, sit amet dapibus sapien. Phasellus dictum facilisis mauris, convallis placerat turpis tincidunt ac. Maecenas dapibus nisl in metus ornare ac ornare massa dapibus. Nam ut pretium felis. Donec lobortis, urna eget sodales elementum, lectus turpis ullamcorper ipsum, eu imperdiet sem massa a quam. Ut rutrum, neque sed dictum interdum, sapien augue tincidunt nunc, id mollis felis turpis a mi. Mauris tur
254
+
255
+ pis sapien, imperdiet eget mollis eu, rutrum ut lacus. Nam laoreet nisi quis ligula consequat mollis. Ut sed dolor at mi adipiscing egestas. Aenean ultrices molestie leo eget hendrerit. Duis pharetra neque molestie velit pretium aliquam. Praesent convallis, libero vel tincidunt eleifend, libero orci tristique urna, sed vestibulum quam magna id sem. Proin adipiscing varius malesuada. Aenean condimentum, sem vitae mattis imperdiet, lacus nunc mattis nulla, iaculis fringilla sem turpis quis felis. Donec tempus tellus aliquam metus ornare eleifend. Nullam non dui quis velit suscipit pulvinar eu a elit. In nisl erat, ultrices non blandit quis, vestibulum vitae dolor. Nam nisl lacus, rutrum eu pharetra eu, venenatis et leo. Etiam eget orci arcu.
256
+
257
+ Quisque sit amet feugiat dolor. Quisque porta dictum tellus sed faucibus. Donec hendrerit velit vel neque vehicula hendrerit. Mauris pulvinar condimentum massa, a molestie nibh malesuada vel. Nulla sit amet turpis eget augue iaculis cursus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.22]]></content:encoded>
258
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
259
+ <wp:post_id>5</wp:post_id>
260
+ <wp:post_date>2014-11-26 12:52:36</wp:post_date>
261
+ <wp:post_date_gmt>2014-11-26 11:52:36</wp:post_date_gmt>
262
+ <wp:comment_status>open</wp:comment_status>
263
+ <wp:ping_status>open</wp:ping_status>
264
+ <wp:post_name>wpis-numer-dwa</wp:post_name>
265
+ <wp:status>publish</wp:status>
266
+ <wp:post_parent>0</wp:post_parent>
267
+ <wp:menu_order>0</wp:menu_order>
268
+ <wp:post_type>post</wp:post_type>
269
+ <wp:post_password/>
270
+ <wp:is_sticky>0</wp:is_sticky>
271
+ <category domain="category" nicename="bez-kategorii"><![CDATA[Bez kategorii]]></category>
272
+ <wp:postmeta>
273
+ <wp:meta_key>_publicize_pending</wp:meta_key>
274
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
275
+ </wp:postmeta>
276
+ <wp:postmeta>
277
+ <wp:meta_key>_rest_api_published</wp:meta_key>
278
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
279
+ </wp:postmeta>
280
+ <wp:postmeta>
281
+ <wp:meta_key>_rest_api_client_id</wp:meta_key>
282
+ <wp:meta_value><![CDATA[-1]]></wp:meta_value>
283
+ </wp:postmeta>
284
+ <wp:postmeta>
285
+ <wp:meta_key>_wpas_skip_facebook</wp:meta_key>
286
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
287
+ </wp:postmeta>
288
+ <wp:postmeta>
289
+ <wp:meta_key>_wpas_skip_google_plus</wp:meta_key>
290
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
291
+ </wp:postmeta>
292
+ <wp:postmeta>
293
+ <wp:meta_key>_wpas_skip_twitter</wp:meta_key>
294
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
295
+ </wp:postmeta>
296
+ <wp:postmeta>
297
+ <wp:meta_key>_wpas_skip_linkedin</wp:meta_key>
298
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
299
+ </wp:postmeta>
300
+ <wp:postmeta>
301
+ <wp:meta_key>_wpas_skip_tumblr</wp:meta_key>
302
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
303
+ </wp:postmeta>
304
+ <wp:postmeta>
305
+ <wp:meta_key>_wpas_skip_path</wp:meta_key>
306
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
307
+ </wp:postmeta>
308
+ <wp:comment>
309
+ <wp:comment_id>4</wp:comment_id>
310
+ <wp:comment_author><![CDATA[szpryc]]></wp:comment_author>
311
+ <wp:comment_author_email>komarpro@gmail.com</wp:comment_author_email>
312
+ <wp:comment_author_url>http://szpryciarz.wordpress.com</wp:comment_author_url>
313
+ <wp:comment_author_IP>109.231.20.12</wp:comment_author_IP>
314
+ <wp:comment_date>2014-11-26 12:52:56</wp:comment_date>
315
+ <wp:comment_date_gmt>2014-11-26 11:52:56</wp:comment_date_gmt>
316
+ <wp:comment_content><![CDATA[komentarz do wpisu 2]]></wp:comment_content>
317
+ <wp:comment_approved>1</wp:comment_approved>
318
+ <wp:comment_type/>
319
+ <wp:comment_parent>0</wp:comment_parent>
320
+ <wp:comment_user_id>72688371</wp:comment_user_id>
321
+ <wp:commentmeta>
322
+ <wp:meta_key>jabber_published</wp:meta_key>
323
+ <wp:meta_value>1417002777</wp:meta_value>
324
+ </wp:commentmeta>
325
+ <wp:commentmeta>
326
+ <wp:meta_key>akismet_result</wp:meta_key>
327
+ <wp:meta_value>false</wp:meta_value>
328
+ </wp:commentmeta>
329
+ <wp:commentmeta>
330
+ <wp:meta_key>akismet_history</wp:meta_key>
331
+ <wp:meta_value>a:4:{s:4:"time";d:1417002777.3234920501708984375;s:7:"message";s:34:"Akismet przepuścił ten komentarz";s:5:"event";s:9:"check-ham";s:4:"user";s:6:"szpryc";}</wp:meta_value>
332
+ </wp:commentmeta>
333
+ <wp:commentmeta>
334
+ <wp:meta_key>email_notification_notqueued</wp:meta_key>
335
+ <wp:meta_value>1417002777</wp:meta_value>
336
+ </wp:commentmeta>
337
+ </wp:comment>
338
+ <wp:comment>
339
+ <wp:comment_id>5</wp:comment_id>
340
+ <wp:comment_author><![CDATA[szpryc]]></wp:comment_author>
341
+ <wp:comment_author_email>komarpro@gmail.com</wp:comment_author_email>
342
+ <wp:comment_author_url>http://szpryciarz.wordpress.com</wp:comment_author_url>
343
+ <wp:comment_author_IP>109.231.20.12</wp:comment_author_IP>
344
+ <wp:comment_date>2014-11-26 12:53:39</wp:comment_date>
345
+ <wp:comment_date_gmt>2014-11-26 11:53:39</wp:comment_date_gmt>
346
+ <wp:comment_content><![CDATA[drugi komentarz do wpisu 2]]></wp:comment_content>
347
+ <wp:comment_approved>1</wp:comment_approved>
348
+ <wp:comment_type/>
349
+ <wp:comment_parent>0</wp:comment_parent>
350
+ <wp:comment_user_id>72688371</wp:comment_user_id>
351
+ <wp:commentmeta>
352
+ <wp:meta_key>jabber_published</wp:meta_key>
353
+ <wp:meta_value>1417002819</wp:meta_value>
354
+ </wp:commentmeta>
355
+ <wp:commentmeta>
356
+ <wp:meta_key>akismet_result</wp:meta_key>
357
+ <wp:meta_value>false</wp:meta_value>
358
+ </wp:commentmeta>
359
+ <wp:commentmeta>
360
+ <wp:meta_key>akismet_history</wp:meta_key>
361
+ <wp:meta_value>a:4:{s:4:"time";d:1417002819.990191936492919921875;s:7:"message";s:34:"Akismet przepuścił ten komentarz";s:5:"event";s:9:"check-ham";s:4:"user";s:6:"szpryc";}</wp:meta_value>
362
+ </wp:commentmeta>
363
+ <wp:commentmeta>
364
+ <wp:meta_key>email_notification_notqueued</wp:meta_key>
365
+ <wp:meta_value>1417002820</wp:meta_value>
366
+ </wp:commentmeta>
367
+ </wp:comment>
368
+ </item>
369
+ <item>
370
+ <title>wpis numer dwa</title>
371
+ <link>http://szpryc.wordpress.com/?p=9</link>
372
+ <pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
373
+ <dc:creator>szpryc</dc:creator>
374
+ <guid isPermaLink="false">http://szpryc.wordpress.com/?p=9</guid>
375
+ <description/>
376
+ <content:encoded><![CDATA[asd asd]]></content:encoded>
377
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
378
+ <wp:post_id>9</wp:post_id>
379
+ <wp:post_date>2014-11-26 15:58:15</wp:post_date>
380
+ <wp:post_date_gmt>0000-00-00 00:00:00</wp:post_date_gmt>
381
+ <wp:comment_status>open</wp:comment_status>
382
+ <wp:ping_status>open</wp:ping_status>
383
+ <wp:post_name/>
384
+ <wp:status>draft</wp:status>
385
+ <wp:post_parent>0</wp:post_parent>
386
+ <wp:menu_order>0</wp:menu_order>
387
+ <wp:post_type>post</wp:post_type>
388
+ <wp:post_password/>
389
+ <wp:is_sticky>0</wp:is_sticky>
390
+ <category domain="category" nicename="bez-kategorii"><![CDATA[Bez kategorii]]></category>
391
+ <wp:postmeta>
392
+ <wp:meta_key>_wpas_skip_google_plus</wp:meta_key>
393
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
394
+ </wp:postmeta>
395
+ <wp:postmeta>
396
+ <wp:meta_key>_wpas_skip_facebook</wp:meta_key>
397
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
398
+ </wp:postmeta>
399
+ <wp:postmeta>
400
+ <wp:meta_key>_wpas_skip_twitter</wp:meta_key>
401
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
402
+ </wp:postmeta>
403
+ <wp:postmeta>
404
+ <wp:meta_key>_wpas_skip_linkedin</wp:meta_key>
405
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
406
+ </wp:postmeta>
407
+ <wp:postmeta>
408
+ <wp:meta_key>_wpas_skip_tumblr</wp:meta_key>
409
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
410
+ </wp:postmeta>
411
+ <wp:postmeta>
412
+ <wp:meta_key>_wpas_skip_path</wp:meta_key>
413
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
414
+ </wp:postmeta>
415
+ </item>
416
+ <item>
417
+ <title>wpis numer dwa/2</title>
418
+ <link>http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa-2/</link>
419
+ <pubDate>Wed, 26 Nov 2014 14:59:22 +0000</pubDate>
420
+ <dc:creator>szpryc</dc:creator>
421
+ <guid isPermaLink="false">http://szpryc.wordpress.com/?p=11</guid>
422
+ <description/>
423
+ <content:encoded><![CDATA[[caption id="" align="alignnone" width="500"]<a href="http://www.mojegotowanie.pl/var/self/storage/images/media/images/artykuly/pigwa/1961757-1-pol-PL/pigwa_popup.jpg"><img class="" src="http://www.mojegotowanie.pl/var/self/storage/images/media/images/artykuly/pigwa/1961757-1-pol-PL/pigwa_popup.jpg" alt="piwa alter tekscik" width="500" height="366" /></a> pigwy etykieta[/caption]
424
+ <h1 class="entry-title" style="text-align:center;"> tekst wpis numer dwa content /2222</h1>]]></content:encoded>
425
+ <excerpt:encoded><![CDATA[wypis 1 tekst]]></excerpt:encoded>
426
+ <wp:post_id>11</wp:post_id>
427
+ <wp:post_date>2014-11-26 15:59:22</wp:post_date>
428
+ <wp:post_date_gmt>2014-11-26 14:59:22</wp:post_date_gmt>
429
+ <wp:comment_status>open</wp:comment_status>
430
+ <wp:ping_status>open</wp:ping_status>
431
+ <wp:post_name>wpis-numer-dwa-2</wp:post_name>
432
+ <wp:status>publish</wp:status>
433
+ <wp:post_parent>0</wp:post_parent>
434
+ <wp:menu_order>0</wp:menu_order>
435
+ <wp:post_type>post</wp:post_type>
436
+ <wp:post_password/>
437
+ <wp:is_sticky>0</wp:is_sticky>
438
+ <category domain="category" nicename="chatka"><![CDATA[chatka]]></category>
439
+ <category domain="category" nicename="dom"><![CDATA[dom]]></category>
440
+ <category domain="category" nicename="puchatka"><![CDATA[puchatka]]></category>
441
+ <category domain="post_tag" nicename="testowy"><![CDATA[testowy]]></category>
442
+ <category domain="post_tag" nicename="testowy2"><![CDATA[testowy2]]></category>
443
+ <wp:postmeta>
444
+ <wp:meta_key>_wpas_skip_facebook</wp:meta_key>
445
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
446
+ </wp:postmeta>
447
+ <wp:postmeta>
448
+ <wp:meta_key>_wpas_skip_google_plus</wp:meta_key>
449
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
450
+ </wp:postmeta>
451
+ <wp:postmeta>
452
+ <wp:meta_key>_wpas_skip_twitter</wp:meta_key>
453
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
454
+ </wp:postmeta>
455
+ <wp:postmeta>
456
+ <wp:meta_key>_wpas_skip_linkedin</wp:meta_key>
457
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
458
+ </wp:postmeta>
459
+ <wp:postmeta>
460
+ <wp:meta_key>_wpas_skip_tumblr</wp:meta_key>
461
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
462
+ </wp:postmeta>
463
+ <wp:postmeta>
464
+ <wp:meta_key>_wpas_skip_path</wp:meta_key>
465
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
466
+ </wp:postmeta>
467
+ <wp:postmeta>
468
+ <wp:meta_key>_publicize_pending</wp:meta_key>
469
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
470
+ </wp:postmeta>
471
+ <wp:postmeta>
472
+ <wp:meta_key>_rest_api_published</wp:meta_key>
473
+ <wp:meta_value><![CDATA[1]]></wp:meta_value>
474
+ </wp:postmeta>
475
+ <wp:postmeta>
476
+ <wp:meta_key>_rest_api_client_id</wp:meta_key>
477
+ <wp:meta_value><![CDATA[-1]]></wp:meta_value>
478
+ </wp:postmeta>
479
+ <wp:postmeta>
480
+ <wp:meta_key>_thumbnail_id</wp:meta_key>
481
+ <wp:meta_value><![CDATA[15]]></wp:meta_value>
482
+ </wp:postmeta>
483
+ <wp:postmeta>
484
+ <wp:meta_key>geo_latitude</wp:meta_key>
485
+ <wp:meta_value><![CDATA[53.132489]]></wp:meta_value>
486
+ </wp:postmeta>
487
+ <wp:postmeta>
488
+ <wp:meta_key>geo_longitude</wp:meta_key>
489
+ <wp:meta_value><![CDATA[23.168840000000046]]></wp:meta_value>
490
+ </wp:postmeta>
491
+ <wp:postmeta>
492
+ <wp:meta_key>geo_address</wp:meta_key>
493
+ <wp:meta_value><![CDATA[Osiedle Bojary, Bialystok, Poland]]></wp:meta_value>
494
+ </wp:postmeta>
495
+ <wp:postmeta>
496
+ <wp:meta_key>geo_public</wp:meta_key>
497
+ <wp:meta_value><![CDATA[]]></wp:meta_value>
498
+ </wp:postmeta>
499
+ </item>
500
+ <item>
501
+ <title>reka</title>
502
+ <link>http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa-2/screen-shot-2014-11-27-at-12-34-47-pm/#main</link>
503
+ <pubDate>Thu, 27 Nov 2014 11:34:59 +0000</pubDate>
504
+ <dc:creator>szpryc</dc:creator>
505
+ <guid isPermaLink="false">http://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm.png</guid>
506
+ <description/>
507
+ <content:encoded><![CDATA[opis opis]]></content:encoded>
508
+ <excerpt:encoded><![CDATA[jakas etykieta]]></excerpt:encoded>
509
+ <wp:post_id>15</wp:post_id>
510
+ <wp:post_date>2014-11-27 12:34:59</wp:post_date>
511
+ <wp:post_date_gmt>2014-11-27 11:34:59</wp:post_date_gmt>
512
+ <wp:comment_status>open</wp:comment_status>
513
+ <wp:ping_status>open</wp:ping_status>
514
+ <wp:post_name>screen-shot-2014-11-27-at-12-34-47-pm</wp:post_name>
515
+ <wp:status>inherit</wp:status>
516
+ <wp:post_parent>11</wp:post_parent>
517
+ <wp:menu_order>0</wp:menu_order>
518
+ <wp:post_type>attachment</wp:post_type>
519
+ <wp:post_password/>
520
+ <wp:is_sticky>0</wp:is_sticky>
521
+ <wp:attachment_url>https://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm.png</wp:attachment_url>
522
+ <wp:postmeta>
523
+ <wp:meta_key>_wp_attachment_image_alt</wp:meta_key>
524
+ <wp:meta_value><![CDATA[MOJ_DESC]]></wp:meta_value>
525
+ </wp:postmeta>
526
+ </item>
527
+ <item>
528
+ <title>Screen Shot 2014-11-27 at 12.34.47 PM</title>
529
+ <link>http://szpryc.wordpress.com/2014/11/26/wpis-numer-dwa/screen-shot-2014-11-27-at-12-34-47-pm-2/#main</link>
530
+ <pubDate>Thu, 27 Nov 2014 17:53:28 +0000</pubDate>
531
+ <dc:creator>szpryc</dc:creator>
532
+ <guid isPermaLink="false">http://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm1.png</guid>
533
+ <description/>
534
+ <content:encoded><![CDATA[]]></content:encoded>
535
+ <excerpt:encoded><![CDATA[]]></excerpt:encoded>
536
+ <wp:post_id>21</wp:post_id>
537
+ <wp:post_date>2014-11-27 18:53:28</wp:post_date>
538
+ <wp:post_date_gmt>2014-11-27 17:53:28</wp:post_date_gmt>
539
+ <wp:comment_status>open</wp:comment_status>
540
+ <wp:ping_status>open</wp:ping_status>
541
+ <wp:post_name>screen-shot-2014-11-27-at-12-34-47-pm-2</wp:post_name>
542
+ <wp:status>inherit</wp:status>
543
+ <wp:post_parent>5</wp:post_parent>
544
+ <wp:menu_order>0</wp:menu_order>
545
+ <wp:post_type>attachment</wp:post_type>
546
+ <wp:post_password/>
547
+ <wp:is_sticky>0</wp:is_sticky>
548
+ <wp:attachment_url>https://szpryc.files.wordpress.com/2014/11/screen-shot-2014-11-27-at-12-34-47-pm1.png</wp:attachment_url>
549
+ </item>
550
+ </channel>
551
+ </rss>