backlog 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (170) hide show
  1. data/History.txt +10 -0
  2. data/Rakefile +2 -1
  3. data/app/controllers/application.rb +55 -8
  4. data/app/controllers/groups_controller.rb +62 -0
  5. data/app/controllers/periods_controller.rb +13 -55
  6. data/app/controllers/tasks_controller.rb +9 -5
  7. data/app/controllers/works_controller.rb +43 -6
  8. data/app/helpers/application_helper.rb +20 -2
  9. data/app/helpers/groups_helper.rb +2 -0
  10. data/app/models/backlog.rb +19 -10
  11. data/app/models/estimate.rb +2 -1
  12. data/app/models/group.rb +11 -0
  13. data/app/models/party.rb +3 -0
  14. data/app/models/period.rb +43 -6
  15. data/app/models/task.rb +27 -14
  16. data/app/models/user.rb +37 -8
  17. data/app/models/work.rb +4 -6
  18. data/app/views/backlogs/_name_list.rhtml +5 -0
  19. data/app/views/backlogs/show.rhtml +4 -4
  20. data/app/views/groups/_form.rhtml +7 -0
  21. data/app/views/groups/edit.rhtml +31 -0
  22. data/app/views/groups/list.rhtml +27 -0
  23. data/app/views/groups/new.rhtml +8 -0
  24. data/app/views/layouts/wide.rhtml +2 -2
  25. data/app/views/periods/_burn_down_chart.rhtml +1 -1
  26. data/app/views/periods/_form.rhtml +13 -9
  27. data/app/views/periods/_show_active.rhtml +6 -12
  28. data/app/views/periods/_title.rhtml +4 -5
  29. data/app/views/periods/edit.rhtml +1 -1
  30. data/app/views/periods/new.rhtml +1 -1
  31. data/app/views/periods/show.rhtml +10 -6
  32. data/app/views/tasks/_backlog_header.rhtml +22 -0
  33. data/app/views/tasks/_description_list.rhtml +5 -0
  34. data/app/views/tasks/_form.rhtml +26 -7
  35. data/app/views/tasks/_task.rhtml +4 -4
  36. data/app/views/tasks/edit.rhtml +2 -3
  37. data/app/views/tasks/list_started.rhtml +1 -0
  38. data/app/views/tasks/new.rhtml +2 -2
  39. data/app/views/works/_buttons.rhtml +3 -0
  40. data/app/views/works/_form.rhtml +15 -10
  41. data/app/views/works/daily_work_sheet.rhtml +30 -18
  42. data/app/views/works/edit.rhtml +4 -4
  43. data/app/views/works/list.rhtml +2 -2
  44. data/app/views/works/new.rhtml +3 -2
  45. data/app/views/works/weekly_work_sheet.rhtml +2 -2
  46. data/bin/backlog +2 -0
  47. data/bin/backlog_init.d_kubosch_production +27 -0
  48. data/bin/copy_production2development.rb +33 -0
  49. data/config/database.yml +13 -7
  50. data/config/deploy_kubosch.rb +1 -0
  51. data/config/environment.rb +2 -0
  52. data/config/environments/development_mysql.rb +27 -0
  53. data/config/environments/kubosch_production_mysql.rb +21 -0
  54. data/config/routes.rb +1 -1
  55. data/db/migrate/{001_tasks.rb → 001_create_tasks.rb} +1 -1
  56. data/db/migrate/{002_backlogs.rb → 002_create_backlogs.rb} +2 -2
  57. data/db/migrate/003_add_estimation_points.rb +1 -1
  58. data/db/migrate/004_add_period.rb +2 -2
  59. data/db/migrate/013_create_estimates.rb +1 -1
  60. data/db/migrate/015_add_user_option.rb +9 -5
  61. data/db/migrate/017_insert_datek_projects.rb +13 -10
  62. data/db/migrate/018_create_groups.rb +115 -0
  63. data/db/schema.rb +72 -12
  64. data/lang/en.yaml +7 -0
  65. data/lang/no.yaml +7 -0
  66. data/lib/big_decimal_yaml_fix.rb +27 -0
  67. data/lib/class_table_inheritance.rb +163 -0
  68. data/lib/tasks/backup.rake +92 -0
  69. data/public/images/person.org.png +0 -0
  70. data/public/images/person.png +0 -0
  71. data/public/stylesheets/backlog.css +3 -1
  72. data/public/stylesheets/mwrt002.css +1 -1
  73. data/test/fixtures/groups.yml +6 -0
  74. data/test/fixtures/parties.yml +31 -0
  75. data/test/fixtures/periods.yml +2 -2
  76. data/test/fixtures/tasks.yml +2 -0
  77. data/test/fixtures/users.yml +6 -6
  78. data/test/functional/backlogs_controller_test.rb +1 -1
  79. data/test/functional/groups_controller_test.rb +120 -0
  80. data/test/functional/periods_controller_test.rb +1 -1
  81. data/test/functional/tasks_controller_test.rb +16 -1
  82. data/test/functional/user_controller_test.rb +8 -2
  83. data/test/test_helper.rb +5 -0
  84. data/test/unit/big_decimal_yaml_fix_test.rb +14 -0
  85. data/test/unit/estimate_test.rb +1 -1
  86. data/test/unit/group_test.rb +10 -0
  87. data/test/unit/user_test.rb +56 -44
  88. data/tmp/sessions/ruby_sess.22dec3e9df47fb4e +0 -0
  89. data/tmp/sessions/ruby_sess.8037e0ab58cbcf1a +0 -0
  90. data/vendor/plugins/activerecord_foreign_key_extensions/lib/active_record_extensions.rb +35 -0
  91. data/vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak +1 -0
  92. data/vendor/rails/{actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml → railties/configs/empty.log} +0 -0
  93. metadata +36 -105
  94. data/backlog.gemspec +0 -21
  95. data/vendor/rails/actionwebservice/CHANGELOG +0 -265
  96. data/vendor/rails/actionwebservice/MIT-LICENSE +0 -21
  97. data/vendor/rails/actionwebservice/README +0 -364
  98. data/vendor/rails/actionwebservice/Rakefile +0 -171
  99. data/vendor/rails/actionwebservice/TODO +0 -32
  100. data/vendor/rails/actionwebservice/examples/googlesearch/README +0 -143
  101. data/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +0 -50
  102. data/vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +0 -57
  103. data/vendor/rails/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +0 -108
  104. data/vendor/rails/actionwebservice/examples/googlesearch/delegated/search_controller.rb +0 -7
  105. data/vendor/rails/actionwebservice/examples/googlesearch/direct/google_search_api.rb +0 -50
  106. data/vendor/rails/actionwebservice/examples/googlesearch/direct/search_controller.rb +0 -58
  107. data/vendor/rails/actionwebservice/examples/metaWeblog/README +0 -17
  108. data/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +0 -60
  109. data/vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +0 -34
  110. data/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +0 -67
  111. data/vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +0 -48
  112. data/vendor/rails/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +0 -16
  113. data/vendor/rails/actionwebservice/install.rb +0 -30
  114. data/vendor/rails/actionwebservice/lib/action_web_service.rb +0 -66
  115. data/vendor/rails/actionwebservice/lib/action_web_service/api.rb +0 -301
  116. data/vendor/rails/actionwebservice/lib/action_web_service/base.rb +0 -42
  117. data/vendor/rails/actionwebservice/lib/action_web_service/casting.rb +0 -138
  118. data/vendor/rails/actionwebservice/lib/action_web_service/client.rb +0 -3
  119. data/vendor/rails/actionwebservice/lib/action_web_service/client/base.rb +0 -28
  120. data/vendor/rails/actionwebservice/lib/action_web_service/client/soap_client.rb +0 -113
  121. data/vendor/rails/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +0 -58
  122. data/vendor/rails/actionwebservice/lib/action_web_service/container.rb +0 -3
  123. data/vendor/rails/actionwebservice/lib/action_web_service/container/action_controller_container.rb +0 -93
  124. data/vendor/rails/actionwebservice/lib/action_web_service/container/delegated_container.rb +0 -86
  125. data/vendor/rails/actionwebservice/lib/action_web_service/container/direct_container.rb +0 -69
  126. data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher.rb +0 -2
  127. data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +0 -207
  128. data/vendor/rails/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +0 -379
  129. data/vendor/rails/actionwebservice/lib/action_web_service/invocation.rb +0 -202
  130. data/vendor/rails/actionwebservice/lib/action_web_service/protocol.rb +0 -4
  131. data/vendor/rails/actionwebservice/lib/action_web_service/protocol/abstract.rb +0 -112
  132. data/vendor/rails/actionwebservice/lib/action_web_service/protocol/discovery.rb +0 -37
  133. data/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +0 -176
  134. data/vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +0 -235
  135. data/vendor/rails/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +0 -122
  136. data/vendor/rails/actionwebservice/lib/action_web_service/scaffolding.rb +0 -283
  137. data/vendor/rails/actionwebservice/lib/action_web_service/struct.rb +0 -68
  138. data/vendor/rails/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +0 -26
  139. data/vendor/rails/actionwebservice/lib/action_web_service/support/signature_types.rb +0 -226
  140. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/layout.erb +0 -65
  141. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.erb +0 -6
  142. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.rhtml +0 -0
  143. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.erb +0 -29
  144. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.rhtml +0 -0
  145. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.erb +0 -30
  146. data/vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.rhtml +0 -0
  147. data/vendor/rails/actionwebservice/lib/action_web_service/test_invoke.rb +0 -110
  148. data/vendor/rails/actionwebservice/lib/action_web_service/version.rb +0 -9
  149. data/vendor/rails/actionwebservice/setup.rb +0 -1379
  150. data/vendor/rails/actionwebservice/test/abstract_client.rb +0 -183
  151. data/vendor/rails/actionwebservice/test/abstract_dispatcher.rb +0 -551
  152. data/vendor/rails/actionwebservice/test/abstract_unit.rb +0 -45
  153. data/vendor/rails/actionwebservice/test/api_test.rb +0 -102
  154. data/vendor/rails/actionwebservice/test/apis/auto_load_api.rb +0 -3
  155. data/vendor/rails/actionwebservice/test/apis/broken_auto_load_api.rb +0 -2
  156. data/vendor/rails/actionwebservice/test/base_test.rb +0 -42
  157. data/vendor/rails/actionwebservice/test/casting_test.rb +0 -86
  158. data/vendor/rails/actionwebservice/test/client_soap_test.rb +0 -153
  159. data/vendor/rails/actionwebservice/test/client_xmlrpc_test.rb +0 -152
  160. data/vendor/rails/actionwebservice/test/container_test.rb +0 -73
  161. data/vendor/rails/actionwebservice/test/dispatcher_action_controller_soap_test.rb +0 -137
  162. data/vendor/rails/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +0 -59
  163. data/vendor/rails/actionwebservice/test/fixtures/db_definitions/mysql.sql +0 -8
  164. data/vendor/rails/actionwebservice/test/fixtures/users.yml +0 -12
  165. data/vendor/rails/actionwebservice/test/gencov +0 -3
  166. data/vendor/rails/actionwebservice/test/invocation_test.rb +0 -185
  167. data/vendor/rails/actionwebservice/test/run +0 -6
  168. data/vendor/rails/actionwebservice/test/scaffolded_controller_test.rb +0 -146
  169. data/vendor/rails/actionwebservice/test/struct_test.rb +0 -52
  170. data/vendor/rails/actionwebservice/test/test_invoke_test.rb +0 -112
@@ -121,6 +121,41 @@ module ActiveRecord
121
121
  def remove_foreign_key_constraint(table_name, constraint_name)
122
122
  execute "ALTER TABLE #{table_name} DROP FOREIGN KEY #{constraint_name}"
123
123
  end
124
+
125
+ alias :rename_column_without_foreign_keys :rename_column
126
+ def rename_column(table_name, old_column_name, new_column_name)
127
+ f_keys = tables.map {|t| foreign_keys(t)}.flatten
128
+ in_keys = f_keys.select {|f_key| f_key.references_table_name == table_name.to_s}
129
+ out_keys = f_keys.select {|f_key| f_key.table_name == table_name.to_s}
130
+ (in_keys + out_keys).each do |f_key|
131
+ remove_foreign_key(f_key.table_name, f_key.name)
132
+ end
133
+ rename_column_without_foreign_keys(table_name, old_column_name, new_column_name)
134
+ in_keys.each do |f_key|
135
+ add_foreign_key(f_key.table_name,
136
+ f_key.column_names,
137
+ f_key.references_table_name,
138
+ f_key.references_column_names.map {|col| col == old_column_name.to_s ? new_column_name.to_s : col},
139
+ {:on_update => f_key.on_update, :on_delete => f_key.on_delete})
140
+ end
141
+ out_keys.each do |f_key|
142
+ add_foreign_key(f_key.table_name,
143
+ f_key.column_names.map {|col| col == old_column_name.to_s ? new_column_name.to_s : col},
144
+ f_key.references_table_name,
145
+ f_key.references_column_names,
146
+ {:on_update => f_key.on_update, :on_delete => f_key.on_delete})
147
+ end
148
+ end
149
+
150
+ alias :remove_column_without_keys :remove_column
151
+ def remove_column(table_name, column_name)
152
+ indexes = indexes(table_name).select {|i| i.columns.include? column_name.to_s}
153
+ indexes.each do |i|
154
+ remove_index(i.table, :name => i.name)
155
+ end
156
+ remove_column_without_keys(table_name, column_name)
157
+ end
158
+
124
159
  end
125
160
  class Column
126
161
  private
@@ -0,0 +1 @@
1
+ Ignored when searching for implicitly multipart parts.
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: backlog
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.4
7
- date: 2007-07-06 00:00:00 +02:00
6
+ version: 0.0.5
7
+ date: 2007-07-29 00:00:00 +02:00
8
8
  summary: The author was too lazy to write a summary
9
9
  require_paths:
10
10
  - lib
@@ -39,10 +39,12 @@ files:
39
39
  - public/images/checkmark.png
40
40
  - public/images/add.png
41
41
  - public/images/arrow_up.png
42
+ - public/images/person.org.png
42
43
  - public/images/hammer.png
43
44
  - public/images/arrow_right.svg
44
45
  - public/images/arrow_down.png
45
46
  - public/images/eraser_org.png
47
+ - public/images/person.png
46
48
  - public/images/period.png
47
49
  - public/images/arrow_right.png
48
50
  - public/images/construction_hammer_jon__01.svg
@@ -112,19 +114,20 @@ files:
112
114
  - db/migrate
113
115
  - db/migrate/008_add_backlog_options.rb
114
116
  - db/migrate/014_add_customer_option.rb
115
- - db/migrate/001_tasks.rb
116
117
  - db/migrate/011_login_sugar.rb
117
118
  - db/migrate/010_add_work_start.rb
118
119
  - db/migrate/017_insert_datek_projects.rb
119
120
  - db/migrate/013_create_estimates.rb
120
121
  - db/migrate/009_add_subtasks.rb
121
122
  - db/migrate/012_add_resolution.rb
123
+ - db/migrate/001_create_tasks.rb
122
124
  - db/migrate/015_add_user_option.rb
123
125
  - db/migrate/003_add_estimation_points.rb
124
126
  - db/migrate/007_add_task_created_at.rb
125
127
  - db/migrate/004_add_period.rb
126
- - db/migrate/002_backlogs.rb
128
+ - db/migrate/002_create_backlogs.rb
127
129
  - db/migrate/016_add_invoicable_flag.rb
130
+ - db/migrate/018_create_groups.rb
128
131
  - db/migrate/005_add_field_work_started_at.rb
129
132
  - db/migrate/006_works_data_fix.rb
130
133
  - db/schema.rb
@@ -134,6 +137,7 @@ files:
134
137
  - test/functional
135
138
  - test/functional/backlogs_controller_test.rb
136
139
  - test/functional/estimates_controller_test.rb
140
+ - test/functional/groups_controller_test.rb
137
141
  - test/functional/works_controller_test.rb
138
142
  - test/functional/tasks_controller_test.rb
139
143
  - test/functional/periods_controller_test.rb
@@ -148,24 +152,33 @@ files:
148
152
  - test/fixtures/works.yml
149
153
  - test/fixtures/periods.yml
150
154
  - test/fixtures/users.yml
155
+ - test/fixtures/groups.yml
151
156
  - test/fixtures/backlogs.yml
157
+ - test/fixtures/parties.yml
152
158
  - test/fixtures/estimates.yml
153
159
  - test/fixtures/tasks.yml
154
160
  - test/unit
161
+ - test/unit/group_test.rb
155
162
  - test/unit/user_test.rb
156
163
  - test/unit/work_test.rb
157
164
  - test/unit/period_test.rb
158
165
  - test/unit/task_test.rb
159
166
  - test/unit/localization_test.rb
160
167
  - test/unit/estimate_test.rb
168
+ - test/unit/big_decimal_yaml_fix_test.rb
161
169
  - lib
170
+ - lib/class_table_inheritance.rb
162
171
  - lib/clock.rb
172
+ - lib/big_decimal_yaml_fix.rb
163
173
  - lib/tasks
164
174
  - lib/tasks/capistrano.rake
175
+ - lib/tasks/backup.rake
165
176
  - lib/user_system.rb
166
177
  - lib/array_helper.rb
167
178
  - lib/localization.rb
168
179
  - bin
180
+ - bin/backlog_init.d_kubosch_production
181
+ - bin/copy_production2development.rb
169
182
  - bin/backlog
170
183
  - bin/backlog_init.d
171
184
  - script
@@ -200,10 +213,12 @@ files:
200
213
  - config/mime_types.yaml
201
214
  - config/boot.rb
202
215
  - config/environments
216
+ - config/environments/kubosch_production_mysql.rb
203
217
  - config/environments/production.rb
204
218
  - config/environments/development.rb
205
219
  - config/environments/kubosch_production.rb
206
220
  - config/environments/user_environment.rb
221
+ - config/environments/development_mysql.rb
207
222
  - config/environments/test.rb
208
223
  - config/environments/localization_environment.rb
209
224
  - config/environments/datek_production.rb
@@ -211,6 +226,8 @@ files:
211
226
  - tmp/sockets
212
227
  - tmp/pids
213
228
  - tmp/sessions
229
+ - tmp/sessions/ruby_sess.8037e0ab58cbcf1a
230
+ - tmp/sessions/ruby_sess.22dec3e9df47fb4e
214
231
  - tmp/cache
215
232
  - LICENSE_LOCALIZATION
216
233
  - Manifest.txt
@@ -249,106 +266,6 @@ files:
249
266
  - vendor/plugins/assert_cookie/Rakefile
250
267
  - vendor/plugins/assert_cookie/README
251
268
  - vendor/rails
252
- - vendor/rails/actionwebservice
253
- - vendor/rails/actionwebservice/test
254
- - vendor/rails/actionwebservice/test/scaffolded_controller_test.rb
255
- - vendor/rails/actionwebservice/test/base_test.rb
256
- - vendor/rails/actionwebservice/test/container_test.rb
257
- - vendor/rails/actionwebservice/test/abstract_client.rb
258
- - vendor/rails/actionwebservice/test/apis
259
- - vendor/rails/actionwebservice/test/apis/auto_load_api.rb
260
- - vendor/rails/actionwebservice/test/apis/broken_auto_load_api.rb
261
- - vendor/rails/actionwebservice/test/api_test.rb
262
- - vendor/rails/actionwebservice/test/abstract_dispatcher.rb
263
- - vendor/rails/actionwebservice/test/invocation_test.rb
264
- - vendor/rails/actionwebservice/test/run
265
- - vendor/rails/actionwebservice/test/gencov
266
- - vendor/rails/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb
267
- - vendor/rails/actionwebservice/test/client_xmlrpc_test.rb
268
- - vendor/rails/actionwebservice/test/test_invoke_test.rb
269
- - vendor/rails/actionwebservice/test/struct_test.rb
270
- - vendor/rails/actionwebservice/test/casting_test.rb
271
- - vendor/rails/actionwebservice/test/dispatcher_action_controller_soap_test.rb
272
- - vendor/rails/actionwebservice/test/fixtures
273
- - vendor/rails/actionwebservice/test/fixtures/users.yml
274
- - vendor/rails/actionwebservice/test/fixtures/db_definitions
275
- - vendor/rails/actionwebservice/test/fixtures/db_definitions/mysql.sql
276
- - vendor/rails/actionwebservice/test/abstract_unit.rb
277
- - vendor/rails/actionwebservice/test/client_soap_test.rb
278
- - vendor/rails/actionwebservice/lib
279
- - vendor/rails/actionwebservice/lib/action_web_service.rb
280
- - vendor/rails/actionwebservice/lib/action_web_service
281
- - vendor/rails/actionwebservice/lib/action_web_service/version.rb
282
- - vendor/rails/actionwebservice/lib/action_web_service/test_invoke.rb
283
- - vendor/rails/actionwebservice/lib/action_web_service/support
284
- - vendor/rails/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb
285
- - vendor/rails/actionwebservice/lib/action_web_service/support/signature_types.rb
286
- - vendor/rails/actionwebservice/lib/action_web_service/struct.rb
287
- - vendor/rails/actionwebservice/lib/action_web_service/scaffolding.rb
288
- - vendor/rails/actionwebservice/lib/action_web_service/base.rb
289
- - vendor/rails/actionwebservice/lib/action_web_service/client
290
- - vendor/rails/actionwebservice/lib/action_web_service/client/base.rb
291
- - vendor/rails/actionwebservice/lib/action_web_service/client/soap_client.rb
292
- - vendor/rails/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb
293
- - vendor/rails/actionwebservice/lib/action_web_service/container.rb
294
- - vendor/rails/actionwebservice/lib/action_web_service/api.rb
295
- - vendor/rails/actionwebservice/lib/action_web_service/dispatcher
296
- - vendor/rails/actionwebservice/lib/action_web_service/dispatcher/abstract.rb
297
- - vendor/rails/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
298
- - vendor/rails/actionwebservice/lib/action_web_service/templates
299
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds
300
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/layout.erb
301
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.erb
302
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.erb
303
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.rhtml
304
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/layout.rhtml
305
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/result.erb
306
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.rhtml
307
- - vendor/rails/actionwebservice/lib/action_web_service/templates/scaffolds/methods.rhtml
308
- - vendor/rails/actionwebservice/lib/action_web_service/dispatcher.rb
309
- - vendor/rails/actionwebservice/lib/action_web_service/invocation.rb
310
- - vendor/rails/actionwebservice/lib/action_web_service/protocol
311
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/abstract.rb
312
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/discovery.rb
313
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb
314
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb
315
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol
316
- - vendor/rails/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb
317
- - vendor/rails/actionwebservice/lib/action_web_service/protocol.rb
318
- - vendor/rails/actionwebservice/lib/action_web_service/container
319
- - vendor/rails/actionwebservice/lib/action_web_service/container/delegated_container.rb
320
- - vendor/rails/actionwebservice/lib/action_web_service/container/direct_container.rb
321
- - vendor/rails/actionwebservice/lib/action_web_service/container/action_controller_container.rb
322
- - vendor/rails/actionwebservice/lib/action_web_service/casting.rb
323
- - vendor/rails/actionwebservice/lib/action_web_service/client.rb
324
- - vendor/rails/actionwebservice/CHANGELOG
325
- - vendor/rails/actionwebservice/MIT-LICENSE
326
- - vendor/rails/actionwebservice/Rakefile
327
- - vendor/rails/actionwebservice/setup.rb
328
- - vendor/rails/actionwebservice/examples
329
- - vendor/rails/actionwebservice/examples/googlesearch
330
- - vendor/rails/actionwebservice/examples/googlesearch/direct
331
- - vendor/rails/actionwebservice/examples/googlesearch/direct/search_controller.rb
332
- - vendor/rails/actionwebservice/examples/googlesearch/direct/google_search_api.rb
333
- - vendor/rails/actionwebservice/examples/googlesearch/autoloading
334
- - vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb
335
- - vendor/rails/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb
336
- - vendor/rails/actionwebservice/examples/googlesearch/delegated
337
- - vendor/rails/actionwebservice/examples/googlesearch/delegated/search_controller.rb
338
- - vendor/rails/actionwebservice/examples/googlesearch/delegated/google_search_service.rb
339
- - vendor/rails/actionwebservice/examples/googlesearch/README
340
- - vendor/rails/actionwebservice/examples/metaWeblog
341
- - vendor/rails/actionwebservice/examples/metaWeblog/apis
342
- - vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb
343
- - vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_api.rb
344
- - vendor/rails/actionwebservice/examples/metaWeblog/apis/blogger_service.rb
345
- - vendor/rails/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb
346
- - vendor/rails/actionwebservice/examples/metaWeblog/controllers
347
- - vendor/rails/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb
348
- - vendor/rails/actionwebservice/examples/metaWeblog/README
349
- - vendor/rails/actionwebservice/TODO
350
- - vendor/rails/actionwebservice/install.rb
351
- - vendor/rails/actionwebservice/README
352
269
  - vendor/rails/activerecord
353
270
  - vendor/rails/activerecord/test
354
271
  - vendor/rails/activerecord/test/migration_test_firebird.rb
@@ -722,6 +639,7 @@ files:
722
639
  - vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.rhtml
723
640
  - vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml
724
641
  - vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.ignored.erb
642
+ - vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.rhtml.bak
725
643
  - vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up.rhtml
726
644
  - vendor/rails/actionmailer/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.erb
727
645
  - vendor/rails/actionmailer/test/fixtures/test_mailer/signed_up_with_url.erb
@@ -1325,6 +1243,7 @@ files:
1325
1243
  - vendor/rails/railties/configs/databases/postgresql.yml
1326
1244
  - vendor/rails/railties/configs/routes.rb
1327
1245
  - vendor/rails/railties/configs/lighttpd.conf
1246
+ - vendor/rails/railties/configs/empty.log
1328
1247
  - vendor/rails/railties/configs/initializers
1329
1248
  - vendor/rails/railties/configs/initializers/inflections.rb
1330
1249
  - vendor/rails/railties/configs/initializers/mime_types.rb
@@ -1741,11 +1660,11 @@ files:
1741
1660
  - vendor/rails/actionpack/install.rb
1742
1661
  - vendor/rails/actionpack/README
1743
1662
  - Rakefile
1744
- - backlog.gemspec
1745
1663
  - README_LOCALIZATION
1746
1664
  - README_LOGIN_SUGAR
1747
1665
  - app
1748
1666
  - app/controllers
1667
+ - app/controllers/groups_controller.rb
1749
1668
  - app/controllers/tasks_controller.rb
1750
1669
  - app/controllers/estimates_controller.rb
1751
1670
  - app/controllers/backlogs_controller.rb
@@ -1758,14 +1677,17 @@ files:
1758
1677
  - app/helpers/estimates_helper.rb
1759
1678
  - app/helpers/application_helper.rb
1760
1679
  - app/helpers/tasks_helper.rb
1680
+ - app/helpers/groups_helper.rb
1761
1681
  - app/helpers/works_helper.rb
1762
1682
  - app/helpers/periods_helper.rb
1763
1683
  - app/helpers/user_helper.rb
1764
1684
  - app/models
1765
1685
  - app/models/work.rb
1686
+ - app/models/group.rb
1766
1687
  - app/models/user_notify.rb
1767
1688
  - app/models/estimate.rb
1768
1689
  - app/models/task.rb
1690
+ - app/models/party.rb
1769
1691
  - app/models/backlog.rb
1770
1692
  - app/models/period.rb
1771
1693
  - app/models/user.rb
@@ -1785,20 +1707,29 @@ files:
1785
1707
  - app/views/layouts/wide.rhtml
1786
1708
  - app/views/layouts/_headers.rhtml
1787
1709
  - app/views/backlogs
1710
+ - app/views/backlogs/_name_list.rhtml
1788
1711
  - app/views/backlogs/show.rhtml
1789
1712
  - app/views/backlogs/_form.rhtml
1790
1713
  - app/views/backlogs/new.rhtml
1791
1714
  - app/views/backlogs/edit.rhtml
1792
1715
  - app/views/estimates
1716
+ - app/views/groups
1717
+ - app/views/groups/list.rhtml
1718
+ - app/views/groups/_form.rhtml
1719
+ - app/views/groups/new.rhtml
1720
+ - app/views/groups/edit.rhtml
1793
1721
  - app/views/tasks
1722
+ - app/views/tasks/_backlog_header.rhtml
1794
1723
  - app/views/tasks/list.rhtml
1795
1724
  - app/views/tasks/_form.rhtml
1796
1725
  - app/views/tasks/new.rhtml
1797
1726
  - app/views/tasks/edit.rhtml
1798
1727
  - app/views/tasks/list_started.rhtml
1799
1728
  - app/views/tasks/_task.rhtml
1729
+ - app/views/tasks/_description_list.rhtml
1800
1730
  - app/views/works
1801
1731
  - app/views/works/list.rhtml
1732
+ - app/views/works/_buttons.rhtml
1802
1733
  - app/views/works/show.rhtml
1803
1734
  - app/views/works/_form.rhtml
1804
1735
  - app/views/works/new.rhtml
@@ -1,21 +0,0 @@
1
- Gem::Specification.new do |s|
2
- s.name = %q{backlog}
3
- # s.version = "0.0.2"
4
- s.date = %q{2007-06-14}
5
- s.summary = %q{Task list with options for multiple lists, iterations, users, subtasking, time tracking, and invoice report.}
6
- s.require_paths = ["."]
7
- s.homepage = %q{http://backlog.rubyforge.org/}
8
- s.description = %q{Task list with options for multiple lists, iterations, users, subtasking, time tracking, and invoice report.}
9
- # s.autorequire = %q{firewatir}
10
- s.has_rdoc = true
11
- s.authors = ["Uwe Kubosch"]
12
- s.files = Dir['**/*'].reject{|file_name| file_name =~ /^log|pkg/}
13
- # s.test_files = ["unittests/mozilla_all_tests.rb"]
14
- s.rdoc_options = ["--title", "Backlog API Reference", "--accessor", "def_wrap=R,def_wrap_guard=R,def_creator=R,def_creator_with_default=R", "--exclude", "vendor|test"]
15
- # s.requirements = ["Mozilla Firefox browser 1.5 or later."]
16
- s.add_dependency('rails', '>= 1.2.3')
17
- s.add_dependency('mongrel', '>= 1.0.1')
18
- s.bindir = 'bin'
19
- s.executables = ['backlog']
20
- s.rubyforge_project = 'backlog'
21
- end
@@ -1,265 +0,0 @@
1
- *SVN*
2
-
3
- * Documentation for ActionWebService::API::Base. Closes #7275. [zackchandler]
4
-
5
- * Allow action_web_service to handle various HTTP methods including GET. Closes #7011. [zackchandler]
6
-
7
- * Ensure that DispatcherError is being thrown when a malformed request is received. [Kent Sibilev]
8
-
9
- * Added support for decimal types. Closes #6676. [Kent Sibilev]
10
-
11
- * Removed deprecated end_form_tag helper. [Kent Sibilev]
12
-
13
- * Removed deprecated @request and @response usages. [Kent Sibilev]
14
-
15
- * Removed invocation of deprecated before_action and around_action filter methods. Corresponding before_invocation and after_invocation methods should be used instead. #6275 [Kent Sibilev]
16
-
17
- * Provide access to the underlying SOAP driver. #6212 [bmilekic, Kent Sibilev]
18
-
19
- * Deprecation: update docs. #5998 [jakob@mentalized.net, Kevin Clark]
20
-
21
- * ActionWebService WSDL generation ignores HTTP_X_FORWARDED_HOST [Paul Butcher <paul@paulbutcher.com>]
22
-
23
- * Tighten rescue clauses. #5985 [james@grayproductions.net]
24
-
25
- * Fixed XMLRPC multicall when one of the called methods returns a struct object. [Kent Sibilev]
26
-
27
- * Replace Reloadable with Reloadable::Deprecated. [Nicholas Seckar]
28
-
29
- * Fix invoke_layered since api_method didn't declare :expects. Closes #4720. [Kevin Ballard <kevin@sb.org>, Kent Sibilev]
30
-
31
- * Replace alias method chaining with Module#alias_method_chain. [Marcel Molina Jr.]
32
-
33
- * Replace Ruby's deprecated append_features in favor of included. [Marcel Molina Jr.]
34
-
35
- * Fix test database name typo. [Marcel Molina Jr.]
36
-
37
- *1.1.2* (April 9th, 2006)
38
-
39
- * Rely on Active Record 1.14.2
40
-
41
-
42
- *1.1.1* (April 6th, 2006)
43
-
44
- * Do not convert driver options to strings (#4499)
45
-
46
-
47
- *1.1.0* (March 27th, 2006)
48
-
49
- * Make ActiveWebService::Struct type reloadable
50
-
51
- * Fix scaffolding action when one of the members of a structural type has date or time type
52
-
53
- * Remove extra index hash when generating scaffold html for parameters of structural type #4374 [joe@mjg2.com]
54
-
55
- * Fix Scaffold Fails with Struct as a Parameter #4363 [joe@mjg2.com]
56
-
57
- * Fix soap type registration of multidimensional arrays (#4232)
58
-
59
- * Fix that marshaler couldn't handle ActiveRecord models defined in a different namespace (#2392).
60
-
61
- * Fix that marshaler couldn't handle structs with members of ActiveRecord type (#1889).
62
-
63
- * Fix that marshaler couldn't handle nil values for inner structs (#3576).
64
-
65
- * Fix that changes to ActiveWebService::API::Base required restarting of the server (#2390).
66
-
67
- * Fix scaffolding for signatures with :date, :time and :base64 types (#3321, #2769, #2078).
68
-
69
- * Fix for incorrect casting of TrueClass/FalseClass instances (#2633, #3421).
70
-
71
- * Fix for incompatibility problems with SOAP4R 1.5.5 (#2553) [Kent Sibilev]
72
-
73
-
74
- *1.0.0* (December 13th, 2005)
75
-
76
- * Become part of Rails 1.0
77
-
78
- *0.9.4* (December 7th, 2005)
79
-
80
- * Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel Molina Jr.]
81
-
82
- * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
83
-
84
- * Fix that XML-RPC date/time values did not have well-defined behaviour (#2516, #2534). This fix has one caveat, in that we can't support pre-1970 dates from XML-RPC clients.
85
-
86
- *0.9.3* (November 7th, 2005)
87
-
88
- * Upgraded to Action Pack 1.11.0 and Active Record 1.13.0
89
-
90
-
91
- *0.9.2* (October 26th, 2005)
92
-
93
- * Upgraded to Action Pack 1.10.2 and Active Record 1.12.2
94
-
95
-
96
- *0.9.1* (October 19th, 2005)
97
-
98
- * Upgraded to Action Pack 1.10.1 and Active Record 1.12.1
99
-
100
-
101
- *0.9.0* (October 16th, 2005)
102
-
103
- * Fix invalid XML request generation bug in test_invoke [Ken Barker]
104
-
105
- * Add XML-RPC 'system.multicall' support #1941 [jbonnar]
106
-
107
- * Fix duplicate XSD entries for custom types shared across delegated/layered services #1729 [Tyler Kovacs]
108
-
109
- * Allow multiple invocations in the same test method #1720 [dkhawk]
110
-
111
- * Added ActionWebService::API::Base.soap_client and ActionWebService::API::Base.xmlrpc_client helper methods to create the internal clients for an API, useful for testing from ./script/console
112
-
113
- * ActionWebService now always returns UTF-8 responses.
114
-
115
-
116
- *0.8.1* (11 July, 2005)
117
-
118
- * Fix scaffolding for Action Pack controller changes
119
-
120
-
121
- *0.8.0* (6 July, 2005)
122
-
123
- * Fix WSDL generation by aliasing #inherited instead of trying to overwrite it, or the WSDL action may end up not being defined in the controller
124
-
125
- * Add ActionController::Base.wsdl_namespace option, to allow overriding of the namespace used in generated WSDL and SOAP messages. This is equivalent to the [WebService(Namespace = "Value")] attribute in .NET.
126
-
127
- * Add workaround for Ruby 1.8.3's SOAP4R changing the return value of SOAP::Mapping::Registry#find_mapped_soap_class #1414 [Shugo Maeda]
128
-
129
- * Fix moduled controller URLs in WSDL, and add unit test to verify the generated URL #1428
130
-
131
- * Fix scaffolding template paths, it was broken on Win32
132
-
133
- * Fix that functional testing of :layered controllers failed when using the SOAP protocol
134
-
135
- * Allow invocation filters in :direct controllers as well, as they have access to more information regarding the web service request than ActionPack filters
136
-
137
- * Add support for a :base64 signature type #1272 [Shugo Maeda]
138
-
139
- * Fix that boolean fields were not rendered correctly in scaffolding
140
-
141
- * Fix that scaffolding was not working for :delegated dispatching
142
-
143
- * Add support for structured types as input parameters to scaffolding, this should let one test the blogging APIs using scaffolding as well
144
-
145
- * Fix that generated WSDL was not using relative_url_root for base URI #1210 [Shugo Maeda]
146
-
147
- * Use UTF-8 encoding by default for SOAP responses, but if an encoding is supplied by caller, use that for the response #1211 [Shugo Maeda, NAKAMURA Hiroshi]
148
-
149
- * If the WSDL was retrieved over HTTPS, use HTTPS URLs in the WSDL too
150
-
151
- * Fix that casting change in 0.7.0 would convert nil values to the default value for the type instead of leaving it as nil
152
-
153
-
154
- *0.7.1* (20th April, 2005)
155
-
156
- * Depend on Active Record 1.10.1 and Action Pack 1.8.1
157
-
158
-
159
- *0.7.0* (19th April, 2005)
160
-
161
- * When casting structured types, don't try to send obj.name= unless obj responds to it, causes casting to be less likely to fail for XML-RPC
162
-
163
- * Add scaffolding via ActionController::Base.web_service_scaffold for quick testing using a web browser
164
-
165
- * ActionWebService::API::Base#api_methods now returns a hash containing ActionWebService::API::Method objects instead of hashes. However, ActionWebService::API::Method defines a #[]() backwards compatibility method so any existing code utilizing this will still work.
166
-
167
- * The :layered dispatching mode can now be used with SOAP as well, allowing you to support SOAP and XML-RPC clients for APIs like the metaWeblog API
168
-
169
- * Remove ActiveRecordSoapMarshallable workaround, see #912 for details
170
-
171
- * Generalize casting code to be used by both SOAP and XML-RPC (previously, it was only XML-RPC)
172
-
173
- * Ensure return value is properly cast as well, fixes XML-RPC interoperability with Ecto and possibly other clients
174
-
175
- * Include backtraces in 500 error responses for failed request parsing, and remove "rescue nil" statements obscuring real errors for XML-RPC
176
-
177
- * Perform casting of struct members even if the structure is already of the correct type, so that the type we specify for the struct member is always the type of the value seen by the API implementation
178
-
179
-
180
- *0.6.2* (27th March, 2005)
181
-
182
- * Allow method declarations for direct dispatching to declare parameters as well. We treat an arity of < 0 or > 0 as an indication that we should send through parameters. Closes #939.
183
-
184
-
185
- *0.6.1* (22th March, 2005)
186
-
187
- * Fix that method response QNames mismatched with that declared in the WSDL, makes SOAP::WSDLDriverFactory work against AWS again
188
-
189
- * Fix that @request.env was being modified, instead, dup the value gotten from env
190
-
191
- * Fix XML-RPC example to use :layered mode, so it works again
192
-
193
- * Support casting '0' or 0 into false, and '1' or 1 into true, when expecting a boolean value
194
-
195
- * Fix that SOAP fault response fault code values were not QName's #804
196
-
197
-
198
- *0.6.0* (7th March, 2005)
199
-
200
- * Add action_controller/test_invoke, used for integrating AWS with the Rails testing infrastructure
201
-
202
- * Allow passing through options to the SOAP RPC driver for the SOAP client
203
-
204
- * Make the SOAP WS marshaler use #columns to decide which fields to marshal as well, avoids providing attributes brought in by associations
205
-
206
- * Add <tt>ActionWebService::API::Base.allow_active_record_expects</tt> option, with a default of false. Setting this to true will allow specifying ActiveRecord::Base model classes in <tt>:expects</tt>. API writers should take care to validate the received ActiveRecord model objects when turning it on, and/or have an authentication mechanism in place to reduce the security risk.
207
-
208
- * Improve error message reporting. Bugs in either AWS or the web service itself will send back a protocol-specific error report message if possible, otherwise, provide as much detail as possible.
209
-
210
- * Removed type checking of received parameters, and perform casting for XML-RPC if possible, but fallback to the received parameters if casting fails, closes #677
211
-
212
- * Refactored SOAP and XML-RPC marshaling and encoding into a small library devoted exclusively to protocol specifics, also cleaned up the SOAP marshaling approach, so that array and custom type marshaling should be a bit faster.
213
-
214
- * Add namespaced XML-RPC method name support, closes #678
215
-
216
- * Replace '::' with '..' in fully qualified type names for marshaling and WSDL. This improves interoperability with .NET, and closes #676.
217
-
218
-
219
- *0.5.0* (24th February, 2005)
220
-
221
- * lib/action_service/dispatcher*: replace "router" fragments with
222
- one file for Action Controllers, moves dispatching work out of
223
- the container
224
- * lib/*,test/*,examples/*: rename project to
225
- ActionWebService. prefix all generic "service" type names with web_.
226
- update all using code as well as the RDoc.
227
- * lib/action_service/router/wsdl.rb: ensure that #wsdl is
228
- defined in the final container class, or the new ActionPack
229
- filtering will exclude it
230
- * lib/action_service/struct.rb,test/struct_test.rb: create a
231
- default #initialize on inherit that accepts a Hash containing
232
- the default member values
233
- * lib/action_service/api/action_controller.rb: add support and
234
- tests for #client_api in controller
235
- * test/router_wsdl_test.rb: add tests to ensure declared
236
- service names don't contain ':', as ':' causes interoperability
237
- issues
238
- * lib/*, test/*: rename "interface" concept to "api", and change all
239
- related uses to reflect this change. update all uses of Inflector
240
- to call the method on String instead.
241
- * test/api_test.rb: add test to ensure API definition not
242
- instantiatable
243
- * lib/action_service/invocation.rb: change @invocation_params to
244
- @method_params
245
- * lib/*: update RDoc
246
- * lib/action_service/struct.rb: update to support base types
247
- * lib/action_service/support/signature.rb: support the notion of
248
- "base types" in signatures, with well-known unambiguous names such as :int,
249
- :bool, etc, which map to the correct Ruby class. accept the same names
250
- used by ActiveRecord as well as longer versions of each, as aliases.
251
- * examples/*: update for seperate API definition updates
252
- * lib/action_service/*, test/*: extensive refactoring: define API methods in
253
- a seperate class, and specify it wherever used with 'service_api'.
254
- this makes writing a client API for accessing defined API methods
255
- with ActionWebService really easy.
256
- * lib/action_service/container.rb: fix a bug in default call
257
- handling for direct dispatching, and add ActionController filter
258
- support for direct dispatching.
259
- * test/router_action_controller_test.rb: add tests to ensure
260
- ActionController filters are actually called.
261
- * test/protocol_soap_test.rb: add more tests for direct dispatching.
262
-
263
- 0.3.0
264
-
265
- * First public release