Modify ↓
Opened 10 years ago
Closed 10 years ago
#11910 closed defect (fixed)
missing NULL value / white space check
Reported by: | Genie | Owned by: | Jun Omae |
---|---|---|---|
Priority: | normal | Component: | WikiGanttChartPlugin |
Severity: | major | Keywords: | |
Cc: | Trac Release: |
Description
When you input a task as macro syntax, the summary value of task is not checked whether it is NULL.
If you input as below
{{{#!Gantt id="3124d31e34b1" style="red" , , 2014-08-01, 2014-08-31, 70% }}}
No error occurred.
This is simple patch for it. Thank you so much...
-
wikiganttchart/web_ui.py
376 376 ntask['ratio'] = int(task['ratio']) 377 377 378 378 data = {} 379 if 'name' in task:379 if task.get('name'): 380 380 data['subjectName'] = task['name'] 381 381 else: 382 382 raise WikiGanttChartError(_("Task name is missing in line "
Attachments (1)
Change History (7)
Changed 10 years ago by
Attachment: | No_NULL_Chk_And_Wrong_Tooltip.png added |
---|
comment:1 Changed 10 years ago by
comment:4 Changed 10 years ago by
Status: | new → assigned |
---|
Thanks for your reporting! Would you please try the latest?
comment:5 Changed 10 years ago by
That's perfect, and the font siez is go~~od.
It seems to stable now! Thank you so much.
Pray for Sewol.
comment:6 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Thanks for the feedback! Closing this ticket.
Note: See
TracTickets for help on using
tickets.
And tooltip is wrong displayed.