parlement 0.2 → 0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (125) hide show
  1. data/CHANGES +14 -4
  2. data/README +25 -5
  3. data/Rakefile +21 -21
  4. data/app/controllers/account_controller.rb +5 -1
  5. data/app/controllers/elt_controller.rb +7 -10
  6. data/app/controllers/person_controller.rb +9 -0
  7. data/app/controllers/subscriber_controller.rb +21 -0
  8. data/app/helpers/elt_helper.rb +25 -13
  9. data/app/helpers/mailman.rb +9 -92
  10. data/app/helpers/subscriber_helper.rb +2 -0
  11. data/app/models/attachment.rb +2 -0
  12. data/app/models/elt.rb +64 -2
  13. data/app/models/mail.rb +198 -0
  14. data/app/models/mail_notify.rb +63 -0
  15. data/app/models/person.rb +8 -1
  16. data/app/views/account/_login.rhtml +31 -28
  17. data/app/views/account/_show.rhtml +4 -4
  18. data/app/views/elt/_elt.rhtml +23 -28
  19. data/app/views/elt/_list.rhtml +6 -2
  20. data/app/views/elt/new.rhtml +1 -1
  21. data/app/views/elt/show.rhtml +32 -10
  22. data/app/views/layouts/top.rhtml +16 -10
  23. data/app/views/mail_notify/publish.text.html.rhtml +46 -0
  24. data/app/views/mail_notify/publish.text.plain.rhtml +2 -0
  25. data/app/views/person/_listElts.rhtml +33 -0
  26. data/app/views/person/show.rhtml +21 -19
  27. data/config/boot.rb +2 -0
  28. data/config/environment.rb +19 -13
  29. data/config/environments/development.rb +3 -1
  30. data/config/environments/production.rb +2 -0
  31. data/config/environments/test.rb +2 -0
  32. data/config/routes.rb +5 -2
  33. data/db/ROOT/mail.txt +2 -0
  34. data/db/ROOT/parlement/news/release0.2.txt +8 -0
  35. data/db/ROOT/parlement/news/release0.3.txt +11 -0
  36. data/db/ROOT/parlement/test.txt +6 -1
  37. data/db/ROOT/parlement.txt +23 -30
  38. data/db/ROOT/perso.txt +17 -18
  39. data/db/development_structure.sql +133 -217
  40. data/db/schema.rb +83 -0
  41. data/db/schema.sql +11 -15
  42. data/lib/data_import.rb +3 -1
  43. data/public/attachment/file/architecture.png +0 -0
  44. data/public/attachment/file/architecture.svg +8972 -0
  45. data/public/attachment/file/security.svg +8960 -0
  46. data/public/images/Sleep-Deprivation-5.JPG +0 -0
  47. data/public/images/eltBackground.png +0 -0
  48. data/public/images/eltBackground.svg +89 -0
  49. data/public/images/orange_by_darren_Hester_350o.jpg +0 -0
  50. data/public/images/rails.png +0 -0
  51. data/public/images/smile.png +0 -0
  52. data/public/images/smile.svg +257 -0
  53. data/public/images/world.png +0 -0
  54. data/public/images/world.svg +170 -0
  55. data/public/javascripts/controls.js +30 -1
  56. data/public/javascripts/dragdrop.js +210 -145
  57. data/public/javascripts/effects.js +261 -399
  58. data/public/javascripts/ie7.js +6 -0
  59. data/public/javascripts/prototype.js +131 -72
  60. data/public/oldindex.html +270 -71
  61. data/public/stylesheets/default.css +189 -215
  62. data/script/about +1 -1
  63. data/script/breakpointer +1 -1
  64. data/script/console +1 -1
  65. data/script/destroy +1 -1
  66. data/script/generate +1 -1
  67. data/script/performance/benchmarker +1 -1
  68. data/script/performance/profiler +1 -1
  69. data/script/plugin +1 -1
  70. data/script/process/reaper +1 -1
  71. data/script/process/spawner +1 -1
  72. data/script/process/spinner +1 -1
  73. data/script/runner +1 -1
  74. data/script/server +1 -1
  75. data/test/fixtures/elts.yml +2 -0
  76. data/test/fixtures/mail/mail_ruby +27 -0
  77. data/test/fixtures/mail/mail_rubyChild +28 -0
  78. data/test/fixtures/mail/mail_rubyWithAttachment +7932 -0
  79. data/test/fixtures/mail/mail_rubyWithSubject +27 -0
  80. data/test/fixtures/mails.yml +7 -1
  81. data/test/fixtures/people.yml +5 -0
  82. data/test/fixtures/subscribers.yml +11 -0
  83. data/test/functional/account_controller_test.rb +38 -37
  84. data/test/functional/subscriber_controller_test.rb +128 -0
  85. data/test/test_helper.rb +44 -0
  86. data/test/unit/attachment_test.rb +1 -1
  87. data/test/unit/elt_test.rb +3 -2
  88. data/test/unit/mail_notify_test.rb +37 -0
  89. data/test/unit/mail_test.rb +124 -1
  90. data/test/unit/notifier_test.rb +0 -14
  91. data/test/unit/person_test.rb +2 -1
  92. data/test/unit/subscriber_test.rb +35 -0
  93. data/test/unit/user_test.rb +3 -3
  94. data/vendor/plugins/file_column/CHANGELOG +64 -0
  95. data/vendor/plugins/file_column/README +54 -0
  96. data/vendor/plugins/file_column/Rakefile +36 -0
  97. data/vendor/plugins/file_column/TODO +6 -0
  98. data/vendor/plugins/file_column/init.rb +12 -0
  99. data/vendor/plugins/file_column/lib/file_column.rb +719 -0
  100. data/vendor/plugins/file_column/lib/file_column_helper.rb +145 -0
  101. data/vendor/plugins/file_column/lib/file_compat.rb +28 -0
  102. data/vendor/plugins/file_column/lib/magick_file_column.rb +188 -0
  103. data/vendor/plugins/file_column/lib/validations.rb +112 -0
  104. data/vendor/plugins/file_column/test/abstract_unit.rb +90 -0
  105. data/vendor/plugins/file_column/test/connection.rb +17 -0
  106. data/vendor/plugins/file_column/test/file_column_helper_test.rb +97 -0
  107. data/vendor/plugins/file_column/test/file_column_test.rb +630 -0
  108. data/vendor/plugins/file_column/test/fixtures/entry.rb +32 -0
  109. data/vendor/plugins/file_column/test/fixtures/invalid-image.jpg +1 -0
  110. data/vendor/plugins/file_column/test/fixtures/kerb.jpg +0 -0
  111. data/vendor/plugins/file_column/test/fixtures/mysql.sql +25 -0
  112. data/vendor/plugins/file_column/test/fixtures/schema.rb +10 -0
  113. data/vendor/plugins/file_column/test/fixtures/skanthak.png +0 -0
  114. data/vendor/plugins/file_column/test/magick_test.rb +251 -0
  115. data/vendor/plugins/file_column/test/magick_view_only_test.rb +21 -0
  116. data/vendor/plugins/guid/README.TXT +19 -0
  117. data/vendor/plugins/guid/init.rb +23 -0
  118. data/vendor/plugins/guid/lib/usesguid.rb +37 -0
  119. data/vendor/plugins/guid/lib/uuid22.rb +43 -0
  120. data/vendor/plugins/guid/lib/uuidtools.rb +565 -0
  121. metadata +83 -15
  122. data/db/ROOT/CV.txt +0 -166
  123. data/lib/file_column.rb +0 -263
  124. data/lib/file_column_helper.rb +0 -45
  125. /data/{lib → vendor/plugins/file_column/lib}/rails_file_column.rb +0 -0
Binary file
@@ -0,0 +1,89 @@
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://web.resource.org/cc/"
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:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="210mm"
13
+ height="297mm"
14
+ id="svg12824"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.43"
17
+ sodipodi:docbase="/home/manu/develop/parlement/trunk/public/attachment/file"
18
+ sodipodi:docname="eltBackground.svg">
19
+ <defs
20
+ id="defs12826">
21
+ <linearGradient
22
+ id="linearGradient13707">
23
+ <stop
24
+ style="stop-color:#75a1cf;stop-opacity:0.30980393;"
25
+ offset="0"
26
+ id="stop13709" />
27
+ <stop
28
+ style="stop-color:#5e5e5e;stop-opacity:0;"
29
+ offset="1"
30
+ id="stop13711" />
31
+ </linearGradient>
32
+ <linearGradient
33
+ inkscape:collect="always"
34
+ xlink:href="#linearGradient13707"
35
+ id="linearGradient13713"
36
+ x1="112.30315"
37
+ y1="398.94092"
38
+ x2="197.66534"
39
+ y2="398.94092"
40
+ gradientUnits="userSpaceOnUse"
41
+ spreadMethod="pad"
42
+ gradientTransform="matrix(6.309524,0,0,5.693945e-2,-608.5932,-144.2155)" />
43
+ </defs>
44
+ <sodipodi:namedview
45
+ id="base"
46
+ pagecolor="#ffffff"
47
+ bordercolor="#666666"
48
+ borderopacity="1.0"
49
+ inkscape:pageopacity="0.0"
50
+ inkscape:pageshadow="2"
51
+ inkscape:zoom="1.0847116"
52
+ inkscape:cx="121.5"
53
+ inkscape:cy="683.07874"
54
+ inkscape:document-units="px"
55
+ inkscape:current-layer="layer1"
56
+ inkscape:window-width="910"
57
+ inkscape:window-height="694"
58
+ inkscape:window-x="229"
59
+ inkscape:window-y="235" />
60
+ <metadata
61
+ id="metadata12829">
62
+ <rdf:RDF>
63
+ <cc:Work
64
+ rdf:about="">
65
+ <dc:format>image/svg+xml</dc:format>
66
+ <dc:type
67
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
68
+ </cc:Work>
69
+ </rdf:RDF>
70
+ </metadata>
71
+ <g
72
+ inkscape:label="Calque 1"
73
+ inkscape:groupmode="layer"
74
+ id="layer1">
75
+ <rect
76
+ style="opacity:0.70761671;fill:url(#linearGradient13713);fill-opacity:1;stroke:none;stroke-width:5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
77
+ id="rect12832"
78
+ width="507.04724"
79
+ height="30.614143"
80
+ x="115.75983"
81
+ y="-136.80707"
82
+ rx="0.63162386"
83
+ ry="0.66666669"
84
+ transform="matrix(0,1,-1,0,0,0)"
85
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/eltBackground.png"
86
+ inkscape:export-xdpi="29.4"
87
+ inkscape:export-ydpi="29.4" />
88
+ </g>
89
+ </svg>
Binary file
Binary file
@@ -0,0 +1,257 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Sodipodi ("http://www.sodipodi.com/") -->
3
+ <svg
4
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
5
+ xmlns:cc="http://web.resource.org/cc/"
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://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
10
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
11
+ id="svg215"
12
+ sodipodi:version="0.32"
13
+ width="210mm"
14
+ height="297mm"
15
+ sodipodi:docbase="/home/manu/develop/parlement/trunk/public/images"
16
+ sodipodi:docname="smile.svg"
17
+ inkscape:version="0.42"
18
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
19
+ inkscape:export-xdpi="90.000000"
20
+ inkscape:export-ydpi="90.000000">
21
+ <metadata
22
+ id="metadata6761">
23
+ <rdf:RDF>
24
+ <cc:Work
25
+ rdf:about="">
26
+ <dc:format>image/svg+xml</dc:format>
27
+ <dc:type
28
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
29
+ </cc:Work>
30
+ </rdf:RDF>
31
+ </metadata>
32
+ <defs
33
+ id="defs217">
34
+ <linearGradient
35
+ id="linearGradient8766">
36
+ <stop
37
+ id="stop8768"
38
+ offset="0.0000000"
39
+ style="stop-color:#ff8000;stop-opacity:1.0000000;" />
40
+ <stop
41
+ id="stop8770"
42
+ offset="1"
43
+ style="stop-color:#99ff99;stop-opacity:0;" />
44
+ </linearGradient>
45
+ <marker
46
+ inkscape:stockid="CurveIn"
47
+ orient="auto"
48
+ refY="0.0"
49
+ refX="0.0"
50
+ id="CurveIn"
51
+ style="overflow:visible">
52
+ <path
53
+ sodipodi:nodetypes="ccc"
54
+ id="path942"
55
+ d="M 4.6254930,-5.0456926 C 1.8654930,-5.0456926 -0.37450702,-2.8056926 -0.37450702,-0.045692580 C -0.37450702,2.7143074 1.8654930,4.9543074 4.6254930,4.9543074"
56
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;marker-end:none;fill:none"
57
+ transform="scale(0.6)" />
58
+ </marker>
59
+ </defs>
60
+ <sodipodi:namedview
61
+ id="base"
62
+ showgrid="false"
63
+ snaptogrid="true"
64
+ inkscape:zoom="1.2771158"
65
+ inkscape:cx="382.00882"
66
+ inkscape:cy="816.03241"
67
+ inkscape:window-width="868"
68
+ inkscape:window-height="514"
69
+ inkscape:window-x="400"
70
+ inkscape:window-y="118"
71
+ inkscape:current-layer="svg215" />
72
+ <path
73
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
74
+ d="M 177.165 343.701 L 177.165 414.567 "
75
+ id="path204"
76
+ transform="translate(336.614,-177.166)"
77
+ inkscape:export-xdpi="90.000000"
78
+ inkscape:export-ydpi="90.000000" />
79
+ <path
80
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
81
+ d="M 283.465 361.417 L 248.032 396.85 "
82
+ id="path224"
83
+ transform="translate(301.181,-194.882)"
84
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
85
+ inkscape:export-xdpi="90.000000"
86
+ inkscape:export-ydpi="90.000000" />
87
+ <path
88
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
89
+ d="M 177.165 396.85 L 141.732 361.417 "
90
+ id="path225"
91
+ transform="translate(301.181,-194.882)"
92
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
93
+ inkscape:export-xdpi="90.000000"
94
+ inkscape:export-ydpi="90.000000" />
95
+ <path
96
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
97
+ d="M 177.165 467.717 L 248.032 467.717 "
98
+ id="path227"
99
+ transform="translate(301.181,-194.882)"
100
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
101
+ inkscape:export-xdpi="90.000000"
102
+ inkscape:export-ydpi="90.000000" />
103
+ <path
104
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
105
+ d="M 283.465 503.15 L 318.898 467.717 "
106
+ id="path228"
107
+ transform="translate(301.181,-194.882)"
108
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
109
+ inkscape:export-xdpi="90.000000"
110
+ inkscape:export-ydpi="90.000000" />
111
+ <path
112
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
113
+ d="M 141.732 503.15 L 106.299 467.717 "
114
+ id="path229"
115
+ transform="translate(301.181,-194.882)"
116
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
117
+ inkscape:export-xdpi="90.000000"
118
+ inkscape:export-ydpi="90.000000" />
119
+ <path
120
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
121
+ d="M 212.598 503.15 L 212.598 574.016 "
122
+ id="path230"
123
+ transform="translate(301.181,-194.882)"
124
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
125
+ inkscape:export-xdpi="90.000000"
126
+ inkscape:export-ydpi="90.000000" />
127
+ <path
128
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
129
+ d="M 177.165 538.583 L 248.032 538.583 "
130
+ id="path231"
131
+ transform="translate(301.181,-194.882)"
132
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
133
+ inkscape:export-xdpi="90.000000"
134
+ inkscape:export-ydpi="90.000000" />
135
+ <path
136
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
137
+ d="M 248.032 538.583 L 283.465 503.15 "
138
+ id="path232"
139
+ transform="translate(301.181,-194.882)"
140
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
141
+ inkscape:export-xdpi="90.000000"
142
+ inkscape:export-ydpi="90.000000" />
143
+ <path
144
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
145
+ d="M 283.465 574.016 L 318.898 538.583 "
146
+ id="path233"
147
+ transform="translate(301.181,-194.882)"
148
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
149
+ inkscape:export-xdpi="90.000000"
150
+ inkscape:export-ydpi="90.000000" />
151
+ <path
152
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
153
+ d="M 177.165 538.583 L 141.732 503.15 "
154
+ id="path234"
155
+ transform="translate(301.181,-194.882)"
156
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
157
+ inkscape:export-xdpi="90.000000"
158
+ inkscape:export-ydpi="90.000000" />
159
+ <path
160
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
161
+ d="M 106.299 538.583 L 141.732 574.016 "
162
+ id="path235"
163
+ transform="translate(301.181,-194.882)"
164
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
165
+ inkscape:export-xdpi="90.000000"
166
+ inkscape:export-ydpi="90.000000" />
167
+ <path
168
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
169
+ d="M 177.165 343.701 L 177.165 414.567 "
170
+ id="path248"
171
+ transform="translate(336.614,-248.032)"
172
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
173
+ inkscape:export-xdpi="90.000000"
174
+ inkscape:export-ydpi="90.000000" />
175
+ <path
176
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
177
+ d="M 283.465 361.417 L 248.032 396.85 "
178
+ id="path249"
179
+ transform="translate(230.314,-265.748)"
180
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
181
+ inkscape:export-xdpi="90.000000"
182
+ inkscape:export-ydpi="90.000000" />
183
+ <path
184
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
185
+ d="M 177.165 396.85 L 141.732 361.417 "
186
+ id="path250"
187
+ transform="translate(372.047,-265.748)"
188
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
189
+ inkscape:export-xdpi="90.000000"
190
+ inkscape:export-ydpi="90.000000" />
191
+ <path
192
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
193
+ d="M 177.165 467.717 L 248.032 467.717 "
194
+ id="path251"
195
+ transform="translate(301.18,-336.615)"
196
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
197
+ inkscape:export-xdpi="90.000000"
198
+ inkscape:export-ydpi="90.000000" />
199
+ <path
200
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
201
+ d="M 283.465 503.15 L 318.898 467.717 "
202
+ id="path252"
203
+ transform="translate(230.313,-336.615)"
204
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
205
+ inkscape:export-xdpi="90.000000"
206
+ inkscape:export-ydpi="90.000000" />
207
+ <path
208
+ style="fill:#000000;fill-rule:evenodd;stroke:#ff8000;stroke-opacity:1.0000000;stroke-width:10.000000;stroke-linejoin:miter;stroke-linecap:round;fill-opacity:1.0000000;stroke-miterlimit:4.0000000;stroke-dasharray:none;marker-start:none;opacity:1.0000000"
209
+ d="M 141.732 503.15 L 106.299 467.717 "
210
+ id="path253"
211
+ transform="translate(372.047,-336.615)"
212
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/path204.png"
213
+ inkscape:export-xdpi="90.000000"
214
+ inkscape:export-ydpi="90.000000" />
215
+ <path
216
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
217
+ d="M 256.69732,167.48340 L 256.69732,238.34940"
218
+ id="path10442"
219
+ inkscape:export-xdpi="90.000000"
220
+ inkscape:export-ydpi="90.000000"
221
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png" />
222
+ <path
223
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
224
+ d="M 327.56432,167.48340 L 292.13132,202.91640"
225
+ id="path10444"
226
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
227
+ inkscape:export-xdpi="90.000000"
228
+ inkscape:export-ydpi="90.000000" />
229
+ <path
230
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
231
+ d="M 221.26432,202.91640 L 185.83132,167.48340"
232
+ id="path10446"
233
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
234
+ inkscape:export-xdpi="90.000000"
235
+ inkscape:export-ydpi="90.000000" />
236
+ <path
237
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
238
+ d="M 221.26432,273.78340 L 292.13132,273.78340"
239
+ id="path10448"
240
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
241
+ inkscape:export-xdpi="90.000000"
242
+ inkscape:export-ydpi="90.000000" />
243
+ <path
244
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
245
+ d="M 327.56432,309.21640 L 362.99732,273.78340"
246
+ id="path10450"
247
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
248
+ inkscape:export-xdpi="90.000000"
249
+ inkscape:export-ydpi="90.000000" />
250
+ <path
251
+ style="opacity:1.0000000;fill:#000000;fill-opacity:1.0000000;fill-rule:evenodd;stroke:#ff8000;stroke-width:15.000000;stroke-linecap:round;stroke-linejoin:miter;marker-start:none;stroke-miterlimit:4.0000000;stroke-dasharray:none;stroke-opacity:1.0000000"
252
+ d="M 185.83132,309.21640 L 150.39832,273.78340"
253
+ id="path10452"
254
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/smile.png"
255
+ inkscape:export-xdpi="90.000000"
256
+ inkscape:export-ydpi="90.000000" />
257
+ </svg>
Binary file
@@ -0,0 +1,170 @@
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://web.resource.org/cc/"
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:xlink="http://www.w3.org/1999/xlink"
10
+ xmlns:sodipodi="http://inkscape.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="64px"
13
+ height="64px"
14
+ id="svg4269"
15
+ sodipodi:version="0.32"
16
+ inkscape:version="0.43"
17
+ inkscape:export-filename="/home/manu/develop/parlement/trunk/public/images/world.png"
18
+ inkscape:export-xdpi="180"
19
+ inkscape:export-ydpi="180"
20
+ sodipodi:docbase="/home/manu/develop/parlement/trunk/public/images"
21
+ sodipodi:docname="world.svg">
22
+ <defs
23
+ id="defs4271">
24
+ <linearGradient
25
+ id="linearGradient704">
26
+ <stop
27
+ style="stop-color:#5cdbff;stop-opacity:1.0000000;"
28
+ offset="0.0000000"
29
+ id="stop705" />
30
+ <stop
31
+ style="stop-color:#4973ae;stop-opacity:1.0000000;"
32
+ offset="1.0000000"
33
+ id="stop706" />
34
+ </linearGradient>
35
+ <radialGradient
36
+ xlink:href="#linearGradient704"
37
+ r="263.40170"
38
+ id="radialGradient703"
39
+ gradientUnits="userSpaceOnUse"
40
+ fy="733.26062"
41
+ fx="253.23643"
42
+ cy="733.26062"
43
+ cx="253.23643" />
44
+ <radialGradient
45
+ inkscape:collect="always"
46
+ xlink:href="#linearGradient704"
47
+ id="radialGradient5320"
48
+ gradientUnits="userSpaceOnUse"
49
+ cx="253.23643"
50
+ cy="733.26062"
51
+ fx="253.23643"
52
+ fy="733.26062"
53
+ r="263.40170" />
54
+ </defs>
55
+ <sodipodi:namedview
56
+ id="base"
57
+ pagecolor="#ffffff"
58
+ bordercolor="#666666"
59
+ borderopacity="1.0"
60
+ inkscape:pageopacity="0.0"
61
+ inkscape:pageshadow="2"
62
+ inkscape:zoom="6.4128158"
63
+ inkscape:cx="32.000155"
64
+ inkscape:cy="32.344206"
65
+ inkscape:current-layer="layer1"
66
+ showgrid="true"
67
+ inkscape:document-units="px"
68
+ inkscape:grid-bbox="true"
69
+ inkscape:window-width="910"
70
+ inkscape:window-height="546"
71
+ inkscape:window-x="259"
72
+ inkscape:window-y="326" />
73
+ <metadata
74
+ id="metadata4274">
75
+ <rdf:RDF>
76
+ <cc:Work
77
+ rdf:about="">
78
+ <dc:format>image/svg+xml</dc:format>
79
+ <dc:type
80
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
81
+ </cc:Work>
82
+ </rdf:RDF>
83
+ </metadata>
84
+ <g
85
+ id="layer1"
86
+ inkscape:label="Layer 1"
87
+ inkscape:groupmode="layer">
88
+ <g
89
+ id="g2377"
90
+ transform="matrix(0.127083,0,0,0.127083,-7.642803,-64.95323)">
91
+ <path
92
+ d="M 596.25,809.23718 C 596.25,943.51141 487.39923,1052.3622 353.125,1052.3622 C 218.85077,1052.3622 110,943.51141 110,809.23718 C 110,674.96295 218.85077,566.11218 353.125,566.11218 C 487.39923,566.11218 596.25,674.96295 596.25,809.23718 z "
93
+ id="path702"
94
+ style="fill:url(#radialGradient5320);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
95
+ transform="translate(-32.5,-55.00005)" />
96
+ <path
97
+ d="M 151.15156,619.20973 C 157.48287,619.20973 163.53677,630.90187 181.33857,629.88667 C 207.19587,628.41217 206.15127,626.99847 210.39357,649.26677 C 212.29657,659.25607 226.33427,665.36387 231.04557,681.29887 C 233.48587,689.55267 235.49187,697.95567 237.36027,706.24517 C 242.19827,727.71017 236.87297,742.38437 220.61467,758.52607 C 209.67227,769.38997 231.72667,781.97667 214.48107,796.26747 C 209.18157,800.65897 226.65667,834.64497 229.17667,842.42117 C 235.58477,862.19497 242.78487,880.88977 250.44087,900.22237 C 257.17897,917.23717 254.03307,916.70447 238.39517,922.53687 C 238.02967,922.67317 220.49077,910.13157 217.91967,907.94437 C 202.01387,894.41387 196.75637,874.92697 183.86267,863.27337 C 168.50527,849.39297 159.14037,859.99317 145.07456,833.96577 C 137.61156,820.15627 108.91568,838.35037 105.25889,806.51407 C 100.73082,767.09207 94.126144,744.41587 103.52868,704.37407 C 110.90014,672.98187 123.96566,658.63107 144.45396,635.20797 C 146.50906,632.85847 148.02676,628.33627 148.47656,625.30997 C 148.28646,626.58847 148.76936,622.28647 151.15156,619.20973 z "
98
+ id="path743"
99
+ style="fill:#5191b6;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
100
+ <path
101
+ d="M 141.15155,621.70967 C 147.48285,621.70967 153.53675,633.40177 171.33857,632.38657 C 197.19587,630.91207 196.15127,629.49837 200.39357,651.76667 C 202.29657,661.75597 216.33427,667.86377 221.04557,683.79877 C 223.48587,692.05257 225.49187,700.45557 227.36027,708.74507 C 232.19827,730.21007 226.87297,744.88427 210.61467,761.02597 C 199.67227,771.88987 221.72667,784.47657 204.48107,798.76737 C 199.18157,803.15887 216.65667,837.14487 219.17667,844.92107 C 225.58477,864.69487 232.78487,883.38967 240.44087,902.72227 C 247.17897,919.73707 244.03307,919.20437 228.39517,925.03677 C 228.02967,925.17307 210.49077,912.63147 207.91967,910.44427 C 192.01387,896.91377 186.75637,877.42687 173.86267,865.77327 C 158.50527,851.89287 149.14035,862.49307 135.07455,836.46567 C 127.61155,822.65617 98.915664,840.85027 95.258874,809.01397 C 90.730804,769.59197 84.126124,746.91577 93.528664,706.87397 C 100.90012,675.48177 113.96565,661.13097 134.45395,637.70787 C 136.50905,635.35837 138.02675,630.83617 138.47655,627.80987 C 138.28645,629.08837 138.76935,624.78637 141.15155,621.70967 z "
102
+ id="path744"
103
+ style="fill:#457c9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
104
+ <path
105
+ d="M 174.90157,556.70974 C 191.07687,556.70974 205.57747,540.30714 221.22737,536.33824 C 241.33717,531.23834 250.91157,522.54334 273.29327,522.80314 C 284.59777,522.93424 322.68857,518.37724 319.59507,538.24994 C 319.12897,541.24424 289.13227,556.59624 283.87287,562.13194 C 254.86857,592.66033 241.19947,597.18833 199.69397,602.91833 C 181.06817,605.48973 156.35215,595.51733 166.05117,573.02634 C 168.23507,567.96204 173.40077,567.84784 174.90157,556.70974 z "
106
+ id="path745"
107
+ style="fill:#5192b7;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
108
+ <path
109
+ d="M 183.65157,559.20954 C 199.82687,559.20954 214.32747,542.80694 229.97737,538.83804 C 250.08717,533.73814 259.66157,525.04314 282.04327,525.30294 C 293.34777,525.43404 331.43857,520.87704 328.34507,540.74974 C 327.87897,543.74404 297.88227,559.09604 292.62287,564.63174 C 263.61857,595.16013 249.94947,599.68813 208.44397,605.41813 C 189.81817,607.98953 165.10217,598.01713 174.80117,575.52614 C 176.98507,570.46184 182.15077,570.34764 183.65157,559.20954 z "
110
+ id="path746"
111
+ style="fill:#457c9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
112
+ <path
113
+ d="M 327.40157,565.45974 C 314.76257,571.77924 272.66717,598.18313 279.01847,615.30743 C 279.26277,615.96623 300.09727,626.08617 303.03197,628.57337 C 328.68157,650.31127 350.13267,645.95837 377.54797,661.14417 C 389.73137,667.89277 393.75887,678.46947 408.30537,683.32197 C 425.44717,689.04027 419.94487,707.37577 431.83967,714.42167 C 447.92517,723.94997 454.00977,711.77177 461.54917,733.56537 C 468.09947,752.49977 476.66647,742.95717 488.99437,734.06737 C 514.63407,715.57807 504.57397,708.33337 513.75947,685.09877 C 519.77957,669.87107 520.03527,646.32007 513.82897,631.07087 C 505.94307,611.69473 448.80477,570.72634 429.53287,564.89564 C 406.85647,558.03494 351.78087,564.93484 327.40157,565.45974 z "
114
+ id="path749"
115
+ style="fill:#4d8bae;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
116
+ <path
117
+ d="M 353.65157,994.20947 C 342.11877,994.20947 294.29277,999.81947 309.67107,973.02267 C 315.44067,962.96887 320.49727,950.61347 332.92007,948.79127 C 341.71587,947.50107 345.13637,937.37067 355.08527,937.01507 C 369.11327,936.51367 382.16557,933.15167 397.49297,933.02177 C 413.44507,932.88667 447.42617,926.53327 443.90507,954.29697 C 441.57587,972.66257 400.54947,984.17057 385.46697,987.44247 C 374.25947,989.87367 364.30207,994.39547 354.69907,1000.5685"
118
+ id="path752"
119
+ style="fill:#4e8db1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
120
+ <path
121
+ d="M 337.40157,800.45957 C 331.05627,787.76887 327.14297,788.20477 345.57867,784.36697 C 353.63967,782.68897 375.41217,778.61787 377.38257,789.27297 C 379.62727,801.41207 404.74317,796.42447 412.23467,816.00077 C 423.45507,845.32117 391.36917,852.39237 370.49737,853.89617 C 357.14927,854.85787 346.58887,864.87587 333.36957,867.26587 C 312.61877,871.01747 316.47337,860.22817 310.14427,844.61717 C 305.23907,832.51817 310.93297,805.60507 327.57407,806.69417 C 329.28427,806.80607 332.85187,804.21927 337.40157,800.45957 z "
122
+ id="path753"
123
+ style="font-size:12px;fill:#4e8db1;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1" />
124
+ <path
125
+ d="M 336.15157,561.70959 C 323.51257,568.02908 281.41717,594.43297 287.76847,611.55727 C 288.01277,612.21607 308.84727,622.33597 311.78197,624.82317 C 337.43157,646.56107 358.88267,642.20817 386.29797,657.39397 C 398.48137,664.14257 402.50887,674.71927 417.05537,679.57177 C 434.19717,685.29007 428.69487,703.62557 440.58967,710.67147 C 456.67517,720.19977 462.75977,708.02157 470.29917,729.81517 C 476.84947,748.74957 485.41647,739.20697 497.74437,730.31717 C 523.38407,711.82787 513.32397,704.58317 522.50947,681.34857 C 528.52957,666.12087 528.78527,642.56987 522.57897,627.32067 C 514.69307,607.94457 457.55477,566.97618 438.28287,561.14549 C 415.60647,554.28479 360.53087,561.18469 336.15157,561.70959 z "
126
+ id="path754"
127
+ style="fill:#457c9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
128
+ <path
129
+ d="M 362.40157,990.45937 C 350.86877,990.45937 303.04277,996.06947 318.42107,969.27257 C 324.19067,959.21877 329.24727,946.86337 341.67007,945.04117 C 350.46587,943.75097 353.88637,933.62057 363.83527,933.26497 C 377.86327,932.76357 390.91557,929.40157 406.24297,929.27167 C 422.19507,929.13657 456.17617,922.78317 452.65507,950.54687 C 450.32587,968.91247 409.29947,980.42047 394.21697,983.69237 C 383.00947,986.12357 373.05207,990.64537 363.44907,996.81847"
130
+ id="path755"
131
+ style="fill:#457c9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
132
+ <path
133
+ d="M 346.30202,801.94288 C 339.95672,789.25218 336.04342,789.68808 354.47912,785.85028 C 362.54012,784.17228 384.31262,780.10118 386.28302,790.75628 C 388.52772,802.89538 413.64362,797.90778 421.13512,817.48408 C 432.35552,846.80448 400.26962,853.87568 379.39782,855.37948 C 366.04972,856.34118 355.48932,866.35918 342.27002,868.74918 C 321.51922,872.50078 325.37382,861.71148 319.04472,846.10048 C 314.13952,834.00148 319.83342,807.08838 336.47452,808.17748 C 338.18472,808.28938 341.75232,805.70258 346.30202,801.94288 z "
134
+ id="path756"
135
+ style="font-size:12px;fill:#457c9b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1" />
136
+ <path
137
+ d="M 331.25,716.04204 C 320.3125,710.54204 297.5625,703.16704 289.5,717.29204 C 281.1875,731.79204 280.6875,743.66704 282.75,760.91704 C 284.4375,774.79204 298.625,794.97954 312.4375,798.97954 C 319.0625,800.91704 327.5625,797.35454 334.8125,798.66704 C 349.125,801.22954 348.625,791.91704 365.4375,795.41704 C 372.5,796.91704 381.25,834.60454 380.625,841.35454 C 378.9375,860.91704 379.0625,881.47954 378.5625,900.97954 C 378.0625,923.91704 415.5625,908.29204 422.875,897.41704 C 436.875,876.47954 428.625,853.22954 431.5,829.79204 C 433,817.91704 442.5625,818.79204 439.5,799.79204 C 436,778.22954 437.1875,762.41704 441.9375,741.54204 C 444.125,732.10454 427.4375,724.91704 420.5,729.35454 C 397.75,743.72954 406.9375,738.35454 383.625,727.79204 C 377.1875,724.85454 368.375,718.47954 361.125,718.54204 C 361,718.54204 358.5,715.72954 358.5,715.54204 C 358.5,699.35454 379.6875,697.91704 388.9375,689.60454 C 390.1875,688.54204 398.0625,681.16704 398.6875,681.29204 C 403.4375,682.35454 400.9375,701.04204 419.375,690.91704 C 445.1875,676.66704 449.75,679.54204 457.8125,706.60454 C 461.875,720.10454 479.875,719.29204 488.625,727.60454 C 504,742.22954 510.0625,729.35454 518.6875,715.66704 C 521.4375,711.29204 519,687.97954 521,679.72954 C 523.4375,669.47954 526.9375,662.72954 531.75,653.60454 C 533.375,650.47954 540.875,633.91704 532.4375,634.79204 C 531.125,634.91704 531.6875,632.16704 531.25,630.85454 C 527.8125,620.72954 517,605.22954 508.25,599.16704 C 503.25,595.66704 494.625,585.22954 488.125,580.29204 C 478.875,573.16704 469.5625,566.91704 461.375,558.66704 C 456.375,553.60454 442.9375,546.29204 430.3125,542.41704 C 425.25,536.10454 405.5,533.72954 397.5,530.60454 C 370.5625,520.10454 345.5625,522.29204 317,522.29204 C 308.5,522.29204 282.9375,536.41704 281.5625,544.79204 C 280.1875,552.54204 275.3125,578.97954 283.8125,580.66704 C 298,583.47954 286.4375,593.41704 296.8125,598.41704 C 302.3125,601.04204 300.8125,577.10454 312.125,588.10454 C 314,589.85454 323.5625,572.10454 325.8125,589.91704 C 325.75,590.41704 325.75,590.85454 325.6875,591.35454 C 325.0625,599.97954 296.8125,614.47954 293.125,628.47954 C 288.375,646.85454 291.8125,636.60454 278.375,643.47954 C 274.1875,645.60454 270.125,663.04204 271.9375,667.97954 C 272,668.16704 280,669.97954 282.125,674.72954 C 288.25,688.47954 290.0625,687.72954 301.0625,687.41704 C 302.375,687.97954 302.9375,688.16704 303.125,688.22954 C 322.3125,693.29204 331.625,696.16704 331.25,716.04204 z "
138
+ id="path737"
139
+ style="font-size:12px;fill:#5f8188;fill-opacity:1;fill-rule:evenodd;stroke-width:1" />
140
+ <path
141
+ d="M 322.3833,708.6249 C 311.4458,703.1249 288.6958,695.7499 280.6333,709.8749 C 272.3208,724.3749 271.8208,736.2499 273.8833,753.4999 C 275.5708,767.3749 289.7583,787.5624 303.5708,791.5624 C 310.1958,793.4999 318.6958,789.9374 325.9458,791.2499 C 340.2583,793.8124 339.7583,784.4999 356.5708,787.9999 C 363.6333,789.4999 372.3833,827.1874 371.7583,833.9374 C 370.0708,853.4999 370.1958,874.0624 369.6958,893.5624 C 369.1958,916.4999 406.6958,900.8749 414.0083,889.9999 C 428.0083,869.0624 419.7583,845.8124 422.6333,822.3749 C 424.1333,810.4999 433.6958,811.3749 430.6333,792.3749 C 427.1333,770.8124 428.3208,754.9999 433.0708,734.1249 C 435.2583,724.6874 418.5708,717.4999 411.6333,721.9374 C 388.8833,736.3124 398.0708,730.9374 374.7583,720.3749 C 368.3208,717.4374 359.5083,711.0624 352.2583,711.1249 C 352.1333,711.1249 349.6333,708.3124 349.6333,708.1249 C 349.6333,691.9374 370.8208,690.4999 380.0708,682.1874 C 381.3208,681.1249 389.1958,673.7499 389.8208,673.8749 C 394.5708,674.9374 392.0708,693.6249 410.5083,683.4999 C 436.3208,669.2499 440.8833,672.1249 448.9458,699.1874 C 453.0083,712.6874 471.0083,711.8749 479.7583,720.1874 C 495.1333,734.8124 501.1958,721.9374 509.8208,708.2499 C 512.5708,703.8749 510.1333,680.5624 512.1333,672.3124 C 514.5708,662.0624 518.0708,655.3124 522.8833,646.1874 C 524.5083,643.0624 532.0083,626.4999 523.5708,627.3749 C 522.2583,627.4999 522.8208,624.7499 522.3833,623.4374 C 518.9458,613.3124 508.1333,597.8124 499.3833,591.7499 C 494.3833,588.2499 485.7583,577.8124 479.2583,572.8749 C 470.0083,565.7499 460.6958,559.4999 452.5083,551.2499 C 447.5083,546.1874 434.0708,538.8749 421.4458,534.9999 C 416.3833,528.6874 396.6333,526.3124 388.6333,523.1874 C 361.6958,512.6874 336.6958,514.8749 308.1333,514.8749 C 299.6333,514.8749 274.0708,528.9999 272.6958,537.3749 C 271.3208,545.1249 266.4458,571.5624 274.9458,573.2499 C 289.1333,576.0624 277.5708,585.9999 287.9458,590.9999 C 293.4458,593.6249 291.9458,569.6874 303.2583,580.6874 C 305.1333,582.4374 314.6958,564.6874 316.9458,582.4999 C 316.8833,582.9999 316.8833,583.4374 316.8208,583.9374 C 316.1958,592.5624 287.9458,607.0624 284.2583,621.0624 C 279.5083,639.4374 282.9458,629.1874 269.5083,636.0624 C 265.3208,638.1874 261.2583,655.6249 263.0708,660.5624 C 263.1333,660.7499 271.1333,662.5624 273.2583,667.3124 C 279.3833,681.0624 281.1958,680.3124 292.1958,679.9999 C 293.5083,680.5624 294.0708,680.7499 294.2583,680.8124 C 313.4458,685.8749 322.7583,688.7499 322.3833,708.6249 z "
142
+ id="path738"
143
+ style="font-size:12px;fill:#77a2ab;fill-opacity:1;fill-rule:evenodd;stroke-width:1" />
144
+ <path
145
+ d="M 466.25,827.3622 C 462.958,833.9462 440.4912,878.9059 463.5756,873.2316 C 476.466,870.063 488.6811,829.7872 476.3787,825.9991 C 470.5293,824.198 467.2185,825.5337 466.25,827.3622 z "
146
+ id="path739"
147
+ style="fill:#547379;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
148
+ <path
149
+ d="M 460,829.8621 C 456.708,836.4461 434.2412,881.4058 457.3256,875.7315 C 470.216,872.5629 482.4311,832.2871 470.1287,828.499 C 464.2793,826.6979 460.9685,828.0336 460,829.8621 z "
150
+ id="path740"
151
+ style="fill:#77a2ab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
152
+ <path
153
+ d="M 117.73341,632.94572 C 117.73341,625.65582 136.87761,619.81842 143.28511,617.63762 C 149.78511,615.42532 153.96681,630.56912 148.59811,638.49232 C 139.72541,651.58642 135.39351,654.60622 136.17691,670.94332 C 136.75531,683.00792 125.68911,704.48352 114.31751,708.96912 C 107.38131,711.70512 106.84181,728.60432 102.09219,735.49682 C 99.693498,738.97772 92.610718,740.87522 89.121958,743.08222 C 82.549658,747.23992 86.295648,747.59422 91.934868,752.05322 C 93.085268,752.96282 96.230178,764.20372 97.809898,767.20792 C 105.97751,782.74092 93.370268,785.44132 102.41742,803.33852 C 106.54181,811.49742 102.97831,837.46012 100.13067,846.54282 C 94.670298,863.95862 83.804078,826.88352 81.117328,819.48022 C 73.992818,799.84882 70.133468,750.81302 75.144178,730.63652 C 76.482878,725.24602 79.307828,719.73852 80.101758,714.32042 C 84.688388,683.01942 84.531458,655.78572 111.77961,633.95912 C 112.08061,633.71802 115.88581,632.85812 117.73341,632.94572 z "
154
+ id="path741"
155
+ style="fill:#5e8087;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
156
+ <path
157
+ d="M 105,633.612 C 105,626.3221 124.1442,620.4847 130.5517,618.3039 C 137.0517,616.0916 141.2334,631.2354 135.8647,639.1586 C 126.992,652.2527 122.6601,655.2725 123.4435,671.6096 C 124.0219,683.6742 112.9557,705.1498 101.5841,709.6354 C 94.64788,712.3714 94.10838,729.2706 89.35877,736.1631 C 86.96008,739.644 79.87731,741.5415 76.38855,743.7485 C 69.81625,747.9062 73.56224,748.2605 79.20146,752.7195 C 80.35186,753.6291 83.49677,764.87 85.07648,767.8742 C 93.24408,783.4072 80.63686,786.1076 89.684,804.0048 C 93.80838,812.1637 90.24488,838.1264 87.39725,847.2091 C 81.93689,864.6249 71.07067,827.5498 68.38392,820.1465 C 61.25941,800.5151 57.40006,751.4793 62.41077,731.3028 C 63.74947,725.9123 66.57442,720.4048 67.36835,714.9867 C 71.95498,683.6857 71.79805,656.452 99.04619,634.6254 C 99.34719,634.3843 103.1524,633.5244 105,633.612 z "
158
+ id="path742"
159
+ style="fill:#77a2ab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
160
+ <path
161
+ d="M 335,996.1122 C 322.8201,971.7526 351.3823,983.9346 352.4119,956.5178 C 352.8294,945.3995 383.0399,944.6943 392.0941,938.5984 C 405.3617,929.6658 435.9171,910.3001 448.5529,926.1312 C 458.368,938.4283 482.7675,910.936 483.7121,930.393 C 484.5546,947.7468 439.3286,970.3913 426.6085,980.1251 C 412.4068,990.9926 387.1152,1003.394 369.1167,1004.226 C 356.4678,1004.811 347.4052,1001.56 335.5808,1001.074 C 335.3689,1001.065 335.1566,1001.081 335,996.1122 z "
162
+ id="path747"
163
+ style="fill:#64888f;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
164
+ <path
165
+ d="M 325,1001.112 C 312.8201,976.7525 341.3823,988.9345 342.4119,961.5177 C 342.8294,950.3994 373.0399,949.6942 382.0941,943.5983 C 395.3617,934.6657 425.9171,915.3 438.5529,931.1311 C 448.368,943.4282 472.7675,915.9359 473.7121,935.3929 C 474.5546,952.7467 429.3286,975.3912 416.6085,985.125 C 402.4068,995.9925 377.1152,1008.394 359.1167,1009.226 C 346.4678,1009.811 337.4052,1006.56 325.5808,1006.074 C 325.3689,1006.065 325.1566,1006.081 325,1001.112 z "
166
+ id="path748"
167
+ style="fill:#77a2ab;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
168
+ </g>
169
+ </g>
170
+ </svg>
@@ -80,7 +80,10 @@ Autocompleter.Base.prototype = {
80
80
 
81
81
  show: function() {
82
82
  if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
83
- if(!this.iefix && (navigator.appVersion.indexOf('MSIE')>0) && (Element.getStyle(this.update, 'position')=='absolute')) {
83
+ if(!this.iefix &&
84
+ (navigator.appVersion.indexOf('MSIE')>0) &&
85
+ (navigator.userAgent.indexOf('Opera')<0) &&
86
+ (Element.getStyle(this.update, 'position')=='absolute')) {
84
87
  new Insertion.After(this.update,
85
88
  '<iframe id="' + this.update.id + '_iefix" '+
86
89
  'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
@@ -718,4 +721,30 @@ Ajax.InPlaceEditor.prototype = {
718
721
  Event.stopObserving(this.options.externalControl, 'mouseout', this.mouseoutListener);
719
722
  }
720
723
  }
724
+ };
725
+
726
+ // Delayed observer, like Form.Element.Observer,
727
+ // but waits for delay after last key input
728
+ // Ideal for live-search fields
729
+
730
+ Form.Element.DelayedObserver = Class.create();
731
+ Form.Element.DelayedObserver.prototype = {
732
+ initialize: function(element, delay, callback) {
733
+ this.delay = delay || 0.5;
734
+ this.element = $(element);
735
+ this.callback = callback;
736
+ this.timer = null;
737
+ this.lastValue = $F(this.element);
738
+ Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
739
+ },
740
+ delayedListener: function(event) {
741
+ if(this.lastValue == $F(this.element)) return;
742
+ if(this.timer) clearTimeout(this.timer);
743
+ this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
744
+ this.lastValue = $F(this.element);
745
+ },
746
+ onTimerEvent: function() {
747
+ this.timer = null;
748
+ this.callback(this.element, $F(this.element));
749
+ }
721
750
  };