sweetie 1.0.2 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (172) hide show
  1. checksums.yaml +5 -5
  2. data/.circleci/config.yml +30 -0
  3. data/.gitignore +3 -0
  4. data/.rubocop.yml +16 -0
  5. data/Gemfile +3 -2
  6. data/README.md +224 -28
  7. data/Rakefile +3 -2
  8. data/lib/sweetie/bitbucket.rb +22 -197
  9. data/lib/sweetie/bitbucket_stati_helper.rb +247 -0
  10. data/lib/sweetie/conversion.rb +91 -62
  11. data/lib/sweetie/helper.rb +60 -51
  12. data/lib/sweetie/version.rb +2 -1
  13. data/lib/sweetie.rb +2 -2
  14. data/spec/fixtures/bitbucket/expected_repositories.txt +1 -0
  15. data/spec/fixtures/bitbucket/repositories.json +1 -0
  16. data/spec/fixtures/jekyll/_config.yml +4 -0
  17. data/spec/fixtures/jekyll/_config_repositories.yml +7 -0
  18. data/spec/fixtures/jekyll/_expected_config.yml +4 -0
  19. data/spec/{source → fixtures/jekyll}/site/404.html +0 -0
  20. data/spec/{source → fixtures/jekyll}/site/about.html +0 -0
  21. data/spec/{source → fixtures/jekyll}/site/archiv.html +0 -0
  22. data/spec/{source → fixtures/jekyll}/site/atom.xml +0 -0
  23. data/spec/{source → fixtures/jekyll}/site/colophon.html +0 -0
  24. data/spec/{source → fixtures/jekyll}/site/contact.html +0 -0
  25. data/spec/{source → fixtures/jekyll}/site/follow.html +0 -0
  26. data/spec/{source → fixtures/jekyll}/site/images/2_avatars.gif +0 -0
  27. data/spec/{source → fixtures/jekyll}/site/images/favicon.png +0 -0
  28. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther.jpg +0 -0
  29. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_normal.jpg +0 -0
  30. data/spec/{source → fixtures/jekyll}/site/images/images-global/matthias_guenther_thumbnail_small.jpg +0 -0
  31. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/closebox.png +0 -0
  32. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-fill.png +0 -0
  33. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-l.png +0 -0
  34. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-caption-r.png +0 -0
  35. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow1.png +0 -0
  36. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow2.png +0 -0
  37. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow3.png +0 -0
  38. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow4.png +0 -0
  39. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow5.png +0 -0
  40. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow6.png +0 -0
  41. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow7.png +0 -0
  42. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-shadow8.png +0 -0
  43. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-1.png +0 -0
  44. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-10.png +0 -0
  45. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-11.png +0 -0
  46. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-12.png +0 -0
  47. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-2.png +0 -0
  48. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-3.png +0 -0
  49. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-4.png +0 -0
  50. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-5.png +0 -0
  51. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-6.png +0 -0
  52. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-7.png +0 -0
  53. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-8.png +0 -0
  54. data/spec/{source → fixtures/jekyll}/site/images/images-global/zoom/zoom-spin-9.png +0 -0
  55. data/spec/{source → fixtures/jekyll}/site/images/rails3.jpg +0 -0
  56. data/spec/{source → fixtures/jekyll}/site/index.html +0 -0
  57. data/spec/{source → fixtures/jekyll}/site/robots.txt +0 -0
  58. data/spec/{source → fixtures/jekyll}/site/sitemap.xml +0 -0
  59. data/spec/{source → fixtures/jekyll}/site/why-i-use-jekyll-for-blogging.html +0 -0
  60. data/spec/fixtures/middleman/build/2012-01-meetup/index.html +238 -0
  61. data/spec/fixtures/middleman/build/2012-03-meetup/index.html +217 -0
  62. data/spec/fixtures/middleman/build/2012-05-meetup/index.html +214 -0
  63. data/spec/fixtures/middleman/build/2012-07-meetup/index.html +210 -0
  64. data/spec/fixtures/middleman/build/2012-08-workshop/index.html +228 -0
  65. data/spec/fixtures/middleman/build/2012-09-meetup/index.html +231 -0
  66. data/spec/fixtures/middleman/build/2012-10-workshop/index.html +227 -0
  67. data/spec/fixtures/middleman/build/2012-11-meetup/index.html +229 -0
  68. data/spec/fixtures/middleman/build/2012-unusual-december-meetup/index.html +186 -0
  69. data/spec/fixtures/middleman/build/2013-01-meetup/index.html +226 -0
  70. data/spec/fixtures/middleman/build/404/index.html +157 -0
  71. data/spec/fixtures/middleman/build/CNAME +1 -0
  72. data/spec/fixtures/middleman/build/april-2014-meetup/index.html +221 -0
  73. data/spec/fixtures/middleman/build/april-2015-meetup/index.html +204 -0
  74. data/spec/fixtures/middleman/build/april-2017-meetup/index.html +210 -0
  75. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-144x144.png +0 -0
  76. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-192x192.png +0 -0
  77. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-36x36.png +0 -0
  78. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-48x48.png +0 -0
  79. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-72x72.png +0 -0
  80. data/spec/fixtures/middleman/build/assets/favicons/android-chrome-96x96.png +0 -0
  81. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-114x114.png +0 -0
  82. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-120x120.png +0 -0
  83. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-144x144.png +0 -0
  84. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-152x152.png +0 -0
  85. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-180x180.png +0 -0
  86. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-57x57.png +0 -0
  87. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-60x60.png +0 -0
  88. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-72x72.png +0 -0
  89. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-76x76.png +0 -0
  90. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon-precomposed.png +0 -0
  91. data/spec/fixtures/middleman/build/assets/favicons/apple-touch-icon.png +0 -0
  92. data/spec/fixtures/middleman/build/assets/favicons/browserconfig.xml +12 -0
  93. data/spec/fixtures/middleman/build/assets/favicons/favicon-16x16.png +0 -0
  94. data/spec/fixtures/middleman/build/assets/favicons/favicon-32x32.png +0 -0
  95. data/spec/fixtures/middleman/build/assets/favicons/favicon-96x96.png +0 -0
  96. data/spec/fixtures/middleman/build/assets/favicons/favicon.ico +0 -0
  97. data/spec/fixtures/middleman/build/assets/favicons/manifest.json +41 -0
  98. data/spec/fixtures/middleman/build/assets/favicons/mstile-144x144.png +0 -0
  99. data/spec/fixtures/middleman/build/assets/favicons/mstile-150x150.png +0 -0
  100. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x150.png +0 -0
  101. data/spec/fixtures/middleman/build/assets/favicons/mstile-310x310.png +0 -0
  102. data/spec/fixtures/middleman/build/assets/favicons/mstile-70x70.png +0 -0
  103. data/spec/fixtures/middleman/build/assets/favicons/safari-pinned-tab.svg +450 -0
  104. data/spec/fixtures/middleman/build/assets/images/launch_co_logo.png +0 -0
  105. data/spec/fixtures/middleman/build/assets/images/vimfest.png +0 -0
  106. data/spec/fixtures/middleman/build/assets/javascripts/application.js +12 -0
  107. data/spec/fixtures/middleman/build/assets/javascripts/jquery.utils.js +12 -0
  108. data/spec/fixtures/middleman/build/assets/javascripts/lib/validate.js +1 -0
  109. data/spec/fixtures/middleman/build/assets/stylesheets/application.css +5 -0
  110. data/spec/fixtures/middleman/build/assets/stylesheets/vendor/bootstrap.css +5 -0
  111. data/spec/fixtures/middleman/build/august-2013-meetup/index.html +208 -0
  112. data/spec/fixtures/middleman/build/blog/index.html +500 -0
  113. data/spec/fixtures/middleman/build/book-club-about-the-viml-primer/index.html +182 -0
  114. data/spec/fixtures/middleman/build/contact/index.html +155 -0
  115. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_ctags/index.html +98 -0
  116. data/spec/fixtures/middleman/build/data/vimberlin-2013-09_vimprofiling/index.html +157 -0
  117. data/spec/fixtures/middleman/build/data/vimberlin-2014-01_vim_writing/index.html +70 -0
  118. data/spec/fixtures/middleman/build/december-2015-meetup/index.html +199 -0
  119. data/spec/fixtures/middleman/build/december-2016-meetup/index.html +224 -0
  120. data/spec/fixtures/middleman/build/february-2013-vim-beer-lin/index.html +190 -0
  121. data/spec/fixtures/middleman/build/february-2015-meetup/index.html +233 -0
  122. data/spec/fixtures/middleman/build/february-2016-meetup/index.html +271 -0
  123. data/spec/fixtures/middleman/build/feed.xml +2106 -0
  124. data/spec/fixtures/middleman/build/fonts/FontAwesome.otf +0 -0
  125. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.eot +0 -0
  126. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.svg +655 -0
  127. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.ttf +0 -0
  128. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff +0 -0
  129. data/spec/fixtures/middleman/build/fonts/fontawesome-webfont.woff2 +0 -0
  130. data/spec/fixtures/middleman/build/humans.txt +12 -0
  131. data/spec/fixtures/middleman/build/imprint/index.html +177 -0
  132. data/spec/fixtures/middleman/build/index.html +157 -0
  133. data/spec/fixtures/middleman/build/january-2014-meetup/index.html +257 -0
  134. data/spec/fixtures/middleman/build/january-2015-meetup/index.html +243 -0
  135. data/spec/fixtures/middleman/build/january-2016-meetup/index.html +202 -0
  136. data/spec/fixtures/middleman/build/january-2017-meetup/index.html +228 -0
  137. data/spec/fixtures/middleman/build/july-2015-meetup/index.html +207 -0
  138. data/spec/fixtures/middleman/build/june-2016-meetup/index.html +260 -0
  139. data/spec/fixtures/middleman/build/march-2-2017-meetup/index.html +201 -0
  140. data/spec/fixtures/middleman/build/march-2014-meetup/index.html +219 -0
  141. data/spec/fixtures/middleman/build/march-2016-meetup/index.html +221 -0
  142. data/spec/fixtures/middleman/build/march-2017-meetup/index.html +222 -0
  143. data/spec/fixtures/middleman/build/may-2013-meetup/index.html +234 -0
  144. data/spec/fixtures/middleman/build/may-2014-meetup/index.html +198 -0
  145. data/spec/fixtures/middleman/build/may-2015-meetup/index.html +202 -0
  146. data/spec/fixtures/middleman/build/may-2016-meetup/index.html +245 -0
  147. data/spec/fixtures/middleman/build/newsletter/index.html +171 -0
  148. data/spec/fixtures/middleman/build/november-2013-meetup/index.html +199 -0
  149. data/spec/fixtures/middleman/build/november-2015-meetup/index.html +402 -0
  150. data/spec/fixtures/middleman/build/november-2016-meetup/index.html +224 -0
  151. data/spec/fixtures/middleman/build/october-2013-meetup/index.html +210 -0
  152. data/spec/fixtures/middleman/build/october-2014-meetup/index.html +196 -0
  153. data/spec/fixtures/middleman/build/october-2016-meetup/index.html +222 -0
  154. data/spec/fixtures/middleman/build/robots.txt +6 -0
  155. data/spec/fixtures/middleman/build/september-2013-meetup/index.html +225 -0
  156. data/spec/fixtures/middleman/build/september-2014-meetup/index.html +211 -0
  157. data/spec/fixtures/middleman/build/sitemap.xml +297 -0
  158. data/spec/fixtures/middleman/build/vimfest-october-2015/index.html +303 -0
  159. data/spec/fixtures/middleman/config.rb +4 -0
  160. data/spec/fixtures/middleman/config_repositories.rb +7 -0
  161. data/spec/fixtures/middleman/expected_config.rb +4 -0
  162. data/spec/spec_helper.rb +2 -2
  163. data/spec/sweetie_bitbucket_spec.rb +26 -51
  164. data/spec/sweetie_bitbucket_stati_helper_spec.rb +124 -0
  165. data/spec/sweetie_conversion_spec.rb +105 -17
  166. data/spec/sweetie_helper_spec.rb +140 -0
  167. data/sweetie.gemspec +10 -9
  168. metadata +163 -56
  169. data/.travis.yml +0 -7
  170. data/spec/source/_config.yml +0 -18
  171. data/spec/source/bitbucket/user_repositories.json +0 -161
  172. data/spec/source/bitbucket/user_repositories_expectation.txt +0 -1
@@ -0,0 +1,297 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
3
+ <url>
4
+ <loc>http://vimberlin.de/december-2015-meetup/</loc>
5
+ <lastmod>2016-11-13T07:10:57+01:00</lastmod>
6
+ <changefreq>monthly</changefreq>
7
+ <priority>0.5</priority>
8
+ </url>
9
+ <url>
10
+ <loc>http://vimberlin.de/march-2016-meetup/</loc>
11
+ <lastmod>2016-11-13T07:11:17+01:00</lastmod>
12
+ <changefreq>monthly</changefreq>
13
+ <priority>0.5</priority>
14
+ </url>
15
+ <url>
16
+ <loc>http://vimberlin.de/may-2013-meetup/</loc>
17
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
18
+ <changefreq>monthly</changefreq>
19
+ <priority>0.5</priority>
20
+ </url>
21
+ <url>
22
+ <loc>http://vimberlin.de/november-2016-meetup/</loc>
23
+ <lastmod>2016-12-06T17:36:21+01:00</lastmod>
24
+ <changefreq>monthly</changefreq>
25
+ <priority>0.5</priority>
26
+ </url>
27
+ <url>
28
+ <loc>http://vimberlin.de/april-2014-meetup/</loc>
29
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
30
+ <changefreq>monthly</changefreq>
31
+ <priority>0.5</priority>
32
+ </url>
33
+ <url>
34
+ <loc>http://vimberlin.de/may-2016-meetup/</loc>
35
+ <lastmod>2016-11-13T07:11:44+01:00</lastmod>
36
+ <changefreq>monthly</changefreq>
37
+ <priority>0.5</priority>
38
+ </url>
39
+ <url>
40
+ <loc>http://vimberlin.de/2012-09-meetup/</loc>
41
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
42
+ <changefreq>monthly</changefreq>
43
+ <priority>0.5</priority>
44
+ </url>
45
+ <url>
46
+ <loc>http://vimberlin.de/2012-unusual-december-meetup/</loc>
47
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
48
+ <changefreq>monthly</changefreq>
49
+ <priority>0.5</priority>
50
+ </url>
51
+ <url>
52
+ <loc>http://vimberlin.de/</loc>
53
+ <lastmod>2017-03-11T08:24:02+01:00</lastmod>
54
+ <changefreq>monthly</changefreq>
55
+ <priority>0.5</priority>
56
+ </url>
57
+ <url>
58
+ <loc>http://vimberlin.de/january-2014-meetup/</loc>
59
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
60
+ <changefreq>monthly</changefreq>
61
+ <priority>0.5</priority>
62
+ </url>
63
+ <url>
64
+ <loc>http://vimberlin.de/february-2013-vim-beer-lin/</loc>
65
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
66
+ <changefreq>monthly</changefreq>
67
+ <priority>0.5</priority>
68
+ </url>
69
+ <url>
70
+ <loc>http://vimberlin.de/may-2014-meetup/</loc>
71
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
72
+ <changefreq>monthly</changefreq>
73
+ <priority>0.5</priority>
74
+ </url>
75
+ <url>
76
+ <loc>http://vimberlin.de/404/</loc>
77
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
78
+ <changefreq>monthly</changefreq>
79
+ <priority>0.5</priority>
80
+ </url>
81
+ <url>
82
+ <loc>http://vimberlin.de/october-2016-meetup/</loc>
83
+ <lastmod>2016-11-13T07:11:57+01:00</lastmod>
84
+ <changefreq>monthly</changefreq>
85
+ <priority>0.5</priority>
86
+ </url>
87
+ <url>
88
+ <loc>http://vimberlin.de/blog/</loc>
89
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
90
+ <changefreq>monthly</changefreq>
91
+ <priority>0.5</priority>
92
+ </url>
93
+ <url>
94
+ <loc>http://vimberlin.de/november-2013-meetup/</loc>
95
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
96
+ <changefreq>monthly</changefreq>
97
+ <priority>0.5</priority>
98
+ </url>
99
+ <url>
100
+ <loc>http://vimberlin.de/august-2013-meetup/</loc>
101
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
102
+ <changefreq>monthly</changefreq>
103
+ <priority>0.5</priority>
104
+ </url>
105
+ <url>
106
+ <loc>http://vimberlin.de/2012-08-workshop/</loc>
107
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
108
+ <changefreq>monthly</changefreq>
109
+ <priority>0.5</priority>
110
+ </url>
111
+ <url>
112
+ <loc>http://vimberlin.de/april-2017-meetup/</loc>
113
+ <lastmod>2017-04-11T22:36:40+02:00</lastmod>
114
+ <changefreq>monthly</changefreq>
115
+ <priority>0.5</priority>
116
+ </url>
117
+ <url>
118
+ <loc>http://vimberlin.de/february-2015-meetup/</loc>
119
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
120
+ <changefreq>monthly</changefreq>
121
+ <priority>0.5</priority>
122
+ </url>
123
+ <url>
124
+ <loc>http://vimberlin.de/2012-10-workshop/</loc>
125
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
126
+ <changefreq>monthly</changefreq>
127
+ <priority>0.5</priority>
128
+ </url>
129
+ <url>
130
+ <loc>http://vimberlin.de/january-2016-meetup/</loc>
131
+ <lastmod>2016-11-13T07:12:07+01:00</lastmod>
132
+ <changefreq>monthly</changefreq>
133
+ <priority>0.5</priority>
134
+ </url>
135
+ <url>
136
+ <loc>http://vimberlin.de/december-2016-meetup/</loc>
137
+ <lastmod>2016-12-13T20:39:17+01:00</lastmod>
138
+ <changefreq>monthly</changefreq>
139
+ <priority>0.5</priority>
140
+ </url>
141
+ <url>
142
+ <loc>http://vimberlin.de/november-2015-meetup/</loc>
143
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
144
+ <changefreq>monthly</changefreq>
145
+ <priority>0.5</priority>
146
+ </url>
147
+ <url>
148
+ <loc>http://vimberlin.de/september-2013-meetup/</loc>
149
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
150
+ <changefreq>monthly</changefreq>
151
+ <priority>0.5</priority>
152
+ </url>
153
+ <url>
154
+ <loc>http://vimberlin.de/january-2015-meetup/</loc>
155
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
156
+ <changefreq>monthly</changefreq>
157
+ <priority>0.5</priority>
158
+ </url>
159
+ <url>
160
+ <loc>http://vimberlin.de/book-club-about-the-viml-primer/</loc>
161
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
162
+ <changefreq>monthly</changefreq>
163
+ <priority>0.5</priority>
164
+ </url>
165
+ <url>
166
+ <loc>http://vimberlin.de/2013-01-meetup/</loc>
167
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
168
+ <changefreq>monthly</changefreq>
169
+ <priority>0.5</priority>
170
+ </url>
171
+ <url>
172
+ <loc>http://vimberlin.de/february-2016-meetup/</loc>
173
+ <lastmod>2016-11-13T07:12:17+01:00</lastmod>
174
+ <changefreq>monthly</changefreq>
175
+ <priority>0.5</priority>
176
+ </url>
177
+ <url>
178
+ <loc>http://vimberlin.de/2012-05-meetup/</loc>
179
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
180
+ <changefreq>monthly</changefreq>
181
+ <priority>0.5</priority>
182
+ </url>
183
+ <url>
184
+ <loc>http://vimberlin.de/april-2015-meetup/</loc>
185
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
186
+ <changefreq>monthly</changefreq>
187
+ <priority>0.5</priority>
188
+ </url>
189
+ <url>
190
+ <loc>http://vimberlin.de/2012-07-meetup/</loc>
191
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
192
+ <changefreq>monthly</changefreq>
193
+ <priority>0.5</priority>
194
+ </url>
195
+ <url>
196
+ <loc>http://vimberlin.de/vimfest-october-2015/</loc>
197
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
198
+ <changefreq>monthly</changefreq>
199
+ <priority>0.5</priority>
200
+ </url>
201
+ <url>
202
+ <loc>http://vimberlin.de/july-2015-meetup/</loc>
203
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
204
+ <changefreq>monthly</changefreq>
205
+ <priority>0.5</priority>
206
+ </url>
207
+ <url>
208
+ <loc>http://vimberlin.de/march-2014-meetup/</loc>
209
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
210
+ <changefreq>monthly</changefreq>
211
+ <priority>0.5</priority>
212
+ </url>
213
+ <url>
214
+ <loc>http://vimberlin.de/june-2016-meetup/</loc>
215
+ <lastmod>2017-02-19T16:34:18+01:00</lastmod>
216
+ <changefreq>monthly</changefreq>
217
+ <priority>0.5</priority>
218
+ </url>
219
+ <url>
220
+ <loc>http://vimberlin.de/march-2-2017-meetup/</loc>
221
+ <lastmod>2017-03-10T07:16:48+01:00</lastmod>
222
+ <changefreq>monthly</changefreq>
223
+ <priority>0.5</priority>
224
+ </url>
225
+ <url>
226
+ <loc>http://vimberlin.de/october-2013-meetup/</loc>
227
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
228
+ <changefreq>monthly</changefreq>
229
+ <priority>0.5</priority>
230
+ </url>
231
+ <url>
232
+ <loc>http://vimberlin.de/data/vimberlin-2014-01_vim_writing/</loc>
233
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
234
+ <changefreq>monthly</changefreq>
235
+ <priority>0.5</priority>
236
+ </url>
237
+ <url>
238
+ <loc>http://vimberlin.de/data/vimberlin-2013-09_vimprofiling/</loc>
239
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
240
+ <changefreq>monthly</changefreq>
241
+ <priority>0.5</priority>
242
+ </url>
243
+ <url>
244
+ <loc>http://vimberlin.de/data/vimberlin-2013-09_ctags/</loc>
245
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
246
+ <changefreq>monthly</changefreq>
247
+ <priority>0.5</priority>
248
+ </url>
249
+ <url>
250
+ <loc>http://vimberlin.de/may-2015-meetup/</loc>
251
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
252
+ <changefreq>monthly</changefreq>
253
+ <priority>0.5</priority>
254
+ </url>
255
+ <url>
256
+ <loc>http://vimberlin.de/2012-01-meetup/</loc>
257
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
258
+ <changefreq>monthly</changefreq>
259
+ <priority>0.5</priority>
260
+ </url>
261
+ <url>
262
+ <loc>http://vimberlin.de/2012-03-meetup/</loc>
263
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
264
+ <changefreq>monthly</changefreq>
265
+ <priority>0.5</priority>
266
+ </url>
267
+ <url>
268
+ <loc>http://vimberlin.de/october-2014-meetup/</loc>
269
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
270
+ <changefreq>monthly</changefreq>
271
+ <priority>0.5</priority>
272
+ </url>
273
+ <url>
274
+ <loc>http://vimberlin.de/march-2017-meetup/</loc>
275
+ <lastmod>2017-02-19T19:09:55+01:00</lastmod>
276
+ <changefreq>monthly</changefreq>
277
+ <priority>0.5</priority>
278
+ </url>
279
+ <url>
280
+ <loc>http://vimberlin.de/january-2017-meetup/</loc>
281
+ <lastmod>2017-02-19T16:35:35+01:00</lastmod>
282
+ <changefreq>monthly</changefreq>
283
+ <priority>0.5</priority>
284
+ </url>
285
+ <url>
286
+ <loc>http://vimberlin.de/2012-11-meetup/</loc>
287
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
288
+ <changefreq>monthly</changefreq>
289
+ <priority>0.5</priority>
290
+ </url>
291
+ <url>
292
+ <loc>http://vimberlin.de/september-2014-meetup/</loc>
293
+ <lastmod>2016-11-12T07:24:18+01:00</lastmod>
294
+ <changefreq>monthly</changefreq>
295
+ <priority>0.5</priority>
296
+ </url>
297
+ </urlset>
@@ -0,0 +1,303 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html itemscope itemtype="http://schema.org/BlogPosting">
4
+ <head>
5
+ <meta charset="utf-8" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
7
+ <title>Vimfest October 2015 - Vimberlin</title>
8
+ <meta name="description" content="Vimfest October 2015 - Vimberlin">
9
+ <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
10
+ <link href="/assets/stylesheets/application.css" rel="stylesheet" type="text/css" />
11
+ <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
12
+ <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
13
+ <link rel="apple-touch-icon" sizes="57x57" href="/assets/favicons/apple-touch-icon-57x57.png">
14
+ <link rel="apple-touch-icon" sizes="60x60" href="/assets/favicons/apple-touch-icon-60x60.png">
15
+ <link rel="apple-touch-icon" sizes="72x72" href="/assets/favicons/apple-touch-icon-72x72.png">
16
+ <link rel="apple-touch-icon" sizes="76x76" href="/assets/favicons/apple-touch-icon-76x76.png">
17
+ <link rel="apple-touch-icon" sizes="114x114" href="/assets/favicons/apple-touch-icon-114x114.png">
18
+ <link rel="apple-touch-icon" sizes="120x120" href="/assets/favicons/apple-touch-icon-120x120.png">
19
+ <link rel="apple-touch-icon" sizes="144x144" href="/assets/favicons/apple-touch-icon-144x144.png">
20
+ <link rel="apple-touch-icon" sizes="152x152" href="/assets/favicons/apple-touch-icon-152x152.png">
21
+ <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon-180x180.png">
22
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-32x32.png" sizes="32x32">
23
+ <link rel="icon" type="image/png" href="/assets/favicons/android-chrome-192x192.png" sizes="192x192">
24
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-96x96.png" sizes="96x96">
25
+ <link rel="icon" type="image/png" href="/assets/favicons/favicon-16x16.png" sizes="16x16">
26
+ <link rel="manifest" href="/assets/favicons/manifest.json">
27
+ <link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg">
28
+ <link rel="shortcut icon" href="/assets/favicons/favicon.ico">
29
+ <meta name="apple-mobile-web-app-title" content="vimberlin">
30
+ <meta name="application-name" content="vimberlin">
31
+ <meta name="msapplication-TileColor" content="#da532c">
32
+ <meta name="msapplication-TileImage" content="/assets/favicons/mstile-144x144.png">
33
+ <meta name="msapplication-config" content="/assets/favicons/browserconfig.xml">
34
+ <meta name="theme-color" content="#ffffff">
35
+
36
+ </head>
37
+
38
+ <body>
39
+
40
+ <header>
41
+ <div class="container">
42
+ <div class="row">
43
+ <div class="col-md-2 col-md-offset-1 hidden-xs">
44
+ <a href="/"><img class="headline-image" alt="Vimberlin headline image" src="https://pbs.twimg.com/profile_images/1761428936/vim10_200x200.JPG" /></a>
45
+ </div>
46
+ <div class="col-md-7 hidden-xs">
47
+ <h1 class="headline-link"> <a href="/">Vimberlin</a></h1><br>
48
+ <span class="headline"><a href="/">the gathering for Vim-enthusiasts in Berlin</a></span>
49
+ </div>
50
+ </div>
51
+ <div class="row">
52
+ <div class="col-md-10 col-md-offset-1">
53
+ <nav class="navbar navbar-default navbar-primary">
54
+ <!-- Brand and toggle get grouped for better mobile display -->
55
+ <div class="navbar-header">
56
+ <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".nav-primary">
57
+ <span class="sr-only">Toggle navigation</span>
58
+ <i class="fa fa-navicon"></i>
59
+ </button>
60
+ </div>
61
+
62
+ <!-- Collect the nav links, forms, and other content for toggling -->
63
+ <div class="collapse navbar-collapse nav-primary">
64
+ <ul class="nav navbar-nav navbar-right">
65
+ <li class="active"><a href="/blog">Blog</a></li>
66
+ <li class=""><a href="/newsletter">Newsletter</a></li>
67
+ <li><a target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a></li>
68
+ <li><a target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a></li>
69
+ <li><a target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a></li>
70
+ <li><a target="_blank" rel="noopener noreferrer" href="https://plus.google.com/104181155837327547516"><i class="fa fa-google-plus" aria-hidden="true"></i></a></li>
71
+ <li><a target="_blank" rel="noopener noreferrer" href="https://github.com/vimberlin/vimberlin.de"><i class="fa fa-github" aria-hidden="true"></i></a></li>
72
+ <li><a target="_blank" rel="noopener noreferrer" href="https://groups.google.com/group/vimberlin/#"><i class="fa fa-envelope" aria-hidden="true"></i></a></li>
73
+ </ul>
74
+ </div><!-- /.navbar-collapse -->
75
+ </nav>
76
+
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </header>
81
+
82
+ <main>
83
+ <div class="container" itemprop="articleBody">
84
+ <div class="row">
85
+ <div class="col-md-10 col-md-offset-1">
86
+ <h2>Vimfest October 2015</h2>
87
+ <br>
88
+ <strong class="show-for-medium-up">Time: </strong><span itemprop="startDate">Starts 10 October 10:00 am</span>
89
+ <br>
90
+ <strong class="show-for-medium-up">Location: </strong>
91
+ <span itemtype="http://schema.org/PostalAddress" itemscope="" itemprop="location">
92
+ <span>
93
+ <a href="http://www.thoughtworks.com/locations/berlin">
94
+ <span itemprop="name">ThoughtWorks Werkstatt Berlin</span>
95
+ </a>
96
+ U2 Senefelder Platz / M2 Knaackstr. HH (Remise) 1. OG
97
+ </span>
98
+ <span itemprop="streetAddress">, Mülhauser Str. 6</span>
99
+ <span>
100
+ <span itemprop="postalCode">, 10405</span>
101
+ <span itemprop="addressLocality">Berlin, Prenzlauer Berg</span>
102
+ </span>
103
+ <meta content="Germany" itemprop="addressCountry">
104
+ (<a href="http://bit.ly/1nPCRdt">map</a>)
105
+ </span>
106
+ <br>
107
+ <br>
108
+
109
+
110
+ <div class="pull-right">
111
+ <a href="#comments">Comments</a>
112
+ </div>
113
+ <p><img src="/assets/images/vimfest.png" /></p>
114
+
115
+ <blockquote>
116
+ <p>Sign up under <a href="http://doodle.com/poll/mpzzamenz5npq3f7">http://doodle.com/poll/mpzzamenz5npq3f7</a> if you want come to the event</p>
117
+ </blockquote>
118
+
119
+ <p>Vimfest Berlin 2015 is the first community-driven <a href="http://www.vim.org/">Vim</a> &quot;<a href="http://en.wikipedia.org/wiki/Hackathon">Hackathon</a>&quot;, happening
120
+ the weekend of 10 – 11 October at <a href="http://www.thoughtworks.com/locations/berlin">ThoughtWorks</a> in Berlin, organized by the
121
+ <a href="http://vimberlin.de">Vim Berlin</a> user group and Vim enthusiasts from other cities.</p>
122
+
123
+ <p>We will spend the whole weekend on topics around the popular editor, such as:
124
+ efficient ways of writing with Vim. Setting up <code>.vimrc</code>. Using plugins that
125
+ rock, and writing plugins that rock. And also: other useful tools with vim
126
+ keybindings, like <code>mutt</code> or <code>newsbeuter</code>. What ever you&#39;re interested in:
127
+ Vimfest Berlin is an open space, everything is up to you!</p>
128
+
129
+ <p>So don&#39;t hesitate, and save the date: <strong>10 – 11 October</strong> in Berlin: Be with us
130
+ and join the very first Vimfest – try, learn and talk about the editor we all
131
+ love.</p>
132
+
133
+ <p>Ain&#39;t enough? Wait, there&#39;s more.</p>
134
+
135
+ <p>Berlin is a great place that has a lot to offer. Once having many Vim lovers
136
+ and interested people united at one place, we&#39;ll use the opportunity and,
137
+ guided by our locals, go find some of the most interesting buffers of Berlin
138
+ and celebrate Vim a bit at Saturday night.</p>
139
+
140
+ <p><a title="Matthias Günther" href="http://wikimatze.de/about">Matthias Günther</a> and <a href="https://github.com/tqmz">Tim Quellmalz</a></p>
141
+
142
+ <h2>Venue</h2>
143
+
144
+ <p>We got a confirmation from <a href="http://www.thoughtworks.com/locations/berlin">ThoughtWorks</a> and are happy to announce they&#39;ll
145
+ host our weekend for <em>free</em>! Here is the location:</p>
146
+
147
+ <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2427.020216472162!2d13.419111299999994!3d52.53306839999992!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x47a84e037767de0b%3A0xeea2f7a5ae27f3c0!2zTcO8bGhhdXNlciBTdHJhw59l!5e0!3m2!1sen!2sus!4v1401733194428" width="600" height="450" frameborder="0" style="border:0"></iframe>
148
+
149
+ <p>Venues for Saturday night to be announced. Watch <a href="http://twitter.com/vimberlin">@vimberlin</a> for updates.</p>
150
+
151
+ <h2>Schedule</h2>
152
+
153
+ <p>Here is the rough agenda:</p>
154
+
155
+ <ul>
156
+ <li>present the projects to work on,</li>
157
+ <li>jump into the projects,</li>
158
+ <li>present learnings and results.</li>
159
+ </ul>
160
+
161
+ <p>There is enough time to chat, relax in the garden and socialize with other
162
+ people. We will have drinks, wifi, a beamer - you can bring our own food there
163
+ (there is a small cuisine), restaurants are around the corner.</p>
164
+
165
+ <p>The best way to get things done is to sit together and work on things with a
166
+ limited amount of time. No time pressure or will to reach a goal - explore and
167
+ try out new things. Let&#39;s have a great time together! Let&#39;s have a great time
168
+ together!</p>
169
+
170
+ <h2>Sessions</h2>
171
+
172
+ <h3>Vim</h3>
173
+
174
+ <p>Ideas for Vim sessions so far:</p>
175
+
176
+ <ul>
177
+ <li><p>Vim for Newbies</p></li>
178
+ <li><p>Plugin showcase: everyone giving a brief description of plugins used
179
+ and their purpose, experience and value + ad hoc sessions on
180
+ plugins others are especially interested in</p></li>
181
+ <li><p>VimL first steps: a rough overview for getting into vim plugin
182
+ development</p></li>
183
+ <li><p>Issues: an occasion for helping each other fixing current issues with
184
+ their setups</p></li>
185
+ <li><p><a href="https://twitter.com/wikimatze">@wikimatze</a></p>
186
+
187
+ <ul>
188
+ <li>write a <a href="https://github.com/tpope/vim-rails">rails-vim</a> plugin for <a href="http://www.padrinorb.com/">Padrino</a></li>
189
+ </ul></li>
190
+ <li><p><a href="https://github.com/tqmz">@tqmz</a></p>
191
+
192
+ <ul>
193
+ <li>Tim on <a href="http://www.vim.org/">Vim</a> w/ <a href="http://www.zim-wiki.org/">Zim</a> (and more wiki-like stuff)</li>
194
+ </ul></li>
195
+ <li><p><a href="https://github.com/nkoehring">@koehr</a></p>
196
+
197
+ <ul>
198
+ <li><a href="http://www.vim.org/">Vim</a> + <a href="http://todotxt.com">todo.txt</a> + ? = Profit!</li>
199
+ </ul></li>
200
+ </ul>
201
+
202
+ <h3>w/ Vim Keybindings</h3>
203
+
204
+ <ul>
205
+ <li><a href="https://twitter.com/wikimatze">@wikimatze</a>
206
+
207
+ <ul>
208
+ <li>Get <a href="http://www.mutt.org/">mutt</a> up and running</li>
209
+ </ul></li>
210
+ <li><a href="https://github.com/tqmz">@tqmz</a>
211
+
212
+ <ul>
213
+ <li>newsbeuter</li>
214
+ </ul></li>
215
+ <li>vimperator &amp; co.</li>
216
+ </ul>
217
+
218
+ <h2>Contribute</h2>
219
+
220
+ <p>Want to contribute to making Vimfest Berlin a great event?</p>
221
+
222
+ <p>Add your own topics here, and see <a href="https://github.com/vimberlin/vimberlin.de/wiki/vimfest-org">vimfest-org</a> for the
223
+ organizational aspects.</p>
224
+
225
+ <h2>Contact</h2>
226
+
227
+ <ul>
228
+ <li>Mail: vimberlin / gmail</li>
229
+ <li>IRC: Freenode <code>#vimberlin</code></li>
230
+ <li>Twitter: <a href="http://twitter.com/vimberlin">@vimberlin</a></li>
231
+ </ul>
232
+
233
+
234
+ <a class="prev" href="/july-2015-meetup/" rel="prev" title="Previous article: July 2015 Meetup">&laquo; July 2015 Meetup</a>
235
+ <a class="next" href="/november-2015-meetup/" rel="next" title="Next article: November 2015 Meetup">November 2015 Meetup &raquo; </a>
236
+ <div style="clear: both;"></div>
237
+ <a href="#comments"><span id="cmtcount"></span> Comments</a>
238
+ <div id="hashover"></div>
239
+ <script type="text/javascript" src="/hashover.php" defer="defer"></script>
240
+ </div>
241
+ </div>
242
+ </div >
243
+ </main>
244
+
245
+ <div class="footer--colophon hidden-xs">
246
+ <div class="container">
247
+ <div class="row">
248
+ <div class="col-md-6 col-md-offset-1">
249
+ <p class="footer--colophon__copyright">
250
+ <a href="/imprint"> Imprint</a>
251
+ <a style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;" href="/contact">Contact</a>
252
+ <a target="_blank" rel="noopener noreferrer" href="http://vimfest.org" style="border-left: #d5dbde 1px solid;margin-left: 8px; padding-left: 12px;">Vimfest</a>
253
+ <a class="footer-link" style="border-left: #d5dbde 1px solid;margin-left: 8px" target="_blank" rel="noopener noreferrer" href="http://feeds.feedburner.com/vimberlin"><i class="fa fa-rss" aria-hidden="true"></i></a>
254
+ &nbsp;
255
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://twitter.com/vimberlin"><i class="fa fa-twitter" aria-hidden="true"></i></a>
256
+ &nbsp;
257
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://www.facebook.com/vimberlin/"><i class="fa fa-facebook" aria-hidden="true"></i></a>
258
+ &nbsp;
259
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://plus.google.com/104181155837327547516"><i class="fa fa-google-plus" aria-hidden="true"></i></a>
260
+ &nbsp;
261
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://github.com/vimberlin/vimberlin.de"><i class="fa fa-github" aria-hidden="true"></i></a>
262
+ &nbsp;
263
+ <a class="footer-link" target="_blank" rel="noopener noreferrer" href="https://groups.google.com/group/vimberlin/#"><i class="fa fa-envelope" aria-hidden="true"></i></a>
264
+ </p>
265
+ </div>
266
+ <div class="col-md-2 col-md-offset-3 hidden-xs">
267
+ <p class="footer--colophon__poweredby">Powered by <a href="https://github.com/timknight/middleman-ethos" target="_blank">Ethos</a></p>
268
+ </div>
269
+ </div>
270
+ </div>
271
+ </div>
272
+
273
+ <script type="text/javascript">
274
+ var _paq = _paq || [];
275
+ _paq.push(['trackPageView']);
276
+ _paq.push(['enableLinkTracking']);
277
+ (function() {
278
+ var u=(("https:" == document.location.protocol) ? "https" : "http") + "://vimberlin.de/piwik/";
279
+ _paq.push(['setTrackerUrl', u+'piwik.php']);
280
+ _paq.push(['setSiteId', 1]);
281
+ var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.type='text/javascript';
282
+ g.defer=true; g.async=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
283
+ })();
284
+ </script>
285
+ <noscript><p><img src="https://vimberlin.de/piwik/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
286
+
287
+
288
+
289
+ <script src="/assets/javascripts/application.js" type="text/javascript"></script>
290
+ <!-- Hotjar Tracking Code for http://vimberlin.de -->
291
+ <script>
292
+ (function(h,o,t,j,a,r){
293
+ h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
294
+ h._hjSettings={hjid:370627,hjsv:5};
295
+ a=o.getElementsByTagName('head')[0];
296
+ r=o.createElement('script');r.async=1;
297
+ r.src=t+h._hjSettings.hjid+j+h._hjSettings.hjsv;
298
+ a.appendChild(r);
299
+ })(window,document,'//static.hotjar.com/c/hotjar-','.js?sv=');
300
+ </script>
301
+
302
+ </body>
303
+ </html>
@@ -0,0 +1,4 @@
1
+ set :htmlpages, 52
2
+ set :images, 10
3
+ set :links, 405
4
+
@@ -0,0 +1,7 @@
1
+ set :htmlpages, 52
2
+ set :images, 10
3
+ set :links, 405
4
+
5
+ set :svn, 2011-10-26
6
+ set :pmwiki_dropcaps_recipe, 2011-10-26
7
+
@@ -0,0 +1,4 @@
1
+ set :htmlpages, 52
2
+ set :images, 10
3
+ set :links, 405
4
+
data/spec/spec_helper.rb CHANGED
@@ -1,2 +1,2 @@
1
- require "codeclimate-test-reporter"
2
- CodeClimate::TestReporter.start
1
+ RSpec::Expectations.configuration.warn_about_potential_false_positives = false
2
+