backlog 0.34.2 → 0.35.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. data/#SearchRequest.xml# +3443 -0
  2. data/History.txt +24 -1
  3. data/Rakefile +1 -1
  4. data/app/controllers/application.rb +13 -44
  5. data/app/controllers/works_controller.rb +7 -3
  6. data/app/models/absence.rb +1 -1
  7. data/app/models/sidebar.rb +40 -0
  8. data/app/views/layouts/mwrt002.rhtml +2 -1
  9. data/app/views/periods/_sidebar_block.rhtml +11 -0
  10. data/app/views/tasks/_task.rhtml +4 -2
  11. data/app/views/works/list_excel.rhtml +3 -1
  12. data/etc/backlog.conf +7 -0
  13. data/jira.log +28423 -0
  14. data/public/images/ajax-loading.gif +0 -0
  15. data/public/images/arrow-down.gif +0 -0
  16. data/public/images/arrow-up.gif +0 -0
  17. data/public/images/black-70.png +0 -0
  18. data/public/images/black.png +0 -0
  19. data/public/images/nextlabel.gif +0 -0
  20. data/public/images/prevlabel.gif +0 -0
  21. data/public/javascripts/lightwindow.js +1921 -0
  22. data/public/stylesheets/lightwindow.css +376 -0
  23. data/vendor/plugins/backlog_jira/README +4 -0
  24. data/vendor/plugins/backlog_jira/Rakefile +22 -0
  25. data/vendor/plugins/backlog_jira/generators/backlog_jira/backlog_jira_generator.rb +13 -0
  26. data/vendor/plugins/backlog_jira/generators/backlog_jira/templates/migration.rb +10 -0
  27. data/vendor/plugins/backlog_jira/generators/history_model/history_model_generator.rb +39 -0
  28. data/vendor/plugins/backlog_jira/generators/history_model/templates/fixtures.yml +17 -0
  29. data/vendor/plugins/backlog_jira/generators/history_model/templates/functional_test.rb +129 -0
  30. data/vendor/plugins/backlog_jira/generators/history_model/templates/model.rb +4 -0
  31. data/vendor/plugins/backlog_jira/generators/history_model/templates/unit_test.rb +75 -0
  32. data/vendor/plugins/backlog_jira/init.rb +59 -0
  33. data/vendor/plugins/backlog_jira/install.rb +1 -0
  34. data/vendor/plugins/backlog_jira/lib/backlog_jira.rb +1 -0
  35. data/vendor/plugins/backlog_jira/tasks/backlog_jira_tasks.rake +4 -0
  36. data/vendor/plugins/backlog_jira/test/backlog_jira_test.rb +8 -0
  37. data/vendor/plugins/backlog_jira/uninstall.rb +1 -0
  38. data/vendor/plugins/lightwindow_helper/README +33 -0
  39. data/vendor/plugins/lightwindow_helper/assets/images/ajax-loading.gif +0 -0
  40. data/vendor/plugins/lightwindow_helper/assets/images/arrow-down.gif +0 -0
  41. data/vendor/plugins/lightwindow_helper/assets/images/arrow-up.gif +0 -0
  42. data/vendor/plugins/lightwindow_helper/assets/images/black-70.png +0 -0
  43. data/vendor/plugins/lightwindow_helper/assets/images/black.png +0 -0
  44. data/vendor/plugins/lightwindow_helper/assets/images/nextlabel.gif +0 -0
  45. data/vendor/plugins/lightwindow_helper/assets/images/prevlabel.gif +0 -0
  46. data/vendor/plugins/lightwindow_helper/assets/javascripts/lightwindow.js +1921 -0
  47. data/vendor/plugins/lightwindow_helper/assets/stylesheets/lightwindow.css +376 -0
  48. data/vendor/plugins/lightwindow_helper/init.rb +1 -0
  49. data/vendor/plugins/lightwindow_helper/install.rb +7 -0
  50. data/vendor/plugins/lightwindow_helper/lib/lightwindow_helper.rb +31 -0
  51. metadata +70 -3
@@ -0,0 +1,376 @@
1
+ #lightwindow_overlay {
2
+ /* REQUIRED */
3
+ display: none;
4
+ visibility: hidden;
5
+ position: absolute;
6
+ top: 0;
7
+ left: 0;
8
+ width: 100%;
9
+ height: 100px;
10
+ z-index: 500;
11
+ /* REQUIRED */
12
+ }
13
+
14
+ #lightwindow {
15
+ /* REQUIRED */
16
+ /* Of Note - The height and width of this element are set to 0px */
17
+ display: none;
18
+ visibility: hidden;
19
+ position: absolute;
20
+ z-index: 999;
21
+ line-height: 0px;
22
+ /* REQUIRED */
23
+ }
24
+
25
+ #lightwindow_container {
26
+ /* REQUIRED */
27
+ display: none;
28
+ visibility: hidden;
29
+ position: absolute;
30
+ /* REQUIRED */
31
+ padding: 0 0 0 0;
32
+ margin: 0 0 0 0;
33
+ }
34
+
35
+ /* IE6 needs this or it messes with our positioning */
36
+ * html #lightwindow_container {
37
+ overflow: hidden;
38
+ }
39
+
40
+ #lightwindow_contents {
41
+ overflow: hidden;
42
+ z-index: 0;
43
+ position: relative;
44
+ border: 10px solid #ffffff;
45
+ background-color: #ffffff;
46
+ }
47
+
48
+ #lightwindow_loading {
49
+ /* REQUIRED */
50
+ height: 100%;
51
+ width: 100%;
52
+ top: 0px;
53
+ left: 0px;
54
+ z-index: 9999;
55
+ position: absolute;
56
+ /* REQUIRED */
57
+ background-color: #f0f0f0;
58
+ padding: 10px;
59
+ }
60
+
61
+ #lightwindow_loading_shim {
62
+ display: none;
63
+ left: 0px;
64
+ position: absolute;
65
+ top: 0px;
66
+ width: 100%;
67
+ height: 100%;
68
+ }
69
+
70
+ #lightwindow_loading span {
71
+ font-size: 12px;
72
+ line-height: 32px;
73
+ color: #444444;
74
+ float: left;
75
+ padding: 0 10px 0 0;
76
+ }
77
+
78
+ #lightwindow_loading span a,
79
+ #lightwindow_loading span a:link,
80
+ #lightwindow_loading span a:visited {
81
+ color: #09F;
82
+ text-decoration: none;
83
+ cursor: pointer;
84
+ }
85
+
86
+ #lightwindow_loading span a:hover,
87
+ #lightwindow_loading span a:active {
88
+ text-decoration: underline;
89
+ }
90
+
91
+
92
+ #lightwindow_loading img {
93
+ float: left;
94
+ margin: 0 10px 0 0;
95
+ }
96
+
97
+
98
+ /*-----------------------------------------------------------------------------------------------
99
+ I liked the Navigation so much from http://www.huddletogether.com/projects/lightbox2/
100
+ I mean let's face it, it works really well and is very easy to figure out.
101
+ -----------------------------------------------------------------------------------------------*/
102
+
103
+ #lightwindow_navigation {
104
+ /* REQUIRED */
105
+ position: absolute;
106
+ top: 0px;
107
+ left: 0px;
108
+ display: none;
109
+ /* REQUIRED */
110
+ }
111
+ /* We need to shim the navigation for IE, though its more of a sub-floor */
112
+ #lightwindow_navigation_shim {
113
+ /* REQUIRED */
114
+ display: none;
115
+ left: 0px;
116
+ position: absolute;
117
+ top: 0px;
118
+ width: 100%;
119
+ height: 100%;
120
+ /* REQUIRED */
121
+ }
122
+
123
+ #lightwindow_navigation a,
124
+ #lightwindow_navigation a:link,
125
+ #lightwindow_navigation a:visited,
126
+ #lightwindow_navigation a:hover,
127
+ #lightwindow_navigation a:active {
128
+ /* REQUIRED */
129
+ outline: none;
130
+ /* REQUIRED */
131
+ }
132
+
133
+ #lightwindow_previous,
134
+ #lightwindow_next {
135
+ width: 49%;
136
+ height: 100%;
137
+ background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
138
+ display: block;
139
+ }
140
+
141
+ #lightwindow_previous {
142
+ float: left;
143
+ left: 0px;
144
+ }
145
+
146
+ #lightwindow_next {
147
+ float: right;
148
+ right: 0px;
149
+ }
150
+
151
+ #lightwindow_previous:hover,
152
+ #lightwindow_previous:active {
153
+ background: url(../images/prevlabel.gif) left 15% no-repeat;
154
+ }
155
+
156
+ #lightwindow_next:hover,
157
+ #lightwindow_next:active {
158
+ background: url(../images/nextlabel.gif) right 15% no-repeat;
159
+ }
160
+
161
+ #lightwindow_previous_title,
162
+ #lightwindow_next_title {
163
+ display: none;
164
+ }
165
+
166
+ #lightwindow_galleries {
167
+ width: 100%;
168
+ position: absolute;
169
+ z-index: 50;
170
+ display: none;
171
+ overflow: hidden;
172
+ margin: 0 0 0 10px;
173
+ bottom: 0px;
174
+ left: 0px;
175
+ }
176
+
177
+ #lightwindow_galleries_tab_container {
178
+ width: 100%;
179
+ height: 0px;
180
+ overflow: hidden;
181
+ }
182
+
183
+ a#lightwindow_galleries_tab,
184
+ a:link#lightwindow_galleries_tab,
185
+ a:visited#lightwindow_galleries_tab {
186
+ display: block;
187
+ height: 20px;
188
+ width: 77px;
189
+ float: right;
190
+ line-height: 22px;
191
+ color: #ffffff;
192
+ text-decoration: none;
193
+ font-weight: bold;
194
+ cursor: pointer;
195
+ font-size: 11px;
196
+ color: #ffffbe;
197
+ background: url(../images/black-70.png) repeat 0 0 transparent;
198
+ }
199
+
200
+ * html a#lightwindow_galleries_tab,
201
+ * html a:link#lightwindow_galleries_tab,
202
+ * html a:visited#lightwindow_galleries_tab {
203
+ background: none;
204
+ background-color: #000000;
205
+ opacity: .70;
206
+ filter: alpha(opacity=70);
207
+ }
208
+
209
+ a:hover#lightwindow_galleries_tab,
210
+ a:active#lightwindow_galleries_tab {
211
+ color: #ffffbe;
212
+
213
+ }
214
+
215
+ #lightwindow_galleries_tab_span {
216
+ display: block;
217
+ height: 20px;
218
+ width: 63px;
219
+ padding: 0 7px 0 7px;
220
+ }
221
+
222
+ #lightwindow_galleries_tab .up {
223
+ background: url(../images/arrow-up.gif) no-repeat 60px 5px transparent;
224
+ }
225
+
226
+ #lightwindow_galleries_tab .down {
227
+ background: url(../images/arrow-down.gif) no-repeat 60px 6px transparent;
228
+ }
229
+
230
+ #lightwindow_galleries_list {
231
+ background: url(../images/black-70.png) repeat 0 0 transparent;
232
+ overflow: hidden;
233
+ height: 0px;
234
+ }
235
+
236
+ * html #lightwindow_galleries_list {
237
+ background: none;
238
+ background-color: #000000;
239
+ opacity: .70;
240
+ filter: alpha(opacity=70);
241
+ }
242
+
243
+ .lightwindow_galleries_list {
244
+ width: 200px;
245
+ float: left;
246
+ margin: 0 0 10px 0;
247
+ padding: 10px;
248
+ }
249
+
250
+ .lightwindow_galleries_list h1 {
251
+ color: #09F;
252
+ text-decoration: none;
253
+ font-weight: bold;
254
+ cursor: pointer;
255
+ padding: 10px 0 5px 0;
256
+ font-size: 16px;
257
+ }
258
+
259
+ .lightwindow_galleries_list li {
260
+ margin: 5px 0 5px 0;
261
+ list-style-type: none;
262
+ }
263
+
264
+ .lightwindow_galleries_list a,
265
+ .lightwindow_galleries_list a:link,
266
+ .lightwindow_galleries_list a:visited {
267
+ display: block;
268
+ line-height: 22px;
269
+ color: #ffffff;
270
+ text-decoration: none;
271
+ font-weight: bold;
272
+ cursor: pointer;
273
+ padding: 0 0 0 10px;
274
+ font-size: 11px;
275
+ }
276
+
277
+ .lightwindow_galleries_list a:hover,
278
+ .lightwindow_galleries_list a:active {
279
+ background: #000000;
280
+ color: #ffffbe;
281
+ border-left: 3px solid #ffffbe;
282
+ padding: 0 0 0 7px;
283
+ }
284
+
285
+ #lightwindow_data {
286
+ /* REQUIRED */
287
+ position: absolute;
288
+ /* REQUIRED */
289
+ }
290
+
291
+ #lightwindow_data_slide {
292
+ /* REQUIRED */
293
+ position: relative;
294
+ /* REQUIRED */
295
+ }
296
+
297
+ #lightwindow_data_slide_inner {
298
+ background-color: #ffffff;
299
+ padding: 0 10px 10px 10px;
300
+ }
301
+
302
+ #lightwindow_data_caption {
303
+ padding: 10px 0 0 0;
304
+ color: #666666;
305
+ line-height: 25px;
306
+ background-color: #ffffff;
307
+ clear: both;
308
+ }
309
+
310
+ #lightwindow_data_details {
311
+ background-color: #f0f0f0;
312
+ padding: 0 10px 0 10px;
313
+ height: 20px;
314
+ }
315
+
316
+ #lightwindow_data_author_container {
317
+ width: 40%;
318
+ text-align: right;
319
+ color: #666666;
320
+ font-style: italic;
321
+ font-size: 10px;
322
+ line-height: 20px;
323
+ float: right;
324
+ overflow: hidden;
325
+ }
326
+
327
+ #lightwindow_data_gallery_container {
328
+ font-size: 10px;
329
+ width: 40%;
330
+ text-align: left;
331
+ color: #666666;
332
+ line-height: 20px;
333
+ float: left;
334
+ overflow: hidden;
335
+ }
336
+
337
+ #lightwindow_title_bar {
338
+ height: 25px;
339
+ overflow: hidden;
340
+ }
341
+
342
+ #lightwindow_title_bar_title {
343
+ color: #ffffbe;
344
+ font-size: 14px;
345
+ line-height: 25px;
346
+ text-align: left;
347
+ float: left;
348
+ }
349
+
350
+ a#lightwindow_title_bar_close_link,
351
+ a:link#lightwindow_title_bar_close_link,
352
+ a:visited#lightwindow_title_bar_close_link {
353
+ float: right;
354
+ text-align: right;
355
+ cursor: pointer;
356
+ color: #ffffbe;
357
+ line-height: 25px;
358
+ padding: 0;
359
+ margin: 0;
360
+ }
361
+
362
+ a:hover#lightwindow_title_bar_close_link,
363
+ a:active#lightwindow_title_bar_close_link {
364
+ color: #ffffff;
365
+ }
366
+
367
+ /*-----------------------------------------------------------------------------------------------
368
+ Theme styling stuff
369
+ -----------------------------------------------------------------------------------------------*/
370
+
371
+ #lightwindow p {
372
+ color: #000000;
373
+ padding-right: 10px;
374
+ }
375
+
376
+
@@ -0,0 +1 @@
1
+ require 'lightwindow_helper'
@@ -0,0 +1,7 @@
1
+ require 'fileutils'
2
+ %w(stylesheets images javascripts).each do |type|
3
+ dir = File.join(File.dirname(__FILE__), 'assets', type)
4
+ dest = File.join(File.dirname(__FILE__), '/../../../public')
5
+ FileUtils.cp_r(dir, dest) #if !File.exist?(dir)
6
+ end
7
+ puts IO.read(File.join(File.dirname(__FILE__), 'README'))
@@ -0,0 +1,31 @@
1
+ # Author:: Carlo Bertini (WaYdotNET)
2
+ # WebSite:: http://blogs.ugidotnet.org/carlitoway
3
+ # Based on LightBoxHelper
4
+ # Many thx to Davide D'Agostino (DAddYE)
5
+ require 'action_view'
6
+
7
+ module ActionView
8
+ module Helpers
9
+ module LightWindowHelper
10
+ def self.included(base)
11
+ base.class_eval do
12
+ include InstanceMethods
13
+ end
14
+ end
15
+ module InstanceMethods
16
+ def lightwindow_link_to(name, options = {}, html_options = {}, *parameters_for_method_reference)
17
+ html_options.merge!(:class => "lightwindow") unless html_options[:class]
18
+ # url_for(options) it's hack to resolve this problem
19
+ # http://railsforum.com/viewtopic.php?pid=46594 (thx to DAddYE)
20
+ link_to(name, url_for(options) + "/", html_options, *parameters_for_method_reference)
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
26
+
27
+ ActionView::Base.class_eval do
28
+ include ActionView::Helpers::LightWindowHelper
29
+ end
30
+
31
+ ActionView::Helpers::AssetTagHelper.register_javascript_include_default 'lightwindow'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backlog
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.34.2
4
+ version: 0.35.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Uwe Kubosch
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-10-09 00:00:00 +02:00
12
+ date: 2008-12-15 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -52,6 +52,16 @@ dependencies:
52
52
  - !ruby/object:Gem::Version
53
53
  version: 1.2.1
54
54
  version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: mechanize
57
+ type: :runtime
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ~>
62
+ - !ruby/object:Gem::Version
63
+ version: 0.8.4
64
+ version:
55
65
  - !ruby/object:Gem::Dependency
56
66
  name: hoe
57
67
  type: :development
@@ -60,7 +70,7 @@ dependencies:
60
70
  requirements:
61
71
  - - ">="
62
72
  - !ruby/object:Gem::Version
63
- version: 1.7.0
73
+ version: 1.8.2
64
74
  version:
65
75
  description: Welcome to Backlog! Backlog is a tool to help you collect and organize all your tasks, whether you are a single person or a small or large group.
66
76
  email: uwe@kubosch.no
@@ -71,6 +81,7 @@ extensions: []
71
81
  extra_rdoc_files: []
72
82
 
73
83
  files:
84
+ - jira.log
74
85
  - app
75
86
  - app/views
76
87
  - app/views/search
@@ -79,6 +90,7 @@ files:
79
90
  - app/views/periods/new.rhtml
80
91
  - app/views/periods/_title.rhtml
81
92
  - app/views/periods/_link.rhtml
93
+ - app/views/periods/_sidebar_block.rhtml
82
94
  - app/views/periods/reopen_task.rjs
83
95
  - app/views/periods/_burn_down_chart.rhtml
84
96
  - app/views/periods/_show_active.rhtml
@@ -264,6 +276,7 @@ files:
264
276
  - app/helpers/public_holidays_helper.rb
265
277
  - app/helpers/absences_helper.rb
266
278
  - app/models
279
+ - app/models/sidebar.rb
267
280
  - app/models/public_holiday.rb
268
281
  - app/models/work_lock_notify.rb
269
282
  - app/models/work.rb
@@ -297,6 +310,7 @@ files:
297
310
  - README_LOGIN_SUGAR
298
311
  - etc
299
312
  - etc/backlog.conf
313
+ - "#SearchRequest.xml#"
300
314
  - README_RAILS
301
315
  - Capfile
302
316
  - nbproject
@@ -386,6 +400,31 @@ files:
386
400
  - History.txt
387
401
  - vendor
388
402
  - vendor/plugins
403
+ - vendor/plugins/lightwindow
404
+ - vendor/plugins/backlog_jira
405
+ - vendor/plugins/backlog_jira/README
406
+ - vendor/plugins/backlog_jira/init.rb
407
+ - vendor/plugins/backlog_jira/generators
408
+ - vendor/plugins/backlog_jira/generators/backlog_jira
409
+ - vendor/plugins/backlog_jira/generators/backlog_jira/backlog_jira_generator.rb
410
+ - vendor/plugins/backlog_jira/generators/backlog_jira/templates
411
+ - vendor/plugins/backlog_jira/generators/backlog_jira/templates/migration.rb
412
+ - vendor/plugins/backlog_jira/generators/history_model
413
+ - vendor/plugins/backlog_jira/generators/history_model/history_model_generator.rb
414
+ - vendor/plugins/backlog_jira/generators/history_model/templates
415
+ - vendor/plugins/backlog_jira/generators/history_model/templates/fixtures.yml
416
+ - vendor/plugins/backlog_jira/generators/history_model/templates/unit_test.rb
417
+ - vendor/plugins/backlog_jira/generators/history_model/templates/model.rb
418
+ - vendor/plugins/backlog_jira/generators/history_model/templates/functional_test.rb
419
+ - vendor/plugins/backlog_jira/tasks
420
+ - vendor/plugins/backlog_jira/tasks/backlog_jira_tasks.rake
421
+ - vendor/plugins/backlog_jira/install.rb
422
+ - vendor/plugins/backlog_jira/uninstall.rb
423
+ - vendor/plugins/backlog_jira/test
424
+ - vendor/plugins/backlog_jira/test/backlog_jira_test.rb
425
+ - vendor/plugins/backlog_jira/Rakefile
426
+ - vendor/plugins/backlog_jira/lib
427
+ - vendor/plugins/backlog_jira/lib/backlog_jira.rb
389
428
  - vendor/plugins/transactional_migrations
390
429
  - vendor/plugins/transactional_migrations/README
391
430
  - vendor/plugins/transactional_migrations/init.rb
@@ -483,6 +522,25 @@ files:
483
522
  - vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb
484
523
  - vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb
485
524
  - vendor/plugins/will_paginate/lib/will_paginate/collection.rb
525
+ - vendor/plugins/lightwindow_helper
526
+ - vendor/plugins/lightwindow_helper/README
527
+ - vendor/plugins/lightwindow_helper/init.rb
528
+ - vendor/plugins/lightwindow_helper/assets
529
+ - vendor/plugins/lightwindow_helper/assets/javascripts
530
+ - vendor/plugins/lightwindow_helper/assets/javascripts/lightwindow.js
531
+ - vendor/plugins/lightwindow_helper/assets/images
532
+ - vendor/plugins/lightwindow_helper/assets/images/ajax-loading.gif
533
+ - vendor/plugins/lightwindow_helper/assets/images/arrow-up.gif
534
+ - vendor/plugins/lightwindow_helper/assets/images/black-70.png
535
+ - vendor/plugins/lightwindow_helper/assets/images/prevlabel.gif
536
+ - vendor/plugins/lightwindow_helper/assets/images/black.png
537
+ - vendor/plugins/lightwindow_helper/assets/images/arrow-down.gif
538
+ - vendor/plugins/lightwindow_helper/assets/images/nextlabel.gif
539
+ - vendor/plugins/lightwindow_helper/assets/stylesheets
540
+ - vendor/plugins/lightwindow_helper/assets/stylesheets/lightwindow.css
541
+ - vendor/plugins/lightwindow_helper/install.rb
542
+ - vendor/plugins/lightwindow_helper/lib
543
+ - vendor/plugins/lightwindow_helper/lib/lightwindow_helper.rb
486
544
  - vendor/plugins/rails_time
487
545
  - vendor/plugins/rails_time/README
488
546
  - vendor/plugins/rails_time/init.rb
@@ -540,6 +598,7 @@ files:
540
598
  - public/javascripts
541
599
  - public/javascripts/effects.js
542
600
  - public/javascripts/scriptaculous.js
601
+ - public/javascripts/lightwindow.js
543
602
  - public/javascripts/dragdrop.js
544
603
  - public/javascripts/application.js
545
604
  - public/javascripts/builder.js
@@ -568,6 +627,7 @@ files:
568
627
  - public/images
569
628
  - public/images/arrow07_2.png
570
629
  - public/images/email_grey.png
630
+ - public/images/ajax-loading.gif
571
631
  - public/images/construction_hammer_jon__01.svg
572
632
  - public/images/hammer.png
573
633
  - public/images/add.svg
@@ -580,15 +640,19 @@ files:
580
640
  - public/images/arrow_up.png
581
641
  - public/images/rmagick_270.gif
582
642
  - public/images/arrow_right.svg
643
+ - public/images/arrow-up.gif
583
644
  - public/images/arrow_left.png
584
645
  - public/images/blank.png
585
646
  - public/images/arrow_right.png
647
+ - public/images/black-70.png
586
648
  - public/images/arrow_down.svg
587
649
  - public/images/grab_gray.png
650
+ - public/images/prevlabel.gif
588
651
  - public/images/arrow07_4.png
589
652
  - public/images/checkmark.png
590
653
  - public/images/flag_red.png
591
654
  - public/images/appunti_architetto_franc_01.svg
655
+ - public/images/black.png
592
656
  - public/images/group.png
593
657
  - public/images/ernes_stop_org.png
594
658
  - public/images/flag_yellow.png
@@ -608,6 +672,7 @@ files:
608
672
  - public/images/clipboard.png
609
673
  - public/images/add.png
610
674
  - public/images/arrow_down.png
675
+ - public/images/arrow-down.gif
611
676
  - public/images/tabella_architetto_franc_01.svg
612
677
  - public/images/checkmark_org.png
613
678
  - public/images/email.png
@@ -618,12 +683,14 @@ files:
618
683
  - public/images/user group.png
619
684
  - public/images/eraser_org.png
620
685
  - public/images/person.org.png
686
+ - public/images/nextlabel.gif
621
687
  - public/stylesheets
622
688
  - public/stylesheets/mwrt002MAC.css
623
689
  - public/stylesheets/backlog.css
624
690
  - public/stylesheets/user.css
625
691
  - public/stylesheets/mwrt002NN.css
626
692
  - public/stylesheets/scaffold.css
693
+ - public/stylesheets/lightwindow.css
627
694
  - public/stylesheets/zpcal
628
695
  - public/stylesheets/zpcal/themes
629
696
  - public/stylesheets/zpcal/themes/scroller-down.gif