Statistics
| Branch: | Tag: | Revision:

root / src / gr / ebs / gss / client / FileUploadGearsDialog.java @ 3ee27ba6

History | View | Annotate | Download (13.4 kB)

# Date Author Comment
0a6c19e7 12/01/2010 12:15 pm Natasa Kapravelou

Refresh the file list after canceling the upload of multiple files. This fixes issue 62.

5210ea4c 11/30/2010 02:29 pm Natasa Kapravelou

Minor fixes related to Issue 60.

4cef6f04 11/30/2010 01:14 pm Natasa Kapravelou

Fixes after code review, these solve Issue 60.

e0ba0b0e 11/26/2010 04:30 pm Natasa Kapravelou

Make the progress bar in IE with Gears functional.

e0c0ebc0 11/26/2010 12:09 pm Natasa Kapravelou

Change the way the upload of multiple files, using Gears, works. Deferred Command was removed and a file is uploaded only when the previous file has finished uploading.

023f6f1e 07/08/2010 01:57 pm Panagiotis Astithas

- Add an administration application.
- Remove the redundant RequestBuilder wrapper for efficiency.
- Fix warnings.
- Ignore the admin app build artifacts.
- Guard against users without userclasses in the DB.
- Add a dev mode launcher for debugging the admin app.

fd294c94 05/19/2010 02:04 pm Panagiotis Astithas

Fix warnings and stop complaining about parameter assignment. We're not eleven.

afd3a0ef 01/15/2010 03:25 pm Giannis Koutsoubos

moved towards gwt version 2.0 - updated dnd to version 3 -removed all deprecations

a73b1e75 08/26/2009 12:57 pm Dimitris Routsis

Silently replace @ character when uploading. (Will have to do at least till a proper solution is found.)

7cc0f8d1 08/25/2009 05:58 pm Dimitris Routsis

Use URL.encodeComponent() instead of URL.encode() as it encodes a few more characters that may appear in filenames and URL.encode() left unencoded.

9fd42cf4 08/07/2009 05:39 pm Panagiotis Astithas

Fix multiple file uploads in IE using Google Gears. It needed a POST instead of PUT, which required accommodating it in the server-side code. Also, error codes from file uploads are not handled in IE, since merely accessing the request.status field throws an internal error.

9ad7d9ae 06/22/2009 04:02 pm Panagiotis Astithas

Fix uploads for files with funny names, by using URL.encode() instead of URL.encodeComponent(). The latter is required for HTML form-based uploads only.

c6f2b274 06/19/2009 05:09 pm Panagiotis Astithas

Properly cancel the upload for both gears-enabled and regular file uploads. This doesn't seem to be working in my localhost tests, but it must be either a bug in gears, or the too fast connection to the server from the loopback interface.

22eb1f84 06/16/2009 05:35 pm Panagiotis Astithas

Perform the validation checks for every selected file and do it before starting the file uploads. Also, handle all possible error responses to the PUT requests.

3de5aa1e 06/16/2009 02:00 pm Panagiotis Astithas

Add a help comment on the file upload dialog mentioning the extra functionality provided by google gears and a link for installing it.

4fc9ea8b 06/15/2009 05:36 pm Panagiotis Astithas

Use separate progress bars next to each file, in order to better track the progress of the upload process.

204107fb 06/15/2009 04:01 pm Panagiotis Astithas

Introduce TransactionHelper, a utility class for retrying the supplied transactional command in the face of rollbacks caused by optimistic lock exceptions. This allows multiple file uploads to succeed, even in a single core system.

Also make hitting the ENTER key behave the same as clicking the Upload button.

a8ede553 06/15/2009 12:24 pm Panagiotis Astithas

Fix uploading file when a synonymous one is in the trash.

5c6b4b2c 06/12/2009 06:02 pm Panagiotis Astithas

First rough implementation of the file upload functionality using Google Gears. Multiple file uploads are still buggy, but single file uploads are mostly working as before.