wbzyl-seminarium 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. data/README.markdown +42 -0
  2. data/Rakefile +40 -0
  3. data/TODO +8 -0
  4. data/config.ru +2 -0
  5. data/lib/public/doc/neukirchen07introducingrack.pdf +0 -0
  6. data/lib/public/favicon.ico +0 -0
  7. data/lib/public/images/emurphy.gif +0 -0
  8. data/lib/public/images/openquote.gif +0 -0
  9. data/lib/public/images/rack-1.png +0 -0
  10. data/lib/public/images/rack-1.svg +329 -0
  11. data/lib/public/images/rack-2.png +0 -0
  12. data/lib/public/images/rack-2.svg +419 -0
  13. data/lib/public/images/rack-logo.png +0 -0
  14. data/lib/public/images/rack-logo.svg +113 -0
  15. data/lib/public/javascripts/lang-css.js +2 -0
  16. data/lib/public/javascripts/lang-hs.js +2 -0
  17. data/lib/public/javascripts/lang-lisp.js +3 -0
  18. data/lib/public/javascripts/lang-lua.js +2 -0
  19. data/lib/public/javascripts/lang-ml.js +2 -0
  20. data/lib/public/javascripts/lang-proto.js +1 -0
  21. data/lib/public/javascripts/lang-sql.js +2 -0
  22. data/lib/public/javascripts/lang-vb.js +2 -0
  23. data/lib/public/javascripts/lang-wiki.js +1 -0
  24. data/lib/public/javascripts/prettify.js +31 -0
  25. data/lib/public/stylesheets/application.css +67 -0
  26. data/lib/public/stylesheets/coderay.css +124 -0
  27. data/lib/public/stylesheets/prettify.css +44 -0
  28. data/lib/public/stylesheets/projection.css +127 -0
  29. data/lib/seminarium.rb +28 -0
  30. data/lib/seminarium/info.rb +14 -0
  31. data/lib/seminarium/referaty.rb +16 -0
  32. data/lib/views/index.rdiscount +8 -0
  33. data/lib/views/info.rdiscount +14 -0
  34. data/lib/views/modular-applications-www.erb +451 -0
  35. data/lib/views/presentations-list.erb +3 -0
  36. data/lib/views/slides.erb +33 -0
  37. data/lib/views/styl-naukowy.rdiscount +55 -0
  38. metadata +149 -0
data/README.markdown ADDED
@@ -0,0 +1,42 @@
1
+ # Seminarium
2
+
3
+
4
+ ## Ruby
5
+
6
+ * [Mr. Neighborly's Humble Little
7
+ Ruby Book](http://www.humblelittlerubybook.com/book/html/index.html)
8
+ \([pdf](http://www.humblelittlerubybook.com/book/hlrb.pdf)\)
9
+
10
+ ## Tematy
11
+
12
+ 1. FullerScreen. Jak piszemy rozszerzenia do Firefoxa (Safari/iPhone)
13
+ Aplikacja Rails/Sinatry zarządzająca pokazami slajdów.
14
+ 1. Sphinx / ThinkingSphinx dla Datamapper: już jest
15
+ Xapian dla Datamapper: nie ma?
16
+ 1. Gem ala ThinkingSphinx/Ultrasphinx dla search tak
17
+ jak to jest zaimplementowane w PostgreSQL.
18
+ 1. Polski stemmer dla PostgreSQL / Sphinx / Xapian.
19
+ 1. Wczytywanie dużej liczby rekordów testowych do bazy danych.
20
+ Gemy Faker i Populator -- polskie dane
21
+ 1. Rails 3 / Sinatra i CouchDB (couchrest).
22
+ 1. Dokumentowe bazy danych: CouchDB, gemy couchrest i dm-couchdb
23
+
24
+
25
+ ## Linki
26
+
27
+ 1. Charset table dla
28
+ [języka polskiego](http://sphinxsearch.com/wiki/doku.php?id=charset_tables#polish)
29
+ \([plik konfiguracyjny](http://pastie.org/481846)\)
30
+ 2. [Sphinx reference manual](http://www.sphinxsearch.com/docs/current.html)
31
+ 3. [Ultrasphinx](http://github.com/fauna/ultrasphinx/),
32
+ [maintaned fork](http://github.com/DrMark/ultrasphinx/) (plugin)
33
+ 4. [Thinking Sphinx](http://github.com/freelancing-god/thinking-sphinx/) (gem)
34
+ 5. [A Sphinx DataMapper adapter](http://github.com/shanna/dm-sphinx-adapter/).
35
+ Przykład w Sinatrze, Railsach z PostgreSQL
36
+
37
+
38
+ ## Sinatra Extensions
39
+
40
+ 1. Przygotować rozszerzenie dla *static assets* (tak jak w Rails):
41
+ link, script, img. Skorzystać z rozszerzenia: sinatra-url-for.
42
+ Zobacz dokumentacja do *Passenger* (broken links).
data/Rakefile ADDED
@@ -0,0 +1,40 @@
1
+ require 'rake'
2
+ require 'rake/testtask'
3
+ require "rake/clean"
4
+
5
+ begin
6
+ require 'jeweler'
7
+ Jeweler::Tasks.new do |s|
8
+ s.name = "seminarium"
9
+ s.author = "Wlodek Bzyl"
10
+ s.email = "matwb@univ.gda.pl"
11
+ s.homepage = "http://github.com/wbzyl/seminarium"
12
+
13
+ s.description = <<-EOF
14
+ Moje notatki, prezentacje itp.
15
+ EOF
16
+ s.summary = "Prosta aplikacja Sinatry na seminarium 2009/2010"
17
+
18
+ s.files = %w[Rakefile config.ru] + Dir["lib/**/*"]
19
+
20
+ s.add_dependency 'rack'
21
+ s.add_dependency 'sinatra'
22
+ s.add_dependency 'rdiscount'
23
+ s.add_dependency 'wbzyl-sinatra-rdiscount'
24
+ s.add_dependency 'wbzyl-codehighlighter-middleware'
25
+ s.add_dependency 'coderay'
26
+
27
+ s.rubyforge_project = 'seminarium'
28
+ s.extra_rdoc_files = ['README.markdown', 'TODO']
29
+ end
30
+ rescue LoadError
31
+ puts "Jeweler not available."
32
+ puts "Install it with:"
33
+ puts " sudo gem install technicalpickles-jeweler -s http://gems.github.com"
34
+ end
35
+
36
+ Rake::TestTask.new(:test) do |t|
37
+ t.libs << 'lib' << 'test'
38
+ t.pattern = 'test/**/*_test.rb'
39
+ t.verbose = false
40
+ end
data/TODO ADDED
@@ -0,0 +1,8 @@
1
+
2
+ [2009-05-01]
3
+ Convert to helper method:
4
+
5
+ "<b>PATH_INFO:</b> #{env['PATH_INFO']}<br /><b>SCRIPT_NAME:</b> #{env['SCRIPT_NAME']}"
6
+
7
+ [2009-05-15]
8
+ Dodać do rack-math przykład z Rack::Static (np. mój przykład z Tatrami Zachodnimi)
data/config.ru ADDED
@@ -0,0 +1,2 @@
1
+ require 'config'
2
+ run SeminariumReferaty
File without changes
Binary file
Binary file
Binary file
@@ -0,0 +1,329 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ width="800px"
12
+ height="600px"
13
+ id="svg2650"
14
+ sodipodi:version="0.32"
15
+ inkscape:version="0.46"
16
+ sodipodi:docname="rack-1.svg"
17
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
18
+ inkscape:export-filename="/home/wbzyl/public_git/forks/seminarium/lib/public/images/rack-1.png"
19
+ inkscape:export-xdpi="90"
20
+ inkscape:export-ydpi="90">
21
+ <defs
22
+ id="defs2652">
23
+ <marker
24
+ inkscape:stockid="Arrow2Mend"
25
+ orient="auto"
26
+ refY="0.0"
27
+ refX="0.0"
28
+ id="Arrow2Mend"
29
+ style="overflow:visible;">
30
+ <path
31
+ id="path9723"
32
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
33
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
34
+ transform="scale(0.6) rotate(180) translate(0,0)" />
35
+ </marker>
36
+ <marker
37
+ inkscape:stockid="Arrow1Mend"
38
+ orient="auto"
39
+ refY="0.0"
40
+ refX="0.0"
41
+ id="Arrow1Mend"
42
+ style="overflow:visible;">
43
+ <path
44
+ id="path9705"
45
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
46
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
47
+ transform="scale(0.4) rotate(180) translate(10,0)" />
48
+ </marker>
49
+ <marker
50
+ inkscape:stockid="Arrow2Lend"
51
+ orient="auto"
52
+ refY="0.0"
53
+ refX="0.0"
54
+ id="Arrow2Lend"
55
+ style="overflow:visible;">
56
+ <path
57
+ id="path9717"
58
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
59
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
60
+ transform="scale(1.1) rotate(180) translate(1,0)" />
61
+ </marker>
62
+ <marker
63
+ inkscape:stockid="Arrow1Lend"
64
+ orient="auto"
65
+ refY="0.0"
66
+ refX="0.0"
67
+ id="Arrow1Lend"
68
+ style="overflow:visible;">
69
+ <path
70
+ id="path9699"
71
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
72
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
73
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
74
+ </marker>
75
+ <inkscape:perspective
76
+ sodipodi:type="inkscape:persp3d"
77
+ inkscape:vp_x="0 : 300 : 1"
78
+ inkscape:vp_y="0 : 1000 : 0"
79
+ inkscape:vp_z="800 : 300 : 1"
80
+ inkscape:persp3d-origin="400 : 200 : 1"
81
+ id="perspective2658" />
82
+ <filter
83
+ inkscape:collect="always"
84
+ id="filter3714">
85
+ <feGaussianBlur
86
+ inkscape:collect="always"
87
+ stdDeviation="5.5753427"
88
+ id="feGaussianBlur3716" />
89
+ </filter>
90
+ <filter
91
+ inkscape:collect="always"
92
+ id="filter3376">
93
+ <feGaussianBlur
94
+ inkscape:collect="always"
95
+ stdDeviation="2.8013796"
96
+ id="feGaussianBlur3378" />
97
+ </filter>
98
+ </defs>
99
+ <sodipodi:namedview
100
+ id="base"
101
+ pagecolor="#ffffff"
102
+ bordercolor="#666666"
103
+ borderopacity="1.0"
104
+ inkscape:pageopacity="0.0"
105
+ inkscape:pageshadow="2"
106
+ inkscape:zoom="0.79833333"
107
+ inkscape:cx="406.47839"
108
+ inkscape:cy="350.10439"
109
+ inkscape:current-layer="layer1"
110
+ inkscape:document-units="px"
111
+ showgrid="true"
112
+ inkscape:window-width="1184"
113
+ inkscape:window-height="700"
114
+ inkscape:window-x="13"
115
+ inkscape:window-y="25"
116
+ guidetolerance="5"
117
+ gridtolerance="5">
118
+ <inkscape:grid
119
+ type="xygrid"
120
+ id="grid11947"
121
+ visible="true"
122
+ enabled="true"
123
+ empspacing="10" />
124
+ </sodipodi:namedview>
125
+ <metadata
126
+ id="metadata2655">
127
+ <rdf:RDF>
128
+ <cc:Work
129
+ rdf:about="">
130
+ <dc:format>image/svg+xml</dc:format>
131
+ <dc:type
132
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
133
+ </cc:Work>
134
+ </rdf:RDF>
135
+ </metadata>
136
+ <g
137
+ id="layer1"
138
+ inkscape:label="Layer 1"
139
+ inkscape:groupmode="layer">
140
+ <path
141
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.06599999999999984;stroke-linecap:butt;stroke-linejoin:round;marker-start:url(#Arrow2Mend);marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3376)"
142
+ d="M 91.826389,60.416354 C 780.03958,60.416354 780.03958,60.416354 780.03958,60.416354 L 780.03958,460.34238 L 91.826389,460.34238"
143
+ id="path11949" />
144
+ <g
145
+ id="g3718"
146
+ transform="matrix(0.7110556,0,0,1.5522849,212.7008,-151.95971)"
147
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1">
148
+ <rect
149
+ y="161.66667"
150
+ x="120"
151
+ height="268.33334"
152
+ width="136.66667"
153
+ id="rect2660"
154
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
155
+ <rect
156
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
157
+ id="rect2662"
158
+ width="136.66667"
159
+ height="268.33334"
160
+ x="105"
161
+ y="151.66669"
162
+ rx="10"
163
+ ry="10" />
164
+ </g>
165
+ <g
166
+ id="g3722"
167
+ transform="matrix(0.7110556,0,0,1.5522849,454.45971,-151.95971)"
168
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1">
169
+ <rect
170
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)"
171
+ id="rect3724"
172
+ width="136.66667"
173
+ height="268.33334"
174
+ x="120"
175
+ y="161.66667" />
176
+ <rect
177
+ y="151.66669"
178
+ x="105"
179
+ height="268.33334"
180
+ width="136.66667"
181
+ id="rect3726"
182
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
183
+ rx="10"
184
+ ry="10" />
185
+ </g>
186
+ <g
187
+ id="g3728"
188
+ transform="matrix(0.7110556,0,0,1.5522849,333.58026,-151.95971)"
189
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1"
190
+ inkscape:export-filename="/home/wbzyl/public_git/projects/seminarium/lib/public/images/rack-1.png"
191
+ inkscape:export-xdpi="90"
192
+ inkscape:export-ydpi="90">
193
+ <rect
194
+ y="161.66667"
195
+ x="120"
196
+ height="268.33334"
197
+ width="136.66667"
198
+ id="rect3730"
199
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
200
+ <rect
201
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
202
+ id="rect3732"
203
+ width="136.66667"
204
+ height="268.33334"
205
+ x="105"
206
+ y="151.66669"
207
+ rx="10"
208
+ ry="10" />
209
+ </g>
210
+ <g
211
+ transform="matrix(0.7110556,0,0,1.5522849,575.33916,-151.95971)"
212
+ id="g3734"
213
+ style="opacity:0.90988375;fill:#552200;fill-opacity:1">
214
+ <rect
215
+ y="161.66667"
216
+ x="120"
217
+ height="268.33334"
218
+ width="136.66667"
219
+ id="rect3736"
220
+ style="opacity:0.83656509;fill:#552200;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
221
+ <rect
222
+ style="opacity:1;fill:#552200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
223
+ id="rect3738"
224
+ width="136.66667"
225
+ height="268.33334"
226
+ x="105"
227
+ y="151.66669"
228
+ rx="10"
229
+ ry="10" />
230
+ </g>
231
+ <text
232
+ xml:space="preserve"
233
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
234
+ x="660"
235
+ y="548.74738"
236
+ id="text15119"><tspan
237
+ sodipodi:role="line"
238
+ id="tspan15121"
239
+ x="660"
240
+ y="548.74738">moduł</tspan></text>
241
+ <text
242
+ xml:space="preserve"
243
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
244
+ x="375"
245
+ y="550"
246
+ id="text15123"><tspan
247
+ sodipodi:role="line"
248
+ id="tspan15125"
249
+ x="375"
250
+ y="550">middleware</tspan></text>
251
+ <text
252
+ xml:space="preserve"
253
+ style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
254
+ x="60"
255
+ y="120"
256
+ id="text15127"><tspan
257
+ sodipodi:role="line"
258
+ id="tspan15129"
259
+ x="60"
260
+ y="120">żądanie HTTP</tspan></text>
261
+ <text
262
+ xml:space="preserve"
263
+ style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
264
+ x="60"
265
+ y="420"
266
+ id="text15131"><tspan
267
+ sodipodi:role="line"
268
+ id="tspan15133"
269
+ x="60"
270
+ y="420">odpowiedź HTTP</tspan></text>
271
+ <text
272
+ xml:space="preserve"
273
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
274
+ x="88.294312"
275
+ y="531.77258"
276
+ id="text15135"><tspan
277
+ sodipodi:role="line"
278
+ id="tspan15137"
279
+ x="88.294312"
280
+ y="531.77258" /></text>
281
+ <text
282
+ xml:space="preserve"
283
+ style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#2b0000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
284
+ x="520"
285
+ y="240"
286
+ id="text2423"><tspan
287
+ sodipodi:role="line"
288
+ id="tspan2425"
289
+ x="520"
290
+ y="240">Rack::Lint</tspan></text>
291
+ <text
292
+ xml:space="preserve"
293
+ style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#ffd42a;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
294
+ x="580"
295
+ y="200"
296
+ id="text2427"><tspan
297
+ sodipodi:role="line"
298
+ id="tspan2429"
299
+ x="580"
300
+ y="200">MyRackApp.new</tspan></text>
301
+ <text
302
+ xml:space="preserve"
303
+ style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
304
+ x="400"
305
+ y="280"
306
+ id="text2431"><tspan
307
+ sodipodi:role="line"
308
+ id="tspan2433"
309
+ x="400"
310
+ y="280">Rack::ShowExceptions</tspan></text>
311
+ <text
312
+ xml:space="preserve"
313
+ style="font-size:22px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
314
+ x="288.89352"
315
+ y="320"
316
+ id="text2435"><tspan
317
+ sodipodi:role="line"
318
+ id="tspan2437"
319
+ x="288.89352"
320
+ y="320">Rack::CommonLogger</tspan></text>
321
+ <g
322
+ id="g3380">
323
+ <path
324
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.06599998;stroke-linecap:butt;stroke-linejoin:round;marker-start:url(#Arrow2Mend);marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
325
+ d="M 91.78681,60.073976 C 780,60.073976 780,60.073976 780,60.073976 L 780,460 L 91.78681,460"
326
+ id="path3330" />
327
+ </g>
328
+ </g>
329
+ </svg>
Binary file
@@ -0,0 +1,419 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://creativecommons.org/ns#"
6
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
7
+ xmlns:svg="http://www.w3.org/2000/svg"
8
+ xmlns="http://www.w3.org/2000/svg"
9
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ width="800px"
12
+ height="600px"
13
+ id="svg2650"
14
+ sodipodi:version="0.32"
15
+ inkscape:version="0.46"
16
+ sodipodi:docname="rack-2.svg"
17
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
18
+ inkscape:export-filename="/home/wbzyl/public_git/projects/seminarium/lib/public/images/rack-2.png"
19
+ inkscape:export-xdpi="90"
20
+ inkscape:export-ydpi="90">
21
+ <defs
22
+ id="defs2652">
23
+ <marker
24
+ inkscape:stockid="Arrow2Mend"
25
+ orient="auto"
26
+ refY="0.0"
27
+ refX="0.0"
28
+ id="Arrow2Mend"
29
+ style="overflow:visible;">
30
+ <path
31
+ id="path9723"
32
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
33
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
34
+ transform="scale(0.6) rotate(180) translate(0,0)" />
35
+ </marker>
36
+ <marker
37
+ inkscape:stockid="Arrow1Mend"
38
+ orient="auto"
39
+ refY="0.0"
40
+ refX="0.0"
41
+ id="Arrow1Mend"
42
+ style="overflow:visible;">
43
+ <path
44
+ id="path9705"
45
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
46
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
47
+ transform="scale(0.4) rotate(180) translate(10,0)" />
48
+ </marker>
49
+ <marker
50
+ inkscape:stockid="Arrow2Lend"
51
+ orient="auto"
52
+ refY="0.0"
53
+ refX="0.0"
54
+ id="Arrow2Lend"
55
+ style="overflow:visible;">
56
+ <path
57
+ id="path9717"
58
+ style="font-size:12.0;fill-rule:evenodd;stroke-width:0.62500000;stroke-linejoin:round;"
59
+ d="M 8.7185878,4.0337352 L -2.2072895,0.016013256 L 8.7185884,-4.0017078 C 6.9730900,-1.6296469 6.9831476,1.6157441 8.7185878,4.0337352 z "
60
+ transform="scale(1.1) rotate(180) translate(1,0)" />
61
+ </marker>
62
+ <marker
63
+ inkscape:stockid="Arrow1Lend"
64
+ orient="auto"
65
+ refY="0.0"
66
+ refX="0.0"
67
+ id="Arrow1Lend"
68
+ style="overflow:visible;">
69
+ <path
70
+ id="path9699"
71
+ d="M 0.0,0.0 L 5.0,-5.0 L -12.5,0.0 L 5.0,5.0 L 0.0,0.0 z "
72
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
73
+ transform="scale(0.8) rotate(180) translate(12.5,0)" />
74
+ </marker>
75
+ <inkscape:perspective
76
+ sodipodi:type="inkscape:persp3d"
77
+ inkscape:vp_x="0 : 300 : 1"
78
+ inkscape:vp_y="0 : 1000 : 0"
79
+ inkscape:vp_z="800 : 300 : 1"
80
+ inkscape:persp3d-origin="400 : 200 : 1"
81
+ id="perspective2658" />
82
+ <filter
83
+ inkscape:collect="always"
84
+ id="filter3714">
85
+ <feGaussianBlur
86
+ inkscape:collect="always"
87
+ stdDeviation="5.5753427"
88
+ id="feGaussianBlur3716" />
89
+ </filter>
90
+ <filter
91
+ inkscape:collect="always"
92
+ id="filter15393"
93
+ x="-0.13793103"
94
+ width="1.2758621"
95
+ y="-0.20689655"
96
+ height="1.4137931">
97
+ <feGaussianBlur
98
+ inkscape:collect="always"
99
+ stdDeviation="4.3103448"
100
+ id="feGaussianBlur15395" />
101
+ </filter>
102
+ <filter
103
+ inkscape:collect="always"
104
+ id="filter4078">
105
+ <feGaussianBlur
106
+ inkscape:collect="always"
107
+ stdDeviation="2.8013796"
108
+ id="feGaussianBlur4080" />
109
+ </filter>
110
+ </defs>
111
+ <sodipodi:namedview
112
+ id="base"
113
+ pagecolor="#ffffff"
114
+ bordercolor="#666666"
115
+ borderopacity="1.0"
116
+ inkscape:pageopacity="0.0"
117
+ inkscape:pageshadow="2"
118
+ inkscape:zoom="0.7475"
119
+ inkscape:cx="492.30769"
120
+ inkscape:cy="290.9458"
121
+ inkscape:current-layer="layer1"
122
+ inkscape:document-units="px"
123
+ showgrid="true"
124
+ inkscape:window-width="1184"
125
+ inkscape:window-height="700"
126
+ inkscape:window-x="13"
127
+ inkscape:window-y="25"
128
+ guidetolerance="5"
129
+ gridtolerance="5"
130
+ inkscape:snap-intersection-grid-guide="false"
131
+ inkscape:snap-global="true"
132
+ objecttolerance="10000"
133
+ showguides="false">
134
+ <inkscape:grid
135
+ type="xygrid"
136
+ id="grid11947"
137
+ visible="true"
138
+ enabled="true"
139
+ empspacing="10" />
140
+ </sodipodi:namedview>
141
+ <metadata
142
+ id="metadata2655">
143
+ <rdf:RDF>
144
+ <cc:Work
145
+ rdf:about="">
146
+ <dc:format>image/svg+xml</dc:format>
147
+ <dc:type
148
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
149
+ </cc:Work>
150
+ </rdf:RDF>
151
+ </metadata>
152
+ <g
153
+ id="layer1"
154
+ inkscape:label="Layer 1"
155
+ inkscape:groupmode="layer">
156
+ <g
157
+ id="g3380"
158
+ transform="translate(-11.78681,0)"
159
+ style="filter:url(#filter4078)">
160
+ <path
161
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.06599998;stroke-linecap:butt;stroke-linejoin:round;marker-start:url(#Arrow2Mend);marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
162
+ d="M 91.78681,60.073976 C 780,60.073976 780,60.073976 780,60.073976 L 780,460 L 91.78681,460"
163
+ id="path3330" />
164
+ </g>
165
+ <g
166
+ id="g3718"
167
+ transform="matrix(0.7110556,0,0,1.5522849,212.7008,-151.95971)"
168
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1">
169
+ <rect
170
+ y="161.66667"
171
+ x="120"
172
+ height="268.33334"
173
+ width="136.66667"
174
+ id="rect2660"
175
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
176
+ <rect
177
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
178
+ id="rect2662"
179
+ width="136.66667"
180
+ height="268.33334"
181
+ x="105"
182
+ y="151.66669"
183
+ rx="10"
184
+ ry="10" />
185
+ </g>
186
+ <g
187
+ id="g3722"
188
+ transform="matrix(0.7110556,0,0,1.5522849,454.45971,-151.95971)"
189
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1">
190
+ <rect
191
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)"
192
+ id="rect3724"
193
+ width="136.66667"
194
+ height="268.33334"
195
+ x="120"
196
+ y="161.66667" />
197
+ <rect
198
+ y="151.66669"
199
+ x="105"
200
+ height="268.33334"
201
+ width="136.66667"
202
+ id="rect3726"
203
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
204
+ rx="10"
205
+ ry="10" />
206
+ </g>
207
+ <g
208
+ id="g3728"
209
+ transform="matrix(0.7110556,0,0,1.5522849,333.58026,-151.95971)"
210
+ style="opacity:0.90988375;fill:#aa4400;fill-opacity:1">
211
+ <rect
212
+ y="161.66667"
213
+ x="120"
214
+ height="268.33334"
215
+ width="136.66667"
216
+ id="rect3730"
217
+ style="opacity:0.83656509;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
218
+ <rect
219
+ style="opacity:1;fill:#aa4400;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
220
+ id="rect3732"
221
+ width="136.66667"
222
+ height="268.33334"
223
+ x="105"
224
+ y="151.66669"
225
+ rx="10"
226
+ ry="10" />
227
+ </g>
228
+ <g
229
+ transform="matrix(0.7110556,0,0,1.5522849,575.33916,-151.95971)"
230
+ id="g3734"
231
+ style="opacity:0.90988375;fill:#552200;fill-opacity:1">
232
+ <rect
233
+ y="161.66667"
234
+ x="120"
235
+ height="268.33334"
236
+ width="136.66667"
237
+ id="rect3736"
238
+ style="opacity:0.83656509;fill:#552200;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;filter:url(#filter3714)" />
239
+ <rect
240
+ style="opacity:1;fill:#552200;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
241
+ id="rect3738"
242
+ width="136.66667"
243
+ height="268.33334"
244
+ x="105"
245
+ y="151.66669"
246
+ rx="10"
247
+ ry="10" />
248
+ </g>
249
+ <text
250
+ xml:space="preserve"
251
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
252
+ x="660"
253
+ y="547.3244"
254
+ id="text15119"><tspan
255
+ sodipodi:role="line"
256
+ id="tspan15121"
257
+ x="660"
258
+ y="547.3244">moduł</tspan></text>
259
+ <text
260
+ xml:space="preserve"
261
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
262
+ x="375"
263
+ y="550"
264
+ id="text15123"><tspan
265
+ sodipodi:role="line"
266
+ id="tspan15125"
267
+ x="375"
268
+ y="550">middleware</tspan></text>
269
+ <text
270
+ xml:space="preserve"
271
+ style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
272
+ x="60"
273
+ y="120"
274
+ id="text15127"><tspan
275
+ sodipodi:role="line"
276
+ id="tspan15129"
277
+ x="60"
278
+ y="120">żądanie HTTP</tspan></text>
279
+ <text
280
+ xml:space="preserve"
281
+ style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
282
+ x="60"
283
+ y="420"
284
+ id="text15131"><tspan
285
+ sodipodi:role="line"
286
+ id="tspan15133"
287
+ x="60"
288
+ y="420">odpowiedź HTTP</tspan></text>
289
+ <text
290
+ xml:space="preserve"
291
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans"
292
+ x="88.294312"
293
+ y="531.77258"
294
+ id="text15135"><tspan
295
+ sodipodi:role="line"
296
+ id="tspan15137"
297
+ x="88.294312"
298
+ y="531.77258" /></text>
299
+ <g
300
+ id="g15425"
301
+ transform="translate(-2.0066889,0)">
302
+ <g
303
+ transform="translate(539.71572,-79.013378)"
304
+ id="g15397">
305
+ <rect
306
+ style="opacity:0.90988375;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter15393)"
307
+ id="rect15173"
308
+ width="75"
309
+ height="50"
310
+ x="125"
311
+ y="200"
312
+ rx="10"
313
+ ry="10" />
314
+ <rect
315
+ ry="10"
316
+ rx="10"
317
+ y="200"
318
+ x="125"
319
+ height="50"
320
+ width="75"
321
+ id="rect15175"
322
+ style="opacity:0.90988375;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
323
+ </g>
324
+ <text
325
+ id="text15413"
326
+ y="153.28056"
327
+ x="671.89148"
328
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
329
+ xml:space="preserve"><tspan
330
+ y="153.28056"
331
+ x="671.89148"
332
+ id="tspan15415"
333
+ sodipodi:role="line">App</tspan></text>
334
+ </g>
335
+ <g
336
+ id="g15432"
337
+ transform="translate(-2.0066889,82.943144)">
338
+ <g
339
+ id="g15434"
340
+ transform="translate(539.71572,-79.013378)">
341
+ <rect
342
+ ry="10"
343
+ rx="10"
344
+ y="200"
345
+ x="125"
346
+ height="50"
347
+ width="75"
348
+ id="rect15436"
349
+ style="opacity:0.90988375;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter15393)" />
350
+ <rect
351
+ style="opacity:0.90988375;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
352
+ id="rect15438"
353
+ width="75"
354
+ height="50"
355
+ x="125"
356
+ y="200"
357
+ rx="10"
358
+ ry="10" />
359
+ </g>
360
+ <text
361
+ xml:space="preserve"
362
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
363
+ x="671.89148"
364
+ y="153.28056"
365
+ id="text15440"><tspan
366
+ sodipodi:role="line"
367
+ id="tspan15442"
368
+ x="671.89148"
369
+ y="153.28056">App</tspan></text>
370
+ </g>
371
+ <g
372
+ transform="translate(-2.0066889,278.92308)"
373
+ id="g15444">
374
+ <g
375
+ transform="translate(539.71572,-79.013378)"
376
+ id="g15446">
377
+ <rect
378
+ style="opacity:0.90988375;fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;filter:url(#filter15393)"
379
+ id="rect15448"
380
+ width="75"
381
+ height="50"
382
+ x="125"
383
+ y="200"
384
+ rx="10"
385
+ ry="10" />
386
+ <rect
387
+ ry="10"
388
+ rx="10"
389
+ y="200"
390
+ x="125"
391
+ height="50"
392
+ width="75"
393
+ id="rect15450"
394
+ style="opacity:0.90988375;fill:#ff0000;fill-opacity:1;stroke:none;stroke-width:4;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" />
395
+ </g>
396
+ <text
397
+ id="text15452"
398
+ y="153.28056"
399
+ x="671.89148"
400
+ style="font-size:28px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;font-family:Sans;-inkscape-font-specification:Sans Bold"
401
+ xml:space="preserve"><tspan
402
+ y="153.28056"
403
+ x="671.89148"
404
+ id="tspan15454"
405
+ sodipodi:role="line">App</tspan></text>
406
+ </g>
407
+ <g
408
+ id="g4082">
409
+ <g
410
+ id="g3525"
411
+ transform="translate(-11.78681,-7.3976e-2)">
412
+ <path
413
+ style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:3.06599998;stroke-linecap:butt;stroke-linejoin:round;marker-start:url(#Arrow2Mend);marker-end:url(#Arrow2Mend);stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
414
+ d="M 91.78681,60.073976 C 780,60.073976 780,60.073976 780,60.073976 L 780,460 L 91.78681,460"
415
+ id="path3527" />
416
+ </g>
417
+ </g>
418
+ </g>
419
+ </svg>