mirror of
https://github.com/apache/cloudstack.git
synced 2025-12-17 02:53:18 +01:00
fixing more line encodings
This commit is contained in:
parent
8746e902e4
commit
a19d7ab00b
@ -17,56 +17,56 @@ specific language governing permissions and limitations
|
|||||||
under the License.
|
under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//
|
//
|
||||||
// Callback handlers for AJAX viewer
|
// Callback handlers for AJAX viewer
|
||||||
// Author
|
// Author
|
||||||
// Kelven Yang
|
// Kelven Yang
|
||||||
// 11/18/2009
|
// 11/18/2009
|
||||||
//
|
//
|
||||||
function onKickoff() {
|
function onKickoff() {
|
||||||
ajaxViewer.stop();
|
ajaxViewer.stop();
|
||||||
$('#toolbar').remove();
|
$('#toolbar').remove();
|
||||||
$('#main_panel').html('<p>This session is terminated because a session for the same VM has been created elsewhere.</p>');
|
$('#main_panel').html('<p>This session is terminated because a session for the same VM has been created elsewhere.</p>');
|
||||||
}
|
}
|
||||||
|
|
||||||
function onDisconnect() {
|
function onDisconnect() {
|
||||||
ajaxViewer.stop();
|
ajaxViewer.stop();
|
||||||
$('#toolbar').remove();
|
$('#toolbar').remove();
|
||||||
$('#main_panel').html('<p>This session is terminated as the machine you are accessing has terminated the connection.</p>');
|
$('#main_panel').html('<p>This session is terminated as the machine you are accessing has terminated the connection.</p>');
|
||||||
}
|
}
|
||||||
|
|
||||||
function onClientError() {
|
function onClientError() {
|
||||||
ajaxViewer.stop();
|
ajaxViewer.stop();
|
||||||
$('#toolbar').remove();
|
$('#toolbar').remove();
|
||||||
$('#main_panel').html('<p>Client communication error, please retry later.</p>');
|
$('#main_panel').html('<p>Client communication error, please retry later.</p>');
|
||||||
}
|
}
|
||||||
|
|
||||||
function onCanvasSizeChange(width, height) {
|
function onCanvasSizeChange(width, height) {
|
||||||
$('#toolbar').width(width);
|
$('#toolbar').width(width);
|
||||||
}
|
}
|
||||||
|
|
||||||
function onStatusNotify(status) {
|
function onStatusNotify(status) {
|
||||||
if(status == ajaxViewer.STATUS_SENDING || status == ajaxViewer.STATUS_RECEIVING)
|
if(status == ajaxViewer.STATUS_SENDING || status == ajaxViewer.STATUS_RECEIVING)
|
||||||
$('#light').removeClass('dark').addClass('bright');
|
$('#light').removeClass('dark').addClass('bright');
|
||||||
else
|
else
|
||||||
$('#light').removeClass('bright').addClass('dark');
|
$('#light').removeClass('bright').addClass('dark');
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendCtrlAltDel() {
|
function sendCtrlAltDel() {
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 45, ajaxViewer.CTRL_KEY | ajaxViewer.ALT_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 45, ajaxViewer.CTRL_KEY | ajaxViewer.ALT_KEY);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 45, ajaxViewer.CTRL_KEY | ajaxViewer.ALT_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 45, ajaxViewer.CTRL_KEY | ajaxViewer.ALT_KEY);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendCtrlEsc() {
|
function sendCtrlEsc() {
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 17, 0);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 17, 0);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 27, ajaxViewer.CTRL_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 27, ajaxViewer.CTRL_KEY);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 27, ajaxViewer.CTRL_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 27, ajaxViewer.CTRL_KEY);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 17, 0);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 17, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
function sendAltTab() {
|
function sendAltTab() {
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 18, 0);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 18, 0);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 9, ajaxViewer.ALT_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_DOWN, 9, ajaxViewer.ALT_KEY);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 9, ajaxViewer.ALT_KEY);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 9, ajaxViewer.ALT_KEY);
|
||||||
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 18, 0);
|
ajaxViewer.sendKeyboardEvent(ajaxViewer.KEY_UP, 18, 0);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user