Re: HTML Export
Tor Norbye <[email protected]>
| Newsgroups | gmane.comp.java.netbeans.modules.tasklist.devel |
|---|---|
| Message-ID | <[email protected]> |
Tim Lebedkov wrote:
>
> 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.
Actually, I understood it but made a silly mistake.
In my working copy I have changed the code to be
boolean subtable = (n.getParentNode() != null) &&
(n.getParentNode().getParentNode() != null);
Actually, I now see that you have a level parameter. That's
even better.
> 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.
Cool, thanks!
>
> 3. QUESTION:
> If I write an expression like this:
> String a = "++++++++++++" +
> "---------------" +
> "uuuuuuuuuuuuuuuuuu";
> Shall I use // NOI18N in each line or just once?
Each line - the checker script is not very smart.
-- Tor