aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/itmill/toolkit/Application.java
Commit message (Collapse)AuthorAgeFilesLines
* #2904: initial bulk rename "com.itmill.toolkit" -> "com.vaadin"Henri Sara2009-05-111-1560/+0
| | | | | | | - com.itmill.toolkit.external not yet fully renamed svn changeset:7715/svn branch:6.0
* Implementation serialization support for Toolkit. Fixes #695Joonas Lehtinen2009-04-121-23/+10
| | | | svn changeset:7387/svn branch:6.0
* Merge from 5.3 to 6.0:Henri Sara2009-03-251-12/+7
| | | | | | | | | [7128] Fixes to merge tool. [7129] Merge from branches/manual_2009_03 to versions/5.3 (multiple changesets) [7131] Fixed language problems in the section on layout cell spacing. [7132] Use 24 hour format instead of 12 hour for Eclipse Manual plugin timestamp. svn changeset:7169/svn branch:6.0
* Fix for #2597 - NPE in Application.setUserArtur Signell2009-02-161-15/+18
| | | | svn changeset:6864/svn branch:trunk
* Added missing setters for communication error message, fixes #2521. Also ↵Marc Englund2009-01-301-0/+46
| | | | | | fixed a case where an empty notification was shown before forwarding to com-err-url. svn changeset:6679/svn branch:trunk
* Added a communication error system-message that is written to the client ↵Marc Englund2009-01-231-12/+47
| | | | | | when the initial page is rendered. If any UIDL request fails, the message is shown. Fixes [2485] svn changeset:6624/svn branch:trunk
* improving windowing javadocsMatti Tahvonen2009-01-091-6/+15
| | | | svn changeset:6485/svn branch:trunk
* fixes #2440. Relocated handling of uris for browser level windows form ↵Matti Tahvonen2009-01-091-30/+6
| | | | | | application.handleURI to servlet, fixed ticket, cleaned some code svn changeset:6480/svn branch:trunk
* removed obsolete method.Matti Tahvonen2008-12-181-16/+0
| | | | svn changeset:6257/svn branch:trunk
* debug flag on by default, will change laterMatti Tahvonen2008-12-161-1/+1
| | | | svn changeset:6230/svn branch:trunk
* Fix for #2320 - web.xml debug parameter should enable debug mode in ApplicationArtur Signell2008-12-111-1/+4
| | | | svn changeset:6165/svn branch:trunk
* Added isDebugMode() helper function (reads "Debug" parameter from context in ↵Matti Tahvonen2008-11-171-31/+20
| | | | | | application start) svn changeset:5908/svn branch:trunk
* Application div id now contains hashcode, classname contains themename and ↵Marc Englund2008-11-101-4/+3
| | | | | | appname classes. Fixes #2196 svn changeset:5836/svn branch:trunk
* Declared Application.getSystemMessages() API as final: JavaDoc changed.Joonas Lehtinen2008-09-261-13/+11
| | | | svn changeset:5529/svn branch:trunk
* Fixed #2106 : Reviewed, tested, merged (and a bit fixed) Maunos patch for ↵Joonas Lehtinen2008-09-261-5/+10
| | | | | | automatic expiration forward when the session ends. svn changeset:5528/svn branch:trunk
* Fixes #2100 : Prevent window from being added to multiple placesJoonas Lehtinen2008-09-241-0/+7
| | | | svn changeset:5507/svn branch:trunk
* Fixes #1970 : Need for a safe way to use application from multiple windows ↵Joonas Lehtinen2008-09-171-17/+43
| | | | | | | | without synchronization errors This is rather complex new feature that has a high risk of regressions. svn changeset:5425/svn branch:trunk
* Fixed for #2006 - updated error handlingArtur Signell2008-08-281-75/+89
| | | | svn changeset:5281/svn branch:trunk
* Made #1642 fix more generic by moving implementation to AbstractComponentArtur Signell2008-08-251-4/+8
| | | | svn changeset:5250/svn branch:trunk
* Fixes for #2002 and #1642 - improved exception handling in CommunicationManagerArtur Signell2008-08-221-2/+43
| | | | svn changeset:5242/svn branch:trunk
* Documented; fixes #1768Marc Englund2008-06-051-11/+193
| | | | | | Also added notification enable/disable methods, to be more explicit about that behaviour. See http://forum.itmill.com/posts/list/409.page#961 svn changeset:4746/svn branch:trunk
* fixes #1730Matti Tahvonen2008-05-271-1/+5
| | | | svn changeset:4638/svn branch:trunk
* fixes #1187, added some documentation to applications handleUriMatti Tahvonen2008-05-161-1/+7
| | | | svn changeset:4528/svn branch:trunk
* Implements SystemMessages, that can be customized. Replaces ↵Marc Englund2008-05-081-23/+122
| | | | | | | | Application.get/setSessionExpiredURL(). Fixes #1550 and #1614, and also makes internal error customizable. Marked as Experimental API for the time being. svn changeset:4391/svn branch:trunk
* -Enhancement: Application.setSessionExpiredURL now allows the developer to ↵Jouni Koivuviita2008-04-071-3/+35
| | | | | | | | | set the URL where to redirect the client after the application session has expired. The redirect is not pushed to the client, i.e. the client has to make a request to the expired application to get redirected. -Minor modification to the session expired notification (onclick="window.location.reload()" was not working properly). -Enhancement: "closeApplication" parameter allows Testing Tools to close the application after tests. svn changeset:4134/svn branch:trunk
* Fixed #1174: Where comes data for the Application.getProperty()Jani Laakso2008-03-061-1/+13
| | | | svn changeset:3986/svn branch:trunk
* Deprecated Application.setFocusedComponent and Application.consumeFocus(), ↵Jani Laakso2008-02-081-0/+7
| | | | | | | | this design flaw will be fixed in later releases. Upload setFocus() now works even if it is not yet attached. svn changeset:3755/svn branch:trunk
* javadoc fixJani Laakso2008-02-071-2/+2
| | | | svn changeset:3730/svn branch:trunk
* Newbies can easily do bad code that throws exceptions but those are simply ↵Jani Laakso2008-02-071-1/+4
| | | | | | ignored on the server-side logs (System streams). We should print stack traces by default to System.err too, users may override this behaviour if required. svn changeset:3729/svn branch:trunk
* setting main window in a cleaner manner when main window is not yet setMatti Tahvonen2008-02-011-1/+1
| | | | svn changeset:3705/svn branch:trunk
* added getVersion to Application and giving version info to TTMatti Tahvonen2008-01-151-0/+11
| | | | svn changeset:3524/svn branch:trunk
* License header parametrizedJani Laakso2007-12-041-60/+36
| | | | | | | | Cleanup performed Organized imports Format svn changeset:3162/svn branch:trunk
* MASS REFORMAT.Marc Englund2007-11-191-976/+1007
| | | | | | According to http://toolkit.intra.itmill.com/trac/itmilltoolkit/wiki/CodingConventions svn changeset:2864/svn branch:trunk
* Fixes missing license-classJoonas Lehtinen2007-10-161-35/+0
| | | | svn changeset:2526/svn branch:trunk
* Mass format based on eclipse build in formatting style.Jani Laakso2007-10-091-10/+18
| | | | svn changeset:2461/svn branch:trunk
* API changes and most of the base library implementation needed for new ↵Joonas Lehtinen2007-08-241-36/+49
| | | | | | Windowing system. Implementation for gwt-adater (both client and server). svn changeset:2125/svn branch:trunk
* Fixed some typos in commentsMarc Englund2007-08-131-4/+4
| | | | svn changeset:1991/svn branch:trunk
* fixes #510Matti Tahvonen2007-04-181-0/+22
| | | | svn changeset:1272/svn branch:trunk
* Unified code style (indentation) based on default settings using Eclipse 3.2.Jani Laakso2007-04-181-146/+189
| | | | svn changeset:1256/svn branch:trunk
* Constructors documents changed.Mohamed Atique2007-04-131-2/+2
| | | | svn changeset:1235/svn branch:trunk
* Pulled changesets from branches/4.0.0-SRIT into trunk, done byJani Laakso2007-04-131-94/+136
| | | | | | | | | mohamed.atique@renaissance-it.com. All changes are related to javadocs only. Merge was done beetween revisions 1213 - 1215. svn changeset:1221/svn branch:trunk
* Pulled changesets from branches/4.0.0-SRIT into trunk, done byJani Laakso2007-04-121-89/+190
| | | | | | | | | mohamed.atique@renaissance-it.com. All changes are related to javadocs only. Merge was done beetween revisions 924:1192. svn changeset:1212/svn branch:trunk
* piece forgot from last commitMatti Tahvonen2007-03-301-0/+18
| | | | svn changeset:1073/svn branch:trunk
* Better documentation for terminalErrorJoonas Lehtinen2007-02-071-1/+6
| | | | svn changeset:513/svn branch:toolkit
* Fixed comment.Jani Laakso2007-02-061-23/+16
| | | | svn changeset:482/svn branch:toolkit
* Fixed a bug in Application.setThemeJoonas Lehtinen2007-01-291-1/+1
| | | | svn changeset:365/svn branch:toolkit
* Fixed typo: "Intarfaces" => "Interfaces"Jani Laakso2007-01-121-2/+2
| | | | svn changeset:255/svn branch:toolkit
* Fixed typo: "Intarfaces" => "Interfaces"Jani Laakso2007-01-121-1/+1
| | | | svn changeset:238/svn branch:toolkit
* Comment updatesJoonas Lehtinen2006-12-281-192/+267
| | | | svn changeset:181/svn branch:toolkit
* Changed API to avoid naming problems when inherited applications also have ↵Joonas Lehtinen2006-12-271-2/+2
| | | | | | licenses svn changeset:156/svn branch:toolkit