guacamole-0.6.0/0000755361546300001440000000000011751110427012222 5ustar zhzusersguacamole-0.6.0/pom.xml0000644361546300001440000000711211751110427013540 0ustar zhzusers 4.0.0 net.sourceforge.guacamole guacamole war 0.6.0 guacamole http://guac-dev.org/ UTF-8 org.apache.maven.plugins maven-compiler-plugin 1.6 1.6 org.apache.maven.plugins maven-war-plugin src/main/webapp true net.sourceforge.guacamole guacamole-common-js zip javax.servlet servlet-api 2.5 provided org.slf4j slf4j-api 1.6.1 org.slf4j slf4j-jcl 1.6.1 runtime net.sourceforge.guacamole guacamole-common 0.6.0 net.sourceforge.guacamole guacamole-ext 0.6.0 net.sourceforge.guacamole guacamole-common-js 0.6.0 zip runtime guac-dev http://guac-dev.org/repo guacamole-0.6.0/src/0000755361546300001440000000000011751110427013011 5ustar zhzusersguacamole-0.6.0/src/main/0000755361546300001440000000000011751110427013735 5ustar zhzusersguacamole-0.6.0/src/main/webapp/0000755361546300001440000000000011751110427015213 5ustar zhzusersguacamole-0.6.0/src/main/webapp/scripts/0000755361546300001440000000000011751110427016702 5ustar zhzusersguacamole-0.6.0/src/main/webapp/scripts/interface.js0000644361546300001440000005752011751110427021211 0ustar zhzusers // UI Definition var GuacamoleUI = { "LOGOUT_PROMPT" : "Logging out will disconnect all of your active " + "Guacamole sessions. Are you sure you wish to log out?", /* Detection Constants */ "LONG_PRESS_DETECT_TIMEOUT" : 800, /* milliseconds */ "LONG_PRESS_MOVEMENT_THRESHOLD" : 10, /* pixels */ "MENU_CLOSE_DETECT_TIMEOUT" : 500, /* milliseconds */ "MENU_OPEN_DETECT_TIMEOUT" : 325, /* milliseconds */ "KEYBOARD_AUTO_RESIZE_INTERVAL" : 30, /* milliseconds */ /* Animation Constants */ "MENU_SHADE_STEPS" : 10, /* frames */ "MENU_SHADE_INTERVAL" : 30, /* milliseconds */ "MENU_SHOW_STEPS" : 5, /* frames */ "MENU_SHOW_INTERVAL" : 30, /* milliseconds */ /* OSK Mode Constants */ "OSK_MODE_NATIVE" : 1, /* "Show Keyboard" will show the platform's native OSK */ "OSK_MODE_GUAC" : 2, /* "Show Keyboard" will show Guac's built-in OSK */ /* UI Elements */ "viewport" : document.getElementById("viewportClone"), "display" : document.getElementById("display"), "menu" : document.getElementById("menu"), "menuControl" : document.getElementById("menuControl"), "touchMenu" : document.getElementById("touchMenu"), "logo" : document.getElementById("status-logo"), "eventTarget" : document.getElementById("eventTarget"), "buttons": { "showClipboard": document.getElementById("showClipboard"), "showKeyboard" : document.getElementById("showKeyboard"), "ctrlAltDelete": document.getElementById("ctrlAltDelete"), "reconnect" : document.getElementById("reconnect"), "logout" : document.getElementById("logout"), "touchShowClipboard" : document.getElementById("touchShowClipboard"), "touchShowKeyboard" : document.getElementById("touchShowKeyboard"), "touchLogout" : document.getElementById("touchLogout") }, "containers": { "state" : document.getElementById("statusDialog"), "clipboard" : document.getElementById("clipboardDiv"), "touchClipboard": document.getElementById("touchClipboardDiv"), "keyboard" : document.getElementById("keyboardContainer") }, "state" : document.getElementById("statusText"), "clipboard" : document.getElementById("clipboard"), "touchClipboard" : document.getElementById("touchClipboard") }; // Constant UI initialization and behavior (function() { var menu_shaded = false; var shade_interval = null; var show_interval = null; // Cache error image (might not be available when error occurs) var guacErrorImage = new Image(); guacErrorImage.src = "images/noguacamole-logo-24.png"; // Function for adding a class to an element var addClass; // Function for removing a class from an element var removeClass; // If Node.classList is supported, implement addClass/removeClass using that if (Node.classList) { addClass = function(element, classname) { element.classList.add(classname); }; removeClass = function(element, classname) { element.classList.remove(classname); }; } // Otherwise, implement own else { addClass = function(element, classname) { // Simply add new class element.className += " " + classname; }; removeClass = function(element, classname) { // Filter out classes with given name element.className = element.className.replace(/([^ ]+)[ ]*/g, function(match, testClassname, spaces, offset, string) { // If same class, remove if (testClassname == classname) return ""; // Otherwise, allow return match; } ); }; } GuacamoleUI.hideStatus = function() { removeClass(document.body, "guac-error"); GuacamoleUI.containers.state.style.visibility = "hidden"; GuacamoleUI.display.style.opacity = "1"; }; GuacamoleUI.showStatus = function(text) { removeClass(document.body, "guac-error"); GuacamoleUI.containers.state.style.visibility = "visible"; GuacamoleUI.state.textContent = text; GuacamoleUI.display.style.opacity = "1"; }; GuacamoleUI.showError = function(error) { addClass(document.body, "guac-error"); GuacamoleUI.state.textContent = error; GuacamoleUI.display.style.opacity = "0.1"; }; GuacamoleUI.hideTouchMenu = function() { GuacamoleUI.touchMenu.style.visibility = "hidden"; }; function positionCentered(element) { element.style.left = ((GuacamoleUI.viewport.offsetWidth - element.offsetWidth) / 2 + window.pageXOffset) + "px"; element.style.top = ((GuacamoleUI.viewport.offsetHeight - element.offsetHeight) / 2 + window.pageYOffset) + "px"; } GuacamoleUI.showTouchMenu = function() { positionCentered(GuacamoleUI.touchMenu); GuacamoleUI.touchMenu.style.visibility = "visible"; }; GuacamoleUI.hideTouchClipboard = function() { GuacamoleUI.containers.touchClipboard.style.visibility = "hidden"; }; GuacamoleUI.showTouchClipboard = function() { positionCentered(GuacamoleUI.containers.touchClipboard); GuacamoleUI.containers.touchClipboard.style.visibility = "visible"; }; GuacamoleUI.shadeMenu = function() { if (!menu_shaded) { var step = Math.floor(GuacamoleUI.menu.offsetHeight / GuacamoleUI.MENU_SHADE_STEPS) + 1; var offset = 0; menu_shaded = true; window.clearInterval(show_interval); shade_interval = window.setInterval(function() { offset -= step; GuacamoleUI.menu.style.transform = GuacamoleUI.menu.style.WebkitTransform = GuacamoleUI.menu.style.MozTransform = GuacamoleUI.menu.style.OTransform = GuacamoleUI.menu.style.msTransform = "translateY(" + offset + "px)"; if (offset <= -GuacamoleUI.menu.offsetHeight) { window.clearInterval(shade_interval); GuacamoleUI.menu.style.visiblity = "hidden"; } }, GuacamoleUI.MENU_SHADE_INTERVAL); } }; GuacamoleUI.showMenu = function() { if (menu_shaded) { var step = Math.floor(GuacamoleUI.menu.offsetHeight / GuacamoleUI.MENU_SHOW_STEPS) + 1; var offset = -GuacamoleUI.menu.offsetHeight; menu_shaded = false; GuacamoleUI.menu.style.visiblity = ""; window.clearInterval(shade_interval); show_interval = window.setInterval(function() { offset += step; if (offset >= 0) { offset = 0; window.clearInterval(show_interval); } GuacamoleUI.menu.style.transform = GuacamoleUI.menu.style.WebkitTransform = GuacamoleUI.menu.style.MozTransform = GuacamoleUI.menu.style.OTransform = GuacamoleUI.menu.style.msTransform = "translateY(" + offset + "px)"; }, GuacamoleUI.MENU_SHOW_INTERVAL); } }; // Show/Hide clipboard GuacamoleUI.buttons.showClipboard.onclick = function() { var displayed = GuacamoleUI.containers.clipboard.style.display; if (displayed != "block") { GuacamoleUI.containers.clipboard.style.display = "block"; GuacamoleUI.buttons.showClipboard.innerHTML = "Hide Clipboard"; } else { GuacamoleUI.containers.clipboard.style.display = "none"; GuacamoleUI.buttons.showClipboard.innerHTML = "Show Clipboard"; GuacamoleUI.clipboard.onchange(); } }; GuacamoleUI.buttons.touchShowClipboard.onclick = function() { GuacamoleUI.hideTouchMenu(); GuacamoleUI.showTouchClipboard(); }; // Show/Hide keyboard var keyboardResizeInterval = null; GuacamoleUI.buttons.showKeyboard.onclick = function() { // If Guac OSK shown, hide it. var displayed = GuacamoleUI.containers.keyboard.style.display; if (displayed == "block") { GuacamoleUI.containers.keyboard.style.display = "none"; GuacamoleUI.buttons.showKeyboard.textContent = "Show Keyboard"; window.onresize = null; window.clearInterval(keyboardResizeInterval); } // Otherwise, show it else { // Ensure event target is NOT focused if we are using the Guac OSK. GuacamoleUI.eventTarget.blur(); GuacamoleUI.containers.keyboard.style.display = "block"; GuacamoleUI.buttons.showKeyboard.textContent = "Hide Keyboard"; // Automatically update size window.onresize = updateKeyboardSize; keyboardResizeInterval = window.setInterval(updateKeyboardSize, GuacamoleUI.KEYBOARD_AUTO_RESIZE_INTERVAL); updateKeyboardSize(); } }; // Touch-specific keyboard show GuacamoleUI.buttons.touchShowKeyboard.onclick = function(e) { // Center event target in case browser automatically centers // input fields on focus. GuacamoleUI.eventTarget.style.left = (window.pageXOffset + GuacamoleUI.viewport.offsetWidth / 2) + "px"; GuacamoleUI.eventTarget.style.top = (window.pageYOffset + GuacamoleUI.viewport.offsetHeight / 2) + "px"; GuacamoleUI.eventTarget.focus(); GuacamoleUI.hideTouchMenu(); }; // Logout GuacamoleUI.buttons.logout.onclick = GuacamoleUI.buttons.touchLogout.onclick = function() { // Logout after warning user about session disconnect if (confirm(GuacamoleUI.LOGOUT_PROMPT)) { window.location.href = "logout"; GuacamoleUI.hideTouchMenu(); } }; // Timeouts for detecting if users wants menu to open or close var detectMenuOpenTimeout = null; var detectMenuCloseTimeout = null; // Clear detection timeouts GuacamoleUI.resetMenuDetect = function() { if (detectMenuOpenTimeout != null) { window.clearTimeout(detectMenuOpenTimeout); detectMenuOpenTimeout = null; } if (detectMenuCloseTimeout != null) { window.clearTimeout(detectMenuCloseTimeout); detectMenuCloseTimeout = null; } }; // Initiate detection of menu open action. If not canceled through some // user event, menu will open. GuacamoleUI.startMenuOpenDetect = function() { if (!detectMenuOpenTimeout) { // Clear detection state GuacamoleUI.resetMenuDetect(); // Wait and then show menu detectMenuOpenTimeout = window.setTimeout(function() { // If menu opened via mouse, do not show native OSK GuacamoleUI.oskMode = GuacamoleUI.OSK_MODE_GUAC; GuacamoleUI.showMenu(); detectMenuOpenTimeout = null; }, GuacamoleUI.MENU_OPEN_DETECT_TIMEOUT); } }; // Initiate detection of menu close action. If not canceled through some // user mouse event, menu will close. GuacamoleUI.startMenuCloseDetect = function() { if (!detectMenuCloseTimeout) { // Clear detection state GuacamoleUI.resetMenuDetect(); // Wait and then shade menu detectMenuCloseTimeout = window.setTimeout(function() { GuacamoleUI.shadeMenu(); detectMenuCloseTimeout = null; }, GuacamoleUI.MENU_CLOSE_DETECT_TIMEOUT); } }; // Show menu if mouseover any part of menu GuacamoleUI.menu.addEventListener('mouseover', GuacamoleUI.showMenu, true); // Stop detecting menu state change intents if mouse is over menu GuacamoleUI.menu.addEventListener('mouseover', GuacamoleUI.resetMenuDetect, true); // When mouse hovers over top of screen, start detection of intent to open menu GuacamoleUI.menuControl.addEventListener('mousemove', GuacamoleUI.startMenuOpenDetect, true); var long_press_start_x = 0; var long_press_start_y = 0; var menuShowLongPressTimeout = null; GuacamoleUI.startLongPressDetect = function() { if (!menuShowLongPressTimeout) { menuShowLongPressTimeout = window.setTimeout(function() { menuShowLongPressTimeout = null; // Assume native OSK if menu shown via long-press GuacamoleUI.oskMode = GuacamoleUI.OSK_MODE_NATIVE; GuacamoleUI.showTouchMenu(); }, GuacamoleUI.LONG_PRESS_DETECT_TIMEOUT); } }; GuacamoleUI.stopLongPressDetect = function() { window.clearTimeout(menuShowLongPressTimeout); menuShowLongPressTimeout = null; }; // Detect long-press at bottom of screen GuacamoleUI.display.addEventListener('touchstart', function(e) { // Close menu if shown GuacamoleUI.shadeMenu(); GuacamoleUI.hideTouchMenu(); GuacamoleUI.hideTouchClipboard(); // Record touch location if (e.touches.length == 1) { var touch = e.touches[0]; long_press_start_x = touch.screenX; long_press_start_y = touch.screenY; } // Start detection GuacamoleUI.startLongPressDetect(); }, true); // Stop detection if touch moves significantly GuacamoleUI.display.addEventListener('touchmove', function(e) { // If touch distance from start exceeds threshold, cancel long press var touch = e.touches[0]; if (Math.abs(touch.screenX - long_press_start_x) >= GuacamoleUI.LONG_PRESS_MOVEMENT_THRESHOLD || Math.abs(touch.screenY - long_press_start_y) >= GuacamoleUI.LONG_PRESS_MOVEMENT_THRESHOLD) GuacamoleUI.stopLongPressDetect(); }, true); // Stop detection if press stops GuacamoleUI.display.addEventListener('touchend', GuacamoleUI.stopLongPressDetect, true); // Close menu on mouse movement GuacamoleUI.display.addEventListener('mousemove', GuacamoleUI.startMenuCloseDetect, true); GuacamoleUI.display.addEventListener('mousedown', GuacamoleUI.startMenuCloseDetect, true); // Reconnect button GuacamoleUI.buttons.reconnect.onclick = function() { window.location.reload(); }; // On-screen keyboard GuacamoleUI.keyboard = new Guacamole.OnScreenKeyboard("layouts/en-us-qwerty.xml"); GuacamoleUI.containers.keyboard.appendChild(GuacamoleUI.keyboard.getElement()); // Function for automatically updating keyboard size var lastKeyboardWidth; function updateKeyboardSize() { var currentSize = GuacamoleUI.keyboard.getElement().offsetWidth; if (lastKeyboardWidth != currentSize) { GuacamoleUI.keyboard.resize(currentSize); lastKeyboardWidth = currentSize; } }; // Turn off autocorrect and autocapitalization on eventTarget GuacamoleUI.eventTarget.setAttribute("autocorrect", "off"); GuacamoleUI.eventTarget.setAttribute("autocapitalize", "off"); // Automatically reposition event target on scroll window.addEventListener("scroll", function() { GuacamoleUI.eventTarget.style.left = window.pageXOffset + "px"; GuacamoleUI.eventTarget.style.top = window.pageYOffset + "px"; }); })(); // Tie UI events / behavior to a specific Guacamole client GuacamoleUI.attach = function(guac) { var title_prefix = null; var connection_name = "Guacamole"; var guac_display = guac.getDisplay(); // Set document title appropriately, based on prefix and connection name function updateTitle() { // Use title prefix if present if (title_prefix) { document.title = title_prefix; // Include connection name, if present if (connection_name) document.title += " " + connection_name; } // Otherwise, just set to connection name else if (connection_name) document.title = connection_name; } // When mouse enters display, start detection of intent to close menu guac_display.addEventListener('mouseover', GuacamoleUI.startMenuCloseDetect, true); guac_display.onclick = function(e) { e.preventDefault(); return false; }; // Mouse var mouse = new Guacamole.Mouse(guac_display); mouse.onmousedown = mouse.onmouseup = mouse.onmousemove = function(mouseState) { // Determine mouse position within view var mouse_view_x = mouseState.x + guac_display.offsetLeft - window.pageXOffset; var mouse_view_y = mouseState.y + guac_display.offsetTop - window.pageYOffset; // Determine viewport dimensioins var view_width = GuacamoleUI.viewport.offsetWidth; var view_height = GuacamoleUI.viewport.offsetHeight; // Determine scroll amounts based on mouse position relative to document var scroll_amount_x; if (mouse_view_x > view_width) scroll_amount_x = mouse_view_x - view_width; else if (mouse_view_x < 0) scroll_amount_x = mouse_view_x; else scroll_amount_x = 0; var scroll_amount_y; if (mouse_view_y > view_height) scroll_amount_y = mouse_view_y - view_height; else if (mouse_view_y < 0) scroll_amount_y = mouse_view_y; else scroll_amount_y = 0; // Scroll (if necessary) to keep mouse on screen. window.scrollBy(scroll_amount_x, scroll_amount_y); // Send mouse event guac.sendMouseState(mouseState); }; // Keyboard var keyboard = new Guacamole.Keyboard(document); // Monitor whether the event target is focused var eventTargetFocused = false; // Save length for calculation of changed value var currentLength = GuacamoleUI.eventTarget.value.length; GuacamoleUI.eventTarget.onfocus = function() { eventTargetFocused = true; GuacamoleUI.eventTarget.value = ""; currentLength = 0; }; GuacamoleUI.eventTarget.onblur = function() { eventTargetFocused = false; }; // If text is input directly into event target without typing (as with // voice input, for example), type automatically. GuacamoleUI.eventTarget.oninput = function(e) { // Calculate current length and change in length var oldLength = currentLength; currentLength = GuacamoleUI.eventTarget.value.length; // If deleted or replaced text, ignore if (currentLength <= oldLength) return; // Get changed text var text = GuacamoleUI.eventTarget.value.substring(oldLength); // Send each character for (var i=0; i= 0x0000 && charCode <= 0x00FF) keysym = charCode; else if (charCode >= 0x0100 && charCode <= 0x10FFFF) keysym = 0x01000000 | charCode; // Send keysym only if not already pressed if (!keyboard.pressed[keysym]) { // Press and release key guac.sendKeyEvent(1, keysym); guac.sendKeyEvent(0, keysym); } } } function isTypableCharacter(keysym) { return (keysym & 0xFFFF00) != 0xFF00; } function disableKeyboard() { keyboard.onkeydown = null; keyboard.onkeyup = null; } function enableKeyboard() { keyboard.onkeydown = function (keysym) { guac.sendKeyEvent(1, keysym); return eventTargetFocused && isTypableCharacter(keysym); }; keyboard.onkeyup = function (keysym) { guac.sendKeyEvent(0, keysym); return eventTargetFocused && isTypableCharacter(keysym); }; } // Enable keyboard by default enableKeyboard(); // Handle client state change guac.onstatechange = function(clientState) { switch (clientState) { // Idle case 0: GuacamoleUI.showStatus("Idle."); title_prefix = "[Idle]"; break; // Connecting case 1: GuacamoleUI.shadeMenu(); GuacamoleUI.showStatus("Connecting..."); title_prefix = "[Connecting...]"; break; // Connected + waiting case 2: GuacamoleUI.showStatus("Connected, waiting for first update..."); title_prefix = "[Waiting...]"; break; // Connected case 3: GuacamoleUI.hideStatus(); title_prefix = null; break; // Disconnecting case 4: GuacamoleUI.showStatus("Disconnecting..."); title_prefix = "[Disconnecting...]"; break; // Disconnected case 5: GuacamoleUI.showStatus("Disconnected."); title_prefix = "[Disconnected]"; break; // Unknown status code default: GuacamoleUI.showStatus("[UNKNOWN STATUS]"); } updateTitle(); }; // Name instruction handler guac.onname = function(name) { connection_name = name; updateTitle(); }; // Error handler guac.onerror = function(error) { // Disconnect, if connected guac.disconnect(); // Display error message GuacamoleUI.showError(error); }; // Disconnect on close window.onunload = function() { guac.disconnect(); }; // Handle clipboard events GuacamoleUI.clipboard.onchange = function() { var text = GuacamoleUI.clipboard.value; GuacamoleUI.touchClipboard.value = text; guac.setClipboard(text); }; GuacamoleUI.touchClipboard.onchange = function() { var text = GuacamoleUI.touchClipboard.value; GuacamoleUI.clipboard.value = text; guac.setClipboard(text); }; // Ignore keypresses when clipboard is focused GuacamoleUI.clipboard.onfocus = GuacamoleUI.touchClipboard.onfocus = function() { disableKeyboard(); }; // Capture keypresses when clipboard is not focused GuacamoleUI.clipboard.onblur = GuacamoleUI.touchClipboard.onblur = function() { enableKeyboard(); }; // Server copy handler guac.onclipboard = function(data) { GuacamoleUI.clipboard.value = data; GuacamoleUI.touchClipboard.value = data; }; GuacamoleUI.keyboard.onkeydown = function(keysym) { guac.sendKeyEvent(1, keysym); }; GuacamoleUI.keyboard.onkeyup = function(keysym) { guac.sendKeyEvent(0, keysym); }; // Send Ctrl-Alt-Delete GuacamoleUI.buttons.ctrlAltDelete.onclick = function() { var KEYSYM_CTRL = 0xFFE3; var KEYSYM_ALT = 0xFFE9; var KEYSYM_DELETE = 0xFFFF; guac.sendKeyEvent(1, KEYSYM_CTRL); guac.sendKeyEvent(1, KEYSYM_ALT); guac.sendKeyEvent(1, KEYSYM_DELETE); guac.sendKeyEvent(0, KEYSYM_DELETE); guac.sendKeyEvent(0, KEYSYM_ALT); guac.sendKeyEvent(0, KEYSYM_CTRL); }; }; guacamole-0.6.0/src/main/webapp/scripts/connections.js0000644361546300001440000000146711751110427021572 0ustar zhzusers function Config(protocol, id) { this.protocol = protocol; this.id = id; } function getConfigList(parameters) { // Construct request URL var configs_url = "configs"; if (parameters) configs_url += "?" + parameters; // Get config list var xhr = new XMLHttpRequest(); xhr.open("GET", configs_url, false); xhr.send(null); // If fail, throw error if (xhr.status != 200) throw new Error(xhr.statusText); // Otherwise, get list var configs = new Array(); var configElements = xhr.responseXML.getElementsByTagName("config"); for (var i=0; i Guacamole ${project.version}

Clipboard

Text copied/cut within Guacamole will appear here. Changes to the text will affect the remote clipboard, and will be pastable within the remote desktop. Use the textbox below as an interface between the client and server clipboards.

guacamole-0.6.0/src/main/webapp/WEB-INF/0000755361546300001440000000000011751110427016242 5ustar zhzusersguacamole-0.6.0/src/main/webapp/WEB-INF/web.xml0000644361546300001440000000571111751110427017545 0ustar zhzusers index.xhtml 30 net.sourceforge.guacamole.net.basic.WebSocketSupportLoader Login servlet. Login net.sourceforge.guacamole.net.basic.BasicLogin Login /login Logout servlet. Logout net.sourceforge.guacamole.net.basic.BasicLogout Logout /logout Configuration list servlet. Configs net.sourceforge.guacamole.net.basic.ConfigurationList Configs /configs Tunnel servlet. Tunnel net.sourceforge.guacamole.net.basic.BasicGuacamoleTunnelServlet Tunnel /tunnel guacamole-0.6.0/src/main/webapp/agpl-3.0-standalone.html0000644361546300001440000010726511751110427021463 0ustar zhzusers GNU Affero General Public License - GNU Project - Free Software Foundation (FSF)

GNU AFFERO GENERAL PUBLIC LICENSE

Version 3, 19 November 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Preamble

The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software.

The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.

Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software.

A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public.

The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version.

An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license.

The precise terms and conditions for copying, distribution and modification follow.

TERMS AND CONDITIONS

0. Definitions.

"This License" refers to version 3 of the GNU Affero General Public License.

"Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.

"The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations.

To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work.

A "covered work" means either the unmodified Program or a work based on the Program.

To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.

To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.

An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.

1. Source Code.

The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work.

A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.

The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.

The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.

The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same work.

2. Basic Permissions.

All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.

3. Protecting Users' Legal Rights From Anti-Circumvention Law.

No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.

When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.

4. Conveying Verbatim Copies.

You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.

5. Conveying Modified Source Versions.

You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:

  • a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
  • b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices".
  • c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
  • d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.

A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.

6. Conveying Non-Source Forms.

You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:

  • a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
  • b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
  • c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
  • d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
  • e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.

A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.

"Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.

If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).

The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.

Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.

7. Additional Terms.

"Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:

  • a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
  • b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
  • c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
  • d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
  • e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
  • f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.

All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.

8. Termination.

You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.

9. Acceptance Not Required for Having Copies.

You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.

10. Automatic Licensing of Downstream Recipients.

Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.

An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.

11. Patents.

A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version".

A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.

In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.

If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.

A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.

12. No Surrender of Others' Freedom.

If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.

13. Remote Network Interaction; Use with the GNU General Public License.

Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph.

Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License.

14. Revised Versions of this License.

The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.

Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.

15. Disclaimer of Warranty.

THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

16. Limitation of Liability.

IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

17. Interpretation of Sections 15 and 16.

If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU Affero General Public License as
    published by the Free Software Foundation, either version 3 of the
    License, or (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Affero General Public License for more details.

    You should have received a copy of the GNU Affero General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.

You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see <http://www.gnu.org/licenses/>.

guacamole-0.6.0/src/main/webapp/images/0000755361546300001440000000000011751110427016460 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/guacamole-logo-24.png0000644361546300001440000000276011751110427022311 0ustar zhzusers‰PNG  IHDRàw=øsBIT|dˆ pHYsììu85tEXtSoftwarewww.inkscape.org›î<mIDATH‰µ•[l\W†¿}nsñŒÇö¸6‚‚z!)Nhœ’ªÄЏÔAÑF!°hÕDUy¨ñ)RˆR‰ä¨JK!BP.M)&VAÚ’ÄÔIkÇŽëñŒÇöÌœ3gï½xȸ²Sª> né×>Gß¿öZÚÿV"Â;¹œw”xo÷ƒRÊí^Û~ï»z2ŸÈ¯ÊÜfEsÓµÿ”¦¯F¡¼2=]~Aª2©”òxàÓOëF|þÙ?ž}rbbf @½U‹níë~¸°¶} Ûž\{û‡Võä:ÓŽ‹¶–¤ëa´°8WgâòìÌ?Ÿ?zçêÛ&Ÿ8üµCAàsîühé·¿{þèÿò[o2PJÖoíùÕG×m®gC'ã§i÷Òx ÓîP× °.ÒÐÔ!;Ù¥÷}ö^ÏsÊq|<þ³§ÞhQ&“¹eã¶÷ÿùþ¯n_¿nG—xZÒø®£È'H(0Žc±bqñ]j—«VϾ¯s‹Zý$žVXå@à[CkàYE-Iº>"–œoxu"äÖÄZvíØN:•àâ¥qùá¡¿æ™?|Rõööî9xðàЙóʨÛÇH¸¢Jùˆßñiñ¢†Âñ=Ԣƴ8X±x´µÄ‘f~6¤7·žâ\™‹£%ö}æëõýû÷ïs6mÚôІ 2×ê/1×p¤\YfánªaˆÒ€ThhX˜¨ÎabMKWÀHñ<Åü$¶£B6—MõõõpzzzÖd2\ò³‘ªZe¹%ÙŠˆê“mc梌Öà )ÇФPI¡{u€84ä²9 …B·S©TÊ---¼·c#•°b¹^/SS19Ï VãÆj"Ý åøXÓÃd­Š§T)BêšZl ë ºü;( Ôëõ’såÊ•9ðmÞ]û¯_Šè Zð”¢4UG[MW £uƒëÕYb×"•¤ã⢱m 3c!¹é»øÎ7 \.O»‰D¢°{÷îl6ËÖ¾»yOÛ:^çúÕ9b³HÐî3[Œœº&J"Öb|AÄRž )^rI-¬á¾{¾Âçîû"®ë2??Ï‘#G~ª€UCO>uáKû>Ÿ¿ù6Ÿ}ž¿þã/DqPW ã*"BÊo!á§Izi6oÜÎ=w÷ã8+cíøñãå½{÷ö""<øÈ÷.L•C1ÆŠµÿ¿j‘–‡¾ùÝs"r#ìfÆG/O–Ã;_¯Dä3>ßUo—ƒoZ‘¶”53 1¯]þ74ÓôêèË?¹xîo;îøàöŽÉrÈÔ$<‡¤ïô©àÆ÷’©±BlVj!4Ô¢wå?zü…¿?÷Ø###Ïö÷÷?qèðšGs«ý¹ª¡ijÑÊ ]DÀ¾Å幊W^©œüͱG¯]»6ËâZ)¥~=44ô©T*Mµa cK¤…("m17 D5ažsc}ú€4ÁJDPJ) tïÚµëèàààæþþþÌÍ+€Â½é4Æ0444}âĉ“ÃÃÃs@("vÉÀº€àtww÷mÙ²åË{öì¹kçέAüÏ–T«UN:5ìØ±³gΜù~½^ °@L‹HcÉÀ:€Ls. ŸÏ P(|¼­­­³½½½5—Ëå|ßÊår©X,΋ʼnñññ“‹‹‹/7=0@˜³|.4O‘ܦœ%ÃeûLš›¦b 4DD¯òÒ ›ÅJ¨»L4¡º ],Š,ƒþÄÊó§Ãßn*IEND®B`‚guacamole-0.6.0/src/main/webapp/images/guacamole-logo-144.png0000644361546300001440000002171711751110427022377 0ustar zhzusers‰PNG  IHDRçFâ¸sBIT|dˆ pHYs × ×B(›xtEXtSoftwarewww.inkscape.org›î< IDATxœíyxTÕùÇ?w›5“=!,AöEdUEÅÝŸŠZ•ª(nµ¶ŠkmµnhµÖµZ«U)ÖÝJµjU¨ˆb¬¬Ê „¬}2ûÜå÷ÇHÈL2É$“ ÷ó<óLrï™{ÏùÞsÏyß÷¼Gøtõ;&&Dìé ˜Ú˜2IS@& a È$!L™$„) “„0d’¦€LÂIB˜2IS@& a È$!L™$„) “„0d’¦€LÂIB˜2IS@& a È$!L™$„) “„0d’¦€LÂIB˜2I¹§+Ð øƒTí­¦¦ªY‘q8íô雃3Å‘”ó7Ô¹).*¥~_²r2’rÎÎb Ð4o¾\ËGï/gãú-x}­ÊH²Ä¸‰£™|ü$Ž:v<ƒ†äwK]¾\þ ÞùúçRV^Å€ü<¦Î˜Ìy??“ôÌ´n9g"?åä žF/‹^_ÂâEŸÐP×HÞàtF“Kz®ƒÔl;®Lšªð„)Û^Gáš*J¶Ö¢k:Y¹L>v"GLÓiG±((ŠŒbQHq9韟‡bQ:TŸ` È5ÝÊü‚sÏ™ŠÇãç˯¾ç•W?á³ek8ã¼™\xÙ9dçfvÓ7Òq~’ò¸½|ðîxç Ò&ž2¼Áíßá!¿ÊžÍµìú®ŠÝßÕ°o;j9AèÓ7›Ã†ä3hp>§Ï:‰û¶yì…}‹²E,ù÷C|÷ý.؇´4'Û¶•ðØoóï%«8ùŒi\|Å,úôËéøÅw1?JÕ×6ðÍ—k)Ù]N]m=µ5õÔÖÔÑPçÆ]ï!VE±30ýâ¤eÛ;}®P@%ÐPU-yùCT—z¨.óPSê¡r—›P@åâËgñó«ÎÃjµ´:NyI%¿šó[V.ÿ3#Fä³äÃ&5ŠÜÜôåvWòøSÿäþ—§Ç57^†+5¥ÓõO”€|^?K}ÊWŸÿ- €ô'Ît+öTgš»Ë‚Ã¥`Oµ0`DYý“óŇƒ+ÞÞÎÿ–‘“›ÉïœÇFµ(sÏ-0eÒþ0ÿª¸ŽYQYÃw¿ÌŠ/¾ã¶{¯çÈ)㻣êíò£Жï yè÷OQ[]ÏЉ9Œ˜Ü‡áGæbwµ¾ÓãÅÀ`·Ÿ¢¯=tKâ#°}Å|øü÷”ï¨gî//fö•³¯¿XÍs¾Ì†5ÃélÙUàósø ¨Çü×{+™wë³Ì8u*×Ì»,jëÖÒ2tƒ·¾Ï+/¼MÞ4fÝ2‘Œ>ýЄ E”:t쀦Ü_'d°+—lë’:ëšÁçonåë÷w2îÈ1œ7ûLÞ^ø7\wWÌ9­Uù`0LCƒ·Õ£,!I"Š"SQYÃu×?Å®â}Ü1ÿ†Ò%u‡CV@÷ß®ZÏ”s†r⥣%¡y¿O QôàQ¸ùŽè#A¼1LªA]Å*v½µc׆*–½²•½Å Ølö½Ãn`éGX- 'Ï<2æç KùÓãoñÒ ·7oûÛKK¹oþB.½æ.¸ôÿº¼ÎÑ8$T_ÛÀ]7=Ìî]%œëD†Õ§Åþ=ÞZêC?Ør²l)ô·§|D¯†­8H¸B8«cCîx°–Â:j¦‚š]„‹ŸÙÀ¤AcxæÏóš·ù!lVAZ”õú8m·„Û·—pÚY¿eöUpÎ…­[´®æselݸƒë.¹²²2æ<0¥•xBºÚâkŒÇ—ä×B:ru¸Ãõ(ñÕRâ­¥&ä!¬kQˈ> É­!Õ©Q÷«akª¸öê–­…Ýfi%]7¸îú'ۭ׈ù,~ÿ!þñÂ;¬_½)Ϋé<‡Œ€>ÿÏ*.Ÿu#7ν C så#ÇÓoXëV@Z^–C²F-§9%@Ð „pÇbo8D]ÈG™·ž]žª¨e‚ƒløG; Œ~þ­_W0dp_Æý¡Ï¢ª‹þõE«²¢(ðÚ+wÅU·#Æ æ×ןÃòVÆU>zµ+#òîk‹y÷¥xÜ^\™6ÎøÅX&œ”¤ÄÖ¾¼¿ÅQD‰t‹‡}d¢ÛE¼ã;7”—Dö÷Ÿt#ºøtkÛ÷ç÷Ë˹éê‹Zl“e‰ ΟÞáú¬úz#÷Î_Èï=„ÃnÅã à÷û;|œŽÒ+´¯²š¿?÷Ÿº UUI˲sÖ/Ç1þ¤üåXô·§Óß‘Ž@ûe;‹,Jˆ‚Šn1Ôµå^ÊvÔqÑÏf´Yî…¿-&-ÍÉì‹Oj±}ÙòµÌ5Øîyt‡D`¨ÿgLñ@ä9X<í"@ÐÐÐÐÛ-šºßÀŽQ4«_ ÃÊãþÆuj—ËÁÏ.8¿¿ò1ÓN¸™†ãó¸÷¶GYöa÷Û}&©Ú½«„__~'Û6íà–[nañ⍦¦¢ª*Æ E Ž=whÔÏ ôwfà-ØÅø<ÎZŠ„.w}F$Ʀ÷§_÷@Ó)E l€G3ðª±Åv✑¼ýîç<ñä;„B-­Ö7µøÕ×9ú¸_ò»»^䕼Æ'Ÿ|ʲeËHOOç‘{Ÿá‹e ][GIš€‚ Üñ$u5õ¼ôÒK<ùä“HR¤Ï1uêT §\5†´œØÁ]NÙÊ0W.N%ºe7^l’@Š,ÏàI êØ·ûƒí·6ýì"#R%"vÆ]:;Üz›ÄÔ,?¿çh^~s1§œy;UUõÍûš†ï%¥U\zÅ8ï¢{ÉïÀ°iSÄU1}út ¾!33ƒ'xžòÒ½qÕµ+Hš€ž}t%»Ë¸çž{¸úê«›·¿þúë¬^ó-C&ä0é”I©‹CæqÄ3Â’¿Ž¥2×±Ýaƒr¿NGŸŠý†§sÙCS0ÒC\~õ›·ûüA|øU&}-åÁJ~ùÌt¦]4œq3òyèᇚ­Íƒ báÂWðz}üáwOuܿפËqáýÝ}’ÿþç+þþ×·˜>}: ,@#ºõûýsÌ1È‘KÕ»OßÇ&’gȲ‰¨:´× xÃAyi3éÙN¸l£¦äE-÷÷;¿Âªf°sçÎæmáp˜ãŽ;޵kװ賤¤vï5uû#lÓú­x½>nºéæâxë­·P,NþáÑåQì ¸)÷Õ·ð1¹CFóP¸ ?*ÁýáºaÐnÛ¡h ÛDBýëWµy ††O á&ˆæ’Ð2cÇ1­?Ó.Î5OS<ý†¦QV^Öb›¢(Ì;]7ذvs—]C,ºÝ´îÛœtÒI­ö•——3`DF‹G—,H8d Q&¨«Ø¤¾èJ¿Ž]ØëoÙúA,bópÝ.Y°KJ›žø& ›ˆTçâE¿ŽäÕÐì"º3ºÕ|·§÷"v*V\CÛvM(V‰ã΋>=¼!i|ûÑnHKûaJÒ 'œÀ†Õ™:ãèx.¥Ót{ ´ö›ïp:Lž<¹Õ>U “~P s†ÅÁ0W.™ØÅ–wi}Ƞ¯·°¾X*B8¶ø~þuåÐϑޮx ¶@3tvyª¨zÐŒÖL¥&Œ¥4ˆ\=` heðìªØj€œ.¾þúëÛÇŒCff&ë¾ý”íÞY„ P”–b‡ÃèšAM¹·u¥¼¶]~,¥v¯ÛE@ò¶Ñsí$"^5H¹¯¾EˆlZŠD°¿5j绉{ NÙŠ$ˆH‚H–µëú$ û~ˆ L˜0=E%]v®Xtû#Ld¹õiEÁápP±3Ò×i á=ö‘/F··¯o5]FMï¦ù]H‚ˆjèµÖ­ÌÁqÎÙV‘4 èyôý‡êŠ<² Œ.Q*+¬C’EFu¿ØÁ™(¡ûí@mXëFŒA8¨QSæiÞf8¥æb@ož5Ñ•¸ÃþæŽv{äÚRÉwf’mm_¤\²³“x¬R$,%#gé¶:\)Ñ}qªª"IÝÿóvûD1ö71kÖ,¾_ñÃH 8ÈN`¨ßhGÌé6Æ€r=UÆ›eR£„d[SȰ8°H´6:({Ã(ãïñêlqkmZÛc°Sb¤K$¥Lm…—òõŒ;6êþp8µåïjº]@‚ Ä ù¼å–[e…Uï爐¨¡y»–*¡¹$ KÕ3"6£º`ë¾IÛ‚‘®<ú;Zú±²€ghª êX*‚¡ÖÍcP‹X£ÛC® #zµV-ìŸÆ·Nc[Ç0àƒgÖ¯¿þzÔ"ápIþ<Â2³Ò)..ŽºÏårñÚk¯!ðÁÓÐ㌽)÷׳©¡œB÷^ö[fÇÜ"ƒRD†¤D¡ÕãÄ6ðÆ÷Tƒl„ûDåi†sªOÖ=Aì…~l…-oŸÚ~ Ò·í¦t[·Þr+ùùÑóåGÐ64Ÿ={öàóEo).ºè"Ž;v*U%n>}es«ÈÀX4 «‚ @†E ]HUº%”ZPÓeŒ¯ð7°¥¡Oa'¥¼°žeÿØL^^=öXÌr{öìIJú—nÐa1 ƒ%K–Ä,óñÇc·;øviÿzj-Z¬à™ý8åˆÕØ.)d4,ÖbŸÎnoäH ¢pkC…î½TúZMVl‹¦ÈÆ Û¡<ÌF8WAsÅßJlû_%¯Ü½ õë×Ç,·wï^Ün7ùƒúÇ,ÓUt»€Îºàl6+÷Üsš½Yw:”––’——Ç–U¼z~Oì/ß%ÛÞ—á©}ZŽ ê‚õ¡È+–~¬’@¦UÄÙÆïgeüZ˜}FŠ<Õí^ëŸK·:Ú4ª2¡~VBýâ‹múßÒ"Þ}t5ÅÊλèÓ§õŒÜ&Þxã ÆŒw;KRú@g_x*Û·ogåÊØs”””pôÑGS¾½Žw¬d_qôì_¢ 4ßåÑôÈ´âX J‘*2Ð!Ö†cí@KvÌ †x3Ãê` #³åÈ­¹î1O•pPãã7òÉ‚Mäåõ¥¾¾žÛ{Y°`v‡§NíØÉ:ARâš’)mß¾½Ír²,óÍ7ßpÕUWÓPåçÅÛ¾`é_¿Ã[_BëØ }XK£Çï¤`7„ظCAôÉ5!úu[üØwøÛ 8“E‘©ƒœñ}å†a°á¿%<{ýrÖüg7S§N¥¼¼‹¥í«±±‘M›6qä”ñØÛIÄÐ$E@öÚP/¾ø"Ÿ¾‚¬¬l6,/áÙ_-ç«E;PÛéXÊBˆ~}bƒÖý»: A5v“"[Éwfr˜3‹,[kC¢aÑœ"†EŒ8tÛ@Õ Œv㘊7Õðâm+Yüì Uâõ×ßàË/¿lÿƒÀºuë0 ƒ£’“#()³2ú èƒ(ŠÆý™iÓ¦QUUÅK/½Ä¼yóøüÍ­¬þx7“ÿo0ãN€3=F„ ¹Ù¹)תh©-/ѧÁ†Úø:Ä’ ’ÑFf2C€à@m;e›ØîŽ­C7رv«?.fçº}(ŠÌwÞÉÃ?W]›X»v-@Ò’L%E@²"Ó§oN‡ÔÄ5×\ÕW^ÉwÜÁ3Ï<ÃòW·°üµ­Œ8ªfæ3lR. -UFÍQÓåVâiA7PÊBH5þà2!nËCTj+¼¬_VÂúå{ð5„e‰sÏ=—wß}·S–ä5kÖ0|T|S¡%isãïš÷0VoÆï÷7‡´vÃ0xûí·¹ë®»(ÞSŒ®é8R-Lr0«¾Äïóaw8(¬ô30ËJ¶«ëSìvAHMM%55•aÆõtuÚ¥ÚfOuÝ0ظ~5;wröÏNMj’š\á„SÃçóñÕòȼ­ÝÕ¶Uø©½&Ó^¯'¤l¯ô³»*МàóÃEËN;çĤÖ%©šqêqˆ’ÈòµØÞÐØXêeŸ;¾ùç?U Ã`oCˆ¥^Üþ¬éÁ€Ÿ?ø'ƒ†æ3òðöç“u%IPFfŽÃçË>Á]_×bŸnì© ²¹ÌGƒ¿ë§èêÔûT¶”û)© ¶J+üù'Kht»9íìI¯WÒLxúñ„ÃaV~úAÔý¾Fa¥-å¾wÙO•:¯Ê¦2/;öúñ…¢ßXþëu$Iâä3;ž_:Q’. ãOœŒbQøtÉ»m–ó5¶WúÙVáÿÉ É Òâl*õ²sŸ”àý&*ËK)øòs&OØ#kª&=GbŠËÉäã&ðõ+©ÙWIVnÛ&üÆ€Jc¥ŠUÉv)d¥ÈXäO.Û-øÃ:5aj<*a-¾ q¿÷º®sú¹Éí<7Ñ#¿Ä‰§®ë,ûwÜŸ ª:euA¾/ñQXé§Î«Æ\bàPBÓ¡ª1Ìæ2/›J½T6„â®i,Yôé™iLžÚý¹€¢Ñ#YZ§L?»ÃÆ»o¾Âù—]G°}fƒ¿Jƒ_EERí©‰T›tÈ´LþNƒ_Åí×ð´Nß‹ß|âÝ»™ó‹ ‘“0,=" «Õ™³f²è¥|ö¯œrÁ5ÚHB UשõêÔz#>(›,’êHs(¸¬b›³b“IHÕq4Ü> ·_EM4•>¬¯à©?=H¿yÌž;« jÙ9zl­ ŸÏÏÕ?»• ?ÄÆM[ðJx;ÒµƒØ-6EÄn‰¼lŠˆUépR߸Ñtƒ@ØÀÖ„tü!X'Ô‰›£-òÒ,\ÅÏX²d ?}WÒ“‹Heªw8ìüêö¹Ê¨1Ãxü…û9÷¢ÓÙ¼yS§Nåºë®£®®®ÍÏJ¼ú꫌7–•+W2}æþôÜ=íŠÚÿî’A·@žF/Á@|³1Jv—óÒ3¯±móNrssxüñ'˜3gN7×°ûøþûï™?>‹-"ÅåäÚy—uh‘8«ÍBŠ«û×8k‹P ÄÛ¿]Ã0 –ÿçKÞ\ðžF/“&MâÊ+¯ä’K.!33³kÚ5†ÁÒ¥KùóŸÿ̲eË7ép®¿õ 2²¢/â §ËÍÖ}ëœÅC HS5êë¢'Ól w}#o.|U+V ±X,œ}öÙÌ;—ÓO?=)iþ;‚ÇãaáÂ…<ýôÓ"Š"GNϳNâð±Ë¦šž‘š”lômÑãht{;·H¬ß à‹5¬øìk¶nŒd@Ëí“ËœËæpùå—3nܸ®¬j‡ðù|°téR^~ù%Ü8SœxÚñœvö rúduúØ«‚+µ›V)ê½B@†nP_×€ž y_e5+>ýš/–Pµ7’×9-=I'1qâĿ׍x¿31@IDATQ£š—ïJª««ùꫯX¹r%+W®díÚµ¨jd„Ù??ÓÏ=‰é3§`Mð±#ŠéKžÕ]ô Alƒbg0 ƒ-ßòÍWk)*,¦xW)Áàu»ÝÎØ±c™8q"ƒ "--ôôtÒÒÒš_Mÿ§¤¤D¬åuuÔÔÔD}UTTPPPÀÖ­[›-ê6»á£3zÌp7‚‘c†u™Õ¸7›è5‚Hœ´ßÛþ*…Å0 ÊK+)Ú±‡¢{ؽ³„Ý;KârJŠ¢ˆaíæ JËHeÔ˜aŒ3Œ‘c†1hh~§sA¶…ÝiÃáèYãáô*ƒ!¼^’aâØWYMõ¾Zü>?>_¿×±/°ÿåÇç$MIuâJM!Åå$ÅåÄ•êÄérâr¥àJK!=#úÂo]… €ÓåÄjíyêô®¡ ‘)?’$ÒØàI¸OÔ¹yÙäæewë9ºQp¥¥ôº‘%ôKt4dY&-#‹µw<ç{‹U!-#µWŠza Ô„(ЏRSPÃ*^¯µ ÙY‘q:íÈIX4.zwíˆ|‘ié.BÁ>¯íG>ÝG’DN;–^Ö׉E¯P«‹ÕB(& …[c 7!€Å¢`µY{Íð<^5a±(X, †n †‚¨ê¡™ÑL–%¬6+V«¥W;Ã!' &QÀf·b³[ÑTP8ŒV ‡UŒ^-ˆŠ"#+2Eéq?VWpÈ è@$YÂ.K°ß¾¦©á°Jx¿¨ºÛ QEQPùG!˜ƒùQè`$YB’%löˆÏÉ0 4MG×44MGÛÿ®kZÂâEQ’$iÿ{Óÿ=ðž ~”:A" ˜b´WÅþeö»-t_‚Ðü¢ùo~iŸ„€Ú£IQ—ð1i“^i‰69t0d’¦€LÂIB˜2IS@& a È$!L™$„) “„0d’¦€LÂIB˜2IS@& a È$!L™$„) “„0d’¦€LÂIB˜2IS@& a È$!L™$„) “„0d’ÿf×¶Ú½Id½IEND®B`‚guacamole-0.6.0/src/main/webapp/images/protocol-icons/0000755361546300001440000000000011751110427021432 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/protocol-icons/tango/0000755361546300001440000000000011751110427022542 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/protocol-icons/tango/terminal.png0000644361546300001440000000221411751110427025062 0ustar zhzusers‰PNG  IHDRàw=øbKGDùC» pHYs  šœ vpAgxL¥¦µIDATHǵ•Yh]U†¿s÷¾SnMÀˆE£ Š•ª8Ñ[ŠHÕ"¢jÄ’>8€‚âcDŠˆ‘è“ôM)øôÅ:àÔ;Ð$M V’Tjû’Üf¸¹gÜkùpÎ=¹÷&Ð\pΞÿ¿þ¯}6üÏá •zûkЏâ\ˆ ¢¤­CEp"ˆ â$›A%kÚ¢ê Œ\ñ•áááÐôõW‡nzqËC[«•juuºvvª‚j«UT•¦ïW¿ýîë]c“c àu Gñž‡ÜR=1~Œññ‰–0Ð\ް¶¥  Žcœ¬1K†÷¿‡µEŸƒO?9À¶÷R«b‡%í(– Æçr{3 q’²/.4Øùô lÞÎчØúø&fëi;R í“c%Îʾâ8Š1Öblnáå7_àô_'ñ€Zo¥Ó¯Ó§ÖÐÚTAÐ »â˜(аÖ Ïî|ªÓå.ßWÙ”E$Xkq.é´ÈIB…Xc)˜ÅòŠ×gÆ.ÐKQú*ÏópNº-JïàÂù©zþAϺ2—^ÁK¡s"BÇÌÌœeä«‘ôgw¡ªLOÏP¶¥N”`vn¶Ò\Zæç~ºlÀ^2ßï˜úgо¾^úû®£Z©rýúõˆ¸fN†á—üþ¹m>V2Æä·–—KNÿ?ŠkõÅ‘î¾KظñÎìtÄqÄÉɉ8 ãor‚?~ýýçÜÍSÓS›Ëår©í:h7 Ãеúé~ºÈ‚ÃÇGÿÜÛ^cýÀµ@oF걺8/¹Ù“‹@˜k”€b8WIÐj ¢+ĸòø XH #º%tEXtcreate-date2009-06-20T12:33:12+00:00± ïB%tEXtmodify-date2009-06-20T12:33:12+00:00vIEND®B`‚guacamole-0.6.0/src/main/webapp/images/protocol-icons/tango/video-display.png0000644361546300001440000000207011751110427026020 0ustar zhzusers‰PNG  IHDRàw=øbKGDÿÿÿ ½§“ pHYs × ×B(›x vpAgxL¥¦³‚sîb‚,ÍP¯x5¨Ïus‘Š÷¸±²Bšv(Šr” MÓÞd[G—!ŽŒÊˆx¯?MGdY޵v” Ïóž³h8Í¿ µÞ "`H³”ª[M*ÃÜ”ãä =ÇŽ8rä¹çcf€D”0Áȳœv»=©Àøäãñ^Æà ÉÌ4ÖYÔ{²N:¾x¯Ì`‚F*©Šæq3N’g'O³*èA4¢`8šÍ&EQXkm9ò~mm탪ª>‘K_×QÝÞÚÚz÷¢ 0$I’̽þæ­½›7_ WWWqΡ(hoî½zþöíímù~gçÕ½Ÿ÷ö€ H‚ÞåÀø&À,0WUÕìüÕùà¤uòBó䨴;c0äYίûûììÞÑÝÝ;røûá·?|·óuÝœl Þ½HA <ÌÔkcaaá¥k ×^ž]™¿zå)g]Ðl6ÿ:mµþhµZwŽþü8΀N½¶€ò"‚þÁÇ5É åYQÔ֜յ|0 !èׇŸ¾t[çžþÜÓ¡ÚÕüŠe ^ %tEXtcreate-date2009-06-20T12:33:15+00:00t®ÑÌ%tEXtmodify-date2009-06-20T12:33:15+00:00+§øtEXtSoftwarewww.inkscape.org›î<IEND®B`‚guacamole-0.6.0/src/main/webapp/images/noguacamole-logo-24.png0000644361546300001440000000233511751110427022644 0ustar zhzusers‰PNG  IHDRàw=øsBIT|dˆ pHYsììu85tEXtSoftwarewww.inkscape.org›î<ZIDATH‰½•MLeÇÿï;³Ë×vaåc+PbL ¥„/9 MÜô@Io„ƒ‘€‰iO&š&ƃñdzQcC̃ÄXè‰öÄ—àFhÓJWwØ¥ÓewÙÙμóx`f³»Åz0u’'ÏæýÿþÏûÌû¼Œˆð<þ\Õÿ€üo0ÆJx^:uêT‹"µ¹¹yooooÀ.ež¹¾°Œ±Òöööᦦ¦‹Dt®¸¸X©««+õxdŒ­ƒÁÙµµµïˆ(q"@Q”úúú®¹\®×š››k˜ÏçƒÛí†iš8Á8çˆÇ㘛›ÃÖÖ‚Áàn4]ºyóæåd2¹ŸôööŽú|¾êëë_îííÅÙ³g!„€¦i>À9‡$Iàœ# aaaûûûܸqã‹¥¥¥ÏX[[ÛàÕ«Wý¡PHÁ0Œ¬¸m1ö@’$Ȳ Î9&''ÑÕÕ•ž˜˜‘»ºº.µ´´(š¦Á4M†‘äVADYH.@’¤¼*eYFSS<OIww÷e¹±±ñtYYt]‡aÙ,„€aÙŹUl÷¶ MÓ ( ¼^oÇU·ÛݘH$F¡(Jä¤>Ø€B÷Ddÿa¨®®F:~$‡Ãá;Ú‡‡‡1== EQÐÓÓ]ןª"À9‡"ÏýÊÊ TUÅèè(@UÕ=9/ïîî¾Y[[‹‘‘lll`vv©T ^¯gΜàœ#‰ ‰Àápàüùóhmm" ®2uþo¾½ýÖÈU…§p}}@ ¯ YqY–ÑÙÙ‰ŽŽŽ§Nðõë×Õ¡¡¡6ÞyÿãÛU„0É4ÿ{e ºôÞG«Dt<‹¢ÛÁûT­u?žA•â@¥"Ã!±“‡Ë3žŒaâQÒ@4¡c+tÿ` »HðîW¿¯þüzsÇ«•T E2G±ƒ£ØÁPâ<~·¡Â$è"?šÀQæx ø~zû·_æ>ÌÀ¬Ïç»öé积Tx^tŸO)t(LÀ \SBøýþ½™™™ùåååw< ‘idÕJðšššîžžž·;/\¸Pît:OÜ’T*…………é©©_oݺõI:Þ`ÈØ#¢'6€¨ X}aPUUuÎëõö¹\.Ûí.¯¨¨¨p8NUUÅb±ƒX,ö×ööö|2™¼k1 €p@D"·§UEÉ ns²-F–ca…àÀ"2òšl7ÚaÈ•r–¨a‰Ú6(Gôo¤ËØE|Ú½qIEND®B`‚guacamole-0.6.0/src/main/webapp/images/menu-icons/0000755361546300001440000000000011751110427020535 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/menu-icons/tango/0000755361546300001440000000000011751110427021645 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/menu-icons/tango/edit-paste.png0000644361546300001440000001317611751110427024422 0ustar zhzusers‰PNG  IHDR€€Ã>aËsBIT|dˆ pHYs$é$éP$çøtEXtSoftwarewww.inkscape.org›î<tEXtTitleEdit Paste¤bEitEXtAuthorAndreas Nilsson+ïä£tEXtCreation Time2005-10-10}þóØItEXtCopyrightPublic Domain http://creativecommons.org/licenses/publicdomain/YÃþÊDIDATxœí]KŒäÆyþŠÏî}Ììc$Í:QÖ’ ‘ıdŲÃvAè6È!ÐÉ7Á'È!‚r ÇÑ!€'†÷ #9CY€…•´Škw‘hZÍL?¦»ù,Vl²ù(’Åîb7{4?À&§ø³ªº¾ÿÿëÿÿªaÆÖ™ööö¶|ÀË.-©ÙOü-€¿~õÕW{Kj³ÒVÝ ôß]r›—mþé’Û–JÇA^B!Ki1†©å|'°rºŠ¢àÊ•œ;wºÑƃnÞ¼JiÜö:Óq¡xòÉ]èºÚh;žGqëÖÝFÛX&+¸ti†¡ƒÒ€lç–@U¸®·´©ft¬àæÍ i \×…ìè†Ã0àûÁ‰´•îÞýŠ¢À¶-A µnEQÐét¥×»jjµ¼ôÒKç ÃøsBÈïx€RÄFJ£ÚÉkcoogj2ÆÞp]÷Ï^{íµÃÆ:µ èªiooï ¦i¾Où6€'PÑWB…@QšûJŠ¢@Q„ÂMÀ„o›¦ùþÞÞÞëÔ‚Dæ™+_yñàQ¿À”Ý)¨¦¾¿ñÕ¿dŠþ9ØÜ<‹Ë—/AÓŠ=|UUÑéè€ÉdÔÈpêTbÚ¶…\ò}ŠÛ·?E¿?ÀûøâøÍï‚:žÔN…d¸ö½«ŸÜœçáÚðÊ‹ü6€اArõm 6~ °»{?|™ËW¤‰–5.hú4ê̪ª¢ÛÝÈ´_þÌ­[ãúõ€sãw`x÷ŬOoøãï]ýäz‡j À+/>ð5?Ðh°=é>бùy¨ªŠ^ø:%9ÒÕ¨YÖA€z¾A\2€Sµžg ¸zõ PJqʾ û—µú0Y¾TG„ÀW^|Àð}ªª|ñ‘.vÎPœryâ÷³{§ñAètLt:]€ç¹ðAøÍèbç¼^³›Õă–Ó4¦×EÚ[^1¶b çŸ¯~Î0Lèº1ísÈÏ`y -ó<ã^ ST߯^2#B¬¤ @7º1û=²ƒÛx#r¡§è BöM³oQ‘öæSÚÙCõž¯7•†]7§Ï…Œûäa¼­> M­—zÑýCœ™\GÇþ?³1‹|·+Û:¨i¯¬ Aj$äàÞ#ß›Ó$ÓnÍ€/÷Σ±üççN]7a‘åšZ¢‚*]¥ÞSã2lã2Üÿgh~?¬Kbš»¸GÁÿÚï|= Qzã?~ŠÃƒ¯½SdB»ô IþFžw>ž">Ó â„o~ã[µÆÂ§>Þ|ógð<ãîc8wôóø2Ä p1 —¾òìWk;Yï^{@8¸¶mdžmOJ€Ž(1@BQ^Ÿˆåy( ,uÿüù xê‹O£Óé”5˜£·ß~ žç*<ø$ ÕkŒ1ض°¬ ,kÂå­K€KXÀÊø›M%3AGø­µ<¢”Æ`V‘ï‡SÆ'´“‰…ÉdŒ²¯¥|x˜€ ‰ðÌxÓ|éäU˜CG Ô¯¬+Œ"ø‘–Lð% c ¾_ýå™Ö„ÀÀ`ÛcL&£D}¹8mVóÌÏW ¢¨PU¡E‰|¾O…Æ@×ù~B|¾`˧€ ¶–ec<'ï&øJkæ)¯OÜéÔ4-vö¤NeàÏÙL+ 2”pÝ0¹¡( 66Ûð¹¬Ðu#Öô(д“gš?ïW“.ŒaÞ:¦Ë—wŽãÂqz&÷|[œÀ\h²>Zºl¾j¡)®EÂXÏ%Œs}~9‰˜û*ø‹Ž¸<'PR‡ŽÕ×úÞÀæ€\:ò|ÕÓzÞÄ­Èð:t2 Æô5€¹k©y™Þé:’4s_öl®ŽÅHZ í ,Zëú‘lsÏ}>WÏâ$-@Bçîܹƒáp¸xEK zæ>äÝÙÙÁÙ³g+øªëjE೪ù2Íý<[Ò²ÍÏ;ô‹ üÏ‚ È4÷ÂY9à·ÃÄÍ¥ƒÛBó˜ûEùrÏM?Zȃ Ñ—mîeßÚ0pQÚÚÚ*\>]65aîÃÕÁây¾pÓgøs޽ô0P•-¡.‹šsòê8ƒ™û‚|uHj¬4°jï^¼Ý¶8Ç üåz÷"ÿ€RtGÖXËÛ<ýXGüÛ¡õ"Y Ä©-a ÀqPìšeYð¼&^©—§ei½®ëèv»µµžËÙ¦00ï.Þµ^¯×x*X抈¹?sæ,vv²Žmž·t7ÐôƒÇ2ï¨KX– ~ÓÔsŸçŠ2àËo‰aà:€ßN'OhèÎ:ÓF1XE —oêi}qݬ¢uq’ ΀ߢH`=Í}• &À_U˜‹G!üììì,TÇú™{‘þ¦Áo‡@»4¿=澊‡Ï[Ä…Ö­g…Ë¥u7÷B»¦2‡Wêó;6 uaÍý"ãÕŠåàU‚ߎ;ù澸ñdØ]óÙjåBã7„·Õ^s¿µµÅYÎÕzVhѲà·Ç LvHB¯lÛ.L¯ƒ¹?}útBê˜û$/e™à í nb&h‡Ö7eîYŠ'÷XzY-þÊ}€¥ß~­/âÕú,ßì;g„#ñ˜ŒÈ«‘]Á²¤`Ù+v2s÷óŸ®#cE«8­ËôNM³ƒ3gVmî󼢿¾ü­ ÕÀ‡÷ ’‘@aÄIîB$€ÏÃùó[¶Jx—Ö•úK€§˜·IsŸo+ádPN¿r|ðçé×qMá&yÅ$ >Kµ#|@Ɔ,~;¼û<¯œn=à³Q@aîv‹wë³èÝóûÅë§,Ñ…ºc]D’w‹m=1÷3Þª( 0Ï"8ÖU$õ%QU5÷·oGïhƒ¹%qëðÐCâÌ™üûø¯’eù“$ðiy€Y‡Êg/Q­/ç]vL_MõÌ=/ú]IJßG” > iK˜ ï´¾“×”¹¯C‹›û$àU_Æw&þ¨Ó¯vy÷¢TÏ,>:—_aÉZZxO`ü7ÇY)­£UÞ}ZÌ»òš^.,ñÕ‹\Ù¼$-@ø[[[œˆ¿½Þ}p·Ûå‚^9@.ø€ì7„°òމj}§ÓE§“_Oç×ÅéL%_šW^L_ÖUž-ãÖž¿>Pü6˜û&€_ÌÜM„äÛ– >ÐЮàº}[ÅŠÝ2Ì}t1÷<¾Âµ‰qàÊww­¯«ùi+PÈ •í .>ù~€U;y¼7zV9y¢Z^U–MùÈ´ˆ{§"€öz= ¼M¡M H¹Æ§ ~L¿HXb\™”cËQs¿XÂWÆÄØ¢Z_‡š7÷<ž*¾ôujŸ é¿(:Ç–ÕUÆÛö®¬²ä¹IjüE‘ÉíMÍx÷u¨ž3ȳF²Açñ¤£€f©¡-ab/~ùs}º=yæ~Ѳ¦e@þ‹"Y<†ð»T:+ˆÞЦ˜¾ -/ãcŒ!‚Üw•MÒRÁ@‘æ00F<•òäyåð…¼‹x÷"<¢eðŒ1†ð¨€4HøÏ ÙÀ¢¢4 ›¥4eÅômNáÎk! h ¾ëºøá~8ë_÷R›Ã@>øaï¿]—›Ì)â]ÔÜ‹ðˆ”A0><ß½w?ù××Ñë÷fýò'"_ª6I3à³ d IjÚªµ^ÞŠÝ¢ÂÂ¥t*7nÝÄ{ï_ÃG7>Ê+M; |„ÀœÌ}O°m ¶mÃvØö“‰…ƒÃÜ¿w?¹˲øýXPýç F~>>uŸ~›Ì}tž`Çuð£ÿ † `ñN:û›ð|¾ï‹t`è\ÏõSøÉúÔÌÏÇgæ€Ôþöjý¼š¯( î}r·º¤( tM‡¢(ÐtºªÃÔML¬I,¤álp?Ÿ¹Íø×© ø‹xe8y2œ:M Ÿªª0t# ]ס©TUƒ¦k0t†®CÓt¨š EQоïƒ ¶mÃ÷}8Žƒáx× Ê„kóP#»‚S÷Ëø¼§Wgî)S%®ëÜžyúËP%Ú%É÷ýøp¶m# A ¾çy8ìÇcåÚ.TUIµ#›¤n Kœ²w ËÚ`îy<¢|š¦Á÷}Ð 5–CAÄÀ{žÇq`YV ü üx~¸Â÷(†½¶.lVñ¨‘]ÁIÂPÝ(`ÆÛæ»hð}š¶ ‰Rj÷ø(Ô£”Âó<¸®›²¾ï£?ìÁõ@@õ‡ ”6¾ ´Ðÿð4Ÿ&ÏáµHíͧpe„xª¦N˜Å‹Èó< ƒTŸ’V Òøèz8Àv­˜oØëÃ÷)–AKøÝ@ëÓ×)Ó´Ðìg-@’(¥95ÿ¨ǵãïÔ?èÃ÷|hš ]7ªbAjæwSž?]W˺­ØAu „qÿLË#J‚ŸÔzÏóÐ?êÁóÝxœú‡¸Ž Ó4Ðét ëeï’CR^Uê¥}€âÊd¦pëšñºeÉnä¡3°ÔÜ€«ñ¡à ÔNA ЇçºètL˜¦‰NÇ„¦épýYB¨ ’û†n$÷Òå"m¬ÞÜGeû¢Ã›&l4MKixVã£cl1LS»”ú8ü´0†N§k¿aÐ Þ¨Ù_Okü]ÁùÀrͽHYrµ.y¸n(ª¢ÀuÝ8ÌË A¨õýØÓ×uÑßïCUU˜¦iÂ0 Fx­éŽFG"575³+˜s/ɱ®+ve@ˆÛ¶¹Z? p4¦"¢Éh‚ÑpÃÐsÀ›f$zÊú4A ì ΛúY6P¤¾úæ>û· käÍ}V(õcŸƒmÛÂáà0vôÀs} zÔG§c&@7Œ¨Ìh±˜¡bð«RÁéZ–•­*ãÍÓ~+ñJ{¤ 78Äh|çñc G¡iºÝn¬ùYà#X  ŽŠEaðãÚ"ÁÉ‚“=‹–%ïeµ¼ÈܬRŽŽó3 —‡‡Ã†£|: ÛŰ?õilòCðu†™2ûi`],@2ËÌîE÷³¹r^–Hƒ–„ìýd™¨°ðîG{ñøÚÏrÓA©¥àñxŒ^¿–ظŽúG°&Aâeçúôh ˜Ý[†Zf"„(4`Ü•øI8)õsüɯUSCvxf;¹Çó¢#¹ª6«#Òz J}?Ûg‡ï{¹2DZðεkq}ŽkÇà3Æ`M,ìßÛ‡5± i*ºÝ.ºÝ.:ÎôºÓ °,:f|º¦Í%®ÏtBˆN©Ä·ÔB´)êQ¦«J¦3,s9_÷âò¿ÿ‡¿kt9³.±¢uká ¤Or±ð :¦ s;œò² :ž“JðY®$§—++"Çc€.Ÿâðãï)ã ÀTr"ðu*¥ÐP0%e5¿;þÃ3Ï€)Fl.M'®ÔV-L·ï€¿*,^.Jþ‡ÂÏ{”éL„=Q¨SAð²u瀢"=) WXrfŸ€‡K÷ÿ “S»ðô ÜN®Ýã´)\¯ÀsI®ôwÉ×Ñ쬜!û¤÷_-þ­,ùiP¦@!KHA ÔŒæGà‡ÀòÂÂ?º&ÔÂÆð¹½³çØì:{/SW*Ýœ½—­+ヤÛ,¹7-¨êÏRÁŸ“¦Êj`ÖÝT· !n$YPÕÄ‘1ÆÈ¹€eþŽøëB‹ñc‰#H* $`ªý3“‘<Ô 1åE¤©Ûg3¡]ü‘)CAY™ÍÞ+È2ˆµ)«?-#@¢’T” ügLŽÉ#-‰:¹4q‚;8^:ôñ+u(8wª=þg™îõg«†ƒ1½‹éœ?-*Ä5‰+;>ºç¼‹Ð|àÝ[ôFTpE¤ núøåhWœ_Ü´>ÀÌܳÄ9yHXÆ#„MCÖ\wnY·Ÿ~äÔ÷ÏvÕ?Ûþý! Mž°!²åAÌkŸ£N)Lí Hî@Û?òÿfÿÈ#Ä1:‚Ä9:„“†=ÿìùÒYmãŸÝü«®¡üAƒß鄿¤‘üãþóà/\Ÿ¹|çì1Æb‘É g³Bgÿè+›Ïßо¡kä1˜Ó²ó cë5µžŠó¯`lÇgÞxÿöãŸÞDtÑ‘( Ž "ð“a¡š9²ÓE²Ï æÄNhJÑ<]gC;š9|Î9•ЍPb†03Ⱦü¤c)mËÙgœ¦aòÝã EÉ: 1c¸Be ³àG!GÖœ€<Š–U³Þ|Ò±‹¡ô$ @îÁP TðÁŽ“)@Y€”̃åÜPYq¸¤y"rˆ‰jt]ú¯£¬ýÛÖPIEND®B`‚guacamole-0.6.0/src/main/webapp/images/menu-icons/tango/input-keyboard.png0000644361546300001440000001712111751110427025312 0ustar zhzusers‰PNG  IHDR€€Ã>aËsBIT|dˆ pHYs$é$éP$çøtEXtSoftwarewww.inkscape.org›î<tEXtTitleInput - Keyboardt™>ÔtEXtAuthorJakub Steineræû÷/"tEXtSourcehttp://jimmac.musichall.cz/õiÈÄItEXtCopyrightPublic Domain http://creativecommons.org/licenses/publicdomain/YÃþÊ IDATxœí}ml×¹Þsff¿¸»äò›?D‘"%Q”(™²%K¶« ¹r€&üþ?š_Y\÷¢€ ÃtÅ­¬(`[6R$q#Do›( '÷A;E\)n¬Ä‰*)eÓ¾´$S”(-¿µËýš™·?fÏáììììðkI‡ûƒÙ=sÎ;sžyß÷¼ç³ŒˆPÁö…´ÙT°¹¨`›£B€mŽ ¶9*Øæ¨`›£B€mŽ ¶9*Øæ¨`›£B€mŽ ¶9*Øæ¨`›£B€mŽ ¶9*Øæ¨`›£B€mŽ ¶9”Í`5x饗jE0@D5Œ1?€c,ÀCDqÓfÌÑ,cl<Oœ>}ZßLÙ·Ø%+ø•W^épB’¤t1Æt]×UƘ@ Ðc?ÎS‰Hü !IÒ?1Æ>YXX¸zúôéÌæ]ÑÖÀ–'ÀK/½Ôéñxž!¢Èu4iŒ1•1¦Ñ"clˆsŸŒ±*" Qµ$Iàå­dÐuýOŒ±?½ð ‰M½ÈMÄ–%À~ô£úT*õ7Œ±¯€©óâ.2Æþ¤iÚÿûö·¿=åTÏ믿J$ÍŠ¢ôQ®ëÍ’$iD¤åêL3Æ>”eùÏ=÷ÜüÆ_ÙÖ–$ÀÙ³g2Æ^àòz¿FD?I$OŸ>­®¶î×_=”J¥0DD^®¨Œ±OÝê/ [ޝ½öÚDôï01öúðð𻴎¾ñÆžùùùAY–Q˜›ˆœi‰Ñh<ÿ§2ú @Ù;cKàÕW_ýWž#"îÜý}ggç÷Ÿzê)m›e/¿ürŸ,ËG4˜ýÆXŠ16žN§Ç¾÷½ïÍlTûgΜñ´¶¶Ò3Ï<£¢Ì$Ø2xíµ×þ EaxòY"zixxø¿”S†—_~ycl@–å]dÀìlÆ$IWåÞ³Ï>{kè(Æ{ñÅ=”ÆÆF)‹éÔþþ~mƒÉ^(ËV À«¯¾ú8€ŸÀPùIÆØðóÏ?ÿÖfÉsæÌ0ì“$i®ë!óB’$M×õŒ$I3ªªÎXe9£ªj¶¶¶6{ç΀úâ‹/ÒücÅëõÊÓÓÓ²®ëIº®+Š¢xü~¿¦ªª¦(ŠšN§µ;wfŸ~úéìzš97Øt|ÿûßoÕ4í]Õ²Dô­^xáÝMÊ„œ|½ÚˆˆrP%ICRN®1dYÖTUUeYÖcª®ëš®ëcLÕ4McŒ©>ŸO[ZZRC¡Pvvv6µY1‰M%À™3g¤P(ôDôpÎÿáðððØ4ðƒüÀ—H$Z½^o­®ë5’$…€w0ï|ÞÑœŠ¢ˆãš¦i’$©Š¢¤<O"‹¥Ö2¢Ylj(8?GDæ¾ËñxüåÍ”Ç Ï>ûlÀÜÎ[8 úE‘eY–3™ŒÌ“ˆHbŒe4MË(Š’Ñu=ë÷ûÕ––µÜvÞ ›¦Μ9S …>P`†1vòù矟Øa¶16m60 Ec50œâÿTéüÍÁ¦à7Þðø×DĤ2™ÌÈfÈQÁ&`qqñ¯´ˆè¿~÷»ßÛ 9*Ø$0Æ^€úÔc?Ü *0Pv¼òÊ+‡ æÚþÅðððÍrËPÁ2ÊNÆØÉåì”»ý òQvH’t2÷QÏd2ï•»ý òQVœ9sF"¢Çr_¯Tœ¿ÍGY ‡ÔýŸr¶]=ÊJ":)–¤ ¶ÊJÆØþ9›ÍVìÿ@¹5ÀŽÜÇùï|ç; ål»{”{КÛO–¹Ý Š ÜØŒ± ¶ÊF€³gÏ„€ˆn—«Ý œQ6ȲÌÕ?ˆ¨¢¶Ö5!$vèà±þ‰Dª««_€T*õÃ{÷îý¯ukø/ àÆÈÈÈìF5².ˆF£øÏXvò*X_|àïFFF~½Þ¯™ÑhôYÿÆôn‹7FFFþåzV¸&D£Ñ=®ð1Æðå/GŽßï‡,Ë`lõœ°ÊµÒïvÇíʸ9VªÌJË›¿Û×4 ªªbqq—/_Æ•+WÌEþýÈÈÈ¿-h`•X+þ'€'`xxýýý«®kµr¬ô<7åK•qúÝ-ÉVrüöíÛ8{ö,2ñêÀ###—…t‰U¢Ñh5€¯@__öíÛçú\"*ØV·ç¹mÇ©ŒSn+%{©:Z[[ñÌ3Ϙ«ù¦ã…¯ky/à¯xàK_ú’P÷ÉdKKK®;Õª ˹ß̶d’$ Œ1ƒA´··C–eôöö"‰`~~þÀ°Ó}u‹µÄNð»wï§R©-Ñùn¶–aµ2q`~~wîÜÇzè!~ëÚ¢Ñ(ŸWYÖB€ãàõzQ]] Ðušæî¥—µÜ@ë÷­Ð¹º®cvv““W‘L.:ʤªiܽû)¦§¯CU3Žu/,,ˆïÝÝÝæ[xÈÕ.U™€h4êpöìÙY–ªêî5·/’:vSööíkxÿýÿ¢4šš€ñq@UÛñÈ# Yöä•¿|ùqýúðû MM W¯MM'±wï—mëÏf³H§Óðx‡×û¹h3•Šã¡‡ZZòïßttüï¢mp§Z–etttðÓ6ÏxchllÈ Éd°´´”w!#·l›8¶¸¸˜÷t€ÇãÏç³U…ÖÌOˆ™LÆ–ŒÖ:cH&“rJ’$ÌšÓP]í…±ŽU!$).Êy<~ƒ¶Åàñ$‹,™\þm×®]øüóÏ`w4 ŒŒÄíkt‡5 ¥¥^¯ÀòÓÿù矣©© @ à¤D"¥¥%466"C–emîa||»víܽ{---ðù|e3™ b±@DXXX@ss³­Ð·oßF8`ÜÔH$‚P(dÛþØØššš\i]»þ€ßض©ë^Q®©©Ùl=ŒL­å|¢œµ ó°º­­ŸÂ`¼`ó;Û†]bÅ& îÐ<ð€8Î àñxІ€ý~?¦¦ŒØîÞ½+Ècg³YE)Z§×ëÅ‚Ð&Å:vìØÉÉIA§ö#‘ˆðiJ‘ þ ‰ýõ,-@*ÕWÞëýd³VÒ1Äbÿ¼¨yÊd2Ð4-G¢&ó‰k6«ÑÂþïÝ»Wä͆Ъª‚ˆJ=Òé4E¢8‹¹lcS%…O§ÓŒ!k©ö—––M¹í¹¹ÅÅ9ø|7ADH§w"›­ß©šV…[·ž‡×;¯÷6²Ù¤ÓíÐ4ŸcÉdUUU¨««3‹¹f¬Æ |˜رÈE˜íÿÄ„ókþ÷îÝÌÌ8¯ºvóæMqsoݺåXvrÒÈ/I§Ó¸ÿ~Ñr‰DBØÓééi×í»u0U5‚xü ‰Á\ç#Œ„Tª‹‹CXZê)ÙùÀ²àóù‰D¸˜›§ªªª …ÄÓÌoÆoû[ÌÏϨbMÓ066†L&“{bæðË_þ½½½ZãîÝ»¸xñ"zzz@D¸páæççÑbqŸ5MçŸ~*LáÍ7ßÄáÇ |‹D"Ë—/£¯¯0;;[²ý'Ÿ|ÀÖˆ9,--¡¶¶ÐÕÕ…Ë—/À@4•GFFV½äÌŠFƒÀÁƒ…]æj«ªßý®¸_Â;•1†k×®áÚµk%ÛÍd2xÿý÷‹þÞÞÞÀ°Ý÷îÝÃ;ï¼S´ìž={ÄMuÓþFvêJöæ‘@GG'€À^£Žပš€‡È°ÿ²ÓÃ5Àè`'tvvæí‹¡¾¾UUU "óØ×ííí "466ÚŽ8cرcˆH˜¯b¨­­…ßï°öØÃzìù YµëšÌÀJM€°ÿ;wîš½åÇõõõ˜žžÂÆÍïèèÀàà ˆ½½½øêW¿ŠëׯC×õ¼²¡PH”#"<öØc‡Ã¶~ÃŽ;°ÿ~£…¯}ík¸víZC(Iz{{żEWW{ì1LLLäu`˜·}ûö•EõÛ›å!2æÒé4¼^/êëëÍ—vÀÏ nŒK¬”Ç£3ëëë…`æ …B8yò$ˆét:/ DDH$ðûýðz½ÀÀÀ€PqÖPr<GUUŽ?.n ¯“·™Íf¡ª*|>š››ÅPIUÕ‚:Óé´ôôõõ¡··W”µÞxUU]¬{ó¨Å,#ÿÎ1Æ (JAÇóÄ;?Àãñ  Áãñð:˪ŽFø—_$WÿVa'''ÑÚÚŠššš‚Jt]Ç7°sçNfffŠŽßçææÀƒÏçC:FUUlË~òÉ'hiiNfWW—m9]×ñÑG‰6³Ù,Z[íóYçææ°°°PE´î¹&ljjÁ&3‰ÆÇÇ…sšÍfÑÓÓ§ wïÞÅÔÔTA›©TJh°ÎÎNŒk$€k —ÿWƒƒË“üÉáßùÞiœ-I’ë&“Ikp#µµµ"x3;;[4xæ€k§Ø$-_v*•*]XÛŸueï5M³í|ƒ":ªë:š››m;š››mÃÞÜ$"áøhˆF£í¶¹ÀJœ@aÿ¹' ¨º*•ÊÍF2™,Y–JE7®TüF¦ÓiײòóŠíKÁ€x8ªªªËšeä›™Ò®Z ¬„"È'ZŽXÎMXéº.ÂÃvH¥R˜ŸŸ8–VŒ‹öoÞt^{Š;nÚŸ5b÷¥HÀËÃíÛ·…|Nmšë2·Á}"²šÁU`%>ÀÃPSS#†gÅì?attÓÓÓhkkË{ˆŒ‰ž¹¹9Qþç?ÿ98 ìG*•‡~ˆÝ»w‹ï?ýéOÑßß_ â§§§qõêU|ãß\½z³³³EÛŸ™™ÁÐЈ¨dû|˜i½F뱜MÆ®]» ´ÊÄÄþøÇ?âÔ©S "üæ7¿Á£>jõè‘Íf1::Š™™1ü5·“L& ÍÑ@`£ FkôÀ¡CËm™ÇÿÅH0:j£àÎC<Ç… eàõÞ¹swîÜ)ZÎ<5ìÔ~$¦¢TûÅ`Ýg³Y¼ûnñ•îÍSá±X ¿øÅ/Û´ÖÏ  Iš››q÷î]  &à(/»gÏqÐi¶Ì’¿V€®®.ª««­l.Z–ÇŠ¡¦¦F8a&'Émmm "„B¡¢Ž‡yÎÃio™¨)åJ’T m¬¨©©±u4yþ™§†»£Ñ¨óE[ ì¿ùip2ÇGmm­­­kjj!YÆž|òIŒŽŽ$‘H’„îînaïðÄOØü~¿ 'á@MM˜ô1—mhhÈ"ž:u Ÿ~úiAF³$IhooG]]+ ÐÝÝd2‰{÷îø*áp{÷î÷kppccc)ô<ɦ££Ã¶T*%FX&Gçüß‚›]n ð0`xÙœÅæÀI,C0Ì›€‘eû÷ïG}}}žÓ877‡ÆÆÆ<Ùï÷ÃçóaaaA˜>k}ªÂá0jkk¡išð¤ãñ8êêê &€jkkqëÖ-„B!aTUEKKKÇÞØØˆ©©)1Á•Íf‡ bܳ‹ x½^a"K¦¶¶ÇŽsE,óÞ<<´qWL€’& JÈ€öîÝ Y–ó@UU‡m3{¼^/:;;Åtm,³½ù€¡ò|>Ÿ V"‘°U©Œ1´´´/YUU444ضïóùÐÓÓ#F÷ïßG[[[Ñö#‘HÞ̦]À‰1†ÖÖÖù€H*Õ>bfff\·éÒ%Çö?þøcWO¬9lEMMÐÅηî9øgÓŠ€û7tspÑÌÕ¢uüõêU\½zµhG¿ýöÛxûí·‹–åŽÑüü<~ö³â³œ|˜ dû湋RíóWÜKµÏU¯ÕïEQ„Wï–fÿÃæm¡´ÀQD£ÑzkþàÀ¢Íã>5ét±›4CQáÌ•*˯ªª*™4‡…¬¥ÚçQÎR±^'àÜa±X̱ž#¹- išx×ê–2bÈØáy}DǃG}ÔvrC’$ôõõ‰,¡žžôööæÍÆq<üðÃB% ömhhÀ¡C‡@d̽?øàƒ¶jV’$tuu¡³³D„ÎÎNìܹӶ}¿ßÁÁA1Bèïï·Þ\H$’7¦wÚ.]º„?ÿùϘ™™Áìì¬Ø¦§§ñÁ`lllEÏ÷Ü…Bæ`Å(e„ýç‘3Î@³0ƒƒƒ8xð`I¡eYÆ©S§Ä÷b6ŽÈ‚¹MÊܳgO^®_±½$Ixä‘GJÚXÀ§å+_YUç˜÷‰D¿úÕ¯ŠÞ`®ñœd)FþVTss3joŒBå–Šÿ›…/µ•ªc­{k;›!S©0wuuõªdá~Ï-È¡.·TŸkÕ¹!ŃÄò/D$Ô?ÿnžõâŸíœþÈYgèÜìíʯäUUme3{âæët#c ^¯7OUUE@«¯¯O<±V3éõz…f5ËÂM?nžæÇÓé´¸›ˆ ëÿ`t2ˆ\z. `¨6EQl¥¥¥%LMM¡¹¹DFn@oooIgq£‘L&qþüy477£®®ét¶þÃÂÂnܸ`0X”hŠ¢ »»ÛÖ§øì³ÏÇpôèQìÞ½»h9žöVWWg›Æ¦iFGGó†™Lº®ƒ1fçþÒí=q2Âþó‰ ]׊zÊUUUâIÅbèêêÚôÎ S¶ÿ~ŒŽŽ‚ÈxËÆiŒ8û*]]]¶ N3€# /—L&¡ªjÑFY–ÑßßD"‘§©ø¼@$1kÔùNÈ{€­ ->Q2??ï*ý©\ƒ"ÜìfŒ^Lõó÷ÀŸT·ï6–’Å.Ã0bò5c(©vîÜ)l¤yú7·ZUQ𤠢ÒéOå„Y–µŒÑ3™Œc¸ZÓ4,,,¸.·¸¸è˜ó¸¸¸(:œÃ<7%Övåx\Á–šÑh´@ÿ*•Ù1š˜˜@&“AOOOAúÓää$~ÿûß‹œû_ÿú×8qâDÑqu¹055…÷Þ3þ©†È£3Æ ÒÆt]ÇgŸ}†±±1ñ&?Ǽë­·pìØ1ÛT²‹/"“É ‰”,—J¥ÀÃ[o½…¡¡¡‚‰¨û÷ïãÂ… 3žf‡¼¡¡cccÀrnÀoÝÜ“bºÉvÈ쉪ªŠsçÎáܹsŽ îܹƒ7ß|Ó‚±~ƒñoí*Y“`t¾ƒ-EQŽFà¿îvh­û­¨=œd[Ï6W ³snv=Ï r}jÞ˜E(–Í#ËòÀPÿæ àµ^äVxb·’,kíx3²Ù,¼^/‚Á dY†¦ieù |@Œ±,o_‚¡úeÊÑ£G;c-ÀòR/n4ÀVzb·’,N²­'xÿð…;@–å}X~°e› €AA‚ÖÖV± =Ï¢1`³oèfʰYœd[O˜_Òá~c¬fhh¨…/¹)Ì[ Ê,2€7ÚùÛ ëæ‰]OYÖv€–––Xú8·±Ü–ÀëõÈ{Óf5ö%ÛJë^­,N²+»û€9BkN¦­ªªê‡Ñ·æNg¦cÂI`ÕÕÕžœÝY,\póBIåè43Jun9dq#C)™Ü`¥$±Ëª2çhx½Þ.þŸcÁ(hÿþý;ø÷ÚÚZQ¡ÏçkïÙ]”ÝçÕ–[I™•œ»ÚúÜvîZŸþb¿¯æ¸ym&"J°Îû®ÐP0Ô1¿²ìö‰,öy½;w-ço†±“{£ŽëºŽK—–ÿN0›ÍÞ‚ÑáznoÞtÀP ï7¿ùÍßK’Ô®( ÐÖÖŸÏ'TM±Ž0v*ã¶œ[’­µ¾ÕÈêö˜nÕûJËŽúÒÒb±˜ym¡ùsçμ~ýú,€,Œˆ`Öü™ˆˆkMUUõþýû¯ÕÔÔœUUUº|ù2_¶‚/ˆ(9==ýwׯ_Ÿ Y6€F91™¿"øõ¯ý¯êëëOK’ä¼èo[D”Îf³ïôÑG/^¼xñŒ'ݼ™Ÿ~|( +hnmmÝ£ëºLDRnψH2ïMí3"ZËÿVPŒ1Íòc:ßQzzzzòã?žÔ4w¶†B¨°L3äÂÀ0Í¢xøÐL0w¸ŒÊ_ÈoÌï³›8‚I­[6+ 4Øä(D¤1Ƭ•êpîü¼hRl¬ ˜½zÞùv$ÈÓvfAFŠÄŽQøä› À5I ùãwsç[·XŸz3˜•¹!_)˜7äökù'ò œÁ À;ËNc›  £DÇs ïGƒ v¶ßjÿy¹Š ØðεÀJ €Nnƒ (A€¼‚ìÔ?PÑ 'ŒN_UÅ® P²"#·°¢6ºu¾¬*øb¢¸Ùæ¨`›£B€mŽ ¶9*Øæøÿã“õCeæÂIEND®B`‚guacamole-0.6.0/src/main/webapp/images/menu-icons/tango/system-log-out.png0000644361546300001440000002325511751110427025272 0ustar zhzusers‰PNG  IHDR€€Ã>aËsBIT|dˆ pHYs$é$éP$çøtEXtSoftwarewww.inkscape.org›î<tEXtTitleSystem Log OutÍËòMtEXtAuthorJakub Steineræû÷/!tEXtSourcehttp://jimmac.musichall.czifã^ItEXtCopyrightPublic Domain http://creativecommons.org/licenses/publicdomain/YÃþÊ IDATxœí}yŒÇ}æWÕ×;æÍ 9‡Çˆ¤H‰’(“)SëX€cËx“?Vdeål¼‹Ørâ Ö í–5ÎB²à±â`»@…¼klN+–ÃI`Å H–IФx‹Ç )Š"‡ÃÎñŽ®ªý£ªº«ëU¿÷fæÍ¼')?LOÕGußï¨_U÷#B¼C„XË®u×”w×6×ÃÖ²°–…c»ë¸žˆß« wYH‹¹ž(ZÁ>¶ÉœÛ¸5wŠ G$x' øÔ1§È’Á&†yŽŸ ps΀!ÈZ}vKÛÔ›Ë&Ðy“Ë"äÅZòL¾[ˆÕzŒ|M %>±æ«&MxäчGü€áÕ¬ÈR„¢ç„R J)¡Ô#žG‰çyÔ÷|â>õ}ŸA¨æõ=ú¾O©çRJ=PB ¥„Bä ‘ž„Š–…ÂGp.„€à‚ Á9ãœq&Xó˜Å¼Ñˆ9g¬¶mÛöï~êW>}ÆQ}3&è™ f+à‘Gþ-ÿ@Ô« u*|s™ J @)…çyÆäÃ÷=xT®S‚ROîK! ”Jèõ9kJˆdÎ…€œs91Æ9‹Á‹gÂó¼¿|ö÷¿ù+A[í&òZ «" yôဋ֬f–*6‘Àë9U û¾ÞGà˹çûð=Mž" Qljb T„€€\/À¹žÅ1bÆÇ1‹7bÄqŒwÝõ3¿ñ~ó Ü$З0‰°*bº€ þc¿ø ‹%!ÀÃõë×qóæŒºYÉvÍ|!„àà\d¶Éyº=»œ=V>Ðt ’k")7§ô™pÎB$°”Âó¨Üóqï½;ñ¾÷ý ¢I"Ý|zÔºœ·Y'I}³u”÷qaüžÿ«ç! péÒÅGAdÝ:è‹ °¬ŠÅFB€Z­†……jjê ]ëÂ2Í »Ë;™´˜ëÚh³O¯´1Ž  „btttó¸<Љƒ®¼™IÈ$RÀàÐ ¾÷ýïCÀóüÈÀÓ )ò›…«"¹­B„‰I5·›eºœ1–¬È+5™2½n–w"ú¼v]Íó™¾?„aˆ0 Ô~¦¶çÀ¾†Qƒê"@@ø>çð}ŸB>o|ÝâèŸDiNMdÌ­C‘©çî -;×B)M,B+Ñ×2I`j¿Mm´°Á7ÏÖI—å×Á%xs™À°”vÓS»€ž‰“:’ÎÓ6ý ml[ ÆXS¹<¿ðvÖÀ´:Z4éô5³Q–Yð[‘Ò´ vÜÛ³uTçP®ˆÅ1|Ï#Ï;FJ}±þ²@jNT»l M­·]€>Îôýf™k]ŸÛ®‡+ÐÇ{ž—Ó °­€LüÙ÷‘^ÏÔú|„mðM+˜º8ë¾ç!öY `'@@@uâI³­̾)9  4õåú) &Ð6º\óÚÙ6Lkbº$3Vp¹({"Ä$@Þóï4ÔÚn‚/’xÀ¼Œ¾¶º~+í ÍuÓœ›@çeät€Œæk`[i½;°ËÌkº‚Ö,)²i_­ùòX¹Ü© H7Ÿ™;KH‘×î;íZHh~˜YßÞª`Çæùµt’ÒZoÆæñ¶•rY‚œ3·\7Mzþñù®›…xß@ž•ÜV&Yìèj êãLä€yŸmLÿoŸßÛô›ÛÌ`¯ù¸ÖÇ,o&Bjò´_ï—cZúÂäÀv®f €  ®¹ÞÇ<·M’¼:´j êz¹Ò<7/Í®xi«jT-ôx--cýutí2í@Ö×»¬‚6ß&Ø.÷á"ƒðiÑnÉUWs›YO™‡É—No­íÖ¾Ö}¼–ÜT° ®ýu»ÈoØfÞŽ\nÀ ˜×·S¶f»4ÞÕYœ4kõRo—^ê•´ê õvS3]fßnØ@imË`–·³ æ² ¼,Fúª•‘ŽF›>ÕîòuåòÈ—è1Ï×*8lW?}>—UX]ëÛ“¤Þ’¤ãaá®lŸ 4Ðý»Z®T°iml×Ñj]oËˤ×qàݤí.iæEÞy±€+úo ;ß\wŶeÑÇØ®`é~ÿÝ#m-@«iÆf“Í6ÿš,f¹^6ý|§}®Ïü™¹·ž#ä×ÂõNA×$/=Ö$­ˆ`6í| —¶¶*3Ï+woŠoyŽÿà%Gž#dt%¯å$@«gÕʼj Z‘AƒhŽäÉÛ§ÐyS¾+èš’@mEÿ_ÕjÀÞn×Ê”–. /0Ët+˜ûkqµû].¢“ñí-AÿGåßòýÿà««yÍŽ\@» ª]yžÖ»:m–bþí¨ßM„޽]OäÁ‚±¯ÀÀöí a¸*×Íy*­úÂ[G×íÊÛ™÷n”»|¯B’}–ÎîàÿS,þã¯ÀàŽØóÄ ¹½—Ý•Ž^ É+×’ç:)w¥„5fÍmy±@ €oW*ŸgÕêW`ðÎ;ñÀ—¿ Z*­Z%Õ hUÖÍòN´¾›×_ q]þÿ®]û¹xvö+PÙ¶ ûŸ|ÅuëVÕ\-êÝÒún”ÛÛÍ8ÁŽ-Ô^Îc{%º~ý¯×§¦¾·ßŽý_øJ££PñW­¹ ÛZÝ‹òìòJ?ÔÎÇüÅÖ­¿Z½rE‚¿e ö?ñJ6@p¾êèÈtú {eòÜ‚µgså{ Ïßu×§æ.\øM(ßvÞûùÏ£¼iÀ9@)ç’«$»€v@˜ûô²ÜKÈeç!«"º%ðÂÞ½Ÿœ9uê³PÃýŸûÊcc€ èÐJºe¾—šW°ƒD[:°ºŒ(ýéŸß1uèÐg ´q#ö}ö³زà<ޱðꫵš$c-pÝ”¶™@sžW,Í|›û,·¼•È&mÛÝÚK‰#þáýÃ?ÞÅõë±÷3ŸAeÛ6 ¶X8zlz:5ÿýìzmþóöqeÿ²óÌÞÎktSôu£¿þ[^ø 8:Š}Ÿúï¸# øª¯½†øÆ ¹?c©;X%Yôw{ô™ûtÒOÑK9󻿇Â_~P\·÷ýò/£r牆/¼öâÉIJ!tȘ$Â*I΀s¹}  —V¡\.£R© ÑhàæÍ›Î PfsocEää3ÏàÄW¾(Ür ö<ö†î¹'5ûÇŽ]»¨Œ+8O-@–ÿö9B>Ø¥j ÿô˜ßÕ:n¶£WVaûöíLRÅqãêÕ«XXXpœ£iӊɉ¯=ƒ£_ú2 02‚Ýÿ8†vîLL{íäIÄW®È¨ŸRY9B `¹€Gº\½ø9B¶?&Ä8° ÐëX X,bdd$3žÐó<Œ¡^¯cjj q›G¶¾±.ɉ¯} G¿ô%@´v-v}ìcÞµKö«pŽêÉ“h\¾œ/ô«EF à3O¬P$àØ`iÐÒëX Ãdà‰ý&²ïûÀÌÌ æççõYÚßÔ2%þš5xÏÏÿ<†wí’æ],œ>ø7RàuÏ¥&=cŒÁ+ñÁ¯=%!NúÚÏ…Ñ|—jŸ›o¾‰—çwšÎ±(Ðk­7˧§§1>>Ž­[·6•k¿?22‚LOO®÷tº('ž~Gž| áÞ~kï»OÖ‹1ÔÏžEcbPšO„€ÐP.Œ„À+—áé2m%\¢Ÿ‰9×Ǩu!‚rÙyøÛ¶3HññqüøÇ?ÆÝwß;wÂó¼d?Bä8ÅJ¥¢F/·»»¥Ëñ§ŸÆa þà v~ä#X{ß}òkBŒ¡vîêããx ¼¶lr|n.cÔ 5gMmBÒZo3ÞÃFFRr9dÙ. —V!¬]»¯¼ò N:…|›6mÊDÿ”RT*•ˬúiþ¢¿RÁ==„‘½{%øœ£vþß´Zóå aáØ±¦û×’©¿Ùa¤–…Þ¦ÜÎ3 ýìÏA›\Zöx€n¦u—R^*•°aÃT«U¼øâ‹8vìX2üLÇõz}‰ ¡ÖåÇŸz‡¿øE@00€»?ðŒìÛ' 9GíìYÔΜIÓ»ÚÄ+_¯'Ûͦàbö±Ï •QæÜ!Kr½Žì}Ö¬YƒF£z½Ž‘‘ø¾¼-=.àúõë]—{_K‘ãO=…W5øå2îú©Ÿ’à+sOL vú´dœö,Ÿ¯­@²-½Q÷E]þÞÔ~cJr Ý$@Z¿þŠ`ݺuˆã[¶lɸ€‹/:óË‘ ø¥îzàÜòÞ÷Ês4.]BõäI'ðÉX?+Hî«]°"ŒOæ¸@··™–Ã!Ëþɘ~° :à{ÿûߟh?!333¸téJ¥’ Ž— 3À÷‹EìØ·#÷ߟ€_¿|Õ'Rà-ŸŸi÷# ºheì@Í[’Aƒ¯ÒÌ.éš è•UÐÛwî܉¡¡¡d{­VÃÑ£G/Š.UŽ=õ^ýB þ»wcäþûA¤ÄåiZ?°^ö V*•$耫W¯â'?ù dÒ¿ú£Ü)à|‰ggqä·ÿ³® Ɔ‡qËΠ岦^ÇüÁƒiûÚì™/¨¶ ЉzlzìÆ °ÙÙ¬©ïPHÁ«Tà ¦ïêzv;ìU,°gϞħONNâàÁƒˆã8¾m #^±ˆmÛ0}ì ®NN¢rä*û÷ƒ‹ ž‡pÓ&ÔΟOƒ=“y@ÞTÆô‹jU‚>3Þ…l¥¨Õ×jˆ¯](-•À¦§A[t†uÕ¬´Uð}%ÅìÉÉI8p óÅ2|³é·Ïÿ÷þþÃ?ƒ›gÎ`Aœ½|·ÿèG(ïÙ†ð†‡nÚ„úÅ‹ÐEDý¢Z›™»y¢^ï¸^‹ÎÁggåˆãùyÔ®^uîÖÕ__i«Ç1^yå \¾|9ÙO§‚Í_ k_×ü²ÒØúÁߥ$pnr·:„òž=àq Z*–J¨ËL ç¥sß¡<Ž! 9ÕëàõúªŽù&‚ gñÛn<À7šö55ß|+(õÿ‹oHüÿá§$¸~·¿ú*Ê»wž‡`Ó&ˆ8–]¾ý*º…°ÜñyÒ®¿~5Ê寂¥£ìò¥Š&Á€jqhÌ> Ä1 ÂÍ›-’~!ÒÁ!.éêwHÚuºt³Ü¥Ý­ÁnG„ær!¢ ðÓó7Nˆ· Ìì CVäC4ý`–Û(„ü54Æ¢ ðà / ¼mE‚©)Ì9’%*ï+ió®á²ÐɃî÷r—pÎÁK¾dÎC¸~=Þ÷üwPºýv ŽM†`õ% ìžBKºf:b%µz¹Z Ý5…ë×cÿ_üy. ço» ‘*ïf×°’:ô¯Ø­€ è•U°c¥AÑ’š{ÿäOPܺ@J‚¹£GeÎsýD=JذÉXv§Ъ¬å˱íêhŠþ赞²à§.!Åîo…­[Hœ¿qs¯½–ŒØ ÆÆ*’ôT´öˆéÒç3ûÁ¼ç£sðYðBhBppž%D0:Š÷|ë[(l±HpìXô 1€²íj&èm±._Š 05?»n“!%‰¿nîúã?Ɖ_ú%ÔÆÇl=v ¥{î¡á¦M€úùómë@2÷ØV:ØOûóyñ”¤ëHë¶:Eç òëjëž`/2®"ÅôG8ýÉO¦$˜žÆÖãÇQºûnÙy´q# ê.äW‚R”ï¿?éGÈTÚu¯fYÞ~zn=?ƒÝ {Ý”ëÄÅHEà–¦7Kƒ,÷Ï’@¯g÷F×aÛÿüo» ÌŸ8‘|ð)ظ¡ry’ŒêÑ>Ûš £þÓž·Ÿ¹ÝhwÝ] °ZZ¯Ë]YA{2÷çœC@þ~5¸Ïµ–£™ºÙú¤¯fJ"x·®ÃæÿþßpáÓ£11Ñd @)‚ ¤%oº7}1!Øü<¦¯]CCÞ”ýÜËpXCc=}M>++îºíë¥67ÄÚE³Œ1†F£!û < €ü•t(”…üËÎï Èí©ñH:– X7ŠÛþð›˜øÌ¯¢qñ¢$ÁÌ ¶ž8Ò]weI01Ñ|z.¿xcnçZ¹‹eŠ0n®«‰ ¼íÝn!t¢ñº<ýÑŠµZ õzFqÌTÓ.ôiw‘òÎ$Câ:•r’ ²ýu£ØøÏ"€„ó'OÊÖvÊ]dD™ëFŽRtCpîUà^_°R¾ù y Z}U¼^o`n~a Cø>‡øð=³5,ÏmÆr’ë@ÒˆJ~ ”ÈŸ‡çò'ê9'Öbý7~—ÿý¯#¾t)µ§N¡xç ÚK ¿jm<> LQ€S€@èe `àžÚîL/r;÷Êeö¿€3¯ (f·ýJØRd¥|½ËïëmævæfgG‘Ìí‡ \„~ß÷ °¡æè$È&Hˆ >1Š I E°~·þÞïâ§G85•’àôiï¸Äó¬_/ÝÁÅ‹úf›ÚìÇ /×ð6ë`›^×fM¬øÏR,7·Ôž›?PÕêWËæææ077ùùT«UÔªUÔë54qÒÖ—" `Õù 2'Ô<¿^¦*ž0Ê…?ºgÿõ£¨Ëw5 Μˆc!à¯_pl,¾©žÍžlp]à›@Ûë+C€núz{_dls4°ë'êcôšœär õzF=éýËÖ…"uTMxšì#¯«¯™]qê>†úÀÀ%TâŽ"s~.žJàb¸Á7·µšLÐÍm|EÇ,¥ÜÍÞßåë]`Û.„àˆãFŒz£z=tP(Ðì’(U€ëI¯–©GÕ>jPª&¥ð¨t-J'þØA†oŠ7obáõדñþ­·&mxd-€ßžw ~®UB¬Ì€-KÑzSÌ‘¾æþöÐoû}{Œ þR(S}û,ŽÇ1â¸!猱œ1å÷‰²6éž9ò˜*à‰©ùDj¾®‹¯ß¢¨¯]³påã’Á@J‚êÙ³ ాܽÕÔ ˜PL_µßR[ŒÖ»šwö¸{¸‹úXÆâ¸ÁÓÜ>ç Œq0ÎÀO²„òëNù'Ñ|êÐ~ššßó@” 2&àìÞ{¯LüÜÏ}žûþ%À° L+¤Zo!¼Å¶&ðŒh×vÏóñ¶¯·?å¶µZó óêýG $~T.@-Û¿?B@(•`jЉÔv¢}¾® ¡ ăçÑ$u@<"Â0lÔvíº|öCú5îy€$Á…ÙY,œ;—†ÈÀßE“ .÷!†°|ܪ¸€Ve® ÏÖ¼VïšÂ0c1fffP«Õ’h^j¶¶8rYƒ‰äúi$NåÏÓýµ×õ“®A¯Ë:Px‘1’V+‹(Šê7wï¾trÿþÇ) œ?/Ç…Í  \ ™lðUrËÑú¹/€xð8M“È„òR©Ô¨ÕjqµZmÔjµÆ¥½{'ÄÜÜ#÷œ=ûm*ÄVM‚‚ñž`!»© oMÜž»4Þ'º‘‰v™~³>:­Kqþr¨ë|&è„T*PJpéÒXX˜O@ |A Ba Ò¿¢0D†£A"TÄðŒTÁAÓs’¥`͎ࠜºNºõ”û¡ ”Š:ç¼Á‹kµZc~~¾qnÿþ ¯ZýW;.]ú3 ܾ`Á°ÅT³M°wb‡Ë[è¼3aÅzµ´Óz!DÒÌ3ëm7 M 188ˆ pñ⦦¦R­V †ÐQÉy! ?€o´È…„MBaüWIcJá©XAú¢>­Ì>iJŠ=ÏkBBˆXSJÙ={γ³Ý6=ý]"?åžÈ@³Rð“åÅ€nJ–oš5ªµÖëcl‚˜À ¡P(`bbW®¼ Ï÷†!‚ÀG˜ ‡Ã…B„0ŒE¡Ú/TVBÆ ¾òÿ:öÓZŸ…ÚõhÒ2ëý)¡€§g€ "ý4 :ù-·ÜR/ (ŠA4<Ïk„aÈ{éÁÇË?üáGFgg¿O€ä5£ ~øz2-óŒ¬X  EWÒŽ ´Ö›D03á¡! `|bãã ”($à†ô(B)УHna€îùJëU¦W(ë)D¶'Î-ºÉ(—“$B¨%ªI%‰Œ›c7n¬×ëõúüü|}tt4Þ¼ys|íÚ5¶qãF¶~ýz~~Û¶ ƒÏ>ûP ø€;°Aà€¸`»dI_É“V¾ÛuBZ‚¬‹ð}ÃÃèT*˜¸8C¯”)Ó Dhh|Eˆ ¢PÍ#¹†©ÿ÷|_„Ô—É¢òüBª¾¶ø¤åKJ…a#Œƒ†%ÀÕR.8˜þFŸ¢\.³r¹ÌÖ¬YcGíišöߎø5?z\ˆ›/ƒÅJ×?çÚnwãšVÁýM? ü›o^ÆÁƒшë*¨3ý{Q¢E£TóÃ0Biäo4ujWg„1|½p}9bšÿ„@BfÍQÃB%—DpEî™SjyLˆË¾Ôau–%]ÿH”)”Òä ®¾| uA`Íš5ÄÕ«Wñâ?ýóósÊÌSŸ^( ФŸ×ž=¼nÿ…%ײÉgdsnÁ¨gfÍØæEÌÁ•HÞ1°#wónE¤k‹ÎÛæòõ¦è}¨T*˜º1…ý¿qýºŒì£BQX@I¤ ?Ÿ4çt“Nk¼JÝÊè2ÇNˆ2óD‘ •N]¬Ö~sY¸HÀµ%ÃÎXJnœª§à]üT¬k›iîͦžQ%¦~vn/½ü._¾„0P,%ЪùEŠtåï£05óx•¶Mj`$”²f;Iú-Z„±d‚°h?K_+Cs²¦çV +_ sm³Í½&B±XÄðð0J¥jµ½zgÏž…ïû(Kˆ  a„B±€0ŒP,¤ P^ ’:f3.é2¦º-O²`¯@-#cn[üñäµ2fgìz>Ð…ŒhU®[œs”J¥ø8Žqâäq?~”r„B¡( n'jž\IDATP( PˆPˆ”Ö‡!‚(”‰•¿÷|j™y‘dê¸Jå&)š®Kn€ θh~O\²¾ìÚnϵÆ !pöìë8|ä08çì(Lü{2©¦]…ƒPÞõU§‹¯ú×Íè=Í* $‡¿’O3>­ƒîÊÕà .›\ppÆ\A`Ï〮¶Lr”Ëå ðo¼ñ:€jmAEí%Ð#D‰ß’ìž2qãeûæäÛ< F‡0ƒº¥å1: TËfRÈÈ p¥ý\d‚@3•ÛSYòïæm«T*FE€ÉÉk8tè ®O]GE¨T¥yWàUDª¦\èëÄŸŒ¯£„$Ͷ4¨3L0ì n% `å t¬¡ÓÂV Èt+€q[ãßY R©`Íš5Ô‹gffpäÈ!¼ñæeDA„ÁÁA x15õ‘ÊÕËö»Í{j€…ÊÔªé%‡×$‹íêÕe"4¥Š„±ÕAÙ LBÓôE,‚yÚ?44„áááøjµŠãÇ_ùóg†††E!JÅ’4õQ!é¥Kòó xštõÊóÛécmj—܆ë¶È$€Ž ¸ÎHK—‚c}ÕdI@wÐ '¹üF£3¯ŸÆé3§àQ•ÁA ÅÄÜGºKVEóI~ÞóekAç ÔD€dXVS?B»´Ýjˆ™ Rë Œx€' ¡L /Ì?G€œv³î’J€çœcbb'NƒåR)ÍÔŒü|’¦õdšV Ú$€j˦(D¶[†$ÿ`oí‘-€dSÖ¤„à:ÞWÑ¿–Ž,€çyX»v-†‡‡3½{W®\Á©Ó'P«WQ(T®^åí ‘Ñ ›Ž¼ÉtÊ@÷¤.^¾•véšCzÁáZ4 a´ ~”Bå\è):"Àš5k2ëS7¦ðúÙÓ˜½ ß÷188˜ôÒE‘ôíÚÌ'£uuΞ*i§ýh³swbÜ–+(y€£¨Ø€¨ûäœë€´]°÷‰ = Ò%óós¸0qS7¦àQ‚Ê=*' ’¤MÚ!£_‘"j ¤P ËÇa(;\P÷K¬çáZË…òV šºƒk?С¨Õj¸òÖ›˜¼.t \*Éñ÷z¦ÊÔyÊ·¢ÆÊ+P¥T4DäÌìGó~_K*eÍBrw$ýžÂ¿/$!€Æ(Hugqcrê®O]ƒ@T(À3_Ìð½¤Ýî©wì“ü¿Šà‰!™¼zmi|Ð;mëÛBÓŸÙ&@iš0ZÉ.ÖAýÓ äœcjz 33S`¾7â"Af#„ ç®€¸ü‡úi`` ÐëÃÃÃJåRfçÁÊ`Ó“/ 4mÓ?õöNûCŒs³³¢28Ⱦüäo›/uØÒŸhµÿ"·wZþNÅ$wz¼–ÅèÌwè.i÷@û|`i½úÚÜW7ÚÒ—Ïc9Bìz·j|žô%à¶tóåзà w“¤o‡ûm++þ}€>“whÝ”UûLÜ?KÊÿ;àx¶Y«IEND®B`‚guacamole-0.6.0/src/main/webapp/images/mouse/0000755361546300001440000000000011751110427017610 5ustar zhzusersguacamole-0.6.0/src/main/webapp/images/mouse/dot.gif0000644361546300001440000000011011751110427021055 0ustar zhzusersGIF89a €ÿÿÿ!ù , DŽ©Ëí£œ´Ú‹³Þ¼û†âH–扦êʶî Çf;guacamole-0.6.0/src/main/webapp/images/mouse/blank.gif0000644361546300001440000000010711751110427021364 0ustar zhzusersGIF89a €ÿÿÿÿÿÿ!ù , Œ©Ëí£œ´Ú‹³Þ¼û†âH–扦êÊ¶î ›;guacamole-0.6.0/src/main/webapp/images/mouse/blank.cur0000644361546300001440000000050611751110427021413 0ustar zhzusers 0( @€ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿguacamole-0.6.0/src/main/webapp/images/guacamole-logo-64.png0000644361546300001440000001173211751110427022314 0ustar zhzusers‰PNG  IHDR@@ªiqÞsBIT|dˆ pHYsttÞfxtEXtSoftwarewww.inkscape.org›î<WIDATxœí[y”TÕ™ÿÝ·¿Z{•^€î¦h$‚&Š "£39Ñx$3=‰'3Ç89ñ8ã4`–‰Ž˜ÉÄ]”C 0ÚjZ@Ö–n¶†¶é½«ºªkyû½óÇ«.ªº«7TH2ó;çªwß}ßû¾ï~÷ûî÷Ý÷c ÿ—Á]h.4þ_š ªBH!„ÿ˜iÇÕÿ|:ABÈtQ¾ÍÜf[4OTxË2¨ Ê|!hHÆÍ?€bcìè9ÐVÊËŠWU•úÚ;BšiZÛΜéùWÆXïˆ÷BjT¯°<·à²Å•òìëÊÅ‚ ^€Œ1ôu&ÑÝÒæƒ=Úñ½]–ž°© ñ!˜ 0p\‹Û{)¥v0ÆôÁϨ¬,y|ͪ•ß^píÁçS±ã{éC?ÓÙÓyýÃÖî0Æ:?Q¤Lù3²*ü½ ñÓVêØ(r,'_9²à¶éêÜ*8Ž'£ÒJD  ¶åÀ¶(b!Ý-1»åH(Ùq"’44ûkŒ±mÏž²àš9ïl}mUI}ý\uÕÌ4­ú÷ްûñoÚOî|ýÌ™ž»cÚÇ®^âïá9ò`ñ$¿3óÓ¥y…e>âÍ“á Êð%Rîiž° $E²£«ÅEÛ±>l~ü@,Ùo¾¦'¬o0Æ’UU¥ï¼¶é߯®ª*ué&4PÊà÷{Ò÷mý}½ùýy¢µ­½w™eÙ»Ú?’!ùŠWx!¿Ô7ÿÖï_æ*›QPF!qˆ÷÷1Ä,U¾¢q=—: ;~sD;ôFkØÔœg¾º|ñ7¶þ»ùŽCAeÙH&uäçû¸ éî‰"à÷àëßüIWCég;»Â÷1ÆìsV!¤RV…º+ošR|Í—§Ê„$m=F ý–Ž o¢šîÏ%)8Í](žÓó„°ªp ž³ÖÔq2Šºßœt^ü¯ñS§NDss;xGÅä Y÷jº‰[º0}ú$À3ÏíH<øÐ¿ßÞZxNaò IŽ|þ›³'^{Û4™×€û- QSclÈè‹! R§9*í¶dztÇÊV@Ÿ ±;»­°Ü‹Â ?uêD@UUi–ð[~÷.@U¤´ððËyþñ—OœXüĘ@ñBV{ür² Ìûäí?¼B­½¶<›IŽG<‚y¬bf¹ БŸÓoéhOF2Yízµ £RÉj;úNî¸}qúüøñ3Y×oþÂÕCè¿·»M-X²ø •Rº`äI €RÈóüÈñK¾<…»þŽL½lBξ…’E²/ç5ªp Êèúˆ* jAäF_ÞÛ‡›p LÓ†$ ˜6ÍåwÿÜÆ€O_] 8uºU•%€“Íí¸ôScùŠU½Ñhbå°>€"B¾+ÂC’Â+7ÞU‹iW” Ë G:wBÈ<ê:Õ½AºG¾å±û–µ½ò©ß=ÞÖÖóÜCBY¢ªjsUUÕCO›¢,¾sæˆÂ@M€G‘ìú2Œ&Za0¸×Á´a¬ñoâŸÄk[ßM ßÞñð°ò®ÇúžÚ°uK{{ïý@Ž\@Åû%IÚ²zõê‰O?ý´Õ{1ó3eéë&uУÇ`³ìÉÜÔï d0ˆ]&Ô’9ÈŒ 1‹¡!âÀÎÐC·K+i0¦x”{\–«/-Æ’ïMÇÏ~ûÞª;èé‰ ¹§îíCèé‰àÔ©|fÁwmÛß»·õL÷WXÊôÓS€¢ªªúŒßï_ºmÛ6eΜ9()+Æ‚œ‚W—¦ &'cݨðf 4â0ƒf…«±‚2†Ó‰^Tz‹À‘lÓð S:’ ]úYåÇû ¼ût vný)¢Q$G^žë‹(eøÏ [±ùµ}ˆÇM£±±±CÓ´ëc'”B8UU_Ÿ5kÖÒC‡)sçÎÅÜys!óK³ñðª}åO†/Žàû8‚K:îB0ÅWœ%|‘L ðe8ÑO6³-Ï—/còAÜtëÐÙ^ÀŸë?Àg?V­}«W?†Ý»wËË–-›èñx¶B<@ÊA¸¿¸¸øþ¦¦&9 âW¿úîù§ï`åºe Ê×Q†a u(fçñ8ÖïÀ pÃ`†B„>BØ‚^[¡>‘Àp¬Áá“™ëçžÖö>߆7¶­GGg÷þð—™}¸ò– 4èÁé:ûß?Û¶1þ|½¡¡a“¦iË€KAØýæ›o W_íÆM¯ÏƒOß:WÞT“Ú ŒAá]GSéã'œŠSDÍlD- ÝZ?Ê=ùðRº]á LÊ žÒÀ˜(g ÂtL!rÄfð|@b¶/K™û·Ý& #Ü‹+oŒ U÷”ᱯíÀ©ãb„ hkkÃŒ3ŒX,v Çóüí·Ür ¾··¶caVÊñujQ4Ç{@S¾¢Ks‡>WR55èÔBÜ6²Úu‡¹#XEƒÂÁ˜„gŒ!i›ˆZÂTƒY"apuÉõeð×7¿6-<Ž`B…›7o”——cùòå¼(Š7q禥K—¦¹Z·n|y2|ùî(É~TzÏ&+šÃÐu6\…ˆ½„°»D-Vü˜,ÅEŠ?§f™œ%,e 3 '3¢0@mJBˆØCu:Ñ‹–x Û€5a¨x‘CÍU¹ÃõÄéxáÅÒçŸûÜçI’sñx|ú¼yóÎ2išpì³ ùùmRßY†ŒÌùÈ.5T^„0Ž GZ“athѳrRë"TåR}\9 J” |¢ŒÉ;æg 5A246gÎ$‰ÉÆqgGeåÊ•Ðâ&Lݘïw ôÙàã¹ñV±èšã°¨3ìµ€¨¦ý àF»@•9É—äóð¤VK²S|ÅYþ%#­©Z>èÅŠ+Òç”RpG9BH–'«®®/ðh|×­ Ùùô*fɹ¥±šc¡[ïOŸD.ƒÓ oáÙü2Èêé„©×pCŸ6†å²ÂÌÌã!çp'}IÄÂ:n¿ýöt›eYà8ÎáA05-«J„»V~¯ÿº±°&8ALʦ6hI„²„ó ù’· ò"Ê=ùéó¤Í†Í@H–gÓŸï·¡œÔÒ¾Bw>ˆ8ÙÓ®ó|yÍ,¹a)xþìô4M„‡SåTSSSÖMk×®EA^1^ùÉ>XFnóÈýŒdªD%¨ðqˆÃcæÒwðÔ`<1IÎjsÅáÈ™!õB>æ€K ?½`×o› G(¶lÙ’Õ~àÀ(Šr’Ó4mËÏþsmðû÷íG´ËÄS÷Ö!R„EìÅdoA–ÇoŽQ;èÖ‡ú‹\«Á^#Ž¢íhM„‡€'\ÎÒš' Yë…UœÛP‡aóú8¸³ õÞ3äúöíÛÍD"ñPÀq\Occ#7mÚ´¬Nº®czÍt„"]øâ÷.Eåì‘kwÄb 6K{py ÚÇCà€C}Ù£55´$Bð.ö_”E‡3)¯k² ,íÁÇ’FGº“øŸu …šOœF Ò§¨¨H…B_àcaUU;Žº¡( NŸ:Å oÄÆ5ïãÙ½‡p{bH?ÀM‚ÔãIHíÙ‹ Ÿ@ ñ¹kABž¤"_òdµKm¤3géd†¯€HPáͽp24;~}O~ï-TÏ@OW(§ð…B €ýBšŽ;V>¤§{ ¯¼ò zzz°ðú…xêÞ:L¿¢—/­DÙÔ¼t?Æ0BÀÄf`©ÐÕg2DLgHÞ@lQà1Ù[8T eØD#j1ô[Ù–ÔÒqà­Ø½µ%Jq¤¡ ÕÕÕ¹ Ø¿?¼^og< H$455-0l‰¬¸¸‡¾}û°bÅ <÷ãÝ=._Z‰ÚkÊáË—¡W«`R¶Ì5òÊ L$® ¹@0bPg,ÃÁÉýݨßr =Æ0yR¶lÚŠE‹ c ûöí€=@J`ÆØÑÇA˜;w.<ÇqðÈ#`Ýã?Å[/…¤Š˜2§Ï+FÅÌBxóäai˜å2˜<¾RmQ´ëCó^ÛÓ‰¾®$A?–å«X³f Dqìë”úúz=‘H¼¤ÒaBȵ……hlîP. ŒÁC)ÅÆñ‹_ü‡ ™t+BÁbÅ“ü(™@A©’*@VÈ’"@Rp<‘´aê6LÍ‘´`ê¢=ºN÷£»¥}]IX†¯OÅ´‹gàί߉+VŒKèh&EUE¹ÖÕÙyclç€Jt¼u¸³ª QàÕFEKK vìØ;wâpÃaô„:aY&ÇãPP‡º&pAàÁó<ADa~1fÔÌÄu×]‡n¸555™'ͤxÿX®™= +`Œõ1ÆdYîúå?°½Íý¬/a±¿5DÛw:ÆV­ßÀ¼^ïi–’;O!›Þøý«p¢KÉ. ú2Ì_t‹âD—†ã]ÊðÊsôD"ñÄÀõÌ¢èÂ`0oëë{OÉ\jÍÌ‚‹"Jó$ðÜ9Ö¯/l‡¡#b¢»ßLGÔöÖ|ñ³s(¥tc¬È.‹¿ašFòàž·Ó ”1tFM4œI¢'fý¼RÇt¥xîʶoz–©ªú§á 0ƨmÛÏîØòRvÖÀr(ZzuisáŒg è<ÁrRƒÕš@kØ€M³§/¥/?³ÁH$¿ÌlÏÚ#„\áñxêÞ:tFb#ìí>E~>™K×ãÏ7(cèׄb6"IkÄ*õûoïÀ=ßX3 £1–ä,)c»½^oû›¿{¦âº¿[Aè0&Ï„âBq ÿüó¸ãŽ; ˲¾ `/€(c,g)k8À˜7䫪ª>_[[{É®]»†(a”1ÄuŠHÒF$iô?ÆiÂ\ózäyxGX{lÚ´ ·Ýv›eYÖro¥€.ÆØ¦†S€  £Iñx<ÏÕÔÔ|jãÆrUUÕ¨ø -,,ÔEépË(ü–Ç£ d D/ç8îQÇÓå÷û»ï¾ÛÞ»wï'"´ã8l÷îÝlùòå¦(ж×ëÝàN“ÆÀg Rþnð1RìGp•¢(_qçÆ¼¼. */ #keyboardContainer { text-align: center; position: fixed; left: 0; bottom: 0; width: 100%; margin: 0; padding: 0; border-top: 1px solid black; background: #222; opacity: 0.85; display: none; z-index: 1; } .guac-keyboard { display: inline-block; width: 100%; margin: 0; padding: 0; cursor: default; text-align: left; vertical-align: middle; } .guac-keyboard .guac-keyboard-key-container { display: inline-block; } .guac-keyboard .guac-keyboard-key { background: #444; border: 1px outset #888; -moz-border-radius: 0.1em; -webkit-border-radius: 0.1em; -khtml-border-radius: 0.1em; border-radius: 0.1em; } .guac-keyboard .guac-keyboard-cap { color: white; font-family: sans-serif; font-size: 50%; font-weight: lighter; text-align: center; white-space: pre; } .guac-keyboard .guac-keyboard-key:hover { cursor: pointer; } .guac-keyboard .guac-keyboard-key.highlight { background: #666; border-color: #666; } .guac-keyboard.guac-keyboard-modifier-shift .guac-keyboard-key.shift, .guac-keyboard.guac-keyboard-modifier-numsym .guac-keyboard-key.numsym { background: #882; border-color: #DD4; } .guac-keyboard.guac-keyboard-modifier-control .guac-keyboard-key.control, .guac-keyboard.guac-keyboard-modifier-numsym .guac-keyboard-key.numsym { background: #882; border-color: #DD4; } .guac-keyboard.guac-keyboard-modifier-alt .guac-keyboard-key.alt, .guac-keyboard.guac-keyboard-modifier-numsym .guac-keyboard-key.numsym { background: #882; border-color: #DD4; } .guac-keyboard.guac-keyboard-modifier-super .guac-keyboard-key.super, .guac-keyboard.guac-keyboard-modifier-numsym .guac-keyboard-key.numsym { background: #882; border-color: #DD4; } .guac-keyboard .guac-keyboard-key.guac-keyboard-pressed { background: #822; border-color: #D44; border-style: inset; } .guac-keyboard .guac-keyboard-row { line-height: 0; } .guac-keyboard .guac-keyboard-column { display: inline-block; text-align: center; vertical-align: top; } .guac-keyboard .guac-keyboard-gap { display: inline-block; } /* Hide keycaps requiring modifiers which are NOT currently active. */ .guac-keyboard:not(.guac-keyboard-modifier-caps) .guac-keyboard-cap.guac-keyboard-requires-caps, .guac-keyboard:not(.guac-keyboard-modifier-numsym) .guac-keyboard-cap.guac-keyboard-requires-numsym, .guac-keyboard:not(.guac-keyboard-modifier-shift) .guac-keyboard-cap.guac-keyboard-requires-shift, /* Hide keycaps NOT requiring modifiers which ARE currently active, where that modifier is used to determine which cap is displayed for the current key. */ .guac-keyboard.guac-keyboard-modifier-shift .guac-keyboard-key.guac-keyboard-uses-shift .guac-keyboard-cap:not(.guac-keyboard-requires-shift), .guac-keyboard.guac-keyboard-modifier-numsym .guac-keyboard-key.guac-keyboard-uses-numsym .guac-keyboard-cap:not(.guac-keyboard-requires-numsym), .guac-keyboard.guac-keyboard-modifier-caps .guac-keyboard-key.guac-keyboard-uses-caps .guac-keyboard-cap:not(.guac-keyboard-requires-caps) { display: none; } guacamole-0.6.0/src/main/webapp/styles/login.css0000644361546300001440000001041611751110427020362 0ustar zhzusers /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ body { background: gray; font-family: sans-serif; padding: 0; margin: 0; } div#login-ui { background: #BCA; height: 100%; width: 100%; position: fixed; left: 0; top: 0; display: table; } p#login-error { text-align: center; background: #FDD; color: red; margin: 0.2em; } div#login-logo { position: relative; bottom: 0; display: inline-block; vertical-align: middle; } div#login-dialog-middle { width: 100%; display: table-cell; vertical-align: middle; text-align: center; } div#login-dialog { max-width: 75%; text-align: left; display: inline-block; } div#login-dialog h1 { margin-top: 0; margin-bottom: 0em; text-align: center; } div#login-dialog #buttons { padding-top: 0.5em; text-align: right; } div#login-dialog #buttons input, div#logout-panel button { background: #9A8; border: 1px solid #676; color: black; padding: 0.25em; padding-right: 1em; padding-left: 1em; } div#login-dialog #buttons input:hover, div#logout-panel button:hover { background: #CDB; border: 1px solid #9A8; } div#login-dialog #buttons input:active, div#logout-panel button:active { padding-top: 0.35em; padding-left: 1.1em; padding-bottom: 0.15em; padding-right: 0.9em; } div#login-dialog #login-fields { background: #CDB; vertical-align: middle; padding: 1em; border: 1px solid #676; } div#login-dialog #login-fields input { border: 1px solid #676; } div#login-dialog #login-fields img.logo { float: left; } div#version-dialog { position: fixed; right: 0; bottom: 0; text-align: right; font-style: italic; font-size: 0.75em; color: black; opacity: 0.5; padding: 0.25em; } img { border: none; } img#license { float: right; margin: 2px; } div#connection-list-ui { background: #BCA; } div#connection-list-ui table { width: 100%; border-collapse: collapse; } div#connection-list-ui table thead { background: #9A8; } div#connection-list-ui table thead th.protocol { width: 1em; padding: 0.5em; } div#connection-list-ui table thead th.name { text-align: left; padding: 0.5em; } div#connection-list-ui table thead tr { border-top: 1px solid #676; border-bottom: 1px solid gray; } div#connection-list-ui table tbody { background: white; } div#connection-list-ui table tbody tr { border-top: 1px solid gray; border-bottom: 1px solid gray; } div#connection-list-ui table td { padding: 0.25em; text-align: center; } div#connection-list-ui table td.name { text-align: left; } div#connection-list-ui table tbody tr:nth-child(even) { background: #CCC; } div#connection-list-ui table tbody tr:nth-child(odd) { background: #EEE; } div#connection-list-ui table td.description { text-align: left; } div#connection-list-ui h1 { margin: 0; padding: 0.5em; font-size: 2em; vertical-align: middle; text-align: center; } div#connection-list-ui img { vertical-align: middle; } div#logout-panel { padding: 0.25em; text-align: right; float: right; } div#connection-list-ui a[href] { text-decoration: none; color: blue; } div#connection-list-ui a[href]:hover { text-decoration: underline; } .protocol.icon { width: 24px; height: 24px; background-image: url('../images/protocol-icons/tango/video-display.png'); } .protocol.icon.ssh { background-image: url('../images/protocol-icons/tango/terminal.png'); } guacamole-0.6.0/src/main/webapp/styles/client.css0000644361546300001440000001123411751110427020527 0ustar zhzusers /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ body { background: black; font-family: sans-serif; padding: 0; margin: 0; } img { border: none; } .software-cursor { cursor: url('../images/mouse/dot.gif'),url('../images/mouse/blank.cur'),default; overflow: hidden; } .guac-error .software-cursor { cursor: default; } * { -webkit-tap-highlight-color: rgba(0,0,0,0); } /* Dialogs */ div.dialogOuter { display: table; height: 100%; width: 100%; position: fixed; left: 0; top: 0; visibility: hidden; } div.dialogMiddle { width: 100%; text-align: center; display: table-cell; vertical-align: middle; } div.dialog { padding: 1em; max-width: 75%; text-align: left; display: inline-block; visibility: visible; } div.dialog h1 { margin: 0; margin-bottom: 0.25em; text-align: center; } div.dialog div.buttons { margin: 0; margin-top: 0.5em; text-align: center; } button { border-style: solid; border-width: 1px; padding: 0.25em; padding-right: 1em; padding-left: 1em; } button:active { padding-top: 0.35em; padding-left: 1.1em; padding-bottom: 0.15em; padding-right: 0.9em; } button#reconnect { display: none; } .guac-error button#reconnect { display: inline; background: #200; border-color: #822; color: #944; } .guac-error button#reconnect:hover { background: #822; border-color: #B33; color: black; } div.dialog p { margin: 0; } #statusText { text-shadow: 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black; font-size: xx-large; color: white; } .guac-error #statusText { text-shadow: 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black, 0 0 0.25em black; color: #D44; } /* Menu */ #menu { position: fixed; left: 0; top: 0; width: 100%; z-index: 4; background: #FEA; border-bottom: 1px solid black; font-size: 0.8em; } .guac-error #menu { background: #D44; } div#display * { position: relative; margin-left: auto; margin-right: auto; } #menu img { vertical-align: middle; } #menu span { vertical-align: middle; } #menu button { vertical-align: middle; background: #DC8; border-color: #986; color: black; } #menu button:hover { background: #FFC; border-color: #DC8; } .guac-error #menu button { background: #B33; border-color: #822; } .guac-error #menu button:hover { background: #F44; border-color: #B33; } div#clipboardDiv { display: none; position: absolute; background: #FA5; padding: 1em; border: 1px solid black; width: 50em; z-index: 2; opacity: 0.5; } #menu:hover div#clipboardDiv { opacity: 1; } div#clipboardDiv h2 { margin: 0; font-size: 1em; } div#clipboardDiv textarea { width: 100%; } div#menuControl { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: none; z-index: 3; } /* Viewport Clone */ div#viewportClone { display: table; height: 100%; width: 100%; position: fixed; left: 0; top: 0; visibility: hidden; } /* Keyboard event target */ textarea#eventTarget { position: absolute; /* Hide offscreen */ left: 0; top: 0; width: 0; height: 0; opacity: 0; overflow: hidden; } /* Touch-specific menu */ div#touchMenu { position: absolute; visibility: hidden; z-index: 4; white-space: pre; background: black; border: 1px solid silver; padding: 1em; opacity: 0.8; } div#touchClipboardDiv { position: absolute; visibility: hidden; z-index: 4; color: white; background: black; border: 1px solid silver; padding: 1em; opacity: 0.8; max-width: 50em; } div#touchClipboardDiv h2 { margin: 0; font-size: 1em; } div#touchClipboardDiv textarea { width: 100%; } guacamole-0.6.0/src/main/webapp/META-INF/0000755361546300001440000000000011751110427016353 5ustar zhzusersguacamole-0.6.0/src/main/webapp/META-INF/context.xml0000644361546300001440000000012011751110427020552 0ustar zhzusers guacamole-0.6.0/src/main/webapp/index.xhtml0000644361546300001440000002155411751110427017407 0ustar zhzusers Guacamole ${project.version}
Guacamole ${project.version}
guacamole-0.6.0/src/main/webapp/layouts/0000755361546300001440000000000011751110427016713 5ustar zhzusersguacamole-0.6.0/src/main/webapp/layouts/en-us-qwerty-mobile.xml0000644361546300001440000002121111751110427023257 0ustar zhzusers Tab q 1 Q q w 2 W w e 3 E e r 4 R r t 5 T t y 6 Y y u 7 U u i 8 I i o 9 O o p 0 P p [ { ] } Back ?123 a # A a s $ S s d % D d f & F f g * G g h - H h j + J j k ( K k l ) L l ; : ' " Enter Shift z < Z z x > X x c = C c v ' V v b ; B b n , N n m . M m , ! ! ! . ? ? ? / ? Shift Ctrl Super Alt Alt Menu Ctrl guacamole-0.6.0/src/main/webapp/layouts/en-us-qwerty.xml0000644361546300001440000003422111751110427022017 0ustar zhzusers Esc F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 ` ~ 1 ! 2 @ 3 # 4 $ 5 % 6 ^ 7 & 8 * 9 ( 0 ) - _ = + Back Tab q Q Q q w W W w e E E e r R R r t T T t y Y Y y u U U u i I I i o O O o p P P p [ { ] } \ | Caps a A A a s S S s d D D d f F F f g G G g h H H h j J J j k K K k l L L l ; : ' " Enter Shift z Z Z z x X X x c C C c v V V v b B B b n N N n m M M m , < . > / ? Shift Ctrl Super Alt Alt Menu Ctrl Ins Home PgUp Del End PgDn guacamole-0.6.0/src/main/java/0000755361546300001440000000000011751110427014656 5ustar zhzusersguacamole-0.6.0/src/main/java/net/0000755361546300001440000000000011751110427015444 5ustar zhzusersguacamole-0.6.0/src/main/java/net/sourceforge/0000755361546300001440000000000011751110427017767 5ustar zhzusersguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/0000755361546300001440000000000011751110427021724 5ustar zhzusersguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/0000755361546300001440000000000011751110427022512 5ustar zhzusersguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/0000755361546300001440000000000011751110427023573 5ustar zhzusersguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/event/0000755361546300001440000000000011751110427024714 5ustar zhzusers././@LongLink0000000000000000000000000000014700000000000011567 Lustar rootrootguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/event/SessionListenerCollection.javaguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/event/SessionListenerCollection.ja0000644361546300001440000001017711751110427032403 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic.event; import java.lang.reflect.InvocationTargetException; import java.util.AbstractCollection; import java.util.ArrayList; import java.util.Collection; import java.util.Iterator; import javax.servlet.http.HttpSession; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.basic.properties.BasicGuacamoleProperties; import net.sourceforge.guacamole.properties.GuacamoleProperties; /** * A collection which iterates over instances of all listeners defined in * guacamole.properties. For each listener defined in guacamole.properties, a * new instance is created and stored in this collection. The contents of this * collection is stored within the HttpSession, and will be reused if available. * Each listener is instantiated once per session. Listeners are singleton * classes within the session, but not globally. * * @author Michael Jumper */ public class SessionListenerCollection extends AbstractCollection { /** * The name of the session attribute which will contain the listener * collection. */ private static final String SESSION_ATTRIBUTE = "GUAC_LISTENERS"; /** * The wrapped collection of listeners, possibly retrieved from the * session. */ private Collection listeners; /** * Creates a new SessionListenerCollection which stores all listeners * defined in guacamole.properties in the provided session. If listeners * are already stored in the provided session, those listeners are used * instead. * * @param session The HttpSession to store listeners within. * @throws GuacamoleException If an error occurs while instantiating new * listeners. */ public SessionListenerCollection(HttpSession session) throws GuacamoleException { // Pull cached listeners from session listeners = (Collection) session.getAttribute(SESSION_ATTRIBUTE); // If no listeners stored, listeners must be loaded first if (listeners == null) { // Load listeners from guacamole.properties listeners = new ArrayList(); try { // Get all listener classes from properties Collection listenerClasses = GuacamoleProperties.getProperty(BasicGuacamoleProperties.EVENT_LISTENERS); // Add an instance of each class to the list if (listenerClasses != null) { for (Class listenerClass : listenerClasses) { // Instantiate listener Object listener = listenerClass.getConstructor().newInstance(); // Add listener to collection of listeners listeners.add(listener); } } } catch (InstantiationException e) { throw new GuacamoleException("Listener class is abstract.", e); } catch (IllegalAccessException e) { throw new GuacamoleException("No access to listener constructor.", e); } catch (IllegalArgumentException e) { // This should not happen, given there ARE no arguments throw new GuacamoleException("Illegal arguments to listener constructor.", e); } catch (InvocationTargetException e) { throw new GuacamoleException("Error while instantiating listener.", e); } catch (NoSuchMethodException e) { throw new GuacamoleException("Listener has no default constructor.", e); } catch (SecurityException e) { throw new GuacamoleException("Security restrictions prevent instantiation of listener.", e); } // Store listeners for next time session.setAttribute(SESSION_ATTRIBUTE, listeners); } } @Override public Iterator iterator() { return listeners.iterator(); } @Override public int size() { return listeners.size(); } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/AuthenticatingHttpServlet.java0000644361546300001440000002457111751110427031623 0ustar zhzusers package net.sourceforge.guacamole.net.basic; import java.io.IOException; import java.util.Collection; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.auth.AuthenticationProvider; import net.sourceforge.guacamole.net.auth.Credentials; import net.sourceforge.guacamole.net.basic.event.SessionListenerCollection; import net.sourceforge.guacamole.net.basic.properties.BasicGuacamoleProperties; import net.sourceforge.guacamole.net.event.AuthenticationFailureEvent; import net.sourceforge.guacamole.net.event.AuthenticationSuccessEvent; import net.sourceforge.guacamole.net.event.listener.AuthenticationFailureListener; import net.sourceforge.guacamole.net.event.listener.AuthenticationSuccessListener; import net.sourceforge.guacamole.properties.GuacamoleProperties; import net.sourceforge.guacamole.protocol.GuacamoleConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Abstract servlet which provides an authenticatedService() function that * is only called if the HTTP request is authenticated, or the current * HTTP session has already been authenticated. * * Authorized configurations are retrieved using the authentication provider * defined in guacamole.properties. The authentication provider has access * to the request and session, in addition to any submitted username and * password, in order to authenticate the user. * * All authorized configurations will be stored in the current HttpSession. * * Success and failure are logged. * * @author Michael Jumper */ public abstract class AuthenticatingHttpServlet extends HttpServlet { private Logger logger = LoggerFactory.getLogger(AuthenticatingHttpServlet.class); /** * The session attribute holding the map of configurations. */ private static final String CONFIGURATIONS_ATTRIBUTE = "GUAC_CONFIGS"; /** * The session attribute holding the credentials authorizing this session. */ private static final String CREDENTIALS_ATTRIBUTE = "GUAC_CREDS"; /** * The AuthenticationProvider to use to authenticate all requests. */ private AuthenticationProvider authProvider; @Override public void init() throws ServletException { // Get auth provider instance try { authProvider = GuacamoleProperties.getRequiredProperty(BasicGuacamoleProperties.AUTH_PROVIDER); } catch (GuacamoleException e) { logger.error("Error getting authentication provider from properties.", e); throw new ServletException(e); } } /** * Notifies all listeners in the given collection that authentication has * failed. * * @param listeners A collection of all listeners that should be notified. * @param credentials The credentials associated with the authentication * request that failed. */ private void notifyFailed(Collection listeners, Credentials credentials) { // Build event for auth failure AuthenticationFailureEvent event = new AuthenticationFailureEvent(credentials); // Notify all listeners for (Object listener : listeners) { try { if (listener instanceof AuthenticationFailureListener) ((AuthenticationFailureListener) listener).authenticationFailed(event); } catch (GuacamoleException e) { logger.error("Error notifying AuthenticationFailureListener.", e); } } } /** * Notifies all listeners in the given collection that authentication was * successful. * * @param listeners A collection of all listeners that should be notified. * @param credentials The credentials associated with the authentication * request that succeeded. * @return true if all listeners are allowing the authentication success, * or if there are no listeners, and false if any listener is * canceling the authentication success. Note that once one * listener cancels, no other listeners will run. * @throws GuacamoleException If any listener throws an error while being * notified. Note that if any listener throws an * error, the success is canceled, and no other * listeners will run. */ private boolean notifySuccess(Collection listeners, Credentials credentials) throws GuacamoleException { // Build event for auth success AuthenticationSuccessEvent event = new AuthenticationSuccessEvent(credentials); // Notify all listeners for (Object listener : listeners) { if (listener instanceof AuthenticationSuccessListener) { // Cancel immediately if hook returns false if (!((AuthenticationSuccessListener) listener).authenticationSucceeded(event)) return false; } } return true; } /** * Sends a predefined, generic error message to the user, along with a * "403 - Forbidden" HTTP status code in the response. * * @param response The response to send the error within. * @throws IOException If an error occurs while sending the error. */ private void failAuthentication(HttpServletResponse response) throws IOException { response.sendError(HttpServletResponse.SC_FORBIDDEN); } /** * Returns the credentials associated with the given session. * * @param session The session to retrieve credentials from. * @return The credentials associated with the given session. */ protected Credentials getCredentials(HttpSession session) { return (Credentials) session.getAttribute(CREDENTIALS_ATTRIBUTE); } /** * Returns the configurations associated with the given session. * * @param session The session to retrieve configurations from. * @return The configurations associated with the given session. */ protected Map getConfigurations(HttpSession session) { return (Map) session.getAttribute(CONFIGURATIONS_ATTRIBUTE); } @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { HttpSession httpSession = request.getSession(true); // Try to get configs from session Map configs = getConfigurations(httpSession); // If no configs, try to authenticate the user to get the configs using // this request. if (configs == null) { SessionListenerCollection listeners; try { listeners = new SessionListenerCollection(httpSession); } catch (GuacamoleException e) { logger.error("Failed to retrieve listeners. Authentication canceled.", e); failAuthentication(response); return; } // Retrieve username and password from parms String username = request.getParameter("username"); String password = request.getParameter("password"); // Build credentials object Credentials credentials = new Credentials(); credentials.setSession(httpSession); credentials.setRequest(request); credentials.setUsername(username); credentials.setPassword(password); // Get authorized configs try { configs = authProvider.getAuthorizedConfigurations(credentials); } /******** HANDLE FAILED AUTHENTICATION ********/ // If error retrieving configs, fail authentication, notify listeners catch (GuacamoleException e) { logger.error("Error retrieving configuration(s) for user \"{}\".", credentials.getUsername(), e); notifyFailed(listeners, credentials); failAuthentication(response); return; } // If no configs, fail authentication, notify listeners if (configs == null) { logger.warn("Authentication attempt from {} for user \"{}\" failed.", request.getRemoteAddr(), credentials.getUsername()); notifyFailed(listeners, credentials); failAuthentication(response); return; } /******** HANDLE SUCCESSFUL AUTHENTICATION ********/ try { // Otherwise, authentication has been succesful logger.info("User \"{}\" successfully authenticated from {}.", credentials.getUsername(), request.getRemoteAddr()); // Notify of success, cancel if requested if (!notifySuccess(listeners, credentials)) { logger.info("Successful authentication canceled by hook."); failAuthentication(response); return; } } catch (GuacamoleException e) { // Cancel authentication success if hook throws exception logger.error("Successful authentication canceled by error in hook.", e); failAuthentication(response); return; } // Associate configs and credentials with session httpSession.setAttribute(CONFIGURATIONS_ATTRIBUTE, configs); httpSession.setAttribute(CREDENTIALS_ATTRIBUTE, credentials); } // Allow servlet to run now that authentication has been validated authenticatedService(configs, request, response); } protected abstract void authenticatedService( Map configs, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException; } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/ConfigurationList.java0000644361546300001440000000434311751110427030105 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.io.IOException; import java.io.PrintWriter; import java.util.Map; import java.util.Map.Entry; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import net.sourceforge.guacamole.protocol.GuacamoleConfiguration; /** * Simple HttpServlet which outputs XML containing a list of all authorized * configurations for the current user. * * @author Michael Jumper */ public class ConfigurationList extends AuthenticatingHttpServlet { @Override protected void authenticatedService( Map configs, HttpServletRequest request, HttpServletResponse response) throws IOException { // Do not cache response.setHeader("Cache-Control", "no-cache"); // Write XML response.setHeader("Content-Type", "text/xml"); PrintWriter out = response.getWriter(); out.println(""); for (Entry entry : configs.entrySet()) { GuacamoleConfiguration config = entry.getValue(); // Write config out.print(""); } out.println(""); } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/WebSocketSupportLoader.java0000644361546300001440000000777611751110427031071 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import javax.servlet.Servlet; import javax.servlet.ServletContext; import javax.servlet.ServletContextEvent; import javax.servlet.ServletContextListener; import net.sourceforge.guacamole.GuacamoleException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Simple ServletContextListener which loads a WebSocket tunnel implementation * if available, using the Servlet 3.0 API to dynamically load and install * the tunnel servlet. * * Note that because Guacamole depends on the Servlet 2.5 API, and 3.0 may * not be available or needed if WebSocket is not desired, the 3.0 API is * detected and invoked dynamically via reflection. * * @author Michael Jumper */ public class WebSocketSupportLoader implements ServletContextListener { private Logger logger = LoggerFactory.getLogger(WebSocketSupportLoader.class); @Override public void contextDestroyed(ServletContextEvent sce) { } @Override public void contextInitialized(ServletContextEvent sce) { try { // Attempt to find WebSocket servlet Class servlet = (Class) GuacamoleClassLoader.getInstance().findClass( "net.sourceforge.guacamole.net.basic.BasicGuacamoleWebSocketTunnelServlet" ); // Dynamically add servlet IF SERVLET 3.0 API AVAILABLE! try { // Get servlet registration class Class regClass = Class.forName("javax.servlet.ServletRegistration"); // Get and invoke addServlet() Method addServlet = ServletContext.class.getMethod("addServlet", String.class, Class.class); Object reg = addServlet.invoke(sce.getServletContext(), "WebSocketTunnel", servlet); // Get and invoke addMapping() Method addMapping = regClass.getMethod("addMapping", String[].class); addMapping.invoke(reg, (Object) new String[]{"/websocket-tunnel"}); // If we succesfully load and register the WebSocket tunnel servlet, // WebSocket is supported. logger.info("WebSocket support found and loaded."); } // Servlet API 3.0 unsupported catch (ClassNotFoundException e) { logger.info("Servlet API 3.0 not found.", e); } catch (NoSuchMethodException e) { logger.warn("Servlet API 3.0 found, but incomplete.", e); } // Servlet API 3.0 found, but errors during use catch (IllegalAccessException e) { logger.error("Unable to load WebSocket tunnel servlet.", e); } catch (InvocationTargetException e) { logger.error("Internal error loading WebSocket tunnel servlet.", e); } } // If no such servlet class, WebSocket support not present catch (ClassNotFoundException e) { logger.info("WebSocket support not found."); } // Log all GuacamoleExceptions catch (GuacamoleException e) { logger.error("Unable to load/detect WebSocket support.", e); } } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/GuacamoleClassLoader.java0000644361546300001440000001332011751110427030447 0ustar zhzusers package net.sourceforge.guacamole.net.basic; /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 1.1 (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * The Original Code is guacamole-common. * * The Initial Developer of the Original Code is * Michael Jumper. * Portions created by the Initial Developer are Copyright (C) 2010 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Alternatively, the contents of this file may be used under the terms of * either the GNU General Public License Version 2 or later (the "GPL"), or * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), * in which case the provisions of the GPL or the LGPL are applicable instead * of those above. If you wish to allow use of your version of this file only * under the terms of either the GPL or the LGPL, and not to allow others to * use your version of this file under the terms of the MPL, indicate your * decision by deleting the provisions above and replace them with the notice * and other provisions required by the GPL or the LGPL. If you do not delete * the provisions above, a recipient may use your version of this file under * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ import java.io.File; import java.io.FilenameFilter; import java.net.MalformedURLException; import java.net.URL; import java.net.URLClassLoader; import java.security.AccessController; import java.security.PrivilegedActionException; import java.security.PrivilegedExceptionAction; import java.util.ArrayList; import java.util.Collection; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.basic.properties.BasicGuacamoleProperties; import net.sourceforge.guacamole.properties.GuacamoleProperties; /** * A ClassLoader implementation which finds classes within a configurable * directory. This directory is set within guacamole.properties. * * @author Michael Jumper */ public class GuacamoleClassLoader extends ClassLoader { private URLClassLoader classLoader = null; private static GuacamoleException exception = null; private static GuacamoleClassLoader instance = null; static { try { // Attempt to create singleton classloader which loads classes from // all .jar's in the lib directory defined in guacamole.properties instance = AccessController.doPrivileged(new PrivilegedExceptionAction() { @Override public GuacamoleClassLoader run() throws GuacamoleException { return new GuacamoleClassLoader( GuacamoleProperties.getProperty(BasicGuacamoleProperties.LIB_DIRECTORY) ); } }); } catch (PrivilegedActionException e) { // On error, record exception exception = (GuacamoleException) e.getException(); } } private GuacamoleClassLoader(File libDirectory) throws GuacamoleException { // If no directory provided, just direct requests to parent classloader if (libDirectory == null) return; // Validate directory is indeed a directory if (!libDirectory.isDirectory()) throw new GuacamoleException(libDirectory + " is not a directory."); // Get list of URLs for all .jar's in the lib directory Collection jarURLs = new ArrayList(); for (File file : libDirectory.listFiles(new FilenameFilter() { @Override public boolean accept(File dir, String name) { // If it ends with .jar, accept the file return name.endsWith(".jar"); } })) { try { // Add URL for the .jar to the jar URL list jarURLs.add(file.toURI().toURL()); } catch (MalformedURLException e) { throw new GuacamoleException(e); } } // Set delegate classloader to new URLClassLoader which loads from the // .jars found above. URL[] urls = new URL[jarURLs.size()]; classLoader = new URLClassLoader( jarURLs.toArray(urls), getClass().getClassLoader() ); } /** * Returns an instance of a GuacamoleClassLoader which finds classes * within the directory configured in guacamole.properties. * * @return An instance of a GuacamoleClassLoader. * @throws GuacamoleException If no instance could be returned due to an * error. */ public static GuacamoleClassLoader getInstance() throws GuacamoleException { // If instance could not be created, rethrow original exception if (exception != null) throw exception; return instance; } @Override protected Class findClass(String name) throws ClassNotFoundException { // If no classloader, use default loader if (classLoader == null) return Class.forName(name); // Otherwise, delegate return classLoader.loadClass(name); } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/BasicLogout.java0000644361546300001440000000310211751110427026645 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.io.IOException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; /** * Logs out the current user by invalidating the associated HttpSession and * redirecting the user to the login page. * * @author Michael Jumper */ public class BasicLogout extends HttpServlet { @Override protected void service(HttpServletRequest request, HttpServletResponse response) throws IOException { // Invalidate session, if any HttpSession httpSession = request.getSession(false); if (httpSession != null) httpSession.invalidate(); // Redirect to index response.sendRedirect("index.xhtml"); } } ././@LongLink0000000000000000000000000000014700000000000011567 Lustar rootrootguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/BasicFileAuthenticationProvider.javaguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/BasicFileAuthenticationProvider.ja0000644361546300001440000003644511751110427032357 0ustar zhzusers package net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.io.BufferedReader; import net.sourceforge.guacamole.net.auth.AuthenticationProvider; import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.Reader; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.util.Collections; import java.util.HashMap; import java.util.Map; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.auth.Credentials; import net.sourceforge.guacamole.properties.FileGuacamoleProperty; import net.sourceforge.guacamole.properties.GuacamoleProperties; import net.sourceforge.guacamole.protocol.GuacamoleConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.XMLReader; import org.xml.sax.helpers.DefaultHandler; import org.xml.sax.helpers.XMLReaderFactory; /** * Authenticates users against a static list of username/password pairs. * Each username/password may be associated with multiple configurations. * This list is stored in an XML file which is reread if modified. * * @author Michael Jumper, Michal Kotas */ public class BasicFileAuthenticationProvider implements AuthenticationProvider { private Logger logger = LoggerFactory.getLogger(BasicFileAuthenticationProvider.class); private long mappingTime; private Map mapping; /** * The filename of the XML file to read the user mapping from. */ public static final FileGuacamoleProperty BASIC_USER_MAPPING = new FileGuacamoleProperty() { @Override public String getName() { return "basic-user-mapping"; } }; private File getUserMappingFile() throws GuacamoleException { // Get user mapping file return GuacamoleProperties.getProperty(BASIC_USER_MAPPING); } public synchronized void init() throws GuacamoleException { // Get user mapping file File mapFile = getUserMappingFile(); if (mapFile == null) throw new GuacamoleException("Missing \"basic-user-mapping\" parameter required for basic login."); logger.info("Reading user mapping file: {}", mapFile); // Parse document try { // Set up parser BasicUserMappingContentHandler contentHandler = new BasicUserMappingContentHandler(); XMLReader parser = XMLReaderFactory.createXMLReader(); parser.setContentHandler(contentHandler); // Read and parse file Reader reader = new BufferedReader(new FileReader(mapFile)); parser.parse(new InputSource(reader)); reader.close(); // Init mapping and record mod time of file mappingTime = mapFile.lastModified(); mapping = contentHandler.getUserMapping(); } catch (IOException e) { throw new GuacamoleException("Error reading basic user mapping file.", e); } catch (SAXException e) { throw new GuacamoleException("Error parsing basic user mapping XML.", e); } } @Override public Map getAuthorizedConfigurations(Credentials credentials) throws GuacamoleException { // Check mapping file mod time File userMappingFile = getUserMappingFile(); if (userMappingFile.exists() && mappingTime < userMappingFile.lastModified()) { // If modified recently, gain exclusive access and recheck synchronized (this) { if (userMappingFile.exists() && mappingTime < userMappingFile.lastModified()) { logger.info("User mapping file {} has been modified.", userMappingFile); init(); // If still not up to date, re-init } } } // If no mapping available, report as such if (mapping == null) throw new GuacamoleException("User mapping could not be read."); // Validate and return info for given user and pass AuthInfo info = mapping.get(credentials.getUsername()); if (info != null && info.validate(credentials.getUsername(), credentials.getPassword())) return info.getConfigurations(); // Unauthorized return null; } public static class AuthInfo { public static enum Encoding { PLAIN_TEXT, MD5 } private String auth_username; private String auth_password; private Encoding auth_encoding; private Map configs; public AuthInfo(String auth_username, String auth_password, Encoding auth_encoding) { this.auth_username = auth_username; this.auth_password = auth_password; this.auth_encoding = auth_encoding; configs = new HashMap(); } private static final char HEX_CHARS[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' }; public static String getHexString(byte[] bytes) { if (bytes == null) return null; StringBuilder hex = new StringBuilder(2 * bytes.length); for (byte b : bytes) { hex.append(HEX_CHARS[(b & 0xF0) >> 4]) .append(HEX_CHARS[(b & 0x0F) ]); } return hex.toString(); } public boolean validate(String username, String password) { // If username matches if (username != null && password != null && username.equals(auth_username)) { switch (auth_encoding) { case PLAIN_TEXT: // Compare plaintext return password.equals(auth_password); case MD5: // Compare hashed password try { MessageDigest digest = MessageDigest.getInstance("MD5"); String hashedPassword = getHexString(digest.digest(password.getBytes())); return hashedPassword.equals(auth_password.toUpperCase()); } catch (NoSuchAlgorithmException e) { throw new UnsupportedOperationException("Unexpected lack of MD5 support.", e); } } } return false; } public GuacamoleConfiguration getConfiguration(String name) { // Create new configuration if not already in map GuacamoleConfiguration config = configs.get(name); if (config == null) { config = new GuacamoleConfiguration(); configs.put(name, config); } return config; } public Map getConfigurations() { return configs; } } private static class BasicUserMappingContentHandler extends DefaultHandler { private Map authMapping = new HashMap(); public Map getUserMapping() { return Collections.unmodifiableMap(authMapping); } private enum State { ROOT, USER_MAPPING, /* Username/password pair */ AUTH_INFO, /* Connection configuration information */ CONNECTION, PROTOCOL, PARAMETER, /* Configuration information associated with default connection */ DEFAULT_CONNECTION_PROTOCOL, DEFAULT_CONNECTION_PARAMETER, END; } private State state = State.ROOT; private AuthInfo current = null; private String currentParameter = null; private String currentConnection = null; @Override public void endElement(String uri, String localName, String qName) throws SAXException { switch (state) { case USER_MAPPING: if (localName.equals("user-mapping")) { state = State.END; return; } break; case AUTH_INFO: if (localName.equals("authorize")) { // Finalize mapping for this user authMapping.put( current.auth_username, current ); state = State.USER_MAPPING; return; } break; case CONNECTION: if (localName.equals("connection")) { state = State.AUTH_INFO; return; } break; case PROTOCOL: if (localName.equals("protocol")) { state = State.CONNECTION; return; } break; case PARAMETER: if (localName.equals("param")) { state = State.CONNECTION; return; } break; case DEFAULT_CONNECTION_PROTOCOL: if (localName.equals("protocol")) { state = State.AUTH_INFO; return; } break; case DEFAULT_CONNECTION_PARAMETER: if (localName.equals("param")) { state = State.AUTH_INFO; return; } break; } throw new SAXException("Tag not yet complete: " + localName); } @Override public void startElement(String uri, String localName, String qName, Attributes attributes) throws SAXException { switch (state) { // Document must be case ROOT: if (localName.equals("user-mapping")) { state = State.USER_MAPPING; return; } break; case USER_MAPPING: if (localName.equals("authorize")) { AuthInfo.Encoding encoding; String encodingString = attributes.getValue("encoding"); if (encodingString == null) encoding = AuthInfo.Encoding.PLAIN_TEXT; else if (encodingString.equals("plain")) encoding = AuthInfo.Encoding.PLAIN_TEXT; else if (encodingString.equals("md5")) encoding = AuthInfo.Encoding.MD5; else throw new SAXException("Invalid encoding type"); current = new AuthInfo( attributes.getValue("username"), attributes.getValue("password"), encoding ); // Next state state = State.AUTH_INFO; return; } break; case AUTH_INFO: if (localName.equals("connection")) { currentConnection = attributes.getValue("name"); if (currentConnection == null) throw new SAXException("Attribute \"name\" required for connection tag."); // Next state state = State.CONNECTION; return; } if (localName.equals("protocol")) { // Associate protocol with default connection currentConnection = "DEFAULT"; // Next state state = State.DEFAULT_CONNECTION_PROTOCOL; return; } if (localName.equals("param")) { // Associate parameter with default connection currentConnection = "DEFAULT"; currentParameter = attributes.getValue("name"); if (currentParameter == null) throw new SAXException("Attribute \"name\" required for param tag."); // Next state state = State.DEFAULT_CONNECTION_PARAMETER; return; } break; case CONNECTION: if (localName.equals("protocol")) { // Next state state = State.PROTOCOL; return; } if (localName.equals("param")) { currentParameter = attributes.getValue("name"); if (currentParameter == null) throw new SAXException("Attribute \"name\" required for param tag."); // Next state state = State.PARAMETER; return; } break; } throw new SAXException("Unexpected tag: " + localName); } @Override public void characters(char[] ch, int start, int length) throws SAXException { String str = new String(ch, start, length); switch (state) { case PROTOCOL: case DEFAULT_CONNECTION_PROTOCOL: current.getConfiguration(currentConnection) .setProtocol(str); return; case PARAMETER: case DEFAULT_CONNECTION_PARAMETER: current.getConfiguration(currentConnection) .setParameter(currentParameter, str); return; } if (str.trim().length() != 0) throw new SAXException("Unexpected character data."); } } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/0000755361546300001440000000000011751110427025767 5ustar zhzusers././@LongLink0000000000000000000000000000016100000000000011563 Lustar rootrootguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/AuthenticationProviderProperty.javaguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/AuthenticationProviderP0000644361546300001440000000600611751110427032526 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic.properties; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.lang.reflect.InvocationTargetException; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.auth.AuthenticationProvider; import net.sourceforge.guacamole.net.basic.GuacamoleClassLoader; import net.sourceforge.guacamole.properties.GuacamoleProperty; /** * A GuacamoleProperty whose value is the name of a class to use to * authenticate users. This class must implement AuthenticationProvider. * * @author Michael Jumper */ public abstract class AuthenticationProviderProperty implements GuacamoleProperty { @Override public AuthenticationProvider parseValue(String authProviderClassName) throws GuacamoleException { // If no property provided, return null. if (authProviderClassName == null) return null; // Get auth provider instance try { Object obj = GuacamoleClassLoader.getInstance().loadClass(authProviderClassName) .getConstructor().newInstance(); if (!(obj instanceof AuthenticationProvider)) throw new GuacamoleException("Specified authentication provider class is not a AuthenticationProvider."); return (AuthenticationProvider) obj; } catch (ClassNotFoundException e) { throw new GuacamoleException("Authentication provider class not found", e); } catch (NoSuchMethodException e) { throw new GuacamoleException("Default constructor for authentication provider not present", e); } catch (SecurityException e) { throw new GuacamoleException("Creation of authentication provider disallowed; check your security settings", e); } catch (InstantiationException e) { throw new GuacamoleException("Unable to instantiate authentication provider", e); } catch (IllegalAccessException e) { throw new GuacamoleException("Unable to access default constructor of authentication provider", e); } catch (InvocationTargetException e) { throw new GuacamoleException("Internal error in constructor of authentication provider", e.getTargetException()); } } } ././@LongLink0000000000000000000000000000015100000000000011562 Lustar rootrootguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/EventListenersProperty.javaguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/EventListenersProperty.0000644361546300001440000000440211751110427032507 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic.properties; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.util.ArrayList; import java.util.Collection; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.net.basic.GuacamoleClassLoader; import net.sourceforge.guacamole.properties.GuacamoleProperty; /** * A GuacamoleProperty whose value is a comma-separated list of class names, * where each class will be used as a listener for events. * * @author Michael Jumper */ public abstract class EventListenersProperty implements GuacamoleProperty> { @Override public Collection parseValue(String classNameList) throws GuacamoleException { // If no property provided, return null. if (classNameList == null) return null; // Parse list String[] classNames = classNameList.split(",[\\s]*"); // Fill list of classes Collection listeners = new ArrayList(); try { // Load all classes in list for (String className : classNames) { Class clazz = GuacamoleClassLoader.getInstance().loadClass(className); listeners.add(clazz); } } catch (ClassNotFoundException e) { throw new GuacamoleException("Listener class not found.", e); } catch (SecurityException e) { throw new GuacamoleException("Security settings prevent loading of listener class.", e); } return listeners; } } ././@LongLink0000000000000000000000000000015300000000000011564 Lustar rootrootguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/BasicGuacamoleProperties.javaguacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/properties/BasicGuacamolePropertie0000644361546300001440000000372311751110427032450 0ustar zhzusers package net.sourceforge.guacamole.net.basic.properties; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import net.sourceforge.guacamole.properties.FileGuacamoleProperty; /** * Properties used by the default Guacamole web application. * * @author Michael Jumper */ public class BasicGuacamoleProperties { /** * This class should not be instantiated. */ private BasicGuacamoleProperties() {} /** * The authentication provider to user when retrieving the authorized * configurations of a user. */ public static final AuthenticationProviderProperty AUTH_PROVIDER = new AuthenticationProviderProperty() { @Override public String getName() { return "auth-provider"; } }; /** * The directory to search for authentication provider classes. */ public static final FileGuacamoleProperty LIB_DIRECTORY = new FileGuacamoleProperty() { @Override public String getName() { return "lib-directory"; } }; /** * The comma-separated list of all classes to use as event listeners. */ public static final EventListenersProperty EVENT_LISTENERS = new EventListenersProperty() { @Override public String getName() { return "event-listeners"; } }; } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/BasicLogin.java0000644361546300001440000000317511751110427026456 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.io.IOException; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import net.sourceforge.guacamole.protocol.GuacamoleConfiguration; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Simple dummy AuthenticatingHttpServlet which provides an endpoint for arbitrary * authentication requests that do not expect a response. * * @author Michael Jumper */ public class BasicLogin extends AuthenticatingHttpServlet { private Logger logger = LoggerFactory.getLogger(BasicLogin.class); @Override protected void authenticatedService( Map configs, HttpServletRequest request, HttpServletResponse response) throws IOException { logger.info("Login was successful."); } } guacamole-0.6.0/src/main/java/net/sourceforge/guacamole/net/basic/BasicGuacamoleTunnelServlet.java0000644361546300001440000002131111751110427032026 0ustar zhzuserspackage net.sourceforge.guacamole.net.basic; /* * Guacamole - Clientless Remote Desktop * Copyright (C) 2010 Michael Jumper * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . */ import java.io.IOException; import java.util.Collection; import java.util.Map; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import javax.servlet.http.HttpSession; import net.sourceforge.guacamole.GuacamoleException; import net.sourceforge.guacamole.GuacamoleSecurityException; import net.sourceforge.guacamole.net.InetGuacamoleSocket; import net.sourceforge.guacamole.protocol.GuacamoleConfiguration; import net.sourceforge.guacamole.properties.GuacamoleProperties; import net.sourceforge.guacamole.net.GuacamoleSocket; import net.sourceforge.guacamole.net.GuacamoleTunnel; import net.sourceforge.guacamole.net.auth.Credentials; import net.sourceforge.guacamole.net.basic.event.SessionListenerCollection; import net.sourceforge.guacamole.net.event.TunnelCloseEvent; import net.sourceforge.guacamole.net.event.TunnelConnectEvent; import net.sourceforge.guacamole.net.event.listener.TunnelCloseListener; import net.sourceforge.guacamole.net.event.listener.TunnelConnectListener; import net.sourceforge.guacamole.protocol.ConfiguredGuacamoleSocket; import net.sourceforge.guacamole.servlet.GuacamoleHTTPTunnelServlet; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Connects users to a tunnel associated with the authorized configuration * having the given ID. * * @author Michael Jumper */ public class BasicGuacamoleTunnelServlet extends AuthenticatingHttpServlet { private Logger logger = LoggerFactory.getLogger(BasicGuacamoleTunnelServlet.class); @Override protected void authenticatedService( Map configs, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { // If authenticated, respond as tunnel tunnelServlet.service(request, response); } /** * Notifies all listeners in the given collection that a tunnel has been * connected. * * @param listeners A collection of all listeners that should be notified. * @param credentials The credentials associated with the authentication * request that connected the tunnel. * @return true if all listeners are allowing the tunnel to connect, * or if there are no listeners, and false if any listener is * canceling the connection. Note that once one listener cancels, * no other listeners will run. * @throws GuacamoleException If any listener throws an error while being * notified. Note that if any listener throws an * error, the connect is canceled, and no other * listeners will run. */ private boolean notifyConnect(Collection listeners, Credentials credentials, GuacamoleTunnel tunnel) throws GuacamoleException { // Build event for auth success TunnelConnectEvent event = new TunnelConnectEvent(credentials, tunnel); // Notify all listeners for (Object listener : listeners) { if (listener instanceof TunnelConnectListener) { // Cancel immediately if hook returns false if (!((TunnelConnectListener) listener).tunnelConnected(event)) return false; } } return true; } /** * Notifies all listeners in the given collection that a tunnel has been * closed. * * @param listeners A collection of all listeners that should be notified. * @param credentials The credentials associated with the authentication * request that closed the tunnel. * @return true if all listeners are allowing the tunnel to close, * or if there are no listeners, and false if any listener is * canceling the close. Note that once one listener cancels, * no other listeners will run. * @throws GuacamoleException If any listener throws an error while being * notified. Note that if any listener throws an * error, the close is canceled, and no other * listeners will run. */ private boolean notifyClose(Collection listeners, Credentials credentials, GuacamoleTunnel tunnel) throws GuacamoleException { // Build event for auth success TunnelCloseEvent event = new TunnelCloseEvent(credentials, tunnel); // Notify all listeners for (Object listener : listeners) { if (listener instanceof TunnelCloseListener) { // Cancel immediately if hook returns false if (!((TunnelCloseListener) listener).tunnelClosed(event)) return false; } } return true; } /** * Wrapped GuacamoleHTTPTunnelServlet which will handle all authenticated * requests. */ private GuacamoleHTTPTunnelServlet tunnelServlet = new GuacamoleHTTPTunnelServlet() { @Override protected GuacamoleTunnel doConnect(HttpServletRequest request) throws GuacamoleException { HttpSession httpSession = request.getSession(true); // Get listeners final SessionListenerCollection listeners; try { listeners = new SessionListenerCollection(httpSession); } catch (GuacamoleException e) { logger.error("Failed to retrieve listeners. Authentication canceled.", e); throw e; } // Get ID of connection String id = request.getParameter("id"); // Get credentials final Credentials credentials = getCredentials(httpSession); // Get authorized configs Map configs = getConfigurations(httpSession); // If no configs/credentials in session, not authorized if (credentials == null || configs == null) throw new GuacamoleSecurityException("Cannot connect - user not logged in."); // Get authorized config GuacamoleConfiguration config = configs.get(id); if (config == null) { logger.warn("Configuration id={} not found.", id); throw new GuacamoleSecurityException("Requested configuration is not authorized."); } logger.info("Successful connection from {} to \"{}\".", request.getRemoteAddr(), id); // Configure and connect socket String hostname = GuacamoleProperties.getProperty(GuacamoleProperties.GUACD_HOSTNAME); int port = GuacamoleProperties.getProperty(GuacamoleProperties.GUACD_PORT); GuacamoleSocket socket = new ConfiguredGuacamoleSocket( new InetGuacamoleSocket(hostname, port), config ); // Associate socket with tunnel GuacamoleTunnel tunnel = new GuacamoleTunnel(socket) { @Override public void close() throws GuacamoleException { // Only close if not canceled if (!notifyClose(listeners, credentials, this)) throw new GuacamoleException("Tunnel close canceled by listener."); // Close if no exception due to listener super.close(); } }; // Notify listeners about connection if (!notifyConnect(listeners, credentials, tunnel)) { logger.info("Connection canceled by listener."); return null; } return tunnel; } }; } guacamole-0.6.0/.gitignore0000644361546300001440000000001311751110427014204 0ustar zhzuserstarget/ *~ guacamole-0.6.0/doc/0000755361546300001440000000000011751110427012767 5ustar zhzusersguacamole-0.6.0/doc/example/0000755361546300001440000000000011751110427014422 5ustar zhzusersguacamole-0.6.0/doc/example/user-mapping.xml0000644361546300001440000000223211751110427017552 0ustar zhzusers vnc localhost 5900 VNCPASS vnc localhost 5901 VNCPASS vnc otherhost 5900 VNCPASS guacamole-0.6.0/doc/example/guacamole.properties0000644361546300001440000000210511751110427020473 0ustar zhzusers # Guacamole - Clientless Remote Desktop # Copyright (C) 2010 Michael Jumper # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # Hostname and port of guacamole proxy guacd-hostname: localhost guacd-port: 4822 # Auth provider class (authenticates user/pass combination, needed if using the provided login screen) auth-provider: net.sourceforge.guacamole.net.basic.BasicFileAuthenticationProvider basic-user-mapping: /path/to/user-mapping.xml guacamole-0.6.0/ChangeLog0000644361546300001440000000214211751110427013773 0ustar zhzusers2012-05-04 Michael Jumper * Touch-specific menus and keyboard support * Logout prompt * Multiple connections per user in user-mapping.xml * Touch-related UI usability improvements * Support for single sign-on * Support for authentication involving parameters in URLs * Test for WebSocket support (pluggable WebSocket support not yet stable) * UI style improvements 2011-12-11 Michael Jumper * Improved UI usability * Support for multiple connections per user * Real support for authentication providers * Logout button * Connection type icons (thanks to Tango Desktop Project) * Fixed Ctrl-Alt-Delete bug (ticket #57) * Fixed arrow key rendering (Chrome-specific issue) * Fixed exception in XMLReader.parse() (ticket #66) 2011-07-13 Michael Jumper * Migrated to new tunnel API * Major cleanup of UI * Fixed corrupt mouse cursor image * Improved JavaScript style * Logging (via SLF4J) 2011-03-02 Michael Jumper * Initial release of modern 0.3.0+ series guacamole-0.6.0/README0000644361546300001440000000473511751110427013113 0ustar zhzusers ------------------------------------------------------------ About this README ------------------------------------------------------------ This README is intended to provide quick and to-the-point documentation for technical users intending to compile parts of Guacamole themselves. Distribution-specific packages are available from the files section of the main project page: http://sourceforge.net/projects/guacamole/files/ Distribution-specific documentation is provided on the Guacamole wiki: http://guac-dev.org/ ------------------------------------------------------------ What is Guacamole? ------------------------------------------------------------ Guacamole is an HTML5 web application that provides access to your desktop using remote desktop protocols. A centralized server acts as a tunnel and proxy, allowing access to multiple desktops through a web browser; no plugins needed. The client requires nothing more than a web browser supporting HTML5 and AJAX. The Guacamole project maintains this web application and the Java and C libraries and programs it depends on. These libraries and programs are separate in order to enable others to implement other applications using the same underlying technology. All components and dependencies of Guacamole are free and open source. ------------------------------------------------------------ Compiling and installing Guacamole ------------------------------------------------------------ Guacamole is built using Maven. Building Guacamole compiles all classes and packages them into a deployable .war file. This .war file can be installed and deployed under servlet containers like Apache Tomcat or Jetty. 1) Run mvn package $ mvn package Maven will download any needed dependencies for building the .jar file. Once all dependencies have been downloaded, the .war file will be created in the target/ subdirectory of the current directory. 2) Copy the .war file as directed in the instructions provided with your servlet container. Apache Tomcat, Jetty, and other servlet containers have specific and varying locations that .war files must be placed for the web application to be deployed. You will likely need to do this as root. ------------------------------------------------------------ Reporting problems ------------------------------------------------------------ Please report any bugs encountered by opening a new ticket at the Trac system hosted at: http://guac-dev.org/trac/ guacamole-0.6.0/COPYING0000644361546300001440000010333011751110427013255 0ustar zhzusers GNU AFFERO GENERAL PUBLIC LICENSE Version 3, 19 November 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU Affero General Public License is a free, copyleft license for software and other kinds of works, specifically designed to ensure cooperation with the community in the case of network server software. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, our General Public Licenses are intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. Developers that use our General Public Licenses protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License which gives you legal permission to copy, distribute and/or modify the software. A secondary benefit of defending all users' freedom is that improvements made in alternate versions of the program, if they receive widespread use, become available for other developers to incorporate. Many developers of free software are heartened and encouraged by the resulting cooperation. However, in the case of software used on network servers, this result may fail to come about. The GNU General Public License permits making a modified version and letting the public access it on a server without ever releasing its source code to the public. The GNU Affero General Public License is designed specifically to ensure that, in such cases, the modified source code becomes available to the community. It requires the operator of a network server to provide the source code of the modified version running there to the users of that server. Therefore, public use of a modified version, on a publicly accessible server, gives the public access to the source code of the modified version. An older license, called the Affero General Public License and published by Affero, was designed to accomplish similar goals. This is a different license, not a version of the Affero GPL, but Affero has released a new version of the Affero GPL which permits relicensing under this license. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU Affero General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Remote Network Interaction; Use with the GNU General Public License. Notwithstanding any other provision of this License, if you modify the Program, your modified version must prominently offer all users interacting with it remotely through a computer network (if your version supports such interaction) an opportunity to receive the Corresponding Source of your version by providing access to the Corresponding Source from a network server at no charge, through some standard or customary means of facilitating copying of software. This Corresponding Source shall include the Corresponding Source for any work covered by version 3 of the GNU General Public License that is incorporated pursuant to the following paragraph. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the work with which it is combined will remain governed by version 3 of the GNU General Public License. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU Affero General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU Affero General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU Affero General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU Affero General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements. You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU AGPL, see .