HTML Export
"Tim Lebedkov" <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.tasklist.devel |
|---|---|
| Message-ID | <001301c26664$d1132210$2048478d@homeshopohqkhs> |
Hello,
1. I've just commited some small changes to TaskListView.java and HTMLSupport.java.
Tor, I changed it as it was earlier before you introduced "subtable"-variable.
I think, you missunderstood me.
I don't create a HTML table for all subtasks of a task.
Each task's description field contains a table with 2 cells: first cell is empty and is used to create indentation for nested tasks, second cell is used for description.
----------------------------------------------------
| Description |
----------------------------------------------------
| ------------------------------------------------ |
| | | Description of a task | |
| ------------------------------------------------ |
| ------------------------------------------------ |
| | | Subtask's description here | |
| ------------------------------------------------ |
|---------------------------------------------------
2. I found that internal Swing HTML viewer does not understand color constants that are written like
this: #fff, but it understands #ffffff. I changed it in TaskListView and will change it elsewhere later.
3. QUESTION:
If I write an expression like this:
String a = "++++++++++++" +
"---------------" +
"uuuuuuuuuuuuuuuuuu";
Shall I use // NOI18N in each line or just once?
tim