Hi,

openmeetings r4589.
I've looked up the code and suggest the following solutions to the
above problems:

1. Downloading default images from "default" directory:

   "DownloadHandler.class" (lines 261, 267, 274)
   full_path = current_dir + File.separatorChar + "default" +
File.separatorChar + ...;
   should be changed to
   full_path = current_dir + "default" + File.separatorChar + ...;

2. Uploading swf files to the whiteboard. I'm not sure if the
suggested fix works, theoretically it should as at least the slashes
and backslashes will not be duplicated.

   "DonwloadHandler.class" (line 159)
   working_dir = working_dir + roomName + File.separatorChar +
parentPath + File.separatorChar;
   should be changed to
   working_dir = working_dir + roomName + parentPath;

Regards,
Krzysztof

-- 
You received this message because you are subscribed to the Google Groups 
"OpenMeetings User" group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.

Reply via email to