Changeset 5263


Ignore:
Timestamp:
10/13/09 08:42:27 (3 years ago)
Author:
KennethLavrsen
Message:

Item2160: JHotDrawPlugin incompatible with 1.0.7 CSRF protection of attachments
Fixed the discussed user dialog. The Saving that looks like it is hanging it now
overwritten later by Saved.. which does not send the message of hanging.
The Exit dialog is made simpler so people get a useful dialog when you want to exit
without saving
Debug message removed.
Releasing this version to foswiki.org

Location:
trunk/JHotDrawPlugin
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/JHotDrawPlugin/data/System/JHotDrawPlugin.txt

    r5233 r5263  
    8383|  Release: | %$RELEASE% | 
    8484|  Change History: | | 
    85 8 Oct 2009 | Foswiki:Tasks:Item2160: compatibility with 1.0.7, plus UI and upload performance improvements | 
     8513 Oct 2009 | Foswiki:Tasks:Item2160: compatibility with 1.0.7, plus UI and upload performance improvements | 
    8686|  16 Jun 2009 | Foswikitask:Item8079: handling of drawing names with spaces and other converted characters corrected | 
    8787|  05 Feb 2009 | Foswikitask:Item997: must be able to show edit link correctly on imported TWiki drawings. Foswikitask:Item997: fixed problem with links in maps when the link had no trailing anchor introduced in previous version. The fix also enables using macros in links. | 
  • trunk/JHotDrawPlugin/lib/Foswiki/Plugins/JHotDrawPlugin.pm

    r5233 r5263  
    3131 
    3232our $VERSION = '$Rev$'; 
    33 our $RELEASE = '8 Oct 2009'; 
     33our $RELEASE = '13 Oct 2009'; 
    3434our $SHORTDESCRIPTION = 'Java Applet based drawing editor'; 
    3535 
     
    275275        returnRESTResult( $response, 500, join(' ', @errors )); 
    276276    } else { 
    277         print STDERR "JHotDraw saved $fileName\n"; 
    278277        returnRESTResult( $response, 200, 'OK'); 
    279278    } 
  • trunk/JHotDrawPlugin/lib/Foswiki/Plugins/JHotDrawPlugin/src/CH/ifa/draw/foswiki/ExitVetoDialog.java

    r5233 r5263  
    3535        b.setLayout(new FlowLayout()); 
    3636        p.add(b); 
    37         b.add(ok = new Button("It's OK, I've saved")); 
     37        b.add(ok = new Button("Yes, exit now")); 
    3838        Button cancel = new Button("No, don't exit yet"); 
    3939        b.add(cancel); 
  • trunk/JHotDrawPlugin/lib/Foswiki/Plugins/JHotDrawPlugin/src/CH/ifa/draw/foswiki/FoswikiFrame.java

    r5233 r5263  
    548548 
    549549        app.commitSaves(); 
     550        showStatus("Saved " + drawingName); 
    550551    } 
    551552 
Note: See TracChangeset for help on using the changeset viewer.