[kepler-dev] [Bug 5446] View=>XML View broken

bugzilla-daemon at ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Tue Aug 2 16:25:53 PDT 2011


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5446

Christopher Brooks <cxh at eecs.berkeley.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |cxh at eecs.berkeley.edu
         Resolution|                            |FIXED

--- Comment #1 from Christopher Brooks <cxh at eecs.berkeley.edu> 2011-08-02 16:25:53 PDT ---
To replicate this.
1) Start kepler with "ant run"
2) Do View -> XML View


I fixed this.

Line 281 of ptolemy.actor.gui.TextEditorTableau was:
textEffigy.identifier.setExpression(url.toExternalForm());  

I introduced this line with this change:

 r61023 | cxh | 2011-05-23 20:24:39 -0700 (Mon, 23 May 2011) | 4 lines

 Set the identifier so that if we start vergil and
 do File -> New -> Text Editor, type some text, Save
 then the title changes from Unnames to the name of the file.


I changed this to
if (url != null) {
    textEffigy.identifier.setExpression(url.toExternalForm());
}

The bug no longer occurs for me within Kepler with the Ptolemy head.

-- 
Configure bugmail: http://bugzilla.ecoinformatics.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the Kepler-dev mailing list