Blob of test/fixtures/tickets.yml (raw blob data)

1 #
2 # status: [:proposed, :open, :closed, :deleted]
3 # impact: [:low, :high]
4 # priority: [:none, :low, :medium, :high]
5 # audience: [:public, :members]
6
7 <% fixtures :users, :milestones, :projects %>
8
9 #
10 # Fixup edit article and wiki preview button
11 #
12 # Change articles bodies and project descriptions to use markdown
13 #
14 # Update wiki and article should have the .save error checked
15 #
16 # Add message box prompt on delete wiki and article
17 #
18 # Add delete wiki to actions box
19 #
20 # Change edit and del links to images on lists (like article and wiki)
21 #
22 # Can't edit a deleted wiki / article etc.
23 #
24 # Show warning when adding critical tickets to future (not current) milestones
25 #
26 # Add h method to filter data being written to client
27 #
28 # Allow log links to drill in to detailed info on event or change
29 #
30 # Add a code review system - http://review-board.org/
31 #
32 #
33
34 #
35 # Possible filtering
36 #
37 # * Summary
38 # * Roadmap [filter milestone, urgency, user]
39 # Milestones
40 # Tickets [filter branch, priority, user]
41 # * Repositories [filter branch]
42 # Branch/Master (filter commits by user, source tree by mimetype)
43 #
44 # * Articles [filter branch]
45 # * Forum [filter branch]
46 # * Wiki
47 # * Timeline [filter branch, event_type, user]
48 #
49 # Dashboard
50 # Summary [project shortcuts, overdue tickets, recent commits]
51 # Tickets [filter project, branch, date, priority]
52 # Commits [filter project, branch, date]
53 # Articles / Tweets [filter project, branch, date, type, category]
54 # Wikis [filter project]
55 # Forum [filter project]
56 # Timeline [filter project, branch, event_type]
57 #
58
59
60
61 DEFAULTS: &DEFAULTS
62 open_date: "2008-02-16 21:56:00"
63 assignee_id: <%= users(:mtkd) %>
64 submitter_id: <%= users(:mtkd) %>
65 audience: :public
66 submitter_id: <%= users(:mtkd) %>
67 project_id: <%= projects(:gitlab) %>
68
69 39:
70 id: 39
71 summary: "Critcal ticket test"
72 <<: *DEFAULTS
73 milestone_id: <%= milestones(:gitlabdevelopment) %>
74 ttype: :task #:defect, :enhancement, :task
75 status: :proposed #:proposed, :open, :closed, :deleted
76 impact: :low #:low, :high, :security
77 priority: :critical #:none, :low, :high, :critical
78 slug: <%= Ticket.generate_key("", 6) %>
79 submitter_id: <%= users(:anonymous) %>
80
81 38:
82 id: 38
83 summary: "Do testing specs"
84 <<: *DEFAULTS
85 milestone_id: <%= milestones(:gitlabpublic) %>
86 ttype: :task #:defect, :enhancement, :task
87 status: :proposed #:proposed, :open, :closed, :deleted
88 impact: :low #:low, :high, :security
89 priority: :high #:none, :low, :high, :critical
90 slug: <%= Ticket.generate_key("", 6) %>
91
92 37:
93 id: 37
94 summary: "Rename and move gitorious config to a table"
95 <<: *DEFAULTS
96 milestone_id: <%= milestones(:gitlabdevelopment) %>
97 ttype: :task #:defect, :enhancement, :task
98 status: :proposed #:proposed, :open, :closed, :deleted
99 impact: :low #:low, :high, :security
100 priority: :low #:none, :low, :high, :critical
101 slug: <%= Ticket.generate_key("", 6) %>
102
103 36:
104 id: 36
105 summary: "Move journals and settings to plugins"
106 <<: *DEFAULTS
107 milestone_id: <%= milestones(:gitlabpublic) %>
108 ttype: :task #:defect, :enhancement, :task
109 status: :proposed #:proposed, :open, :closed, :deleted
110 impact: :low #:low, :high, :security
111 priority: :low #:none, :low, :high, :critical
112 slug: <%= Ticket.generate_key("", 6) %>
113
114 35:
115 id: 35
116 summary: "Look at using http://dostorm.com/ system for repo trees (it uses unordered lists and sets the left border)"
117 <<: *DEFAULTS
118 milestone_id: <%= milestones(:gitlabpublic) %>
119 ttype: :enhancement #:defect, :enhancement, :task
120 status: :proposed #:proposed, :open, :closed, :deleted
121 impact: :low #:low, :high, :security
122 priority: :low #:none, :low, :high, :critical
123 slug: <%= Ticket.generate_key("", 6) %>
124
125 34:
126 id: 34
127 summary: "Remove all != nil"
128 <<: *DEFAULTS
129 milestone_id: <%= milestones(:gitlabdevelopment) %>
130 ttype: :task #:defect, :enhancement, :task
131 status: :proposed #:proposed, :open, :closed, :deleted
132 impact: :high #:low, :high, :security
133 priority: :low #:none, :low, :high, :critical
134 slug: <%= Ticket.generate_key("", 6) %>
135
136 33:
137 id: 33
138 summary: "Add comments to tickets, articles, users, projects"
139 <<: *DEFAULTS
140 milestone_id: <%= milestones(:gitlabdevelopment) %>
141 ttype: :enhancement #:defect, :enhancement, :task
142 status: :proposed #:proposed, :open, :closed, :deleted
143 impact: :high #:low, :high, :security
144 priority: :high #:none, :low, :high, :critical
145 slug: <%= Ticket.generate_key("", 6) %>
146
147 32:
148 id: 32
149 summary: "Add some system to tickets to allow files to be attached"
150 <<: *DEFAULTS
151 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
152 ttype: :enhancement #:defect, :enhancement, :task
153 status: :proposed #:proposed, :open, :closed, :deleted
154 impact: :security #:low, :high, :security
155 priority: :low #:none, :low, :high, :critical
156 slug: <%= Ticket.generate_key("", 6) %>
157
158 31:
159 id: 31
160 summary: "Add glow round screenshot image style"
161 <<: *DEFAULTS
162 milestone_id: <%= milestones(:gitlabpublic) %>
163 ttype: :enhancement #:defect, :enhancement, :task
164 status: :proposed #:proposed, :open, :closed, :deleted
165 impact: :low #:low, :high, :security
166 priority: :low #:none, :low, :high, :critical
167 slug: <%= Ticket.generate_key("", 6) %>
168
169 30:
170 id: 30
171 summary: "On home page make the permalinks include the project summary"
172 <<: *DEFAULTS
173 milestone_id: <%= milestones(:gitlabdevelopment) %>
174 ttype: :defect #:defect, :enhancement, :task
175 status: :proposed #:proposed, :open, :closed, :deleted
176 impact: :low #:low, :high, :security
177 priority: :low #:none, :low, :high, :critical
178 slug: <%= Ticket.generate_key("", 6) %>
179
180 29:
181 id: 29
182 summary: "Archive index: Make the right column user and categories list collapsable"
183 <<: *DEFAULTS
184 milestone_id: <%= milestones(:gitlabpublic) %>
185 ttype: :enhancement #:defect, :enhancement, :task
186 status: :proposed #:proposed, :open, :closed, :deleted
187 impact: :low #:low, :high, :security
188 priority: :low #:none, :low, :high, :critical
189 slug: <%= Ticket.generate_key("", 6) %>
190
191 28:
192 id: 28
193 summary: "Archive index: Make the current filter clearer (summary or something), maybe use the project navigator style bar with lots of drop downs on"
194 <<: *DEFAULTS
195 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
196 ttype: :enhancement #:defect, :enhancement, :task
197 status: :proposed #:proposed, :open, :closed, :deleted
198 impact: :low #:low, :high, :security
199 priority: :low #:none, :low, :high, :critical
200 slug: <%= Ticket.generate_key("", 6) %>
201
202 27:
203 id: 27
204 summary: "Sort the repo source browser directory listing by directory asc then file asc"
205 <<: *DEFAULTS
206 milestone_id: <%= milestones(:gitlabpublic) %>
207 ttype: :enhancement #:defect, :enhancement, :task
208 status: :proposed #:proposed, :open, :closed, :deleted
209 impact: :low #:low, :high, :security
210 priority: :high #:none, :low, :high, :critical
211 slug: <%= Ticket.generate_key("", 6) %>
212
213 26:
214 id: 26
215 summary: "Don't allow massive commits to be viewed as HTML (8510e1b) as default"
216 <<: *DEFAULTS
217 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
218 ttype: :enhancement #:defect, :enhancement, :task
219 status: :proposed #:proposed, :open, :closed, :deleted
220 impact: :low #:low, :high, :security
221 priority: :high #:none, :low, :high, :critical
222 slug: <%= Ticket.generate_key("", 6) %>
223
224 25:
225 id: 25
226 summary: "Click on a file in tree to see change history"
227 <<: *DEFAULTS
228 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
229 ttype: :enhancement #:defect, :enhancement, :task
230 status: :proposed #:proposed, :open, :closed, :deleted
231 impact: :low #:low, :high, :security
232 priority: :high #:none, :low, :high, :critical
233 slug: <%= Ticket.generate_key("", 6) %>
234
235 24:
236 id: 24
237 summary: "Use &lt;thead&gt; on tables"
238 <<: *DEFAULTS
239 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
240 ttype: :enhancement #:defect, :enhancement, :task
241 status: :proposed #:proposed, :open, :closed, :deleted
242 impact: :low #:low, :high, :security
243 priority: :low #:none, :low, :high, :critical
244 slug: <%= Ticket.generate_key("", 6) %>
245
246 23:
247 id: 23
248 summary: "Look at adding Grit from Gitorious repo as a submodule using git-submodule"
249 <<: *DEFAULTS
250 milestone_id: <%= milestones(:gitlabpublic) %>
251 ttype: :task #:defect, :enhancement, :task
252 status: :proposed #:proposed, :open, :closed, :deleted
253 impact: :low #:low, :high, :security
254 priority: :low #:none, :low, :high, :critical
255 slug: <%= Ticket.generate_key("", 6) %>
256
257 22:
258 id: 22
259 summary: "Change all helpers to use same string system used on application_helper"
260 <<: *DEFAULTS
261 milestone_id: <%= milestones(:gitlabdevelopment) %>
262 ttype: :task #:defect, :enhancement, :task
263 status: :proposed #:proposed, :open, :closed, :deleted
264 impact: :low #:low, :high, :security
265 priority: :high #:none, :low, :high, :critical
266 slug: <%= Ticket.generate_key("", 6) %>
267
268 21:
269 id: 21
270 summary: "Look at using content_tag for doing divs"
271 <<: *DEFAULTS
272 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
273 ttype: :enhancement #:defect, :enhancement, :task
274 status: :proposed #:proposed, :open, :closed, :deleted
275 impact: :low #:low, :high, :security
276 priority: :low #:none, :low, :high, :critical
277 slug: <%= Ticket.generate_key("", 6) %>
278
279 20:
280 id: 20
281 summary: "Add RSS feeds per project"
282 <<: *DEFAULTS
283 milestone_id: <%= milestones(:gitlabpublic) %>
284 ttype: :enhancement #:defect, :enhancement, :task
285 status: :proposed #:proposed, :open, :closed, :deleted
286 impact: :low #:low, :high, :security
287 priority: :low #:none, :low, :high, :critical
288 slug: <%= Ticket.generate_key("", 6) %>
289
290 19:
291 id: 19
292 summary: "Add pagination to the article list tabs on Project and Profile"
293 <<: *DEFAULTS
294 milestone_id: <%= milestones(:gitlabpublic) %>
295 ttype: :defect #:defect, :enhancement, :task
296 status: :proposed #:proposed, :open, :closed, :deleted
297 impact: :low #:low, :high, :security
298 priority: :high #:none, :low, :high, :critical
299 slug: <%= Ticket.generate_key("", 6) %>
300
301 18:
302 id: 18
303 summary: "Add a checkbox on Roadmap to show completed milestones - http://dev.rubyonrails.org/roadmap?show=all"
304 <<: *DEFAULTS
305 milestone_id: <%= milestones(:gitlabpublic) %>
306 ttype: :enhancement #:defect, :enhancement, :task
307 status: :proposed #:proposed, :open, :closed, :deleted
308 impact: :low #:low, :high, :security
309 priority: :low #:none, :low, :high, :critical
310 slug: <%= Ticket.generate_key("", 6) %>
311
312 17:
313 id: 17
314 summary: "When doing polymorphic tables - see this http://errtheblog.com/posts/15-hasmany-as"
315 <<: *DEFAULTS
316 milestone_id: <%= milestones(:gitlabpublic) %>
317 ttype: :enhancement #:defect, :enhancement, :task
318 status: :proposed #:proposed, :open, :closed, :deleted
319 impact: :low #:low, :high, :security
320 priority: :low #:none, :low, :high, :critical
321 slug: <%= Ticket.generate_key("", 6) %>
322
323 16:
324 id: 16
325 summary: "Ajax preview of typed text - http://errtheblog.com/posts/23-submittopopup, and add twitter count on messages"
326 <<: *DEFAULTS
327 milestone_id: <%= milestones(:gitlabpublic) %>
328 ttype: :enhancement #:defect, :enhancement, :task
329 status: :proposed #:proposed, :open, :closed, :deleted
330 impact: :low #:low, :high, :security
331 priority: :low #:none, :low, :high, :critical
332 slug: <%= Ticket.generate_key("", 6) %>
333
334 15:
335 id: 15
336 summary: "Add :limit => 50 to strings in migrations"
337 <<: *DEFAULTS
338 milestone_id: <%= milestones(:gitlabpublic) %>
339 ttype: :defect #:defect, :enhancement, :task
340 status: :proposed #:proposed, :open, :closed, :deleted
341 impact: :security #:low, :high, :security
342 priority: :critical #:none, :low, :high, :critical
343 slug: <%= Ticket.generate_key("", 6) %>
344
345 14:
346 id: 14
347 summary: ":unique => true in migrations"
348 <<: *DEFAULTS
349 milestone_id: <%= milestones(:gitlabpublic) %>
350 ttype: :enhancement #:defect, :enhancement, :task
351 status: :proposed #:proposed, :open, :closed, :deleted
352 impact: :high #:low, :high, :security
353 priority: :low #:none, :low, :high, :critical
354 slug: <%= Ticket.generate_key("", 6) %>
355
356 13:
357 id: 13
358 summary: "In the wiki formatting add some way to backlink http://trac.edgewall.org/wiki/TracCrossReferences"
359 <<: *DEFAULTS
360 milestone_id: <%= milestones(:gitlabpublic) %>
361 ttype: :enhancement #:defect, :enhancement, :task
362 status: :proposed #:proposed, :open, :closed, :deleted
363 impact: :low #:low, :high, :security
364 priority: :low #:none, :low, :high, :critical
365 slug: <%= Ticket.generate_key("", 6) %>
366
367 12:
368 id: 12
369 summary: "Add HTML description meta tag to headers"
370 <<: *DEFAULTS
371 milestone_id: <%= milestones(:gitlabpublic) %>
372 ttype: :enhancement #:defect, :enhancement, :task
373 status: :proposed #:proposed, :open, :closed, :deleted
374 impact: :low #:low, :high, :security
375 priority: :low #:none, :low, :high, :critical
376 slug: <%= Ticket.generate_key("", 6) %>
377
378 11:
379 id: 11
380 summary: "Change find_by in model to be dynamic: find_by_dynamic (enum) case enum when enum extratest = '' end find_by_sql select + extratest, see Author.find :all, :conditions => blah, :preload => [:posts, :comments]"
381 <<: *DEFAULTS
382 milestone_id: <%= milestones(:gitlabpublic) %>
383 ttype: :enhancement #:defect, :enhancement, :task
384 status: :proposed #:proposed, :open, :closed, :deleted
385 impact: :high #:low, :high, :security
386 priority: :low #:none, :low, :high, :critical
387 slug: <%= Ticket.generate_key("", 6) %>
388
389 10:
390 id: 10
391 summary: "Change controllers/helpers/models to use proper protected/private etc. - will this improve performance?"
392 <<: *DEFAULTS
393 milestone_id: <%= milestones(:gitlabpublic) %>
394 ttype: :enhancement #:defect, :enhancement, :task
395 status: :proposed #:proposed, :open, :closed, :deleted
396 impact: :low #:low, :high, :security
397 priority: :low #:none, :low, :high, :critical
398 slug: <%= Ticket.generate_key("", 6) %>
399
400 9:
401 id: 9
402 summary: "Check common pages (using the development.log) for views that are not joining enough tables in initial query and are revisiting SQL server every row of a table"
403 <<: *DEFAULTS
404 milestone_id: <%= milestones(:gitlabpublic) %>
405 ttype: :task #:defect, :enhancement, :task
406 status: :proposed #:proposed, :open, :closed, :deleted
407 impact: :high #:low, :high, :security
408 priority: :high #:none, :low, :high, :critical
409 slug: <%= Ticket.generate_key("", 6) %>
410
411 8:
412 id: 8
413 summary: "Change article.permalink to article.slug in model to match other models"
414 <<: *DEFAULTS
415 milestone_id: <%= milestones(:gitlabdevelopment) %>
416 ttype: :task #:defect, :enhancement, :task
417 status: :proposed #:proposed, :open, :closed, :deleted
418 impact: :low #:low, :high, :security
419 priority: :low #:none, :low, :high, :critical
420 slug: <%= Ticket.generate_key("", 6) %>
421
422 7:
423 id: 7
424 summary: "Tabmenu shouldn't highlight when mouse over the active tab (not sure it should be a link either)"
425 <<: *DEFAULTS
426 milestone_id: <%= milestones(:gitlabdevelopment) %>
427 ttype: :defect #:defect, :enhancement, :task
428 status: :proposed #:proposed, :open, :closed, :deleted
429 impact: :low #:low, :high, :security
430 priority: :low #:none, :low, :high, :critical
431 slug: <%= Ticket.generate_key("", 6) %>
432
433 6:
434 id: 6
435 summary: "Allow anonymous users to report bugs on project summary page"
436 <<: *DEFAULTS
437 milestone_id: <%= milestones(:gitlabpublic) %>
438 ttype: :enhancement #:defect, :enhancement, :task
439 status: :proposed #:proposed, :open, :closed, :deleted
440 impact: :low #:low, :high, :security
441 priority: :high #:none, :low, :high, :critical
442 slug: <%= Ticket.generate_key("", 6) %>
443
444 5:
445 id: 5
446 summary: "Add Google Sitemaps and Analytics"
447 <<: *DEFAULTS
448 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
449 ttype: :enhancement #:defect, :enhancement, :task
450 status: :proposed #:proposed, :open, :closed, :deleted
451 impact: :low #:low, :high, :security
452 priority: :high #:none, :low, :high, :critical
453 slug: <%= Ticket.generate_key("", 6) %>
454
455 4:
456 id: 4
457 summary: "Add a file system manager, and allow users to upload files to profile (unconnected with projects)"
458 <<: *DEFAULTS
459 milestone_id: <%= milestones(:gitlabpublic) %>
460 ttype: :enhancement #:defect, :enhancement, :task
461 status: :proposed #:proposed, :open, :closed, :deleted
462 impact: :low #:low, :high, :security
463 priority: :low #:none, :low, :high, :critical
464 slug: <%= Ticket.generate_key("", 6) %>
465
466 3:
467 id: 3
468 summary: "Check error redirectors on all controllers"
469 <<: *DEFAULTS
470 milestone_id: <%= milestones(:gitlabpublic) %>
471 ttype: :task #:defect, :enhancement, :task
472 status: :proposed #:proposed, :open, :closed, :deleted
473 impact: :security #:low, :high, :security
474 priority: :high #:none, :low, :high, :critical
475 slug: <%= Ticket.generate_key("", 6) %>
476
477 2:
478 id: 2
479 summary: "Add validates_presence_of :category_id into controllers (for new/edit)"
480 <<: *DEFAULTS
481 milestone_id: <%= milestones(:gitlabdevelopmentplusone) %>
482 ttype: :enhancement #:defect, :enhancement, :task
483 status: :proposed #:proposed, :open, :closed,