diff --git a/AboutWindow.py b/AboutWindow.py new file mode 100644 index 0000000..fd129fc --- /dev/null +++ b/AboutWindow.py @@ -0,0 +1,168 @@ +import wx +import os, os.path, sys, cStringIO + + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +class InfoPage(wx.Panel): + def __init__(self, parent): + wx.Panel.__init__(self, parent) + + infostring = "Authors:" + "\n\tAaron Gerber\n\tDerek Buranen" + infostring = infostring + "\n\nContributors:" + "\n\tNick Verbeck" + "\n\tTroy Frew" + "\n\tDennis Koot" + infostring = infostring + "\n\nCopyright (C) 2007 - 2010 by Aaron Gerber and Derek Buranen" + if sys.platform == "darwin": + infostring = infostring + "\n\n+++++++++++++++++++++++" + infostring = infostring + "\nChicken Of The VNC:" + infostring = infostring + "\n\tCopyright (C) 2002-2006 by Jason Harris" + infostring = infostring + "\n\tCopyright (C) 1998-2000 by Helmut Maierhofer" + + infostring = infostring + "\n\nlibJPEG: Independent JPEG Group's JPEG software" + infostring = infostring + "\n\tCopyright (C) 1991-1998, Thomas G. Lane." + + infostring = infostring + "\n\nOSXvnc:" + infostring = infostring + "\n\tCopyright (C) 2002-2007 by Redstone Software: " + infostring = infostring + "\n\t\tDoug Simons and Jonathan Gillaspie" + + infostring = infostring + "\n\nechoWare:" + infostring = infostring + "\n\tCopyright (C) 2004-2007 Echogent Systems, Inc" + elif sys.platform == "win32": + infostring = infostring + "\n\n+++++++++++++++++++++++" + infostring = infostring + "\nTightVNC && VNCviewer:" + infostring = infostring + "\n\tCopyright (C) 1999 AT&T Laboratories Cambridge." + + infostring = infostring + "\n\nVNCHooks:" + infostring = infostring + "\n\tCopyright (C) 2000-2007 TightVNC Group" + + info = wx.TextCtrl(self, -1, infostring, style=wx.TE_MULTILINE | wx.ST_NO_AUTORESIZE) + + pagesizer = wx.BoxSizer(wx.VERTICAL); + pagesizer.Add(info, 1, wx.EXPAND) + self.SetSizer(pagesizer); + pagesizer.SetSizeHints(self); + + +class LicensePage(wx.Panel): + def __init__(self, parent, paths): + wx.Panel.__init__(self, parent) + + license = open(paths['copyright'], 'r') + copyright = wx.TextCtrl(self, -1, license.read(), style=wx.TE_MULTILINE | wx.ST_NO_AUTORESIZE) + copyright.SetEditable(False) + + pagesizer = wx.BoxSizer(wx.VERTICAL); + pagesizer.Add(copyright, 1, wx.EXPAND); + + self.SetSizer(pagesizer); + pagesizer.SetSizeHints(self); + + + +class AboutWindow(wx.Frame): + def __init__(self, parent, id, title, paths): + """ + Setup About Window for Gitso + + @author: Derek Buranen + @author: Aaron Gerber + """ + wx.Frame.__init__(self, parent, wx.ID_ANY, title, size=(525,400), style=wx.CLOSE_BOX | wx.MINIMIZE_BOX) + + if sys.platform == 'win32': + self.SetBackgroundColour(wx.Colour(236,233,216)) + + icon = wx.Icon(os.path.join(paths['main'], 'icon.ico'), wx.BITMAP_TYPE_ICO) + self.SetIcon(icon) + + ## Headings ## + text1 = wx.StaticText(self, wx.ID_ANY, 'Gitso') + font1 = wx.Font(24, wx.NORMAL, wx.NORMAL, wx.BOLD) + text1.SetFont(font1) + + text2 = wx.StaticText(self, -1, "Gitso is to Support Others") + text3 = wx.StaticText(self, -1, "Version 0.6") + font2 = wx.Font(16, wx.NORMAL, wx.NORMAL, wx.NORMAL) + font3 = wx.Font(12, wx.NORMAL, wx.NORMAL, wx.NORMAL) + text2.SetFont(font2) + text3.SetFont(font3) + url = wx.HyperlinkCtrl(self, -1, "code.google.com/p/gitso", "http://code.google.com/p/gitso") + + data = open(os.path.join(paths['main'], 'icon.png'), "rb").read() + stream = cStringIO.StringIO(data) + img = wx.ImageFromStream(stream) + img.Rescale(150, 150) + bmp = wx.BitmapFromImage(img) + image1 = wx.StaticBitmap(self, -1, bmp) + + ## Buttons ## + ok = wx.Button(self, wx.ID_OK, "OK") + self.SetDefaultItem(ok) + ok.SetFocus() + wx.EVT_BUTTON(self, wx.ID_OK, self.CloseAbout) + + ## Sizers ## + topsizer = wx.BoxSizer(wx.VERTICAL); + + info_sizer = wx.BoxSizer(wx.VERTICAL); + info_sizer.Add(text1, 0, wx.ALIGN_CENTER | wx.ALL, 7); + info_sizer.Add(text2, 0, wx.ALIGN_CENTER | wx.ALL, 3); + info_sizer.Add(text3, 0, wx.ALIGN_CENTER | wx.ALL, 3); + info_sizer.Add(url, 0, wx.ALIGN_CENTER | wx.ALL, 3); + + heading_sizer = wx.BoxSizer(wx.HORIZONTAL); + heading_sizer.Add(image1, 0, wx.ALIGN_LEFT | wx.ALL, 10 ); + heading_sizer.Add(info_sizer, 0, wx.ALL, 10 ); + + topsizer.Add(heading_sizer, 0, wx.ALIGN_CENTER); + + ## Tabs ## + nb = wx.Notebook(self, size=wx.Size(525,220)) + + license_page = LicensePage(nb, paths) + info_page = InfoPage(nb) + + nb.AddPage(info_page, "Authors") + nb.AddPage(license_page, "License") + + tab_sizer = wx.BoxSizer(wx.HORIZONTAL); + tab_sizer.Add(nb, 1, wx.EXPAND | wx.ALL, 10 ); + topsizer.Add(tab_sizer, 1, wx.ALIGN_RIGHT ); + + ## Buttons ## + button_sizer = wx.BoxSizer(wx.HORIZONTAL); + button_sizer.Add(ok, 0, wx.ALL, 10 ); + topsizer.Add(button_sizer, 0, wx.ALIGN_RIGHT ); + + ## Final settings ## + self.SetSizer(topsizer); + topsizer.SetSizeHints(self); + + self.SetThemeEnabled(True) + self.Centre() + self.Show() + + + def CloseAbout(self, event): + self.Close() + diff --git a/ArgsParser.py b/ArgsParser.py new file mode 100644 index 0000000..170cd20 --- /dev/null +++ b/ArgsParser.py @@ -0,0 +1,188 @@ +#! /usr/bin/env python + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +import os +import sys +import signal +import os.path +import urllib +import re + +class ArgsParser: + def __init__(self): + # Initialize Self.paths here. + self.paths = dict() + self.paths['resources'] = os.path.join(sys.path[0], "./") + self.paths['preferences'] = '' + self.paths['copyright'] = '' + self.paths['main'] = '' + self.paths['listen'] = False + self.paths['connect'] = '' + self.paths['list'] = [] + self.paths['mode'] = '' + self.paths['low-colors'] = False + + if re.match('(?:open|free|net)bsd|linux',sys.platform): + self.paths['main'] = os.path.join(sys.path[0], '..', 'share', 'gitso') + self.paths['copyright'] = os.path.join(sys.path[0], '..', 'share', 'doc', 'gitso', 'COPYING') + elif sys.platform == "darwin": + self.paths['main'] = sys.path[0] + self.paths['copyright'] = os.path.join(sys.path[0], 'COPYING') + else: + self.paths['main'] = os.path.join(sys.path[0], '..') + self.paths['copyright'] = os.path.join(sys.path[0], '..', 'COPYING') + + #for i in range(1, len(sys.argv)): + i = 1 + while i < len(sys.argv): + if sys.argv[i] == '--help': # --help + self.HelpMenu() + elif sys.argv[i] == '--version': # --version + print "Gitso 0.6 -- Copyright 2007 - 2010 Aaron Gerber and Derek Buranen." + exit(0) + elif sys.argv[i] == '--dev': # --dev + print "Running in 'Development Mode'" + self.paths['mode'] = 'dev' + if sys.platform == "darwin": + if not os.path.exists('build/OSXvnc'): + os.popen("mkdir build; cp arch/osx/OSXvnc.tar.gz build ; cd build ; tar xvfz OSXvnc.tar.gz > /dev/null") + if not os.path.exists('build/cotvnc.app'): + os.popen("cp arch/osx/cotvnc.app.tar.gz build ; cd build ; tar xvfz cotvnc.app.tar.gz > /dev/null") + + self.paths['resources'] = 'build/' + self.paths['main'] = sys.path[0] + self.paths['copyright'] = os.path.join(sys.path[0], 'COPYING') + + elif sys.platform == "win32": + self.paths['copyright'] = os.path.join(sys.path[0], 'COPYING') + self.paths['main'] = os.path.join(sys.path[0]) + self.paths['resources'] = 'arch/win32/' + + else: + self.paths['resources'] = 'arch/linux/' + self.paths['main'] = os.path.join(sys.path[0]) + self.paths['copyright'] = os.path.join(sys.path[0], 'COPYING') + + elif sys.argv[i] == '--listen': # --listen + if self.paths['connect'] <> "": + print "Error: --connect and --listen can not be used at the same time." + self.HelpMenu() + self.paths['listen'] = True + + elif sys.argv[i] == '--connect': # --connect + i = i + 1 + if i >= len(sys.argv): + print "Error: No IP or domain name given." + self.HelpMenu() + + if self.paths['listen']: + print "Error: --connect and --listen can not be used at the same time." + self.HelpMenu() + + if sys.argv[i][0] + sys.argv[i][1] <> "--": + self.paths['connect'] = sys.argv[i] + else: + print "Error: '" + sys.argv[i] + "' is not a valid host with '--connect'." + self.HelpMenu() + + elif sys.argv[i] == '--low-colors': # --low-colors + self.paths['low-colors'] = True; + + elif sys.argv[i] == '--list': # --list + i = i + 1 + if i >= len(sys.argv): + print "Error: No List file given." + self.HelpMenu() + + if sys.argv[i][0] + sys.argv[i][1] <> "--": + self.paths['list'] = self.getHosts(sys.argv[i]) + else: + print "Error: '" + sys.argv[i] + "' is not a valid list with '--list'." + self.HelpMenu() + + else: + print "Error: '" + sys.argv[i] + "' is not a valid argument." + self.HelpMenu() + + i = i + 1 + + if sys.platform == "darwin": + self.paths['preferences'] = os.path.join(os.path.expanduser("~"), "Library", "Application Support", "Gitso") + if os.path.exists(self.paths['preferences']) != True: + os.makedirs(self.paths['preferences'], 0700) + self.paths['preferences'] = os.path.join(self.paths['preferences'], "hosts") + elif sys.platform == "win32": + self.paths['preferences'] = os.path.join(os.getenv('USERPROFILE'), "gitso-hosts") + else: + self.paths['preferences'] = os.path.join(os.path.expanduser("~"), ".gitso-hosts") + + #Help Menu + def HelpMenu(self): + print "Usage: " + os.path.basename(sys.argv[0]) + " [OPTION]" + print " OPTIONS" + print " --dev\t\tSet self.paths for development." + print " --listen\t\tListen for incoming connections." + print " --connect {IP|DN}\tConnects to host (support giver)." + print " --list {URL|FILE}\tAlternative Support list." + print " --low-colors\t\tUse 8bit colors (for slow connections). Linux only." + print " --version\t\tThe current Gitso version." + print " --help\t\tThis Menu." + exit(1) + + def GetPaths(self): + return self.paths + + def getHosts(self, file): + list = [] + fileList = "" + + if len(file) > 3: + prefix = file[0] + file[1] + file[2] + file[3] + else: + prefix = "" + + if prefix == "www." or prefix == "http": + handle = urllib.urlopen(file) + fileList = handle.read() + handle.close() + else: + if os.path.exists(file): + handle = open(file, 'r') + fileList = handle.read() + handle.close() + + parsedlist = fileList.split(",") + for i in range(0, len(parsedlist)): + if self.validHost(parsedlist[i].strip()): + list.append(parsedlist[i].strip()) + + return list + + def validHost(self, host): + if host != "" and host.find(";") == -1 and host.find("/") == -1 and host.find("'") == -1 and host.find("`") == -1 and len(host) > 6: + return True + else: + return False + diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..20a3642 --- /dev/null +++ b/COPYING @@ -0,0 +1,689 @@ +Gisto - Gitso is to support others + +Copyright 2008 - 2010: Aaron Gerber, Derek Buranen + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 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 General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is 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. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + 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. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + 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 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. Use with the GNU Affero General Public License. + + 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 Affero 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 special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU 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 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 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 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 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + 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 GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/ConnectionWindow.py b/ConnectionWindow.py new file mode 100644 index 0000000..560bf51 --- /dev/null +++ b/ConnectionWindow.py @@ -0,0 +1,363 @@ +#! /usr/bin/env python + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +import wx +import os, sys, signal, os.path, time, thread, re +import AboutWindow, GitsoThread + +class ConnectionWindow(wx.Frame): + """ + Main Window for Gitso + + @author: Derek Buranen + @author: Aaron Gerber + """ + def __init__(self, parent, id, title, paths): + """ + Setup Application Window + + @author: Derek Buranen + @author: Aaron Gerber + @author: Markus Roth + """ + self.ToggleValue = 0 + self.paths = paths + self.thread = None + self.threadLock = thread.allocate_lock() + + # Disable until 0.7 release + self.enablePMP = False + + if re.match('(?:open|free|net)bsd|linux',sys.platform): + width = 165 + height = 350 + xval1 = 155 + xval2 = 250 + else: + height = 350 + width = 175 + xval1 = 180 + xval2 = 265 + + wx.Frame.__init__(self, parent, wx.ID_ANY, title, size=(height,width), style=wx.DEFAULT_FRAME_STYLE & ~ (wx.RESIZE_BORDER | wx.RESIZE_BOX | wx.MAXIMIZE_BOX)) + self.Bind(wx.EVT_CLOSE, self.OnCloseWindow) + + if sys.platform == 'win32': + icon = wx.Icon(os.path.join(self.paths['main'], 'icon.ico'), wx.BITMAP_TYPE_ICO) + self.SetBackgroundColour(wx.Colour(236,233,216)) + else: + icon = wx.Icon(os.path.join(self.paths['main'], 'icon.ico'), wx.BITMAP_TYPE_ICO) + self.SetIcon(icon) + + #Buttons + self.connectButton = wx.Button(self, 10, "Start", wx.Point(xval1, 81)) + self.connectButton.SetDefault() + wx.EVT_BUTTON(self, 10, self.ConnectSupport) + self.stopButton = wx.Button(self, wx.ID_STOP, "", wx.Point(xval2, 81)) + self.stopButton.Enable(False) + wx.EVT_BUTTON(self, wx.ID_STOP, self.KillPID) + + # Radio Boxes + self.rb1 = wx.RadioButton(self, -1, 'Get Help', (10, 15), style=wx.RB_GROUP) + self.rb2 = wx.RadioButton(self, -1, 'Give Support', (10, 48)) + self.rb1.SetValue(True) + + self.Bind(wx.EVT_RADIOBUTTON, self.RadioToggle, id=self.rb1.GetId()) + self.Bind(wx.EVT_RADIOBUTTON, self.RadioToggle, id=self.rb2.GetId()) + + # checkbox for natpmp + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.enablePMP: + self.cb1 = wx.CheckBox(self, -1, 'Use NAT-PMP', (130, 48)) + self.cb1.Enable(False) + + # Checkbox for low color + self.cb2 = wx.CheckBox(self, -1, 'Use low colors', (10, 81)) + self.cb2.Set3StateValue(False) + self.cb2.SetValue(self.paths['low-colors']) # Use value of --low-colors from command line + self.cb2.Enable(False) + + # the combobox Control + self.sampleList = self.paths['list'] + + self.sampleList = self.getHosts(self.sampleList, os.path.join(self.paths['main'], 'hosts.txt')) + self.sampleList = self.getHosts(self.sampleList, self.paths['preferences']) + self.displayHostBox(self.sampleList, "Enter/Select Support Address") + + # Menu + menuBar = wx.MenuBar() + fileMenu = wx.Menu() + + editMenu = wx.Menu() + editMenu.Append(11, "&Cut\tCtrl+X", "Cut IP Address") + editMenu.Append(12, "&Copy\tCtrl+C", "Copy IP Address") + editMenu.Append(wx.ID_PASTE, "&Paste\tCtrl+V", "Paste IP Address") + wx.EVT_MENU(self, 11, self.SetClipboard) + wx.EVT_MENU(self, 12, self.SetClipboard) + wx.EVT_MENU(self, wx.ID_PASTE, self.GetClipboard) + + fileMenu.Append(13, "&Clear History", "Clear History") + if sys.platform == 'darwin': + fileMenu.Append(wx.ID_ABOUT, "&About", "About Gitso") + wx.EVT_MENU(self, wx.ID_ABOUT, self.ShowAbout) + else: + fileMenu.Append(wx.ID_EXIT, "&Quit\tCtrl+Q", "Quit Gitso") + wx.EVT_MENU(self, wx.ID_EXIT, self.OnCloseWindow) + + helpMenu = wx.Menu() + helpMenu.Append(wx.ID_ABOUT, "&About", "About Gitso") + wx.EVT_MENU(self, wx.ID_ABOUT, self.ShowAbout) + + wx.EVT_MENU(self, 13, self.clearHistory) + + menuBar.Append(fileMenu, "&File") + menuBar.Append(editMenu, "&Edit") + + if re.match('(?:open|free|net)bsd|linux',sys.platform) or sys.platform == 'win32': + menuBar.Append(helpMenu, "&Help") + + self.SetMenuBar(menuBar) + + self.statusBar = self.CreateStatusBar() + self.statusBar.SetStatusWidths([350]) + self.setMessage("Idle", False) + + self.SetDefaultItem(self.hostField) + self.hostField.SetFocus() + + self.SetThemeEnabled(True) + self.Centre() + self.Show(True) + + if self.paths['listen']: + self.rb2.Value = True + self.RadioToggle(None) + self.ConnectSupport(None) + elif self.paths['connect'] <> "": + self.rb1.Value = True + self.RadioToggle(None) + self.hostField.Value = self.paths['connect'] + self.ConnectSupport(None) + + + def RadioToggle(self, event): + """ + Toggles Radio Buttons + + @author: Derek Buranen + @author: Aaron Gerber + @author: Markus Roth + """ + if self.rb1.GetValue(): + self.ToggleValue = 0 + self.hostField.Enable(True) + self.cb2.Enable(False) + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.enablePMP: + self.cb1.Enable(False) + else: + self.ToggleValue = 1 + self.hostField.Enable(False) + self.cb2.Enable(True) + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.enablePMP: + self.cb1.Enable(True) + + + def ConnectSupport(self, event): + """ + Call VNC in a thread. + + @author: Derek Buranen + @author: Aaron Gerber + """ + if self.rb1.GetValue(): # Get Help + if self.validHost(self.hostField.GetValue().strip()) and self.hostField.GetValue() != "Enter/Select Support Address": + self.setMessage("Connecting...", True) + + host = self.hostField.GetValue().strip() + + self.sampleList = [] + self.sampleList = self.getHosts(self.sampleList, os.path.join(self.paths['main'], 'hosts.txt')) + self.sampleList = self.getHosts(self.sampleList, self.paths['preferences']) + + if self.sampleList.count(host) == 0: + self.saveHost(self.paths['preferences'], host) + self.sampleList.append(host) + self.hostField.Destroy() + self.displayHostBox(self.sampleList, host) + + self.createThread(host) + else: + self.setMessage("Invalid Support Address", False) + else: # Give Suppport + self.setMessage("Starting Server...", True) + self.createThread() + + + def ShowAbout(self,e): + """ + Display About Dialog + + @author: Derek Buranen + @author: Aaron Gerber + """ + about = AboutWindow.AboutWindow(self, wx.ID_ABOUT, "About Gitso", self.paths) + + + def clearHistory(self, event): + handle = open(self.paths['preferences'], 'w') + handle.write("") + handle.close() + + text = self.hostField.GetValue() + self.hostField.Destroy() + + self.sampleList = [] + self.sampleList = self.getHosts(self.sampleList, os.path.join(self.paths['main'], 'hosts.txt')) + self.sampleList = self.getHosts(self.sampleList, self.paths['preferences']) + + self.displayHostBox(self.sampleList, text) + + + def GetClipboard(self, menu, data=None): + """ + Paste clipboard text in Support Entry Field + + @author: Derek Buranen + @author: Aaron Gerber + """ + do = wx.TextDataObject() + wx.TheClipboard.Open() + clip = wx.TheClipboard.GetData(do) + wx.TheClipboard.Close() + + if clip: + self.hostField.SetValue(do.GetText()) + + + def SetClipboard(self, menu, data=None): + """ + Set the value of the clipboard + + @author: Derek Buranen + @author: Aaron Gerber + """ + self.clipdata = wx.TextDataObject() + self.clipdata.SetText(self.hostField.GetValue()) + wx.TheClipboard.Open() + wx.TheClipboard.SetData(self.clipdata) + wx.TheClipboard.Close() + if menu.GetId() == 11: + self.hostField.SetValue("") + + + def KillPID(self, showMessage=True): + """ + Kill VNC instance, called by the Stop Button or Application ends. + + @author: Derek Buranen + @author: Aaron Gerber + """ + if self.thread <> None: + self.thread.kill() + # If you don't wait 0.5+ seconds, the interface won't reload and it'll freeze. + # Possibly on older systems you should wait longer, it works fine on mine... + time.sleep(.5) + self.thread = None + if showMessage : + self.setMessage("Idle.", False) + return + + + def OnCloseWindow(self, evt): + self.KillPID() + self.Destroy() + + + def validHost(self, host): + if host != "" and host.find(";") == -1 and host.find("/") == -1 and host.find("'") == -1 and host.find("`") == -1 and len(host) > 6: + return True + else: + return False + + + def getHosts(self, arr, file): + list = arr + if os.path.exists(file): + handle = open(file, 'r') + fileList = handle.read() + parsedlist = fileList.split(",") + for i in range(0, len(parsedlist)): + if self.validHost(parsedlist[i].strip()): + list.append(parsedlist[i].strip()) + handle.close() + return list + + + def saveHost(self, file, host): + if os.path.exists(file): + handle = open(file, 'a') + handle.write(", %s" % host) + handle.close() + + def displayHostBox(self, list, text): + self.hostField = wx.ComboBox(self, 30, "", wx.Point(105, 12), wx.Size(230, -1), list, wx.CB_DROPDOWN) + self.hostField.SetValue(text) + + def setMessage(self, message, status): + if self.threadLock.locked(): + return + + self.threadLock.acquire() + + self.statusBar.SetStatusText(message, 0) + + if status: + self.connectButton.Enable(False) + self.stopButton.Enable(True) + else: + self.connectButton.Enable(True) + self.stopButton.Enable(False) + + + if self.ToggleValue == 0: + self.rb1.SetValue(True) + else: + self.rb2.SetValue(True) + + self.threadLock.release() + + def createThread(self, host=""): + self.paths['low-colors'] = self.cb2.GetValue() # Set low-colors to value of checkbox + self.KillPID(False) + self.thread = GitsoThread.GitsoThread(self, self.paths) + self.thread.setHost(host) + self.thread.start() + + # If you don't wait 1+ seconds, the interface won't reload and it'll freeze. + # Possibly on older systems you should wait longer, it works fine on mine... + time.sleep(1) + diff --git a/Gitso.py b/Gitso.py new file mode 100644 index 0000000..c2e15d9 --- /dev/null +++ b/Gitso.py @@ -0,0 +1,60 @@ +#! /usr/bin/env python + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +import sys, platform, re + + +if sys.platform == 'darwin': + # If we're on Snow Leopard, we want to use Python 2.5 until we figure out what Apple's doing with 2.6 + ver = platform.mac_ver() + + if re.match('10\.5', ver[0]) <> None: + """ + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python26.zip') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-darwin') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-mac') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/plat-mac/lib-scriptpackages') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-tk') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-old') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/lib/python2.5/lib-dynload') + sys.path.append('/Library/Python/2.5/site-packages') + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/PyObjC') + """ + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/python/wx-2.8-mac-unicode') + elif re.match('10\.6', ver[0]) <> None: + sys.path.append('/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/wx-2.8-mac-unicode') + +import wx +import ConnectionWindow, ArgsParser + + +if __name__ == "__main__": + app = wx.App(False) + args = ArgsParser.ArgsParser() + ConnectionWindow.ConnectionWindow(None, -1, "Gitso", args.GetPaths()) + app.MainLoop() + del app diff --git a/GitsoThread.py b/GitsoThread.py new file mode 100644 index 0000000..2759b88 --- /dev/null +++ b/GitsoThread.py @@ -0,0 +1,169 @@ +#! /usr/bin/env python + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +import threading, time +import os, sys, signal, os.path, re +import Processes + +if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + import NATPMP + +class GitsoThread(threading.Thread): + def __init__(self, window, paths): + self.window = window + self.paths = paths + self.host = "" + self.error = False + self.pid = 0 + self.running = True + self.process = Processes.Processes(self.window, paths) + threading.Thread.__init__(self) + + + def run(self): + """ + This is where the beef is. Start the processes and check on them. + + @author: Aaron Gerber + """ + if self.host <> "": + # Get Help + self.pid = self.process.getSupport(self.host) + time.sleep(.5) + if self.checkStatus(): + self.window.setMessage("Connected.", True) + else: + self.window.setMessage("Could not connect.", False) + self.error = True + else: + # Give Support + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.window.enablePMP: + self.window.cb1.Enable(False) + if self.window.cb1.GetValue() == True: + self.NATPMP('request') + + self.pid = self.process.giveSupport() + time.sleep(.5) + if self.checkStatus(): + self.window.setMessage("Server running.", True) + else: + self.window.setMessage("Could not start server.", False) + self.error = True + + print "GitsoThread.run(pid: " + str(self.pid) + ") running..." + + while(self.running and self.checkStatus()): + time.sleep(.2) + + if not self.error: + self.window.setMessage("Idle.", False) + + self.kill() + + + def setHost(self, host=""): + """ + Set the object variable. + + @author: Aaron Gerber + """ + self.host = host + + + def kill(self): + """ + Kill the process and general clean-up. + + @author: Aaron Gerber + """ + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.window.enablePMP: + if self.window.rb1.GetValue() == False: #give support + if self.window.cb1.GetValue() == True: + self.NATPMP('giveup') + self.window.cb1.Enable(True) + + self.process.KillPID() + self.pid = 0 + self.running = False + + + def checkStatus(self): + """ + Check the status of the underlying process. + + @author: Aaron Gerber + """ + if self.pid == 0: + return False + + connection = [] + listen = [] + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.host <> "": + connection = os.popen('LANG=C netstat -an | grep 5500 | grep ESTABLISHED').readlines() + else: + listen = os.popen('LANG=C netstat -an | grep 5500 | grep LISTEN').readlines() + elif sys.platform == 'win32': + #XP PRO only -- Need to fix the case where there is no process, it'll still return 1 line. + #info = os.popen('WMIC PROCESS ' + str(self.pid) + ' get Processid').readlines() + if self.host <> "": + connection = os.popen('netstat -a | find "ESTABLISHED" | find "5500"').readlines() + else: + listen = os.popen('netstat -a | find "LISTEN" | find "5500"').readlines() + else: + print 'Platform not detected' + + if len(connection) == 0 and len(listen) == 0: + return False + else: + return True + + + def NATPMP(self, action): + """ + Call NAT-PMP on router to get port 5500 forwarded. + + @author: Dennis Koot + """ + if sys.platform == 'darwin' or re.match('(?:open|free|net)bsd|linux',sys.platform): + if self.window.enablePMP: + if action == 'request': + lifetime = 3600 + print "Request port 5500 (NAT-PMP)." + else: + lifetime = 0 + print "Give up port 5500 (NAT-PMP)." + + pubpriv_port = int(5500) + protocol = NATPMP.NATPMP_PROTOCOL_TCP + + try: + gateway = NATPMP.get_gateway_addr() + print NATPMP.map_port(protocol, pubpriv_port, pubpriv_port, lifetime, gateway_ip=gateway) + except: + print "Warning: Unable to automap port." + diff --git a/NATPMP.py b/NATPMP.py new file mode 100644 index 0000000..479272c --- /dev/null +++ b/NATPMP.py @@ -0,0 +1,372 @@ +#!/usr/bin/env python + +"""NAT-PMP client library + +Provides functions to interact with NAT-PMP gateways implementing version 0 +of the NAT-PMP draft specification. + +This version does not completely implement the draft standard. +* It does not provide functionality to listen for address change packets. +* It does not have a proper request queuing system, meaning that +multiple requests may be issued in parallel, against spec recommendations. + +For more information on NAT-PMP, see the NAT-PMP draft specification: + +http://files.dns-sd.org/draft-cheshire-nat-pmp.txt + +Requires Python 2.3 or later. +Tested on Python 2.5, 2.6 against Apple AirPort Express. + +0.2.2 - changed gateway autodetect, per github issue #1. thanks to jirib +0.2 - changed useException to use_exception, responseDataClass to response_data_class parameters in function calls for consistency +0.1 - repackaged via setuptools. Fixed major bug in gateway detection. Experimental gateway detection support for Windows 7. Python 2.6 testing. +0.0.1.2 - NT autodetection code. Thanks to roee shlomo for the gateway detection regex! +0.0.1.1 - Removed broken mutex code +0.0.1 - Initial release + +""" + +__version__ = "0.2" +__license__ = """Copyright (c) 2008-2010, Yiming Liu, All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, +are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. +* The names of the author and contributors may not be used to endorse or promote products + derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE +LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR +CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS +INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN +CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE +POSSIBILITY OF SUCH DAMAGE.""" + +__author__ = "Yiming Liu " + +import struct, socket, select, time, platform +import sys, os, re + +NATPMP_PORT = 5351 + +NATPMP_RESERVED_VAL = 0 + +NATPMP_PROTOCOL_UDP = 1 +NATPMP_PROTOCOL_TCP = 2 + +NATPMP_GATEWAY_NO_VALID_GATEWAY = -10 +NATPMP_GATEWAY_NO_SUPPORT = -11 +NATPMP_GATEWAY_CANNOT_FIND = -12 + +NATPMP_RESULT_SUCCESS = 0 # Success +NATPMP_RESULT_UNSUPPORTED_VERSION = 1 # Unsupported Version +NATPMP_RESULT_NOT_AUTHORIZED = 2 # Not Authorized/Refused/NATPMP turned off +NATPMP_RESULT_NETWORK_FAILURE = 3 # Network Failure +NATPMP_RESULT_OUT_OF_RESOURCES = 4 # can not create more mappings +NATPMP_RESULT_UNSUPPORTED_OPERATION = 5 # not a supported opcode +# all remaining results are fatal errors + +NATPMP_ERROR_DICT = { + NATPMP_RESULT_SUCCESS:"No error.", + NATPMP_RESULT_UNSUPPORTED_VERSION:"The protocol version specified is unsupported.", + NATPMP_RESULT_NOT_AUTHORIZED:"The operation was refused. NAT-PMP may be turned off on gateway.", + NATPMP_RESULT_NETWORK_FAILURE:"There was a network failure. The gateway may not have an IP address.",# Network Failure + NATPMP_RESULT_OUT_OF_RESOURCES:"The NAT-PMP gateway is out of resources and cannot create more mappings.", # can not create more mappings + NATPMP_RESULT_UNSUPPORTED_OPERATION:"The NAT-PMP gateway does not support this operation", # not a supported opcode + NATPMP_GATEWAY_NO_SUPPORT:'The gateway does not support NAT-PMP', + NATPMP_GATEWAY_NO_VALID_GATEWAY:'No valid gateway address was specified.', + NATPMP_GATEWAY_CANNOT_FIND:'Cannot automatically determine gateway address. Must specify manually.' + } + + +class NATPMPRequest(object): + """Represents a basic NAT-PMP request. This currently consists of the + 1-byte fields version and opcode. + + Other requests are derived from NATPMPRequest. + """ + retry_increment = 0.250 # seconds + + def __init__(self, version, opcode): + self.version = version + self.opcode = opcode + + def toBytes(self): + """Converts the request object to a byte string.""" + return struct.pack('!BB', self.version, self.opcode) + +class PublicAddressRequest(NATPMPRequest): + """Represents a NAT-PMP request to the local gateway for a public address. + As per the specification, this is a generic request with the opcode = 0. + """ + def __init__(self, version=0): + NATPMPRequest.__init__(self, version, 0) + +class PortMapRequest(NATPMPRequest): + """Represents a NAT-PMP request to the local gateway for a port mapping. + As per the specification, this request extends NATPMPRequest with + the fields private_port, public_port, and lifetime. The first two + are 2-byte unsigned shorts, and the last is a 4-byte unsigned integer. + """ + def __init__(self, protocol, private_port, public_port, lifetime=3600, version=0): + NATPMPRequest.__init__(self, version, protocol) + self.private_port = private_port + self.public_port = public_port + self.lifetime = lifetime + + def toBytes(self): + s= NATPMPRequest.toBytes(self) + struct.pack('!HHHI', NATPMP_RESERVED_VAL, self.private_port, self.public_port, self.lifetime) + return s + +class NATPMPResponse(object): + """Represents a generic NAT-PMP response from the local gateway. The + generic response has fields for version, opcode, result, and secs + since last epoch (last boot of the NAT gateway). As per the + specification, the opcode is offset by 128 from the opcode of + the original request. + """ + def __init__(self, version, opcode, result, sec_since_epoch): + self.version = version + self.opcode = opcode + self.result = result + self.sec_since_epoch = sec_since_epoch + + def __str__(self): + return "NATPMPResponse(%d, %d, %d, $d)" % (self.version, self.opcode, self.result, self.sec_since_epoch) + +class PublicAddressResponse(NATPMPResponse): + """Represents a NAT-PMP response from the local gateway to a + public-address request. It has one additional 4-byte field + containing the IP returned. + + The member variable ip contains the Python-friendly string form, while + ip_int contains the same in the original 4-byte unsigned int. + """ + def __init__(self, bytes): + version, opcode, result, sec_since_epoch, self.ip_int = struct.unpack("!BBHII", bytes) + NATPMPResponse.__init__(self, version, opcode, result, sec_since_epoch) + self.ip = socket.inet_ntoa(bytes[8:8+4]) + #self.ip = socket.inet_ntoa(self.ip_bytes) + + def __str__(self): + return "PublicAddressResponse: version %d, opcode %d (%d), result %d, ssec %d, ip %s" % (self.version, self.opcode, self.result, self.sec_since_epoch, self.ip) + +class PortMapResponse(NATPMPResponse): + """Represents a NAT-PMP response from the local gateway to a + public-address request. The response contains the private port, + public port, and the lifetime of the mapping in addition to typical + NAT-PMP headers. Note that the port mapping assigned is + NOT NECESSARILY the port requested (see the specification + for details). + """ + def __init__(self, bytes): + version, opcode, result, sec_since_epoch, self.private_port, self.public_port, self.lifetime = struct.unpack('!BBHIHHI', bytes) + NATPMPResponse.__init__(self, version, opcode, result, sec_since_epoch) + + def __str__(self): + return "PortMapResponse: version %d, opcode %d (%d), result %d, ssec %d, private_port %d, public port %d, lifetime %d" % (self.version, self.opcode, self.opcode, self.result, self.sec_since_epoch, self.private_port, self.public_port, self.lifetime) + +class NATPMPError(Exception): + """Generic exception state. May be used to represent unknown errors.""" + pass + +class NATPMPResultError(NATPMPError): + """Used when a NAT gateway responds with an error-state response.""" + pass + +class NATPMPNetworkError(NATPMPError): + """Used when a network error occurred while communicating + with the NAT gateway.""" + pass + +class NATPMPUnsupportedError(NATPMPError): + """Used when a NAT gateway does not support NAT-PMP.""" + pass + + +def get_gateway_addr(): + """A hack to obtain the current gateway automatically, since + Python has no interface to sysctl(). + + This may or may not be the gateway we should be contacting. + It does not guarantee correct results. + + This function requires the presence of + netstat on the path on POSIX and NT. + """ + addr = "" + shell_command = 'netstat -rn' + if os.name == "posix": + pattern = re.compile('(?:default|0\.0\.0\.0|::/0)\s+([\w\.:]+)\s+.*UG') + elif os.name == "nt": + if platform.version().startswith("6.1"): + pattern = re.compile(".*?0.0.0.0[ ]+0.0.0.0[ ]+(.*?)[ ]+?.*?\n") + else: + pattern = re.compile(".*?Default Gateway:[ ]+(.*?)\n") + system_out = os.popen(shell_command, 'r').read() + if not system_out: + raise NATPMPNetworkError(NATPMP_GATEWAY_CANNOT_FIND, error_str(NATPMP_GATEWAY_CANNOT_FIND)) + match = pattern.search(system_out) + if not match: + raise NATPMPNetworkError(NATPMP_GATEWAY_CANNOT_FIND, error_str(NATPMP_GATEWAY_CANNOT_FIND)) + addr = match.groups()[0].strip() + return addr # TODO: use real auto-detection + +def error_str(result_code): + """Takes a numerical error code and returns a human-readable + error string. + """ + result = NATPMP_ERROR_DICT.get(result_code) + if not result: + result = "Unknown fatal error." + return result + +def get_gateway_socket(gateway): + """Takes a gateway address string and returns a non-blocking UDP + socket to communicate with its NAT-PMP implementation on + NATPMP_PORT. + + e.g. addr = get_gateway_socket('10.0.1.1') + """ + if not gateway: + raise NATPMPNetworkError(NATPMP_GATEWAY_NO_VALID_GATEWAY, error_str(NATPMP_GATEWAY_NO_VALID_GATEWAY)) + response_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) + response_socket.setblocking(0) + response_socket.connect((gateway, NATPMP_PORT)) + return response_socket + +def get_public_address(gateway_ip=None, retry=9): + """A high-level function that returns the public interface IP of + the current host by querying the NAT-PMP gateway. IP is + returned as string. + + Takes two possible keyword arguments: + gateway_ip - the IP to the NAT-PMP compatible gateway. + Defaults to using auto-detection function + get_gateway_addr() + retry - the number of times to retry the request if unsuccessful. + Defaults to 9 as per specification. + """ + if gateway_ip == None: + gateway_ip = get_gateway_addr() + addr = None + addr_request = PublicAddressRequest() + addr_response = send_request_with_retry(gateway_ip, addr_request, response_data_class=PublicAddressResponse, retry=retry) + if addr_response.result != 0: + #sys.stderr.write("NAT-PMP error %d: %s\n" % (addr_response.result, error_str(addr_response.result))) + #sys.stderr.flush() + raise NATPMPResultError(addr_response.result, error_str(addr_response.result), addr_response) + addr = addr_response.ip + return addr + +def map_tcp_port(public_port, private_port, lifetime=3600, gateway_ip=None, retry=9, use_exception=True): + """A high-level wrapper to map_port() that requests a mapping + for a public TCP port on the NAT to a private TCP port on this host. + Returns the complete response on success. + + public_port - the public port of the mapping requested + private_port - the private port of the mapping requested + lifetime - the duration of the mapping in seconds. + Defaults to 3600, per specification. + gateway_ip - the IP to the NAT-PMP compatible gateway. + Defaults to using auto-detection function + get_gateway_addr() + retry - the number of times to retry the request if unsuccessful. + Defaults to 9 as per specification. + use_exception - throw an exception if an error result is + received from the gateway. Defaults to True. + """ + return map_port(NATPMP_PROTOCOL_TCP, public_port, private_port, lifetime, gateway_ip=gateway_ip, retry=retry, use_exception=use_exception) + +def map_udp_port(public_port, private_port, lifetime=3600, gateway_ip=None, retry=9, use_exception=True): + """A high-level wrapper to map_port() that requests a mapping for + a public UDP port on the NAT to a private UDP port on this host. + Returns the complete response on success. + + public_port - the public port of the mapping requested + private_port - the private port of the mapping requested + lifetime - the duration of the mapping in seconds. + Defaults to 3600, per specification. + gateway_ip - the IP to the NAT-PMP compatible gateway. + Defaults to using auto-detection function + get_gateway_addr() + retry - the number of times to retry the request if unsuccessful. + Defaults to 9 as per specification. + use_exception - throw an exception if an error result is + received from the gateway. Defaults to True. + """ + return map_port(NATPMP_PROTOCOL_UDP, public_port, private_port, lifetime, gateway_ip=gateway_ip, retry=retry, use_exception=use_exception) + +def map_port(protocol, public_port, private_port, lifetime=3600, gateway_ip=None, retry=9, use_exception=True): + """A function to map public_port to private_port of protocol. + Returns the complete response on success. + + protocol - NATPMP_PROTOCOL_UDP or NATPMP_PROTOCOL_TCP + public_port - the public port of the mapping requested + private_port - the private port of the mapping requested + lifetime - the duration of the mapping in seconds. + Defaults to 3600, per specification. + gateway_ip - the IP to the NAT-PMP compatible gateway. + Defaults to using auto-detection function + get_gateway_addr() + retry - the number of times to retry the request if unsuccessful. + Defaults to 9 as per specification. + use_exception - throw an exception if an error result + is received from the gateway. Defaults to True. + """ + if protocol not in [NATPMP_PROTOCOL_UDP, NATPMP_PROTOCOL_TCP]: + raise ValueError("Must be either NATPMP_PROTOCOL_UDP or NATPMP_PROTOCOL_TCP") + if gateway_ip == None: + gateway_ip = get_gateway_addr() + response = None + port_mapping_request = PortMapRequest(protocol, private_port, public_port, lifetime) + port_mapping_response = send_request_with_retry(gateway_ip, port_mapping_request, response_data_class=PortMapResponse, retry=retry) + if port_mapping_response.result != 0 and use_exception: + raise NATPMPResultError(port_mapping_response.result, error_str(port_mapping_response.result), port_mapping_response) + return port_mapping_response + + +def send_request(gateway_socket, request): + gateway_socket.sendall(request.toBytes()) + +def read_response(gateway_socket, timeout, responseSize=16): + data = "" + source_addr = ("", "") + rlist, wlist, xlist = select.select([gateway_socket], [], [], timeout) + if rlist: + resp_socket = rlist[0] + data,source_addr = resp_socket.recvfrom(responseSize) + return data,source_addr + +def send_request_with_retry(gateway_ip, request, response_data_class=None, retry=9): + gateway_socket = get_gateway_socket(gateway_ip) + n = 1 + data = "" + while n <= retry and not data: + send_request(gateway_socket, request) + data,source_addr = read_response(gateway_socket, n * request.retry_increment) + if source_addr[0] != gateway_ip or source_addr[1] != NATPMP_PORT: + data = "" # discard data if source mismatch, as per specification + n += 1 + if n >= retry and not data: + raise NATPMPUnsupportedError(NATPMP_GATEWAY_NO_SUPPORT, error_str(NATPMP_GATEWAY_NO_SUPPORT)) + if data and response_data_class: + data = response_data_class(data) + return data + + +if __name__ == "__main__": + addr = get_public_address() + map_resp = map_tcp_port(62001, 62001) + print addr + print map_resp.__dict__ diff --git a/Processes.py b/Processes.py new file mode 100644 index 0000000..aa0aed3 --- /dev/null +++ b/Processes.py @@ -0,0 +1,109 @@ +#! /usr/bin/env python + +""" +Gisto - Gitso is to support others + +Gitso is a utility to facilitate the connection of VNC + +@author: Aaron Gerber ('gerberad') +@author: Derek Buranen ('burner') +@copyright: 2008 - 2010 + +Gitso is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Gitso 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Gitso. If not, see . +""" + +import wx +import os, sys, signal, os.path, re + +class Processes: + def __init__(self, window, paths): + self.returnPID = 0 + self.window = window + self.paths = paths + + def getSupport(self, host): + if sys.platform == 'darwin': + self.returnPID = os.spawnl(os.P_NOWAIT, '%sOSXvnc/OSXvnc-server' % self.paths['resources'], '%sOSXvnc/OSXvnc-server' % self.paths['resources'], '-connectHost', '%s' % host) + elif re.match('(?:open|free|net)bsd|linux',sys.platform): + # We should include future versions with options for speed. + #self.returnPID = os.spawnlp(os.P_NOWAIT, 'x11vnc', 'x11vnc','-nopw','-ncache','20','-solid','black','-connect','%s' % host) + + self.returnPID = os.spawnlp(os.P_NOWAIT, 'x11vnc', 'x11vnc','-nopw','-ncache','20','-connect','%s' % host) + + # Added for OpenBSD compatibility + import time + time.sleep(3) + elif sys.platform == 'win32': + import subprocess + self.returnPID = subprocess.Popen(['WinVNC.exe']) + print "Launched WinVNC.exe, waiting to run -connect command..." + import time + time.sleep(3) + + if self.paths['mode'] == 'dev': + subprocess.Popen(['%sWinVNC.exe' % self.paths['resources'], '-connect', '%s' % host]) + else: + subprocess.Popen(['WinVNC.exe', '-connect', '%s' % host]) + else: + print 'Platform not detected' + return self.returnPID + + def giveSupport(self): + if sys.platform == 'darwin': + vncviewer = '%scotvnc.app/Contents/MacOS/cotvnc' % self.paths['resources'] + self.returnPID = os.spawnlp(os.P_NOWAIT, vncviewer, vncviewer, '--listen') + elif re.match('(?:open|free|net)bsd|linux',sys.platform): + + # These are the options for low-res connections. + # In the future, I'd like to support cross-platform low-res options. + # What aboot a checkbox in the gui + if self.paths['low-colors'] == False: + self.returnPID = os.spawnlp(os.P_NOWAIT, 'vncviewer', 'vncviewer', '-listen') + else: + self.returnPID = os.spawnlp(os.P_NOWAIT, 'vncviewer', 'vncviewer', '-bgr233', '-listen') + elif sys.platform == 'win32': + import subprocess + if self.paths['mode'] == 'dev': + self.returnPID = subprocess.Popen(['%svncviewer.exe' % self.paths['resources'], '-listen']) + else: + self.returnPID = subprocess.Popen(['vncviewer.exe', '-listen']) + else: + print 'Platform not detected' + return self.returnPID + + def KillPID(self): + """ + Kill VNC instance, called by the Stop Button or Application ends. + + @author: Derek Buranen + @author: Aaron Gerber + """ + if self.returnPID != 0: + print "Processes.KillPID(" + str(self.returnPID) + ")" + if sys.platform == 'win32': + import win32api + PROCESS_TERMINATE = 1 + handle = win32api.OpenProcess(PROCESS_TERMINATE, False, self.returnPID.pid) + win32api.TerminateProcess(handle, -1) + win32api.CloseHandle(handle) + elif re.match('(?:open|free|net)bsd|linux',sys.platform): + # New processes are created when you made connections. So if you kill self.returnPID, + # you're just killing the dispatch process, not the one actually doing business... + os.spawnlp(os.P_NOWAIT, 'pkill', 'pkill', '-f', 'vncviewer') + os.spawnlp(os.P_NOWAIT, 'pkill', 'pkill', '-f', 'x11vnc') + else: + os.kill(self.returnPID, signal.SIGKILL) + self.returnPID = 0 + return + diff --git a/PythonApplet.icns b/PythonApplet.icns new file mode 100644 index 0000000..c328e56 Binary files /dev/null and b/PythonApplet.icns differ diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/arch/linux/README-stand-alone.txt b/arch/linux/README-stand-alone.txt new file mode 100644 index 0000000..d15799a --- /dev/null +++ b/arch/linux/README-stand-alone.txt @@ -0,0 +1,49 @@ +Gitso is to support others. + +We created Gitso as a frontend to reverse VNC connections. It is meant +to be a simple two-step process that connects one person to another's +screen. First, the support person offers to give support. Second, the +person who needs help connects and has their screen remotely visible. +Because Gitso is cross-platform (Ubuntu, OS X and Windows) and uses a +reverse VNC connection, it greatly simplifies the process of getting support. + + +Gitso 0.6: (Feb 21, 2010) + + * Complete rewrite of process management. + * Actually stop VNC Processes (Windows) + * Support loading remote hosts file. + * Command line switches + * --dev + * --listen + * --connect IP + * --list list_file + * --version + * --help + * manpage for (All UNIX sytems) + * Support for .rpms (Fedora, OpenSUSE, CentOS) + * Implement Native VNC listener (OS X) + * Better process management, user gets notified if connection is broken. + * Licensing Updates (across the board). + * Improved documentation. + ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +Gitso Distro-independent Code. + +Note: If you run Ubuntu, it'd be easier to use gitso_0.6_all.deb. However, +if you aren't running Ubuntu proceed. + +Requirements: + x11vnc + vncviewer + wxPython + +Usage: ./run-gitso.sh [options] + Options: + --listen + --connect IP + --list list_file + --version + --help + + diff --git a/arch/linux/README.txt b/arch/linux/README.txt new file mode 100644 index 0000000..d1bafe9 --- /dev/null +++ b/arch/linux/README.txt @@ -0,0 +1,23 @@ +#!/bin/bash + +#Gitso is to support others. +#---------------------------------------- + + +#Prerequisites: +x11vnc xtightvncviewer + +#Installation: +1. double-click .deb ;) +or +2. unpack it as used in package/ to your filesystem + +#Run: +gitso + +#Description: + We created Gitso as a GUI wrapper to create a reverse VNC connection. It is meant to be easy enough so the + person who needs help can get it. They run this program and type in the IP address given to them by their + friend offering support. The person who is giving support needs to have port 5500 open to their machine. + + diff --git a/arch/linux/build_rpm.sh b/arch/linux/build_rpm.sh new file mode 100644 index 0000000..8fc7639 --- /dev/null +++ b/arch/linux/build_rpm.sh @@ -0,0 +1,43 @@ +#! /bin/bash + +# Check parameters +if test "$1" = ""; then + echo -e "************************\nError: No arguments were given to build_rpm.sh\n************************\n" + exit 1 +fi + +echo -e "Setting up RPM build-root!\n\t" + +BUILD_ROOT="$HOME/rpmbuild/BUILDROOT/gitso-0.6-1.i386" + +mkdir -p $BUILD_ROOT/usr/bin/ +mkdir -p $BUILD_ROOT/usr/share/gitso/ +mkdir -p $BUILD_ROOT/usr/share/applications/ +mkdir -p $BUILD_ROOT/usr/share/doc/gitso/ +mkdir -p $BUILD_ROOT/usr/share/man/man1 + +cp arch/linux/gitso $BUILD_ROOT/usr/bin/ + +chmod 755 $BUILD_ROOT/usr/bin/gitso +cp arch/linux/gitso.desktop $BUILD_ROOT/usr/share/applications/ + +cp COPYING $BUILD_ROOT/usr/share/doc/gitso/ +cp arch/linux/README.txt $BUILD_ROOT/usr/share/doc/gitso/README +gzip -cf arch/linux/changelog > $BUILD_ROOT/usr/share/doc/gitso/changelog.gz + +cp Gitso.py $BUILD_ROOT/usr/share/gitso/ +cp ConnectionWindow.py $BUILD_ROOT/usr/share/gitso/ +cp AboutWindow.py $BUILD_ROOT/usr/share/gitso/ +cp GitsoThread.py $BUILD_ROOT/usr/share/gitso/ +cp Processes.py $BUILD_ROOT/usr/share/gitso/ +cp ArgsParser.py $BUILD_ROOT/usr/share/gitso/ +cp __init__.py $BUILD_ROOT/usr/share/gitso/ +cp NATPMP.py $BUILD_ROOT/usr/share/gitso/ +cp hosts.txt $BUILD_ROOT/usr/share/gitso/ +cp icon.ico $BUILD_ROOT/usr/share/gitso/ +cp icon.png $BUILD_ROOT/usr/share/gitso/ + +gzip -cf arch/linux/gitso.1 > $BUILD_ROOT/usr/share/man/man1/gitso.1.gz + +echo 'Done'; + diff --git a/arch/linux/changelog b/arch/linux/changelog new file mode 100644 index 0000000..8d34f9d --- /dev/null +++ b/arch/linux/changelog @@ -0,0 +1 @@ +../../debian/changelog \ No newline at end of file diff --git a/arch/linux/control b/arch/linux/control new file mode 100644 index 0000000..a00736a --- /dev/null +++ b/arch/linux/control @@ -0,0 +1 @@ +../../debian/control \ No newline at end of file diff --git a/arch/linux/gitso b/arch/linux/gitso new file mode 100644 index 0000000..9e0984b --- /dev/null +++ b/arch/linux/gitso @@ -0,0 +1,13 @@ +#!/usr/bin/env python + +import sys, os, wx +sys.path.append(os.path.join(sys.path[0], '..', 'share', 'gitso')) + +from Gitso import ConnectionWindow, ArgsParser + +if __name__ == "__main__": + app = wx.App(False) + args = ArgsParser.ArgsParser() + ConnectionWindow.ConnectionWindow(None, -1, "Gitso", args.GetPaths()) + app.MainLoop() + del app diff --git a/arch/linux/gitso.1 b/arch/linux/gitso.1 new file mode 100644 index 0000000..3d09248 --- /dev/null +++ b/arch/linux/gitso.1 @@ -0,0 +1,72 @@ +.TH GITSO 1 "October 2008" "gitso-0.6" "Gitso" +.SH NAME +gitso - Gitso is to support others +.SH SYNOPSIS +.B gitso +[ +.B --dev +| +.B --listen +| +.B --connect +.I host +| +.B --list +.I list +| +.B --low-colors +| +.B --version +| +.B --help +] +.SH DESCRIPTION +Gitso is a frontend to reverse VNC connections. It is meant to be a simple two-step process that connects one person to another's screen in the context of giving technical support. +.SH OPTIONS +.TP +.B --dev +Configures paths for running Gitso in the source tree. +.TP +.B --listen +Start Gitso and listen for incoming connections +.TP +.B --connect +Starts gitso and automatically connects to +.I host +which is an IP or domain name (address of support giver). +.TP +.B --list +Alternative support list, where +.I list +is either a URL of a remote file or path to local file. +.TP +.B --low-colors +Use 8bit colors (for slow connections). +.TP +.B --version +The current Gitso version. +.TP +.B --help +Display the help menu. + +.SH HOST FILES +.I $HOME/.gitso-hosts +.I /usr/share/gitso/hosts.txt + +.SH EXAMPLES +.TP +gitso --list http://support.mydomain.com/techs.txt +Gets the list of technician IP's or DN's from techs.txt +.TP +gitso --list sanda.mydomain.com,aicha.mydomain.com +Adds these three entries to the list of support techs. +.TP +gitso --connect hank.mydomain.com +Automatically connects to hank.mydomain.com + +.SH SEE ALSO +.I x11vnc +.I vncviewer + +.SH AUTHOR +Aaron Gerber and Derek Buranen diff --git a/arch/linux/gitso.desktop b/arch/linux/gitso.desktop new file mode 100644 index 0000000..d5028e9 --- /dev/null +++ b/arch/linux/gitso.desktop @@ -0,0 +1,15 @@ +[Desktop Entry] +Version=0.6 +Encoding=UTF-8 +Name=Gitso +Name[en_GB]=Gitso +Name[en_US]=Gitso +Comment=Connect to others using VNC protocol +Exec=gitso +Icon=/usr/share/gitso/icon.ico +Terminal=false +MimeType=application/x-remote-connection; +Type=Application +StartupNotify=true +Categories=GNOME;GTK;Network;RemoteAccess; + diff --git a/arch/linux/gitso_rpm.spec b/arch/linux/gitso_rpm.spec new file mode 100644 index 0000000..9dec948 --- /dev/null +++ b/arch/linux/gitso_rpm.spec @@ -0,0 +1,64 @@ + +%define _topdir %(echo $HOME)/rpm +%define _tmppath %{_topdir}/tmp +%define _prefix /usr/share +%define _defaultdocdir %{_prefix}/doc +%define _mandir %{_prefix}/man +%define buildroot %{_tmppath}/gitso-root + + +Name: gitso +Summary: Gitso - Is to Support Others +Version: 0.6 +Release: 1 +License: GPL 3 +Group: Internet +Source: http://gitso.googlecode.com/files/gitso_0.6_src.tar.bz2 +URL: http://code.google.com/p/gitso/ + +Requires: python, x11vnc, tightvnc, wxGTK, python-wxGTK +Buildroot: %{_tmppath}/gitso-root +Packager: Aaron Gerber + + + +%description +Gitso is a frontend to reverse VNC connections. It is meant to be a +simple two-step process that connects one person to another's screen. + +%prep +%setup + +%build + +%install +./arch/linux/build_rpm.sh %(echo $HOME) + +%clean + +%files +/usr/bin/gitso + +%{_prefix}/applications/gitso.desktop + +%{_prefix}/doc/gitso/COPYING +%{_prefix}/doc/gitso/README +%{_prefix}/doc/gitso/changelog.gz + +%{_prefix}/gitso/Gitso.py +%{_prefix}/gitso/ConnectionWindow.py +%{_prefix}/gitso/AboutWindow.py +%{_prefix}/gitso/GitsoThread.py +%{_prefix}/gitso/Processes.py +%{_prefix}/gitso/ArgsParser.py +%{_prefix}/gitso/__init__.py +%{_prefix}/gitso/hosts.txt +%{_prefix}/gitso/NATPMP.py +%{_prefix}/gitso/icon.ico +%{_prefix}/gitso/icon.png + +%{_mandir}/man1/gitso.1.gz + +%changelog +* Sun Oct 26 2008 Aaron Gerber +- Created RPM diff --git a/arch/linux/gitso_rpm_centos.spec b/arch/linux/gitso_rpm_centos.spec new file mode 100644 index 0000000..cfc936c --- /dev/null +++ b/arch/linux/gitso_rpm_centos.spec @@ -0,0 +1,63 @@ +%define _topdir %(echo $HOME)/rpm +%define _tmppath %{_topdir}/tmp +%define _prefix /usr/share +%define _defaultdocdir %{_prefix}/doc +%define _mandir %{_prefix}/man +%define buildroot %{_tmppath}/gitso-root + + +Name: gitso +Summary: Gitso - Is to Support Others +Version: 0.6 +Release: 1 +License: GPL 3 +Group: Internet +Source: http://gitso.googlecode.com/files/gitso_0.6_src.tar.bz2 +URL: http://code.google.com/p/gitso/ + +Requires: python, vnc, x11vnc, vnc-server, wxGTK, wxPython +Buildroot: %{_tmppath}/gitso-root +Packager: Aaron Gerber + + + +%description +Gitso is a frontend to reverse VNC connections. It is meant to be a +simple two-step process that connects one person to another's screen. + +%prep +%setup + +%build + +%install +./arch/linux/build_rpm.sh %(echo $HOME) + +%clean + +%files +/usr/bin/gitso + +%{_prefix}/applications/gitso.desktop + +%{_prefix}/doc/gitso/COPYING +%{_prefix}/doc/gitso/README +%{_prefix}/doc/gitso/changelog.gz + +%{_prefix}/gitso/Gitso.py +%{_prefix}/gitso/ConnectionWindow.py +%{_prefix}/gitso/AboutWindow.py +%{_prefix}/gitso/GitsoThread.py +%{_prefix}/gitso/Processes.py +%{_prefix}/gitso/ArgsParser.py +%{_prefix}/gitso/__init__.py +%{_prefix}/gitso/NATPMP.py +%{_prefix}/gitso/hosts.txt +%{_prefix}/gitso/icon.ico +%{_prefix}/gitso/icon.png + +%{_mandir}/man1/gitso.1.gz + +%changelog +* Sun Oct 26 2008 Aaron Gerber +- Created RPM diff --git a/arch/linux/gitso_rpm_fedora.spec b/arch/linux/gitso_rpm_fedora.spec new file mode 100644 index 0000000..cfc936c --- /dev/null +++ b/arch/linux/gitso_rpm_fedora.spec @@ -0,0 +1,63 @@ +%define _topdir %(echo $HOME)/rpm +%define _tmppath %{_topdir}/tmp +%define _prefix /usr/share +%define _defaultdocdir %{_prefix}/doc +%define _mandir %{_prefix}/man +%define buildroot %{_tmppath}/gitso-root + + +Name: gitso +Summary: Gitso - Is to Support Others +Version: 0.6 +Release: 1 +License: GPL 3 +Group: Internet +Source: http://gitso.googlecode.com/files/gitso_0.6_src.tar.bz2 +URL: http://code.google.com/p/gitso/ + +Requires: python, vnc, x11vnc, vnc-server, wxGTK, wxPython +Buildroot: %{_tmppath}/gitso-root +Packager: Aaron Gerber + + + +%description +Gitso is a frontend to reverse VNC connections. It is meant to be a +simple two-step process that connects one person to another's screen. + +%prep +%setup + +%build + +%install +./arch/linux/build_rpm.sh %(echo $HOME) + +%clean + +%files +/usr/bin/gitso + +%{_prefix}/applications/gitso.desktop + +%{_prefix}/doc/gitso/COPYING +%{_prefix}/doc/gitso/README +%{_prefix}/doc/gitso/changelog.gz + +%{_prefix}/gitso/Gitso.py +%{_prefix}/gitso/ConnectionWindow.py +%{_prefix}/gitso/AboutWindow.py +%{_prefix}/gitso/GitsoThread.py +%{_prefix}/gitso/Processes.py +%{_prefix}/gitso/ArgsParser.py +%{_prefix}/gitso/__init__.py +%{_prefix}/gitso/NATPMP.py +%{_prefix}/gitso/hosts.txt +%{_prefix}/gitso/icon.ico +%{_prefix}/gitso/icon.png + +%{_mandir}/man1/gitso.1.gz + +%changelog +* Sun Oct 26 2008 Aaron Gerber +- Created RPM diff --git a/arch/linux/run-gitso.sh b/arch/linux/run-gitso.sh new file mode 100644 index 0000000..bd08ab7 --- /dev/null +++ b/arch/linux/run-gitso.sh @@ -0,0 +1,36 @@ +#! /bin/bash + +if test "$1" == "-h" -o "$1" == "--help"; then + echo -e "Usage: ./run-gitso.sh [options]" + echo -e "\tOptions:" + echo -e "\t--have-wxpython:\tDisable wxPython library check" + exit 0 +fi + + +## Checking for x11vnc +if test ! "`which x11vnc`"; then + echo -e "Error - x11vnc was not found on your system.\n" + exit 1 +fi + +## Checking for wxpython +if test "$1" != "--have-wxpython"; then + if test ! "`locate wxPython/lib`"; then + echo -e "\nError - wxPython was not found on your system." + echo -e "\nIf you know you have wxPython installed, use '--have-wxpython'.\n\tExample: ./run-gitso --have-wxpython\n" + exit 1 + fi +else + echo -e "\nBypassing wxpython check..." +fi + +## Checking for vncviewer +if test ! "`which vncviewer`"; then + echo -e "\nError - vncviewer was not found on your system.\n" + exit 1 +fi + + +echo -e "Starting Gitso..." +bin/gitso diff --git a/arch/osx/Info_OSX-10.5.plist b/arch/osx/Info_OSX-10.5.plist new file mode 100644 index 0000000..ad616f5 --- /dev/null +++ b/arch/osx/Info_OSX-10.5.plist @@ -0,0 +1,98 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + Gitso + CFBundleDocumentTypes + + + CFBundleTypeOSTypes + + **** + fold + disk + + CFBundleTypeRole + Viewer + + + CFBundleExecutable + Gitso + CFBundleIconFile + PythonApplet.icns + CFBundleIdentifier + org.pythonmac.unspecified.Gitso + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Gitso + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.5 + CFBundleSignature + ???? + CFBundleVersion + 0.5 + LSHasLocalizedDisplayName + + NSAppleScriptEnabled + + NSHumanReadableCopyright + Copyright not specified + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + PyMainFileNames + + __boot__ + + PyOptions + + alias + + argv_emulation + + no_chdir + + optimize + 0 + prefer_ppc + + site_packages + + use_pythonpath + + + PyResourcePackages + + PyRuntimeLocations + + @executable_path/../Frameworks/Python.framework/Versions/2.5/Python + /System/Library/Frameworks/Python.framework/Versions/2.5/Python + + PythonInfoDict + + PythonExecutable + /System/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python + PythonLongVersion + 2.5.1 (r251:54863, Jan 17 2008, 19:35:17) +[GCC 4.0.1 (Apple Inc. build 5465)] + PythonShortVersion + 2.5 + py2app + + alias + + template + app + version + 0.3.6 + + + + diff --git a/arch/osx/Info_OSX-10.6.plist b/arch/osx/Info_OSX-10.6.plist new file mode 100644 index 0000000..4e56b7c --- /dev/null +++ b/arch/osx/Info_OSX-10.6.plist @@ -0,0 +1,98 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + Gitso + CFBundleDocumentTypes + + + CFBundleTypeOSTypes + + **** + fold + disk + + CFBundleTypeRole + Viewer + + + CFBundleExecutable + Gitso + CFBundleIconFile + PythonApplet.icns + CFBundleIdentifier + org.pythonmac.unspecified.Gitso + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + Gitso + CFBundlePackageType + APPL + CFBundleShortVersionString + 0.6 + CFBundleSignature + ???? + CFBundleVersion + 0.6 + LSHasLocalizedDisplayName + + NSAppleScriptEnabled + + NSHumanReadableCopyright + Aaron Gerber and Derek Buranen 2010 + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + PyMainFileNames + + __boot__ + + PyOptions + + alias + + argv_emulation + + no_chdir + + optimize + 0 + prefer_ppc + + site_packages + + use_pythonpath + + + PyResourcePackages + + PyRuntimeLocations + + @executable_path/../Frameworks/Python.framework/Versions/2.6/Python + /System/Library/Frameworks/Python.framework/Versions/2.6/Python + + PythonInfoDict + + PythonExecutable + /System/Library/Frameworks/Python.framework/Versions/2.6/Resources/Python.app/Contents/MacOS/Python + PythonLongVersion + Python 2.6.1 (r261:67515, Jul 7 2009, 23:51:51) +[GCC 4.2.1 (Apple Inc. build 5646)] on darwin + PythonShortVersion + 2.6 + py2app + + alias + + template + app + version + 0.4.2 + + + + diff --git a/arch/osx/OSXvnc.tar.gz b/arch/osx/OSXvnc.tar.gz new file mode 100644 index 0000000..2eb7385 Binary files /dev/null and b/arch/osx/OSXvnc.tar.gz differ diff --git a/arch/osx/OSXvnc_src.tar.gz b/arch/osx/OSXvnc_src.tar.gz new file mode 100644 index 0000000..30d4f36 Binary files /dev/null and b/arch/osx/OSXvnc_src.tar.gz differ diff --git a/arch/osx/Readme.rtfd/TXT.rtf b/arch/osx/Readme.rtfd/TXT.rtf new file mode 100644 index 0000000..90ec9bf --- /dev/null +++ b/arch/osx/Readme.rtfd/TXT.rtf @@ -0,0 +1,61 @@ +{\rtf1\ansi\ansicpg1252\cocoartf1038\cocoasubrtf250 +{\fonttbl\f0\fswiss\fcharset0 Helvetica;} +{\colortbl;\red255\green255\blue255;\red1\green6\blue255;\red0\green15\blue255;} +\margl1440\margr1440\vieww12020\viewh15120\viewkind0 +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\f0\fs24 \cf0 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\qc\pardirnatural +\cf0 {{\NeXTGraphic icon.jpg \width5200 \height5200 \noorient +}¬}\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\qc\pardirnatural + +\b\fs50 \cf0 \ +Gitso +\b0 is to support others.\ + +\fs36 Version +\b 0.6 +\b0\fs24 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +\cf0 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\qc\pardirnatural + +\b\fs34 \cf2 http://code.google.com/p/gitso +\b0\fs24 \cf0 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +\cf0 \ +We created Gitso as a GUI wrapper to create a reverse VNC connection. It is meant to be easy enough so the person who needs help can get it. They run this program and type in the IP address given to them by their friend offering support.\ +\ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural + +\b \cf0 Note: +\b0 The person who is giving support needs to have port 5500 open to their machine.\ +\ + +\b To Install:\ + +\b0 Copy Gitso.app to the /Applications/ folder.\ +\ + +\b To Uninstall:\ + +\b0 Remove /Applications/Gitso.app.\ + +\b +\b0 Remove ~/Library/Application Support/Gitso.\ +\ + +\b Gitso uses both: +\b0 \ + OSXvnc: http://sourceforge.net/projects/osxvnc/\ + Tightvnc: http://www.tightvnc.com/ \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\qc\pardirnatural +\cf0 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\ql\qnatural\pardirnatural +\cf0 \ +\pard\tx720\tx1440\tx2160\tx2880\tx3600\tx4320\tx5040\tx5760\tx6480\tx7200\tx7920\tx8640\qc\pardirnatural +\cf0 Authors: Aaron Gerber and Derek Buranen\ +Copyright: 2007 - 2010\ +\ +GPL 3: \cf3 http://www.gnu.org/licenses/gpl.html\cf0 \ +} \ No newline at end of file diff --git a/arch/osx/Readme.rtfd/icon.jpg b/arch/osx/Readme.rtfd/icon.jpg new file mode 100644 index 0000000..a5e89d0 Binary files /dev/null and b/arch/osx/Readme.rtfd/icon.jpg differ diff --git a/arch/osx/cotvnc-copyright.txt b/arch/osx/cotvnc-copyright.txt new file mode 100644 index 0000000..d6f79b7 --- /dev/null +++ b/arch/osx/cotvnc-copyright.txt @@ -0,0 +1,346 @@ +Chicken Of The VNC + +Copyright (C) 2002-2006 by Jason Harris +Copyright (C) 1998-2000 by Helmut Maierhofer +Icon generously provided by Cale Peeples cale@dumbculture.com + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + 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 +this service 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. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey 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) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/arch/osx/cotvnc-gitso.diff b/arch/osx/cotvnc-gitso.diff new file mode 100644 index 0000000..d47a449 --- /dev/null +++ b/arch/osx/cotvnc-gitso.diff @@ -0,0 +1,1547 @@ +Only in .: .DS_Store +Only in ./Chicken of the VNC.xcodeproj: gerberad.mode1v3 +Only in ./Chicken of the VNC.xcodeproj: gerberad.pbxuser +diff -aurr ./Chicken of the VNC.xcodeproj/project.pbxproj ../cotvnc/Chicken of the VNC.xcodeproj/project.pbxproj +--- ./Chicken of the VNC.xcodeproj/project.pbxproj 2008-11-10 21:37:35.000000000 -0700 ++++ ../cotvnc/Chicken of the VNC.xcodeproj/project.pbxproj 2007-03-28 18:52:50.000000000 -0600 +@@ -1209,7 +1209,6 @@ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = E20426EA087531990026AA26 /* Build configuration list for PBXProject "Chicken of the VNC" */; +- compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + knownRegions = ( + English, +@@ -1220,7 +1219,6 @@ + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* Chicken of the VNC */; + projectDirPath = ""; +- projectRoot = ""; + targets = ( + 7F7A93E305E71B5C00E20416 /* Chicken of the VNC */, + 7F916AA40BB6E98900E31F20 /* libjpeg */, +diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib +--- ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2008-11-07 22:54:10.000000000 -0700 ++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2005-04-14 18:46:42.000000000 -0600 +@@ -1,90 +1,130 @@ +- +- +- +- +- IBClasses +- +- +- ACTIONS +- +- changeRendezvousUse +- id +- showConnectionDialog +- id +- showHelp +- id +- showListenerDialog +- id +- showNewConnectionDialog +- id +- showPreferences +- id +- showProfileManager +- id +- +- CLASS +- AppDelegate +- LANGUAGE +- ObjC +- OUTLETS +- +- mInfoVersionNumber +- NSTextField +- mRendezvousMenuItem +- NSMenuItem +- +- SUPERCLASS +- NSObject +- +- +- CLASS +- NSObject +- LANGUAGE +- ObjC +- +- +- ACTIONS +- +- makeConnectionFullscreen +- id +- makeConnectionWindowed +- id +- manuallyUpdateFrameBuffer +- id +- openNewTitlePanel +- id +- openOptions +- id +- pasteViaKeypress +- id +- sendBreakKeyCode +- id +- sendCmdOptEsc +- id +- sendCtrlAltDel +- id +- sendDeleteKeyCode +- id +- sendExecuteKeyCode +- id +- sendInsertKeyCode +- id +- sendPauseKeyCode +- id +- sendPrintKeyCode +- id +- toggleFullscreenMode +- id +- +- CLASS +- FirstResponder +- LANGUAGE +- ObjC +- SUPERCLASS +- NSObject +- +- +- IBVersion +- 1 +- +- ++{ ++ IBClasses = ( ++ { ++ ACTIONS = { ++ changeRendezvousUse = id; ++ showConnectionDialog = id; ++ showHelp = id; ++ showListenerDialog = id; ++ showNewConnectionDialog = id; ++ showPreferences = id; ++ showProfileManager = id; ++ }; ++ CLASS = AppDelegate; ++ LANGUAGE = ObjC; ++ OUTLETS = {mInfoVersionNumber = NSTextField; mRendezvousMenuItem = NSMenuItem; }; ++ SUPERCLASS = NSObject; ++ }, ++ { ++ ACTIONS = { ++ makeConnectionFullscreen = id; ++ makeConnectionWindowed = id; ++ manuallyUpdateFrameBuffer = id; ++ openNewTitlePanel = id; ++ openOptions = id; ++ pasteViaKeypress = id; ++ sendBreakKeyCode = id; ++ sendCmdOptEsc = id; ++ sendCtrlAltDel = id; ++ sendDeleteKeyCode = id; ++ sendExecuteKeyCode = id; ++ sendInsertKeyCode = id; ++ sendPauseKeyCode = id; ++ sendPrintKeyCode = id; ++ toggleFullscreenMode = id; ++ }; ++ CLASS = FirstResponder; ++ LANGUAGE = ObjC; ++ SUPERCLASS = NSObject; ++ }, ++ { ++ ACTIONS = {changeSelectedScenario = id; restoreDefaults = id; }; ++ CLASS = KeyEquivalentPrefsController; ++ LANGUAGE = ObjC; ++ OUTLETS = {mConnectionType = NSPopUpButton; mOutlineView = NSOutlineView; }; ++ SUPERCLASS = NSObject; ++ }, ++ {CLASS = Profile; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, ++ { ++ ACTIONS = { ++ addProfile = id; ++ changeEncodingState = id; ++ deleteProfile = id; ++ profileChanged = id; ++ profileSelected = id; ++ reorderEncodings = id; ++ }; ++ CLASS = ProfileManager; ++ LANGUAGE = ObjC; ++ OUTLETS = { ++ altKey = id; ++ commandKey = id; ++ controlKey = id; ++ deleteProfileButton = id; ++ enableCopyRect = id; ++ encodingTableView = id; ++ m3bTimeout = id; ++ mkbTimeout = id; ++ mkdTimeout = id; ++ newProfileButton = id; ++ pixelFormatMatrix = id; ++ profileBrowser = id; ++ profileField = id; ++ profilePanel = id; ++ shiftKey = id; ++ upDownButtonMatrix = id; ++ }; ++ SUPERCLASS = NSObject; ++ }, ++ { ++ ACTIONS = { ++ addServer = id; ++ deleteSelectedServer = id; ++ showConnectionDialog = id; ++ showNewConnectionDialog = id; ++ }; ++ CLASS = RFBConnectionManager; ++ LANGUAGE = ObjC; ++ OUTLETS = { ++ groupList = NSTableView; ++ serverDataBoxLocal = NSBox; ++ serverDeleteBtn = NSButton; ++ serverGroupBox = NSBox; ++ serverList = NSTableView; ++ serverListBox = NSBox; ++ splitView = NSSplitView; ++ }; ++ SUPERCLASS = NSWindowController; ++ }, ++ {CLASS = ServerDataManager; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, ++ { ++ ACTIONS = { ++ connectToServer = id; ++ displayChanged = id; ++ hostChanged = id; ++ passwordChanged = id; ++ profileSelectionChanged = id; ++ rememberPwdChanged = id; ++ sharedChanged = id; ++ }; ++ CLASS = ServerDataViewController; ++ LANGUAGE = ObjC; ++ OUTLETS = { ++ box = NSBox; ++ connectBtn = NSButton; ++ connectIndicator = NSProgressIndicator; ++ connectIndicatorText = NSTextField; ++ display = NSTextField; ++ hostName = NSTextField; ++ mDelegate = id; ++ mServer = id; ++ password = NSTextField; ++ profilePopup = NSPopUpButton; ++ rememberPwd = NSButton; ++ shared = NSButton; ++ }; ++ SUPERCLASS = NSWindowController; ++ } ++ ); ++ IBVersion = 1; ++} +\ No newline at end of file +diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/info.nib +--- ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2008-11-07 22:54:10.000000000 -0700 ++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2006-01-18 12:42:18.000000000 -0700 +@@ -1,20 +1,26 @@ + +- ++ + + ++ IBDocumentLocation ++ 3 4 356 240 0 0 1280 832 ++ IBEditorPositions ++ ++ 29 ++ 270 514 419 44 0 0 1280 832 ++ + IBFramework Version +- 629 +- IBLastKnownRelativeProjectPath +- ../../../Chicken of the VNC.xcodeproj +- IBOldestOS +- 5 ++ 443.0 ++ IBLockedObjects ++ ++ 1191 ++ 1208 ++ + IBOpenObjects + +- 612 ++ 29 + + IBSystem Version +- 9F33 +- targetFramework +- IBCocoaFramework ++ 8F46 + + +diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib +--- ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2008-11-07 22:54:10.000000000 -0700 ++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2006-01-18 12:42:18.000000000 -0700 +@@ -1,65 +1,65 @@ +-bplist00Ô +-X$versionT$topY$archiverX$objects† Ñ]IB.objectdata€_NSKeyedArchiver¯Ù 156<=AEek{€‚‡ˆ‰Œ‘”•™Ÿ¢£±¸¹ÉÊÒÓÖàáâçéìðö÷úþ  +-  #*/0126>?@DKLMNRYZ[_fghinosz{|ˆ‰¢£¤¥¦²¹ºÁÂÆÇÌÓÔÜÝáäëìôõúûþ %)*-0>?@FGLMPSZ[bcelmtuw~†‡‰Ž‘’“”—˜œ£¤¥¦ª±µ¶·¸¼ÄÅÆÊÑÒÓ×Þâãäèïðñõüýþÿ +-  %&'+2348?@ABFMNOSZ[\]ahijnuvw{‚ƒ„ÊËÐÒÓÙäïðñý '09ðBENW`adðmnzƒŒ•–Ÿð¤Dð­ð¶·¿ðÈÑðÒÖÙÚÞßá'nµ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷úýaÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿÊ  +-    !"#$%(+.U$nullß  !"#$%&'()*+,-./0VNSRootV$class]NSObjectsKeys_NSClassesValues_NSAccessibilityOidsValues]NSConnections[NSNamesKeys[NSFramework]NSClassesKeysZNSOidsKeys]NSNamesValues_NSAccessibilityConnectors]NSFontManager_NSVisibleWindows_NSObjectsValues_NSAccessibilityOidsKeysYNSNextOid\NSOidsValues€Ø€ïq×€,€pr-Õ€€+ÖÈsÒ234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects€ Ò78BC£CD;\NSMutableSetUNSSetÒ>FG€š¯HIJKLMNOPQRSTUVWXYZ[\]^_`abcd€ €€,€2€8€>€B€G€K€P€R€V€£€¨€®€²€¶€»€¿€Ä€È€Í€Ñ€Õ€Ú€Þ€ã€ç€ëÓfghijXNSSourceWNSLabel€€ +-€ØlmnopqrstuvwxyzWNSTitle_NSKeyEquivModMaskZNSKeyEquiv]NSMnemonicLocYNSOnImage\NSMixedImageVNSMenu€€ € ÿÿÿ€€€ Ól|}~[NSMenuItems€ò€÷€ù\Send "Print"PÓ2ƒ„…†^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78Š‹¢‹;_NSCustomResourceÓ2ƒ„…€€€_NSMenuMixedStateÒ78’“¢“;ZNSMenuItem_sendPrintKeyCode:Ò78–—£—˜;_NSNibControlConnector^NSNibConnectorÔšfg›œž]NSDestination€+€€€*Ò23¡€€[AppDelegateפ¥¦§¨©ª«¬­®¯ª_NSNextResponderWNSFrameVNSCellXNSvFlagsYNSEnabled[NSSuperview€€)€€ €Õ¤²§³+µ¶®·ZNSSubviews[NSFrameSize€€œ€^€›_{{59, 20}, {154, 10}}غ»¼½¾¿ÀÁÂÃÄÅœÇÈ[NSCellFlags_NSBackgroundColorZNSContentsYNSSupport]NSControlView\NSCellFlags2[NSTextColorþ€(€"€€€€'S2.0ÔËÌÍÎÏÐÑVNSSizeVNSNameXNSfFlags€!#@$€ YHelveticaÒ78ÔÕ¢Õ;VNSFontÕ×ØÙÚÛÜÝÞßWNSColor\NSColorSpace[NSColorName]NSCatalogName€&€%€$€#VSystem_textBackgroundColorÓØãÛåæWNSWhite€&B1Ò78è×¢×;ÓØãÛåë€&K0.33333299Ò78íî¤îï¦;_NSTextFieldCell\NSActionCellÒ78ñò¥òóôõ;[NSTextFieldYNSControlVNSView[NSResponder_mInfoVersionNumberÒ78øù£ù˜;_NSNibOutletConnectorÓfghüý€€-€1Ølmnopqrsuwxy€€/€0€€€.Ól|}€òTUndoQzUundo:Ófgh€€3€7Ølmnopqrsuwxy€€5€6€€€4ÔlÌ|}€ò_Hide Chicken of the VNCQhUhide:Ófgh!"€€9€=Ølmnopqrs%u&wxy)€€;€<€€€:ÔlÌ|},-.€ò +-XMinimizeQm_performMiniaturize:Ófgh45€€?€AØlmnopqrs89vwxyz€€@€ €€€ _Send "Cmd-Option-Escape"^sendCmdOptEsc:ÓfghBC€€C€FØlmnopqrsFuGwxy€€D€E€€€.UPasteQvVpaste:ÓfghPQ€€H€JØlmnopqrsT9vwxyz€€I€ €€€ _Send "Ctrl-Alt-Del"_sendCtrlAltDel:Ófgh]^€€L€OØlmnopqrsaubwxy€€M€N€€€.ZSelect AllQaZselectAll:Ôšfg›m€+€€€QXdelegateÓfghqr€€S€UØlmnopqrsuuvwxyz€€T€ €€€ \Send "Break"_sendBreakKeyCode:Ôšfgh~€€€Y€W€¢×lnopqrsƒvwxy€€X€ €€€4oAbout Chicken of the VNC &ÝŠ‹ŒŽ‘’“”•ª—˜™š›œžŸå ¡\NSWindowView\NSScreenRect_NSFrameAutosaveName]NSWindowTitleYNSWTFlags]NSWindowClass\NSWindowRectYNSMaxSize_NSWindowBacking_NSWindowStyleMaskYNSMinSize[NSViewClass€€¡€€ €[`x€\€Z€Ÿ€ž€]_{{358, 543}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÒ>F¨€š©©œ«¬­®¯°±€_€€f€l€s€‚€‹€€•×¤¥¦§¨©ª«µ¶®¯ª€€)€`€a €_{{124, 137}, {265, 39}}غ»¼½¾¿ÀÁÂý¾©ÇÀ€(€"€b€c€_€e_Chicken of the VNCÔËÌÍÎÄÅÑ€!#@<€d^Helvetica-BoldÓØÈÛÊËUNSRGB€&M0.709804 0 0פ¥¦§¨©ª«ÏЮ¯ª€€)€g€h €_{{126, 99}, {242, 30}}غ»¼½¾¿ÀÕÂÃØÙ«ÇÛ!þ€(€"€i€j€f€k_DAdministered by Jason Harris +-based on VNCViewer by Helmut MaierhoferÔËÌÍÎßÐÑ€!#@(€ ÓØÈÛÊã€&O0.117647 0.192157 0.45882401פ¥¦§¨©ª«ç讯ª€€)€m€n €_{{342, 20}, {203, 26}}غ»¼½¾¿ÀÕÂîïŬòÈ€(€p€o€€l€'_LCopyright 1998-2000 by Helmut Maierhofer +-Copyright 2002-2006 by Jason HarrisÕ×ØÙÚÛ÷Ýø߀&€r€q€#\controlColorÓØãÛåý€&K0.66666669Ù¤¥ÿ¦§¨©ª®¯ªZNSEditable[NSDragTypes€€€|€}€t €Ò>? €§  €u€v€w€x€y€z€{_Apple PDF pasteboard type_Apple PNG pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NSFilenamesPboardType_NeXT TIFF v4.0 pasteboard type_Apple PICT pasteboard type_NeXT filename pasteboard type_{{20, 80}, {96, 96}}غ¼¿ !Ç"ÇÇ#WNSStyleWNSAlignWNSScaleZNSAnimatesþ€€€~Ó2ƒ„…(€€€_NSApplicationIconÒ78+,£,¦;[NSImageCellÒ78./¥/óôõ;[NSImageViewÛ¤12¥3§456©ªŸ89:®å<ǪYNSBoxType[NSTitleCell]NSTransparent\NSBorderTypeYNSOffsets_NSTitlePosition€€Š€…€ƒ€„€_{{12, 52}, {541, 5}}V{0, 0}׺»¼½¿ÀÁÂÃCDÇE€(€"€†€‡€‰SBoxÔËÌÍÎIJK€!#@*€ˆ\LucidaGrandeÓØãÛåO€&M0 0.80000001Ò78QR¤Rôõ;UNSBoxפ¥¦§¨©ª«VW®¯ª€€)€Œ€ €_{{125, 63}, {334, 28}}غ»¼½¾¿ÀÕÂÃ^ůÇa€(€"€Ž€€‹€_hreleased under the GNU Public License +-source code and support available at http://cotvnc.sourceforge.netÓØÈÛÊã€&פ¥¦§¨©ª«hi®¯ª€€)€‘€’ €_{{20, 20}, {39, 10}}غ»¼½¾¿ÀÁÂÃpÅ°Çs€(€"€“€€€”WVersionÓØãÛåë€&פ¥¦§¨©ª«z{®¯ª€€)€–€— €_{{376, 99}, {169, 30}}غ»¼½¾¿ÀÕÂÂٱò…€(€"€˜€j€•€™_6(support@geekspiff.com) ++bplist00Ô ++Y$archiverX$versionT$topX$objects_NSKeyedArchiver† Ñ ]IB.objectdata€¯û 156<=AEpv„‰Š‹‘’–š›žŸ£§°±²¶½ÃÄÅÉÍÑØÙÚÝáéÙêëïö÷øþ$0<=MNUVYcdeikpt{‚ƒŠ‹“š›£¤¨«²³»¼ÁÂÅÐÚÛÜÝÞßàáâìðñõø  %&),34;<>EFMNPWX_`bcdefgjknsz{|€‡ˆ‰ŠŽ•™š›Ÿ¦ª«¬¯³º»¼¿ÃÊËÌÏÓÚÛÜàçèéìð÷øùü  %*+,-189:>EFIMTUVY^abchopqv}~€…ŒŽ”•š› §¨©ª¯¶º»¼½ÂÉÊËÌÐ×ÛÜÝáèéêîõö÷û")*+/678=DEFG—˜¥°¹ÄÅÄÆÒÛÝâåèéêî÷ $-Å-.3<MÅMAPYãÅbc—ÅléÅuv~‡ÅˆŠ— Å¡£¬µ¶·¹ %ABCDEFGyHwGIJKLawMKKNBOPSVÏHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxnyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½ÀÃÆU$nullß  !"#$%&'()*+,-./0_NSObjectsValues_NSAccessibilityConnectors_NSClassesValuesZNSOidsKeys[NSNamesKeys]NSClassesKeys_NSAccessibilityOidsValues\NSOidsValues_NSVisibleWindowsV$class]NSConnections]NSNamesValues]NSObjectsKeys_NSAccessibilityOidsKeys[NSFramework]NSFontManagerYNSNextOidVNSRoota÷~b}ù€€ú€c#ø€€È€Ò234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects €Ò78BC£CD;\NSMutableSetUNSSetÒ>Fo¯(GHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn€ €€€"€'€,€0€€“€˜€€£€¨€­€±€¶€»€¿€Ä€Ê€Î€Ò€×€Û€ß€ä€é€ë€í€ò€ø€ý ++€oÓqrstuWNSLabelXNSSource€€€ ++×wxyz{|}~€‚ƒVNSMenu]NSMnemonicLocWNSTitleYNSOnImageZNSKeyEquiv\NSMixedImage€ ÿÿÿ€ €€ €€Óy…†‡ˆ[NSMenuItems$.%oSet Connection Title &PÓŒ2Ž^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78“”£”•;_NSCustomResource_%NSCustomResourceÓŒ2—Ž€€€_NSMenuMixedStateÒ78œ¢;ZNSMenuItem_openNewTitlePanel:Ò78 ¡£¡¢;_NSNibControlConnector^NSNibConnectorÓqr¤t¦€€€Øwx¨yz{|}~ª«€‚ƒ_NSKeyEquivModMask€ €€€ €€oGet Connection Info &\openOptions:Óqr³tµ€ €€Øwx¨yz{|·~ª¸€º‚ƒ€€€€€€Ôy¾…¿À‡ÂVNSNameDJ.E_Quit Chicken of the VNCQqÒÆÇÈYNS.stringZterminate:€!Ò78ÊË£ËÌ;_NSMutableStringXNSStringÓqrÎtЀ&€€#Øwx¨yz{|·~ªÓ€Õ‚ƒ€€$€€%€€_Hide Chicken of the VNCQhÒÆÛÈUhide:€!ÓqrÞtà€+€€(Øwx¨yz{|·~ãä€æ‚ƒ€€)€€*€€[Hide Others_hideOtherApplications:Óqrìtî€/€€-Øwx¨yz{|·~ªñ€‚ƒ€€.€€ €€XShow All_unhideAllApplications:Ôùqrúûüú]NSDestination€1€€Ž€1Ýÿ  ++   _NSWindowStyleMask_NSWindowBackingYNSMinSize]NSWindowTitle]NSWindowClass\NSWindowRect\NSScreenRectYNSMaxSize\NSWindowViewYNSWTFlags[NSViewClass_NSFrameAutosaveName€‰€3€4€2€ˆ€Š€6`x€Œ€5€‹_{{358, 593}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÔ ."#ZNSSubviews_NSNextResponderWNSFrame€7€€‡€nÒ>%o©&'()*+,-.€8€G€N€T€[€j€x€}€‚€o×1234789:;[NSSuperviewYNSEnabledXNSvFlagsVNSCell€6€6€9 €F€:_{{124, 137}, {265, 39}}Ø>?@ABCDEFGH&JKL_NSBackgroundColor[NSTextColorYNSSupportZNSContents]NSControlView[NSCellFlags\NSCellFlags2€?€D€<€;€8€Eþ_Chicken of the VNCÔO¾PQRSTVNSSizeXNSfFlags"Aà€=€>^Helvetica-BoldÒ78WX¢X;VNSFontÕZ[\]^_`abWNSColor[NSColorName\NSColorSpace]NSCatalogName€B€A€@€CVSystem_textBackgroundColorÓf\g bWNSWhiteB1€CÒ78jZ¢Z;Ól\mnbUNSRGBM0.709804 0 0€CÒ78qr¤rs4;_NSTextFieldCell\NSActionCellÒ78uv¦vwxyz;[NSTextField\%NSTextFieldYNSControlVNSView[NSResponder×1234~89:€6€6€H €F€I_{{59, 20}, {154, 10}}Ø>?@ABCDE…†‡'JKL€?€M€K€J€G€ES2.0ÔO¾PŒST"A €L€>YHelveticaÓf\‘ bK0.33333299€C×1234–89:™€6€6€O €F€P_{{126, 99}, {242, 30}}Ø>?@ABCDEžŸ(J¢L€?€S€R€Q€N€E!þ_DAdministered by Jason Harris ++based on VNCViewer by Helmut MaierhoferÔO¾P¥ST"A@€L€>Ól\©nbO0.117647 0.192157 0.45882401€C×1234®89:±€6€6€U €F€V_{{342, 20}, {203, 26}}Ø>?@ABCD´…†·)J¢º€X€M€K€W€T€E_LCopyright 1998-2000 by Helmut Maierhofer ++Copyright 2002-2006 by Jason HarrisÕZ[\]½¾`ab€Z€Y€@€C\controlColorÓf\à bK0.66666669€CÙ1234ÆÇÊ89ÌÍÎÏ[NSDragTypesZNSEditable€6€6€d €i€e€\Ò>Ñ@§ÒÓÔÕÖ×Ø€]€^€_€`€a€b€c€_Apple PDF pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NeXT filename pasteboard type_NeXT TIFF v4.0 pasteboard type_NSFilenamesPboardType_Apple PICT pasteboard type_Apple PNG pasteboard type_{{20, 80}, {96, 96}}ØãäAåæCDLLçÏLéêëWNSScaleWNSStyleZNSAnimatesWNSAlign€f€hþÓŒ2펀g€€_NSApplicationIconÒ78òó¤óô4;[NSImageCell\%NSImageCellÒ78ö÷¥÷xyz;[NSImageViewÛ1ùúûüýþÿ LÏ \NSBorderType_NSTitlePosition[NSTitleCellYNSOffsets]NSTransparentYNSBoxType€k€6€6€r€p€q€wÒ>o¡ €l€oÔ1++#€j€j€m€n_{{2, 2}, {435, 1}}Ò78y£yz;Ò78£;^NSMutableArrayWNSArray_{{12, 52}, {541, 5}}V{0, 0}×>?@ACDEJKL€?€v€t€s€ESBoxÔO¾P!"S$"AP€u€>\LucidaGrandeÓf\' bM0 0.80000001€CÒ78*+¤+yz;UNSBox×1234/89:2€6€6€y €F€z_{{125, 63}, {334, 28}}Ø>?@ABCDE6†8,J¢L€?€|€K€{€x€E_hreleased under the GNU Public License ++source code and support available at http://cotvnc.sourceforge.netÓl\©nb€C×1234A89:D€6€6€~ €F€_{{20, 20}, {39, 10}}Ø>?@ABCDEH†J-JKL€?€€K€€€}€EWVersionÓf\‘ b€C×1234S89:V€6€6€ƒ €F€„_{{376, 99}, {169, 30}}Ø>?@ABCDEZž\.J¢º€?€†€R€…€‚€E_6(support@geekspiff.com) + (helmut.maierhofer@chello.at) +-ÓØÈÛÊã€&Ò78Š‹£‹Œ;^NSMutableArrayWNSArrayZ{565, 196}Ò78ô£ôõ;_{{0, 0}, {1280, 778}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78•–¢–;_NSWindowTemplate_makeKeyAndOrderFront:Ófghš›€€¤€§ØlmnopqrsžuŸwxy€€¥€¦€€€4_Quit Chicken of the VNCQqZterminate:Ófgh¨©€€©€­Ølmnopqrs¬u­wxy°€€«€¬€€€ªÓl|}³´€ò€ó€ô\Close WindowQw]performClose:Ófghº»€€¯€±Ølmnopqrs¾¿wxy€€°€6€€€4[Hide Others_hideOtherApplications:ÓfghÈÉ€€³€µØlmnopqrsÌuvwxyz€€´€ €€€ \Send "Pause"_sendPauseKeyCode:ÓfghÕÖ€€·€ºØlmnopqrsÙuvwxyÝ€€¹€ €€€¸Ól|}àá€ò€ð€ñ]Stop Speaking]stopSpeaking:Ófghæ瀀¼€¾Ølmnopqrsêuvwxy)€€½€ €€€:_Bring All to Front_arrangeInFront:Ófghóô€€À€ÃØlmnopqrs÷9øwxy)€€Á€Â€€€:_Fullscreen ModeQ~_toggleFullscreenMode:Ófgh€€Å€ÇØlmnopqrsuvwxy)€€Æ€ €€€:WRefresh_manuallyUpdateFrameBuffer:Ófgh€€É€ÌØlmnopqrsuwxy€€Ê€Ë€€€.TRedoQZUredo:Ófgh€€Î€ÐØlmnopqrs uvwxyz€€Ï€ €€€ ]Send "Insert"_sendInsertKeyCode:Ófgh)*€€Ò€ÔØlmnopqrs-uvwxy€€Ó€ €€€.VDeleteWdelete:Ófgh67€€Ö€ÙØlmnopqrs:u;wxy€€×€Ø€€€.SCutQxTcut:ÓfghDE€€Û€ÝØlmnopqrsHuvwxyÝ€€Ü€ €€€¸^Start Speaking^startSpeaking:ÓfghQR€€ß€âØlmnopqrsUuVwxy€€à€á€€€.TCopyQcUcopy:Ófgh_`€€ä€æØlmnopqrscuvwxyz€€å€ €€€ ]Send "Delete"_sendDeleteKeyCode:Ófghlm€€è€êØlmnopqrspuvwxy€€é€ €€€4XShow All_unhideAllApplications:Ófghyz€€ì€îØlmnopqrs}uvwxyz€€í€ €€€ ^Send "Execute"_sendExecuteKeyCode:Ò>…†*¯CP)Ýœ±°¯yl’)~•q—ªš›üBæ!ÈÕDó6¦º°ª«¬¨i¯4Q]³©­_®¸¹º»¼š¾¿ÀÁ¬zÉ€H€Ò€¸€€•€ª€‹€ì€û€è€.€:€Y €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€¯€€ú€f€õ€©€ +-€?€ß€L€_€s€ä€‚€¤" %(€€É€3€l€Å€ VSpeechÒ>FÍ€š¢DÕ€Û€·Ò78Ñr¢r;ZConnectionÒ>FÕ€š£¨¬š€©€õ€öÚlmÚnÛopqrsvu¯v¯wxy°]NSIsSeparator\NSIsDisabled€€ € €€€ªÚålmnopqræsz~uvwxy°îYNSSubmenuXNSAction€€ €÷€ €€€ª€ø\Special Keys^submenuAction:Ò>F󀚩4Pª_Èqiy€?€H€ú€Î€ä€³€S€ +-€ìÚlmÚnÛopqrsvu¯v¯wxyz€€ € €€€ ÔlÌ|}  +-€ò€ü€ÿ€þÒ  YNS.string€ýXServicesÒ78£;_NSMutableStringXNSStringÒ>F€š __NSServicesMenuÒ  €ýTEditÒ>F€šªü³6QB)]’»€-€É€Ö€ß€C€Ò€LÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚålmnopqræsÝàuvwxyA€€¸€ð€ €€€.Ò  D€ýVWindowÒ>FG€š¦óÉ!Àæ€À€9€Å €¼ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:^_NSWindowsMenuÒ234€€Úålmnopqræsguvwxyl€€û € €€€4_Chicken Of the VNCÒ>Fp€š©¸—¼ºl¿š€W €3€¯€è€¤ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4\_NSAppleMenuÚålmnopqræs°³uvwxy¹ž€€ª€ó€ €€ÔlÌ|}¡¢£€ò'Úålmnopqræs)§uvwxy¹¬€€:€ €€Úålmnopqræsuvwxy¹µ€€4€ €€]OSX_RFBViewerÒ>F¹€š¥¯›º¦¾"ÚålmnopqræsÂuvwxy¹Ç€€. € €€!ÚålmnopqræsÁËuvwxy¹Ѐ%#€ €€$THelpÓl|}ËÕ€ò#&Ò>FØ€š [_NSMainMenuÔ¤¥§+µÝ®€€œ)_{{2, 2}, {435, 1}}Ò78àŒ¢Œ;Ò>…ã*¯Cz»ªª›ªz—º¦z¯~°¹))zÝÝ)¹zªzª°°z¹zªªzª¹¹)¾®ª)š)€ €.€€€€  €4€.€€€ €4€Y€ª€.€.€:€:€4€ €¸€¸€:€.€ €4€€ €€ª€ª€ € €.€.€.€€€ €€4€€.€4€4€4€:"€‚€€.€4€€:€ö€:Ò>…)*¯DP)œÝ±°¯l’~)y•q—ªš›üBæ!ÈÕDó6¦°º«ª¬¯¨iQ4©­]³_®º¹¸»¼¾šÀÁ¿Â¬Éz€H€€Ò€€¸€•€ª€‹€è€.€û€Y€:€ì €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€€¯€f€ú€õ€©€ +-€ß€?€_€s€L€ä€‚€"€¤ %(€É€l€3€Å€ Ò>…p*¯Dqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦¡¨©ª«¬­¡¯°±²³´./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc€defghi€]jklmno_Menu Item (Send "Ctrl-Alt-Del")\File's Owner_Menu Item (Delete)_Static Text (2.0)]Menu (Speech)_DStatic Text ((support@geekspiff.com) +-(helmut.maierhofer@chello.at) +-)_Menu (Connection)_vStatic Text (released under the GNU Public License +-source code and support available at http://cotvnc.sourceforge.net)_Menu Item (Show All)[Menu (Edit)[Separator-6_Menu (Services)TInfo]Menu (Window)_Menu Item (Send "Execute")[Application_Menu Item (Send "Break")_Menu Item (Services)_Menu (Chicken Of the VNC)\Content View_Menu Item (Special Keys)_Menu Item (Connection)_Menu Item (Undo)_Menu Item (Paste)_Menu Item (Bring All to Front)_Menu Item (Minimize)o%Menu Item (About Chicken of the VNC &)_Menu Item (Send "Pause")_Menu Item (Stop Speaking)_Menu Item (Start Speaking)_Menu Item (Fullscreen Mode)_Menu Item (Cut)_Menu Item (Window)_Menu Item (Send "Insert")_Static Text (Version)_Menu Item (Hide Others)_RStatic Text (Administered by Jason Harris +-based on VNCViewer by Helmut Maierhofer)[Separator-8YSeparator_Menu Item (Chicken Of the VNC)_Menu Item (Close Window)_Menu Item (Send "Print")_Menu Item (Copy)_$Menu Item (Send "Cmd-Option-Escape")_ Static Text (Chicken of the VNC)_Image View (NSApplicationIcon)_Menu Item (Select All)[Separator-7_Menu Item (Send "Delete")_Horizontal Line_Menu Item (Edit)XMainMenu[Separator-3_Menu Item (Speech)[Separator-4_Menu Item (Help)_#Menu Item (Quit Chicken of the VNC)[Separator-1[Menu (Help)[Separator-5_Menu Item (Redo)_ZStatic Text (Copyright 1998-2000 by Helmut Maierhofer +-Copyright 2002-2006 by Jason Harris)_#Menu Item (Hide Chicken of the VNC)_Menu Item (Refresh)[Separator-2_Menu (Special Keys)Ò>…ù* Ò>…ü* Ò>…ÿ*¯aP)œHO[¯cy’)~Y^L—TªXš›W!ÕDZSó6¦\°ª«¬¯4]³©Mº¹»aš¾¿ÀÁ¬zÉÝ]±V°JlI•qbüBæNÈUdQº¨iKQ­_R®¸_¼P`€H€Ò€€ €G€Ä€‹€ç€ì€û€.€:€Y€»€Ñ€8 €4€£€€¶€ö€²€9€W€·€Û€¿€V€À€Ö€Î€È€€ú€f€õ€?€L€_€>€€Þ€¤" %(€l€Å€ €€¸€Í€•€®€ª€,€è€ €S€ã€-€C€¼€B€³€¨€ë€P€¯€©€ +-€2€ß€s€ä€R€‚€Õ€K€É€3€ÚÒ>…c*¯adefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄtuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔ¾ 伿8q¸m3è9*:efnç#°4º1g7t02Á+V¹åûd³áÀW)kza6‚Žæ4²5ÃÇp=$i`ÿÿÿÿÿÿÿý¶Ä!/&±½Xh·o"ã»Õ%j(c'Ò>F'€š Ò>…** Ò>…-* Ò78/0¢0;^NSIBObjectData"'1:?DRTf"mt{‰›·ÅÑÝëö .ASmw„†‰‹Ž‘“–˜›ž¡¤¦¨«®±´½ÉËÍÛäíøý (1<>?HO\bkmª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäñú)1EP^hu|~€…‡ŒŽ’Ÿ«­¯±¾¿ÌÛÝßáéû )+-/BKP[ox—¦·ÅÇÉËÍÖØÚæ    $ - 7 C E G I K N O Q f q }  ƒ … ¾ Ê Þ é ó ++Ól\©nb€C_{{1, 1}, {565, 196}}_{{0, 0}, {1280, 832}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78hi¢i;_NSWindowTemplate_initialFirstResponderÒ78lm£m¢;_NSNibOutletConnectorÔùqrúptr€1€’€€×wxyz{|·~u€‚ƒ€€‘€€ €€oAbout Chicken of the VNC &_makeKeyAndOrderFront:Óqr}t€—€€”Øwx¨yz{|}~ª‚€„‚ƒ€ €•€€–€€\Close WindowQw]performClose:Óqr‹t€œ€€™Øwx¨yz{|~ª€‚ƒ€š€›€€ €€Óy…–‡˜>.?]Stop Speaking]stopSpeaking:Óqrœtž€¢€€žØwx¨yz{| ~ª¡€£‚ƒ€Ÿ€ €€¡€€Óy…§‡©V.WTUndoQzÒÆ­ÈUundo:€!Óqr°t²€§€€¤Øwx¨yz{| ~ªµ€·‚ƒ€Ÿ€¥€€¦€€SCutQxÒƽÈTcut:€!ÓqrÀt€¬€€©Øwx¨yz{| ~ªÅ€Ç‚ƒ€Ÿ€ª€€«€€UPasteQvÒÆÍÈVpaste:€!ÓqrÐtÒ€°€€®Øwx¨yz{|~ªÕ€‚ƒ€š€¯€€ €€^Start Speaking^startSpeaking:ÓqrÝt߀µ€€²Øwx¨yz{| ~ªâ€䂃€Ÿ€³€€´€€ZSelect AllQaÒÆêÈZselectAll:€!Óqrít€€·Øwx¨yz{| ~ªò€ô‚ƒ€Ÿ€¸€€¹€€TCopyQcÒÆúÈUcopy:€!Óqrýtÿ€¾€€¼Øwx¨yz{| ~ª€‚ƒ€Ÿ€½€€ €€VDeleteWdelete:Óqr ++t €Ã€€ÀØwx¨yz{| ~ª€‚ƒ€Ÿ€Á€€Â€€TRedoQZÒÆÈUredo:€!Óqrt€É€€ÅØwx¨yz{|~ €"‚ƒ€Æ€Ç€€È€€Ôy¾…&'‡)[^.\_Fullscreen ModeQ~_toggleFullscreenMode:Óqr.t0€Í€€ËØwx¨yz{|~ª3€‚ƒ€Æ€Ì€€ €€WRefresh_manuallyUpdateFrameBuffer:Óqr;t=€Ñ€€ÏØwx¨yz{|~ª@€‚ƒ€Æ€Ð€€ €€_Bring All to FrontÒÆGÈ_arrangeInFront:€!ÓqrJtL€Ö€€ÓØwx¨yz{|~ªO€Q‚ƒ€Æ€Ô€€Õ€€XMinimizeQmÒÆWÈ_performMiniaturize:€!ÔùqrZ[ü0€Ø€Ú€Ž€Ò23`€€Ù[AppDelegateXdelegateÔùqrZetg€Ø€Þ€€ÜØwx¨yz{|·~ªj€‚ƒ€€Ý€€ €€[Use Bonjour_changeRendezvousUse:ÔùqrZstu€Ø€ã€€àØwx¨yz{|·~ªx€z‚ƒ€€á€€â€€lPreferences &Q,_showPreferences:ÔùqrZ‚t„€Ø€è€€åØwx¨yz{|}~ª‡€‰‚ƒ€ €æ€€ç€€oOpen Connection &Qo_showConnectionDialog:Ôùqrg‘üZ€Ü€ê€Ž€Ø_mRendezvousMenuItemÔùqr'—üZ€G€ì€Ž€Ø_mInfoVersionNumberÔùqrZtŸ€Ø€ñ€€îØwx¨yz{|}~㢀¤‚ƒ€ €ï€€ð€€oConnection Profiles &Qp_showProfileManager:ÔùqrZ¬t®€Ø€÷€€óØwx¨yz{|°~ª±€³‚ƒ€ô€õ€€ö€€Óy…·‡¹3.4_Chicken of the VNC HelpQ?YshowHelp:ÔùqrZ¿tÁ€Ø€ü€€ùØwx¨yz{|}~ªÄ€Æ‚ƒ€ €ú€€û€€oListen for Server &Ql_showListenerDialog:ÓqrÍtÏ€€þØwx¨yz{|Ñ~ªÒ€‚ƒ€ÿ€€ €€Óy…؇Ú+.,\Send "Pause"_sendPauseKeyCode:ÓqrÞtà€Øwx¨yz{|Ñ~ª。ƒ€ÿ€€ €€\Send "Break"_sendBreakKeyCode:Óqrëtí €Øwx¨yz{|Ñ~ªð€‚ƒ€ÿ€€ €€\Send "Print"_sendPrintKeyCode:Óqrøtú € Øwx¨yz{|Ñ~ªý€‚ƒ€ÿ €€ €€^Send "Execute"_sendExecuteKeyCode:Óqrt€Øwx¨yz{|Ñ~ ++€‚ƒ€ÿ€€ €€_Send "Ctrl-Alt-Del"_sendCtrlAltDel:Óqrt€Øwx¨yz{|Ñ~€‚ƒ€ÿ€€ €€_Send "Cmd-Option-Escape"^sendCmdOptEsc:Óqrt!€Øwx¨yz{|Ñ~ª$€‚ƒ€ÿ€€ €€]Send "Insert"_sendInsertKeyCode:Óqr,t.€Øwx¨yz{|Ñ~ª1€‚ƒ€ÿ€€ €€]Send "Delete"_sendDeleteKeyCode:ÔùqrZ:t<€Ø"€Øwx¨yz{|}~ª?€A‚ƒ€  €!€€oNew Connection &Qn_showNewConnectionDialog:Ò>H–¯Màî }ßO,Ÿ+°„UíXY)[ú]uÁuaLc²®Ògh!(Ð* p0rg'uïxyz.<·ÑµÂ „…žZúÏ.à=Ž-ÿ¦r&€™€-€À€ €²/€x€î€j€ô€å567€T8€19€ ++€ù€à-€Ó'€¤€ó€®:;€N€6€#€[€l(€Ë@€Ü€GK€”€·NAS€€ÿ]€F€©€Ÿ&X€ž€Ø €þ€‚€(€Ï€ÆG€š€Å€}€¼€€€8`ZConnectionÒ>™oª<„Á„u¦Ÿcp€å€ù€”&€ ++€€î'(€oÚwx¨yz¦{|§}~ª€8‚ƒ8\NSIsDisabled]NSIsSeparator€ € € € €€ Úwx¨yz¦{|§}~ª€8‚ƒ8€ € € € €€ Úwx¨ºyz{|»}~ªÑ¾€‚ƒÃYNSSubmenuXNSAction€ €ÿ)€€ €€*\Special Keys^submenuAction:Ò>Ço©a!.Ïàíú-€þ €oÚwx¨yz¦{|§Ñ~ª€8‚ƒ8€ÿ€ € € €€ Ò78Üw¢w;Ôy¾…Þ߇á02.1ÒÆãÈXServices€!Ò>æo €o__NSServicesMenuTHelpÒ>ëo¡®€ó€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|» ~ª'€‚ƒ,€Ÿ€š<€€ €€=VSpeechÒ>/o¢Ò€®€™€oÚwx¨ºyz{|»y~ª·6€‚ƒ;A€B€€ €€CÔy¾…=>‡@Q_.RÒ>Bo¬rUugŽgÐàîYµ€5€à€ÜFG:€#€(€-7€€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|»·~ªO\€‚ƒa€/H€€ €€I\_NSAppleMenuÚwx¨ºyz{|»y~ª}f€‚ƒkA€ L€€ €€MÚwx¨ºyz{|»y~ª°o€‚ƒtA€ôO€€ €€P]OSX_RFBViewerÒ>wo¥ruz…x@KSXN€oÚwx¨ºyz{|»y~ª €‚ƒ†A€ŸT€€ €€UTEditÒƇȀ!Ò>‹oªž [²ïÂÿß]h€ž€À8€¤€·€©€¼€²9;€oÚwx¨ºyz{|»y~ªš€‚ƒŸA€ÆY€€ €€ZVWindowÒƠȀ!Ò>¤o¦XL0=€Å6€Ó€Ë]€Ï€oÚwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ ^_NSWindowsMenu[_NSMainMenuÒ78¸¢;Ò>º–¯MÑ· u Ž}x}·ÑÑ· 0 }}·Ñ} °· ÑÑú·+}y·y} y0yÑ}rp·· z}y 0ÑÑ·…·h }·€š€ÿ€€ŸK€ŸG€6€ €6N€ €€ÿ€ÿ€Æ€€6€Ÿ€€Ÿ€ € €€ÿ€Æ€ €Ÿ€ô€š€€Ÿ€ÿ€ÿ€6€1€€6€j€ €ÆA€€6A€ €ŸA€A€ÿ€ @(€Æ€€€ŸS€ A€Ÿ€€ÿ€ÿ€6€€ÆX€;€Æ€6€Ÿ€ €€6`Ò> ++–¯Yúgîàr¦ 0OÐyŽuZ·+u„urµ7€1:€-€(€€€l€/€#AG€ ++€Ø€€jK€åF€à@€`Ò>&–¯'()*+,-./0123456789:;<=>?defghijklmnopqrstuvwxyz{|`TInfo[NSMenuItem7[NSMenuItem6[NSMenuItem5[NSMenuItem4]NSMenuItem211[NSMenuItem2\File's OwnerXMainMenu[NSMenuItem3[NSMenuItem1^NSMenuItem2111VNSBox1[NSMenuItem9[NSMenuItem8Ò>Q– `Ò>T– `Ò>W–¯v( [kÂbfÐnZ*pú „àQT]0r…îhKžNZugSg'ïaMuO OÁjß}u0úaà[Ïx.,Li=Jm\d`ÒGŽ²yXŸ®cUczH^VY+W].°¦-„g·ÿ<LPhlReUíI_XÑ&Yr)!µ€N€ŸF8€©€6€ë€ý€#€™€Ê€[(€1€l&€€­9€Ë@X€-€'€ž€€Ø€ ++€Ü€¨€G€·€é€0K€”€“€À/€ù€²€ €à€ -€(€Î€þN€‚€x€Ó ++€Ï€"€Ò€ò€Æ€ä€®€ €šG€¤A€¿€î€ó'€±€íS€€Û€¶€Ä€j€»€×€ô€Å€€}€å:€€¼€,€˜;€£€ø5€€ß6€ÿ]€87€€T€`Ò>Ж¯vÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  ++    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEF‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö`åbÀ!ç`ºcÆ8ã°èŽ¶$'4d2i¼ptW¥Q&»ä"_s4m®¿=l¸¹h9±zÇ1½/oÄ:­3^¦e+¬û(a<Z)7*X‚0;V5jf Åq#Ã%¯Õ¾·n]5³²6áagæÁkÒ>¾o €oÒ>Á– `Ò>Ä– `Ò78ÇÈ¢È;^NSIBObjectData#,1:LQVdf`f±Ãßñü2?RYguƒ©·ÁÈËÎÑÔ×ÚÝàâåçêíðòô÷ù )2=BQZmv‚„”¡§°   !#%')+-/13579;=?ACFILORUX[]jr{}ž¥³»ÅÐÝßäæèêìîû ++ =>KZ\^`hzƒŠ±¾ÀÂÄ×àåð    - < I K M O p „ † ‹ ‘ “ • À Í Ú Ü Þ à +  +- +- +- +-! +-# ++ ++ ++ ++ ++ ++ ++ + % +-' +-) ++( + + +-- ++. + 1 +-B +-I +-P +-Y +-[ +-d +-f +-h +-r +-{ +-€ +-‡ +-œ +-¤ +-± +-½ +-Ë +-Í +-Ï +-Ñ +-Ó +-Õ +-Ü ++K ++M ++V ++` ++k ++m ++v ++} ++ ++˜ ++¥ ++§ ++© ++« ++Ì ++Î ++Ð ++Ò ++Ô ++Ö ++Ø + ò +-ÿ     ) + 7 @ I [ h q | ˆ ’ ™ ¥ º Ã Ê á î ð ò ô       ! . 0 3 6 ; = C P R T V w y { }  ƒ ” – ™ œ Ÿ ¹ » Á Î Ð Ò Ô õ ÷ ù û ý ÿ       & ( > K M O Q r t v { }  ƒ ž ­ º ¼ ¾ À á ã å ç é ë í ó õ ü   02468:<Rdqsuw˜šœž ¢¤¯±¼ÍÏÑÓÕÞëíïñ+?PRTVXuwy{}¶ëø)3ANXj~ˆ”–˜šœž£¥§©«­¯Êåíòûý "?ACEGHJd…‡‰‹‘¦·¹ÂÄÓàæèêø 9Z_acegik²ÃÅÎÐÝßÿ "$%'@acegikprÁÖØÚÜÞëøú+6BDFHIKMNPY[jlnprtvx”°äü:Zq’š¢ªµº¼¾ÃÄÑÓÕ×ëôû'T^jx…¡£¥§©ª¬®ÅÌéëíïñó÷ +-%24BKTZwy{}€‚›¼¾ÀÂÄÆÈ3@B_aceghj¢¤¦¨ª¬®¶ÃÅâäæèêëí')+-/13ly{„‹š¢­¶½Õã'?LNPRsuwy{}™›¦³µ·¹ÚÜÞàâäæóõ÷ù#%')JLNSUWY[g€‘“´¶¸º¼¾ÀÍáîðòô!.024BP]_ac„†ˆŠŒŽ¥·ÄÆÈÊëíïñóõ÷  #0246WY[]_ackˆ•—™›¼¾ÀÂÄÆÈÍÏÕâäæè   #8EGIKlnprtvx‡”–˜š»½¿ÁÃÅÇËÍÒßáãå +- !0=?ACdfhjlnpuw}ŠŒŽ±³µ·¹»½Ëàíïñó       ) B O Q S U v x z | ~ € ‚ ‘ § ° ³!!@!B!D!F!H!J!L!N!P!R!U!W!Y!\!^!a!c!e!g!j!l!n!p!r!t!v!x!z!|!~!!ƒ!…!‡!‰!‹!!!‘!”!–!˜!š!!Ÿ!¡!£!¥!¨!«!®!±!´!¶!¹!¼!¿!Â!Å!Ç!É!Ë!Í!Ï!Ñ!Ô!Û!ä!æ!ë!í!ï!ø!ý""""""" "I"W"d"f"h"i"k"l"n"p"r"›"¥"®"°"²"´"¶"¸"º"¼"¾"Ë"Ú"ã"å"ø"ú"ü"þ###### +-#3#5#7#8#:#;#=#?#A#R#T#V#X#Z#c#m#o#x##ˆ#š#£#¬#®#¯#Á#Ê#Ì#Ñ#Ú#Ü#ñ#ó#õ#ø#ú#ü#þ$$$$$1$3$5$6$8$9$;$=$?$h$j$l$m$o$p$r$t$v$Ÿ$¡$£$¥$§$©$«$­$°$¹$»$Â$Ë$Í$Ú$Ü$ß$á$ã$æ$è%%%%%%%%%%H%J%L%M%O%P%R%T%V%e%n%p%r%›%%Ÿ%¢%¤%¦%¨%ª%­%Â%Ë%Í%à%â%å%è%ë%í%ï%ñ%ô%ö&&!&#&$&&&'&)&+&-&V&X&Z&[&]&^&`&b&d&&&‘&’&”&•&—&™&›&¨&Ñ&Ó&Õ&×&Ù&Û&Ý&à&ã&ô&ö&ù&ü&ÿ'('*','/'1'3'5'8';'d'f'h'k'm'o'q't'w'…'Ž''›'ž'¡'¤'§'ª'Ó'Õ'×'Ú'Ü'Þ'à'ã'æ(((((((( (#(((5(7(:(=(F(H(I(U(f(h(j(m(‚(‹((™(œ)%)'))),).)0)3)5)7):)<)?)A)D)F)H)J)L)O)Q)S)V)X)Z)\)^)`)b)d)f)h)j)m)o)q)s)u)w)y){)})€)‚)„)†)ˆ)Š)Œ)Ž))’)”)—)™)›)) )¢)¤)§)©)«)­)¯)±)³)µ)·)À)Ã*N*P*R*T*V*X*Z*\*^*`*b*e*g*i*k*m*p*r*u*w*y*{*~*€*‚*„*†*ˆ*Š*Œ*Ž**’*•*—*™*›**Ÿ*¡*¤*¦*¨*ª*¬*®*°*²*µ*·*¹*¼*¿*Â*Å*Ç*Ê*Í*Ï*Ò*Õ*Ø*Û*Ý*ß*á*ã*æ*è*ñ*ô++‚+…+ˆ+‹+Ž+‘+”+—+š++ +£+¦+©+¬+¯+²+µ+¸+»+¾+Á+Ä+Ç+Ê+Í+Ð+Ó+Ö+Ù+Ü+ß+â+å+è+ë+î+ñ+ô+÷+ú+ý,,,, , ,,,,,,,!,#,&,),,,/,2,5,7,:,=,@,C,F,I,k,x,,¡,¯,ö- +--ƒ-š-¦-²-Ä-É-×-ô...2.N.[.v..¢.¶.×.î/;/V/r//­/¿/Ô/ð00"0w0ƒ00®0É0ä0÷11A1b1{1‡1£1µ1È1Ñ1Ý1ò1þ2272C2O2[2n2Ë2ñ333)3235363?3B3C3L3O4444444 4"4$4&4(4*4-4/414345474:4<4>4@4B4D4G4I4K4M4O4Q4S4U4W4Y4\4^4`4b4d4f4h4k4m4o4r4t4v4y4|444ƒ4…4ˆ4‹4Ž4‘4”4–4˜4š44Ÿ4¡4£4¥4§4©4«4­4¯4²4´4¶4¸4º4¼4¾4À4Â4Ä4Æ4È4Ê4Ì4Î4Ð4Ò4Ô4Ö4Ø4Û4Ý4à4â4ä4æ4è4ñ4ô5¹5¼5¿5Â5Å5È5Ë5Î5Ñ5Ô5×5Ú5Ý5à5ã5æ5é5ì5ï5ò5õ5ø5û5þ6666 +-6 6666666"6%6(6+6.6164676:6=6@6C6F6I6L6O6R6U6X6[6^6a6d6g6j6m6p6s6v6y6|66‚6…6ˆ6‹6Ž6‘6”6—6š66 6£6¦6©6¬6¯6²6µ6¸6»6¾6Á6Ä6Ç6Ê6Í6Ð6Ó6Ö6Ù6Ü6ß6â6ä6ç6ê6í6ð6ó6ö6ù6ü6ÿ7777 +-7 7777777 7#7&7)7,7/7275787;7>7A7D7G7J7L7O7R7U7X7[7]7`7c7e7h7k7n7q7t7w7z7}7€7‚7…7ˆ7‹7Ž7‘7”7—7™7œ7Ÿ7¢7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7Ø7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø8888 888888'8,18; +\ No newline at end of file ++ô ++ý       9 ; @ B D F H J V o | ~ € ‚ £ ¥ § © « ­ ¯ ¸ Ñ â ð ò ô ö ø - A S ] k y † “ ª ´ À Ö Ø Ú Ü Þ à â ä æ è í ï ñ ó  ) 1 6 G R d l n p r t } ’ ” – ˜ š œ ž   ¢ ¤ Á Í × à ç é ë í î ñ ó õ0DPZesŒŽ’”–˜Ÿ´ÅÌÕÚÜÞàïøý!-:HJLNPRYo|„‡‰’—¤ª¸º¼ÅÎàíö&-9VXZ\]_ayšœž ¢¤¦ª»ÀÂÄÎÛçé ++  *KMOQSUW\£´¹»½Êêì   -NPRTVXZ_®ÃÅÇÉËØåñó$/13568:<=FUWY[]_aceµÕö+G^‡š¢¤¥§¬±¾ÀÂÄØáêö #P]o{…“Ÿ¡£¥§©ª¬µ¸º¼ÍÏÑÓÕêóú ++!8?\^`bdfj{€‚„‡”¡¯±ºÃÉæèêìíïñ +++-/1357¢¯±ÎÐÒÔÕ×Ùð%24QSUWXZ\u–˜šœž ¢Ûèê'DJSXkƒŒ“ª»½¿ÁÃàâäæèêì!9FHJLmoqsuwy†ˆ–£¥§©ÊÌÎÐÒÔÖãæéìú<>@BDFHUX[^centvƒ…‡‰ª¬®°²´¶º¼ÅÊÌÙÛÝß ++ $&3579Z\^`bdfu„‘“•—¸º¼¾ÀÂÄÏÑÚåçôöøú!#%',.7=?LNPRsuwy{}†Ž›Ÿ¡ÂÄÆÈÊÌÎÓÕÞäæóõ÷ù!#%')+<?BEHZ\tƒ…‡¨ª¬®°²´¼Ùæèêì .7IKXZ\^ƒ…‡‰‹”–Ÿµ·ÈÊÌÎÐÙÛÝéò    , . 0 2 4 6 8 D [ l n p r t • — ™ › Ÿ ¡ º ¼ Ï à â ä æ è! ! ! !!!!!8!:!R!c!e!g!i!k!!’!”!–!˜!š!¯!À!Â!Ä!Æ!È!é!ë!í!ï!ñ!ó!õ" """8"I"K"M"O"Q"r"t"v"x"z"|"~"‹"Ž"‘"”"®"°"º"Ë"Í"Ï"Ñ"Ó"ô"ö"ø"ú"ü"þ##'#)#?#L#O#Q#S#t#v#y#{#}###Ž#‘#”#—#¤#¸#Å#È#Ê#Í#î#ð#ó#õ#÷#ù#û$$$)$,$.$1$R$T$W$Y$[$]$_$l$€$$$’$•$¶$¸$»$½$¿$Á$Ã$Ò$è$õ$ø$ú$ý%% %#%%%'%)%+%A%S%`%c%e%h%‰%‹%Ž%%’%”%–%±%À%Í%Ð%Ò%Õ%ö%ø%û%ý%ÿ&&&&&&3&6&8&;&\&^&a&c&e&g&i&w&Œ&&Ÿ&¢&¤&§&È&Ê&Í&Ï&Ò&Ô&Ö&÷&ù'''º'¼'¿'Á'Ã'Å'Ç'Ê'Ì'Î'Ð'Ò'Ô'×'Ú'Ý'à'ã'å'è'ê'í'ï'ñ'ó'ö'ø'û'ý'ÿ(((( ++( (((((((((!(#(&(((*(-(0(3(6(9(;(=(@(B(E(G(I(L(O(Q(S(V(X(Z(\(^(`(c(e(g(i(k(m(o(q(t((ˆ(( (¢(¤(¦(©(«(­(¯(²(µ(·(à(í(û(ý(ÿ)))))) )2)4)6)8)9);)=)?)@)i)s)|)~)€)ƒ)…)‡)‰)‹)Ž)›)ª)³)Æ)É)Ì)Ï)Ò)Õ)×)Ú)Ý)à)â* * ********"*'*8*;*>*A*D*M*V*X*a*b*d*v*{*„*‡*‰*‹*´*¶*¸*º*»*½*¿*Á*Â*ë*í*ï*ñ*ò*ô*ö*ø*ù+"+$+&+(+)+++-+/+0+Y+[+]+_+`+b+d+f+g++’+”+–+—+™+›++ž+Ç+É+Ë+Í+Î+Ð+Ò+Ô+Õ+þ,,,,, , , ,,, ,%,',),+,T,W,Y,\,^,`,b,d,g,x,{,~,,„,,¦,¨,«,­,¯,²,µ,¸,º,¼,¾,Á,Ã,Å,î,ð,ò,ô,õ,÷,ù,û,ü-%-'-*---/-1-3-5-8-E-n-q-s-v-x-z-|-~--ª-­-¯-²-´-¶-¸-º-½-Ë-Ô-ß-â-å-è-ë-î-ð....!.#.%.'.).,.1.:.<.E.Z.\.^.a.c.e.g.i.k.n.q.s.œ.Ÿ.¡.¤.¦.¨.ª.¬.¯.¶.¿.Á.Ê.×.Ù.Ü.Þ.à.ã.å.ç//////////-/9/B/G/P/í/ï/ñ/ó/õ/ø/ú/ý/ÿ00000 ++0 0000000000 0"0$0&0(0*0,0.00020406080:0<0>0@0B0E0G0I0L0N0P0S0U0X0Z0\0_0b0d0f0h0j0m0o0r0t0v0x0z0|0~0€0ƒ0…0ˆ0Š0Œ0Ž00’0”0—0 0Õ0Ø0Ú0Ý0ß0á0ã0æ0è0ê0ì0ï0ñ0ô0÷0ù0ü0þ11111 ++1 11111R1U1X1[1^1a1d1g1j1m1p1s1v1y1|11‚1…1ˆ1‹1Ž1‘1”1—1š11 1¥1±1½1É1Õ1ã1ï1ü2222,232?2K2T2U2X2a2b2e2n3]3_3a3d3g3j3l3n3p3r3t3w3y3{3}3€3‚3„3‡3Š3Œ3Ž3‘3“3–3™3›3ž3 3¢3¤3¦3¨3ª3¬3¯3±3³3µ3·3º3¼3¾3À3Ã3Å3È3Ê3Ì3Î3Ð3Ó3Ö3Ø3Ú3Ü3ß3á3ã3å3è3ê3ì3ï3ñ3ó3õ3÷3ù3û3ý44444 4 4444444444!4#4&4(4*4,4.404345474:4<4>4A4D4F4H4K4N4Q4S4U4X4[4]4`4b4e4g4i4l4n4q4z5i5l5o5r5u5x5{5~55„5‡5Š555“5–5™5œ5Ÿ5¢5¥5¨5«5®5±5´5·5º5½5À5Ã5Æ5É5Ì5Ï5Ò5Õ5Ø5Û5Þ5á5ä5ç5ê5í5ð5ó5ö5ù5ü5ÿ6666 6666666 6#6&6)6,6/6265686;6>6A6D6G6J6M6P6S6V6Y6\6_6b6e6h6k6n6q6t6w6z6}6€6ƒ6†6‰6Œ66’6•6˜6›6ž6¡6¤6§6ª6­6°6³6¶6¹6¼6¿6Â6Å6È6Ë6Î6Ð6Ó6Ö6Ù6Ü6ß6á6ä6ç6ê6í6ð6ó6õ6ø6ú6ý7777 7 7777777!7$7'7)7,7/7274777:7=7?7B7E7H7K7N7Q7T7V7Y7\7_7b7e7h7k7n7q7t7w7z7}7€7ƒ7†7‰7Œ77‘7”7—7š7œ7Ÿ7¢7¥7¨7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7×7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø7û7þ8888 ++8 8888888 8)8*8,8586898B8C8F8O8TÉ8c +\ No newline at end of file +Only in ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib: objects.nib +diff -aurr ./Source/ListenerController.m ../cotvnc/Source/ListenerController.m +--- ./Source/ListenerController.m 2008-11-07 22:40:05.000000000 -0700 ++++ ../cotvnc/Source/ListenerController.m 2006-01-17 12:20:14.000000000 -0700 +@@ -86,8 +86,7 @@ + if (listeningSocket) { + [self stopListener]; + } +- //[self savePrefs]; +- ++ [self savePrefs]; + [super dealloc]; + + [[NSNotificationCenter defaultCenter] removeObserver:self +@@ -105,7 +104,7 @@ + name:ProfileListChangeMsg + object:(id)[ProfileDataManager sharedInstance]]; + +- //[self updateUI]; ++ [self updateUI]; + } + + +@@ -199,7 +198,7 @@ + + [listeningSocket acceptConnectionInBackgroundAndNotify]; + +- //[self updateUI]; ++ [self updateUI]; + + return YES; + } +@@ -219,7 +218,7 @@ + [listeningSocket release]; listeningSocket = nil; + [listeningProfile release]; listeningProfile = nil; + +- //[self updateUI]; ++ [self updateUI]; + } + + +@@ -287,7 +286,7 @@ + + - (void)updateProfileView:(id)notification + { +- //[self loadProfileIntoView]; ++ [self loadProfileIntoView]; + } + + +diff -aurr ./Source/MyApp.m ../cotvnc/Source/MyApp.m +--- ./Source/MyApp.m 2008-11-07 21:28:00.000000000 -0700 ++++ ../cotvnc/Source/MyApp.m 2005-07-11 05:22:56.000000000 -0600 +@@ -14,7 +14,6 @@ + + @implementation MyApp + +- + - (void)sendEvent:(NSEvent *)anEvent + { + /* +diff -aurr ./Source/RFBConnection.m ../cotvnc/Source/RFBConnection.m +--- ./Source/RFBConnection.m 2008-11-10 21:24:43.000000000 -0700 ++++ ../cotvnc/Source/RFBConnection.m 2007-03-15 23:24:14.000000000 -0600 +@@ -337,7 +337,7 @@ + [_eventFilter synthesizeRemainingEvents]; + [_eventFilter sendAllPendingQueueEntriesNow]; + +- if(false) { ++ if(aReason) { + if ( _autoReconnect ) { + NSLog(@"Automatically reconnecting to server. The connection was closed because: \"%@\".", aReason); + // Just auto-reconnect (by reinstantiating ourselves) +diff -aurr ./Source/RFBConnectionManager.m ../cotvnc/Source/RFBConnectionManager.m +--- ./Source/RFBConnectionManager.m 2008-11-07 22:42:17.000000000 -0700 ++++ ../cotvnc/Source/RFBConnectionManager.m 2007-03-15 21:31:56.000000000 -0600 +@@ -21,7 +21,6 @@ + #import "RFBConnection.h" + #import "PrefController.h" + #import "ProfileManager.h" +-#import "ListenerController.h" + #import "Profile.h" + #import "rfbproto.h" + #import "vncauth.h" +@@ -37,7 +36,7 @@ + static id sInstance = nil; + if ( ! sInstance ) + { +- sInstance = [self alloc]; ++ sInstance = [[self alloc] initWithWindowNibName: @"ConnectionDialog"]; + NSParameterAssert( sInstance != nil ); + + [sInstance wakeup]; +@@ -145,23 +144,8 @@ + for (i = 1; i < argCount; i++) + { + arg = [args objectAtIndex:i]; +- +- if ([arg hasPrefix:@"--listen"]) +- { +- NSLog(@"Called with --listen."); +- +- ListenerController* listener = [ListenerController sharedController]; +- ProfileManager* pm = [ProfileManager sharedManager]; +- +- int port = 5500; +- profile = [pm profileNamed: @"Called with --listen."]; +- BOOL local = false; +- +- [listener startListenerOnPort:port withProfile:profile localOnly:local]; +- +- return YES; +- } +- else if ([arg hasPrefix:@"-psn"]) ++ ++ if ([arg hasPrefix:@"-psn"]) + { + // Called from the finder. Do nothing. + continue; +diff -aurr ./Source/VNCViewer_main.m ../cotvnc/Source/VNCViewer_main.m +--- ./Source/VNCViewer_main.m 2008-11-07 21:24:00.000000000 -0700 ++++ ../cotvnc/Source/VNCViewer_main.m 2003-01-17 04:55:52.000000000 -0700 +@@ -14,6 +14,5 @@ + [NSAutoreleasePool setPoolCountHighWaterMark: 2000]; + [NSAutoreleasePool setPoolCountHighWaterResolution: 2000]; + #endif +- + return NSApplicationMain(argc, argv); + } +Only in .: cotvnc-gitso.diff +diff -aurr ./cotvnc-gitso.diff ../cotvnc-gitso/cotvnc-gitso.diff +--- ./cotvnc-gitso.diff 2008-11-11 15:53:29.000000000 -0700 ++++ ../cotvnc-gitso/cotvnc-gitso.diff 2008-11-11 15:28:25.000000000 -0700 +@@ -1,547 +1,547 @@ +-Only in ../cotvnc-gitso/: .DS_Store +-Only in ../cotvnc-gitso/Chicken of the VNC.xcodeproj: gerberad.mode1v3 +-Only in ../cotvnc-gitso/Chicken of the VNC.xcodeproj: gerberad.pbxuser +-diff -aurr ./Chicken of the VNC.xcodeproj/project.pbxproj ../cotvnc-gitso/Chicken of the VNC.xcodeproj/project.pbxproj +---- ./Chicken of the VNC.xcodeproj/project.pbxproj 2007-03-28 18:52:50.000000000 -0600 +-+++ ../cotvnc-gitso/Chicken of the VNC.xcodeproj/project.pbxproj 2008-11-10 21:37:35.000000000 -0700 +-@@ -1209,6 +1209,7 @@ ++Only in .: .DS_Store ++Only in ./Chicken of the VNC.xcodeproj: gerberad.mode1v3 ++Only in ./Chicken of the VNC.xcodeproj: gerberad.pbxuser ++diff -aurr ./Chicken of the VNC.xcodeproj/project.pbxproj ../cotvnc/Chicken of the VNC.xcodeproj/project.pbxproj ++--- ./Chicken of the VNC.xcodeproj/project.pbxproj 2008-11-10 21:37:35.000000000 -0700 +++++ ../cotvnc/Chicken of the VNC.xcodeproj/project.pbxproj 2007-03-28 18:52:50.000000000 -0600 ++@@ -1209,7 +1209,6 @@ + 29B97313FDCFA39411CA2CEA /* Project object */ = { + isa = PBXProject; + buildConfigurationList = E20426EA087531990026AA26 /* Build configuration list for PBXProject "Chicken of the VNC" */; +-+ compatibilityVersion = "Xcode 2.4"; ++- compatibilityVersion = "Xcode 2.4"; + hasScannedForEncodings = 1; + knownRegions = ( + English, +-@@ -1219,6 +1220,7 @@ ++@@ -1220,7 +1219,6 @@ + ); + mainGroup = 29B97314FDCFA39411CA2CEA /* Chicken of the VNC */; + projectDirPath = ""; +-+ projectRoot = ""; ++- projectRoot = ""; + targets = ( + 7F7A93E305E71B5C00E20416 /* Chicken of the VNC */, + 7F916AA40BB6E98900E31F20 /* libjpeg */, +-Only in ./Chicken of the VNC.xcodeproj: project.pbxproj.rej +-diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib +---- ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2005-04-14 18:46:42.000000000 -0600 +-+++ ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2008-11-07 22:54:10.000000000 -0700 +-@@ -1,130 +1,90 @@ +--{ +-- IBClasses = ( +-- { +-- ACTIONS = { +-- changeRendezvousUse = id; +-- showConnectionDialog = id; +-- showHelp = id; +-- showListenerDialog = id; +-- showNewConnectionDialog = id; +-- showPreferences = id; +-- showProfileManager = id; +-- }; +-- CLASS = AppDelegate; +-- LANGUAGE = ObjC; +-- OUTLETS = {mInfoVersionNumber = NSTextField; mRendezvousMenuItem = NSMenuItem; }; +-- SUPERCLASS = NSObject; +-- }, +-- { +-- ACTIONS = { +-- makeConnectionFullscreen = id; +-- makeConnectionWindowed = id; +-- manuallyUpdateFrameBuffer = id; +-- openNewTitlePanel = id; +-- openOptions = id; +-- pasteViaKeypress = id; +-- sendBreakKeyCode = id; +-- sendCmdOptEsc = id; +-- sendCtrlAltDel = id; +-- sendDeleteKeyCode = id; +-- sendExecuteKeyCode = id; +-- sendInsertKeyCode = id; +-- sendPauseKeyCode = id; +-- sendPrintKeyCode = id; +-- toggleFullscreenMode = id; +-- }; +-- CLASS = FirstResponder; +-- LANGUAGE = ObjC; +-- SUPERCLASS = NSObject; +-- }, +-- { +-- ACTIONS = {changeSelectedScenario = id; restoreDefaults = id; }; +-- CLASS = KeyEquivalentPrefsController; +-- LANGUAGE = ObjC; +-- OUTLETS = {mConnectionType = NSPopUpButton; mOutlineView = NSOutlineView; }; +-- SUPERCLASS = NSObject; +-- }, +-- {CLASS = Profile; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, +-- { +-- ACTIONS = { +-- addProfile = id; +-- changeEncodingState = id; +-- deleteProfile = id; +-- profileChanged = id; +-- profileSelected = id; +-- reorderEncodings = id; +-- }; +-- CLASS = ProfileManager; +-- LANGUAGE = ObjC; +-- OUTLETS = { +-- altKey = id; +-- commandKey = id; +-- controlKey = id; +-- deleteProfileButton = id; +-- enableCopyRect = id; +-- encodingTableView = id; +-- m3bTimeout = id; +-- mkbTimeout = id; +-- mkdTimeout = id; +-- newProfileButton = id; +-- pixelFormatMatrix = id; +-- profileBrowser = id; +-- profileField = id; +-- profilePanel = id; +-- shiftKey = id; +-- upDownButtonMatrix = id; +-- }; +-- SUPERCLASS = NSObject; +-- }, +-- { +-- ACTIONS = { +-- addServer = id; +-- deleteSelectedServer = id; +-- showConnectionDialog = id; +-- showNewConnectionDialog = id; +-- }; +-- CLASS = RFBConnectionManager; +-- LANGUAGE = ObjC; +-- OUTLETS = { +-- groupList = NSTableView; +-- serverDataBoxLocal = NSBox; +-- serverDeleteBtn = NSButton; +-- serverGroupBox = NSBox; +-- serverList = NSTableView; +-- serverListBox = NSBox; +-- splitView = NSSplitView; +-- }; +-- SUPERCLASS = NSWindowController; +-- }, +-- {CLASS = ServerDataManager; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, +-- { +-- ACTIONS = { +-- connectToServer = id; +-- displayChanged = id; +-- hostChanged = id; +-- passwordChanged = id; +-- profileSelectionChanged = id; +-- rememberPwdChanged = id; +-- sharedChanged = id; +-- }; +-- CLASS = ServerDataViewController; +-- LANGUAGE = ObjC; +-- OUTLETS = { +-- box = NSBox; +-- connectBtn = NSButton; +-- connectIndicator = NSProgressIndicator; +-- connectIndicatorText = NSTextField; +-- display = NSTextField; +-- hostName = NSTextField; +-- mDelegate = id; +-- mServer = id; +-- password = NSTextField; +-- profilePopup = NSPopUpButton; +-- rememberPwd = NSButton; +-- shared = NSButton; +-- }; +-- SUPERCLASS = NSWindowController; +-- } +-- ); +-- IBVersion = 1; +--} ++diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib ++--- ./Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2008-11-07 22:54:10.000000000 -0700 +++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/classes.nib 2005-04-14 18:46:42.000000000 -0600 ++@@ -1,90 +1,130 @@ ++- ++- ++- ++- ++- IBClasses ++- ++- ++- ACTIONS ++- ++- changeRendezvousUse ++- id ++- showConnectionDialog ++- id ++- showHelp ++- id ++- showListenerDialog ++- id ++- showNewConnectionDialog ++- id ++- showPreferences ++- id ++- showProfileManager ++- id ++- ++- CLASS ++- AppDelegate ++- LANGUAGE ++- ObjC ++- OUTLETS ++- ++- mInfoVersionNumber ++- NSTextField ++- mRendezvousMenuItem ++- NSMenuItem ++- ++- SUPERCLASS ++- NSObject ++- ++- ++- CLASS ++- NSObject ++- LANGUAGE ++- ObjC ++- ++- ++- ACTIONS ++- ++- makeConnectionFullscreen ++- id ++- makeConnectionWindowed ++- id ++- manuallyUpdateFrameBuffer ++- id ++- openNewTitlePanel ++- id ++- openOptions ++- id ++- pasteViaKeypress ++- id ++- sendBreakKeyCode ++- id ++- sendCmdOptEsc ++- id ++- sendCtrlAltDel ++- id ++- sendDeleteKeyCode ++- id ++- sendExecuteKeyCode ++- id ++- sendInsertKeyCode ++- id ++- sendPauseKeyCode ++- id ++- sendPrintKeyCode ++- id ++- toggleFullscreenMode ++- id ++- ++- CLASS ++- FirstResponder ++- LANGUAGE ++- ObjC ++- SUPERCLASS ++- NSObject ++- ++- ++- IBVersion ++- 1 ++- ++- +++{ +++ IBClasses = ( +++ { +++ ACTIONS = { +++ changeRendezvousUse = id; +++ showConnectionDialog = id; +++ showHelp = id; +++ showListenerDialog = id; +++ showNewConnectionDialog = id; +++ showPreferences = id; +++ showProfileManager = id; +++ }; +++ CLASS = AppDelegate; +++ LANGUAGE = ObjC; +++ OUTLETS = {mInfoVersionNumber = NSTextField; mRendezvousMenuItem = NSMenuItem; }; +++ SUPERCLASS = NSObject; +++ }, +++ { +++ ACTIONS = { +++ makeConnectionFullscreen = id; +++ makeConnectionWindowed = id; +++ manuallyUpdateFrameBuffer = id; +++ openNewTitlePanel = id; +++ openOptions = id; +++ pasteViaKeypress = id; +++ sendBreakKeyCode = id; +++ sendCmdOptEsc = id; +++ sendCtrlAltDel = id; +++ sendDeleteKeyCode = id; +++ sendExecuteKeyCode = id; +++ sendInsertKeyCode = id; +++ sendPauseKeyCode = id; +++ sendPrintKeyCode = id; +++ toggleFullscreenMode = id; +++ }; +++ CLASS = FirstResponder; +++ LANGUAGE = ObjC; +++ SUPERCLASS = NSObject; +++ }, +++ { +++ ACTIONS = {changeSelectedScenario = id; restoreDefaults = id; }; +++ CLASS = KeyEquivalentPrefsController; +++ LANGUAGE = ObjC; +++ OUTLETS = {mConnectionType = NSPopUpButton; mOutlineView = NSOutlineView; }; +++ SUPERCLASS = NSObject; +++ }, +++ {CLASS = Profile; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, +++ { +++ ACTIONS = { +++ addProfile = id; +++ changeEncodingState = id; +++ deleteProfile = id; +++ profileChanged = id; +++ profileSelected = id; +++ reorderEncodings = id; +++ }; +++ CLASS = ProfileManager; +++ LANGUAGE = ObjC; +++ OUTLETS = { +++ altKey = id; +++ commandKey = id; +++ controlKey = id; +++ deleteProfileButton = id; +++ enableCopyRect = id; +++ encodingTableView = id; +++ m3bTimeout = id; +++ mkbTimeout = id; +++ mkdTimeout = id; +++ newProfileButton = id; +++ pixelFormatMatrix = id; +++ profileBrowser = id; +++ profileField = id; +++ profilePanel = id; +++ shiftKey = id; +++ upDownButtonMatrix = id; +++ }; +++ SUPERCLASS = NSObject; +++ }, +++ { +++ ACTIONS = { +++ addServer = id; +++ deleteSelectedServer = id; +++ showConnectionDialog = id; +++ showNewConnectionDialog = id; +++ }; +++ CLASS = RFBConnectionManager; +++ LANGUAGE = ObjC; +++ OUTLETS = { +++ groupList = NSTableView; +++ serverDataBoxLocal = NSBox; +++ serverDeleteBtn = NSButton; +++ serverGroupBox = NSBox; +++ serverList = NSTableView; +++ serverListBox = NSBox; +++ splitView = NSSplitView; +++ }; +++ SUPERCLASS = NSWindowController; +++ }, +++ {CLASS = ServerDataManager; LANGUAGE = ObjC; SUPERCLASS = NSObject; }, +++ { +++ ACTIONS = { +++ connectToServer = id; +++ displayChanged = id; +++ hostChanged = id; +++ passwordChanged = id; +++ profileSelectionChanged = id; +++ rememberPwdChanged = id; +++ sharedChanged = id; +++ }; +++ CLASS = ServerDataViewController; +++ LANGUAGE = ObjC; +++ OUTLETS = { +++ box = NSBox; +++ connectBtn = NSButton; +++ connectIndicator = NSProgressIndicator; +++ connectIndicatorText = NSTextField; +++ display = NSTextField; +++ hostName = NSTextField; +++ mDelegate = id; +++ mServer = id; +++ password = NSTextField; +++ profilePopup = NSPopUpButton; +++ rememberPwd = NSButton; +++ shared = NSButton; +++ }; +++ SUPERCLASS = NSWindowController; +++ } +++ ); +++ IBVersion = 1; +++} + \ No newline at end of file +-+ +-+ +-+ +-+ +-+ IBClasses +-+ +-+ +-+ ACTIONS +-+ +-+ changeRendezvousUse +-+ id +-+ showConnectionDialog +-+ id +-+ showHelp +-+ id +-+ showListenerDialog +-+ id +-+ showNewConnectionDialog +-+ id +-+ showPreferences +-+ id +-+ showProfileManager +-+ id +-+ +-+ CLASS +-+ AppDelegate +-+ LANGUAGE +-+ ObjC +-+ OUTLETS +-+ +-+ mInfoVersionNumber +-+ NSTextField +-+ mRendezvousMenuItem +-+ NSMenuItem +-+ +-+ SUPERCLASS +-+ NSObject +-+ +-+ +-+ CLASS +-+ NSObject +-+ LANGUAGE +-+ ObjC +-+ +-+ +-+ ACTIONS +-+ +-+ makeConnectionFullscreen +-+ id +-+ makeConnectionWindowed +-+ id +-+ manuallyUpdateFrameBuffer +-+ id +-+ openNewTitlePanel +-+ id +-+ openOptions +-+ id +-+ pasteViaKeypress +-+ id +-+ sendBreakKeyCode +-+ id +-+ sendCmdOptEsc +-+ id +-+ sendCtrlAltDel +-+ id +-+ sendDeleteKeyCode +-+ id +-+ sendExecuteKeyCode +-+ id +-+ sendInsertKeyCode +-+ id +-+ sendPauseKeyCode +-+ id +-+ sendPrintKeyCode +-+ id +-+ toggleFullscreenMode +-+ id +-+ +-+ CLASS +-+ FirstResponder +-+ LANGUAGE +-+ ObjC +-+ SUPERCLASS +-+ NSObject +-+ +-+ +-+ IBVersion +-+ 1 +-+ +-+ +-diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/info.nib +---- ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2006-01-18 12:42:18.000000000 -0700 +-+++ ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2008-11-07 22:54:10.000000000 -0700 +-@@ -1,26 +1,20 @@ ++diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/info.nib ++--- ./Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2008-11-07 22:54:10.000000000 -0700 +++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/info.nib 2006-01-18 12:42:18.000000000 -0700 ++@@ -1,20 +1,26 @@ + +-- +-+ ++- +++ + + +-- IBDocumentLocation +-- 3 4 356 240 0 0 1280 832 +-- IBEditorPositions +-- +-- 29 +-- 270 514 419 44 0 0 1280 832 +-- +++ IBDocumentLocation +++ 3 4 356 240 0 0 1280 832 +++ IBEditorPositions +++ +++ 29 +++ 270 514 419 44 0 0 1280 832 +++ + IBFramework Version +-- 443.0 +-- IBLockedObjects +-- +-- 1191 +-- 1208 +-- +-+ 629 +-+ IBLastKnownRelativeProjectPath +-+ ../../../Chicken of the VNC.xcodeproj +-+ IBOldestOS +-+ 5 ++- 629 ++- IBLastKnownRelativeProjectPath ++- ../../../Chicken of the VNC.xcodeproj ++- IBOldestOS ++- 5 +++ 443.0 +++ IBLockedObjects +++ +++ 1191 +++ 1208 +++ + IBOpenObjects + +-- 29 +-+ 612 ++- 612 +++ 29 + + IBSystem Version +-- 8F46 +-+ 9F33 +-+ targetFramework +-+ IBCocoaFramework ++- 9F33 ++- targetFramework ++- IBCocoaFramework +++ 8F46 + + +-diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib +---- ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2006-01-18 12:42:18.000000000 -0700 +-+++ ../cotvnc-gitso/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2008-11-07 22:54:10.000000000 -0700 ++diff -aurr ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib ++--- ./Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2008-11-07 22:54:10.000000000 -0700 +++++ ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib/keyedobjects.nib 2006-01-18 12:42:18.000000000 -0700 + @@ -1,65 +1,65 @@ +--bplist00Ô +--Y$archiverX$versionT$topX$objects_NSKeyedArchiver† Ñ ]IB.objectdata€¯û 156<=AEpv„‰Š‹‘’–š›žŸ£§°±²¶½ÃÄÅÉÍÑØÙÚÝáéÙêëïö÷øþ$0<=MNUVYcdeikpt{‚ƒŠ‹“š›£¤¨«²³»¼ÁÂÅÐÚÛÜÝÞßàáâìðñõø  %&),34;<>EFMNPWX_`bcdefgjknsz{|€‡ˆ‰ŠŽ•™š›Ÿ¦ª«¬¯³º»¼¿ÃÊËÌÏÓÚÛÜàçèéìð÷øùü  %*+,-189:>EFIMTUVY^abchopqv}~€…ŒŽ”•š› §¨©ª¯¶º»¼½ÂÉÊËÌÐ×ÛÜÝáèéêîõö÷û")*+/678=DEFG—˜¥°¹ÄÅÄÆÒÛÝâåèéêî÷ $-Å-.3<MÅMAPYãÅbc—ÅléÅuv~‡ÅˆŠ— Å¡£¬µ¶·¹ %ABCDEFGyHwGIJKLawMKKNBOPSVÏHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxnyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½ÀÃÆU$nullß  !"#$%&'()*+,-./0_NSObjectsValues_NSAccessibilityConnectors_NSClassesValuesZNSOidsKeys[NSNamesKeys]NSClassesKeys_NSAccessibilityOidsValues\NSOidsValues_NSVisibleWindowsV$class]NSConnections]NSNamesValues]NSObjectsKeys_NSAccessibilityOidsKeys[NSFramework]NSFontManagerYNSNextOidVNSRoota÷~b}ù€€ú€c#ø€€È€Ò234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects €Ò78BC£CD;\NSMutableSetUNSSetÒ>Fo¯(GHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn€ €€€"€'€,€0€€“€˜€€£€¨€­€±€¶€»€¿€Ä€Ê€Î€Ò€×€Û€ß€ä€é€ë€í€ò€ø€ý +--€oÓqrstuWNSLabelXNSSource€€€ +--×wxyz{|}~€‚ƒVNSMenu]NSMnemonicLocWNSTitleYNSOnImageZNSKeyEquiv\NSMixedImage€ ÿÿÿ€ €€ €€Óy…†‡ˆ[NSMenuItems$.%oSet Connection Title &PÓŒ2Ž^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78“”£”•;_NSCustomResource_%NSCustomResourceÓŒ2—Ž€€€_NSMenuMixedStateÒ78œ¢;ZNSMenuItem_openNewTitlePanel:Ò78 ¡£¡¢;_NSNibControlConnector^NSNibConnectorÓqr¤t¦€€€Øwx¨yz{|}~ª«€‚ƒ_NSKeyEquivModMask€ €€€ €€oGet Connection Info &\openOptions:Óqr³tµ€ €€Øwx¨yz{|·~ª¸€º‚ƒ€€€€€€Ôy¾…¿À‡ÂVNSNameDJ.E_Quit Chicken of the VNCQqÒÆÇÈYNS.stringZterminate:€!Ò78ÊË£ËÌ;_NSMutableStringXNSStringÓqrÎtЀ&€€#Øwx¨yz{|·~ªÓ€Õ‚ƒ€€$€€%€€_Hide Chicken of the VNCQhÒÆÛÈUhide:€!ÓqrÞtà€+€€(Øwx¨yz{|·~ãä€æ‚ƒ€€)€€*€€[Hide Others_hideOtherApplications:Óqrìtî€/€€-Øwx¨yz{|·~ªñ€‚ƒ€€.€€ €€XShow All_unhideAllApplications:Ôùqrúûüú]NSDestination€1€€Ž€1Ýÿ  +--   _NSWindowStyleMask_NSWindowBackingYNSMinSize]NSWindowTitle]NSWindowClass\NSWindowRect\NSScreenRectYNSMaxSize\NSWindowViewYNSWTFlags[NSViewClass_NSFrameAutosaveName€‰€3€4€2€ˆ€Š€6`x€Œ€5€‹_{{358, 593}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÔ ."#ZNSSubviews_NSNextResponderWNSFrame€7€€‡€nÒ>%o©&'()*+,-.€8€G€N€T€[€j€x€}€‚€o×1234789:;[NSSuperviewYNSEnabledXNSvFlagsVNSCell€6€6€9 €F€:_{{124, 137}, {265, 39}}Ø>?@ABCDEFGH&JKL_NSBackgroundColor[NSTextColorYNSSupportZNSContents]NSControlView[NSCellFlags\NSCellFlags2€?€D€<€;€8€Eþ_Chicken of the VNCÔO¾PQRSTVNSSizeXNSfFlags"Aà€=€>^Helvetica-BoldÒ78WX¢X;VNSFontÕZ[\]^_`abWNSColor[NSColorName\NSColorSpace]NSCatalogName€B€A€@€CVSystem_textBackgroundColorÓf\g bWNSWhiteB1€CÒ78jZ¢Z;Ól\mnbUNSRGBM0.709804 0 0€CÒ78qr¤rs4;_NSTextFieldCell\NSActionCellÒ78uv¦vwxyz;[NSTextField\%NSTextFieldYNSControlVNSView[NSResponder×1234~89:€6€6€H €F€I_{{59, 20}, {154, 10}}Ø>?@ABCDE…†‡'JKL€?€M€K€J€G€ES2.0ÔO¾PŒST"A €L€>YHelveticaÓf\‘ bK0.33333299€C×1234–89:™€6€6€O €F€P_{{126, 99}, {242, 30}}Ø>?@ABCDEžŸ(J¢L€?€S€R€Q€N€E!þ_DAdministered by Jason Harris +--based on VNCViewer by Helmut MaierhoferÔO¾P¥ST"A@€L€>Ól\©nbO0.117647 0.192157 0.45882401€C×1234®89:±€6€6€U €F€V_{{342, 20}, {203, 26}}Ø>?@ABCD´…†·)J¢º€X€M€K€W€T€E_LCopyright 1998-2000 by Helmut Maierhofer +--Copyright 2002-2006 by Jason HarrisÕZ[\]½¾`ab€Z€Y€@€C\controlColorÓf\à bK0.66666669€CÙ1234ÆÇÊ89ÌÍÎÏ[NSDragTypesZNSEditable€6€6€d €i€e€\Ò>Ñ@§ÒÓÔÕÖ×Ø€]€^€_€`€a€b€c€_Apple PDF pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NeXT filename pasteboard type_NeXT TIFF v4.0 pasteboard type_NSFilenamesPboardType_Apple PICT pasteboard type_Apple PNG pasteboard type_{{20, 80}, {96, 96}}ØãäAåæCDLLçÏLéêëWNSScaleWNSStyleZNSAnimatesWNSAlign€f€hþÓŒ2펀g€€_NSApplicationIconÒ78òó¤óô4;[NSImageCell\%NSImageCellÒ78ö÷¥÷xyz;[NSImageViewÛ1ùúûüýþÿ LÏ \NSBorderType_NSTitlePosition[NSTitleCellYNSOffsets]NSTransparentYNSBoxType€k€6€6€r€p€q€wÒ>o¡ €l€oÔ1++#€j€j€m€n_{{2, 2}, {435, 1}}Ò78y£yz;Ò78£;^NSMutableArrayWNSArray_{{12, 52}, {541, 5}}V{0, 0}×>?@ACDEJKL€?€v€t€s€ESBoxÔO¾P!"S$"AP€u€>\LucidaGrandeÓf\' bM0 0.80000001€CÒ78*+¤+yz;UNSBox×1234/89:2€6€6€y €F€z_{{125, 63}, {334, 28}}Ø>?@ABCDE6†8,J¢L€?€|€K€{€x€E_hreleased under the GNU Public License +--source code and support available at http://cotvnc.sourceforge.netÓl\©nb€C×1234A89:D€6€6€~ €F€_{{20, 20}, {39, 10}}Ø>?@ABCDEH†J-JKL€?€€K€€€}€EWVersionÓf\‘ b€C×1234S89:V€6€6€ƒ €F€„_{{376, 99}, {169, 30}}Ø>?@ABCDEZž\.J¢º€?€†€R€…€‚€E_6(support@geekspiff.com) +-+bplist00Ô +-+X$versionT$topY$archiverX$objects† Ñ]IB.objectdata€_NSKeyedArchiver¯Ù 156<=AEek{€‚‡ˆ‰Œ‘”•™Ÿ¢£±¸¹ÉÊÒÓÖàáâçéìðö÷úþ  +-+  #*/0126>?@DKLMNRYZ[_fghinosz{|ˆ‰¢£¤¥¦²¹ºÁÂÆÇÌÓÔÜÝáäëìôõúûþ %)*-0>?@FGLMPSZ[bcelmtuw~†‡‰Ž‘’“”—˜œ£¤¥¦ª±µ¶·¸¼ÄÅÆÊÑÒÓ×Þâãäèïðñõüýþÿ +-+  %&'+2348?@ABFMNOSZ[\]ahijnuvw{‚ƒ„ÊËÐÒÓÙäïðñý '09ðBENW`adðmnzƒŒ•–Ÿð¤Dð­ð¶·¿ðÈÑðÒÖÙÚÞßá'nµ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷úýaÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿÊ  +-+    !"#$%(+.U$nullß  !"#$%&'()*+,-./0VNSRootV$class]NSObjectsKeys_NSClassesValues_NSAccessibilityOidsValues]NSConnections[NSNamesKeys[NSFramework]NSClassesKeysZNSOidsKeys]NSNamesValues_NSAccessibilityConnectors]NSFontManager_NSVisibleWindows_NSObjectsValues_NSAccessibilityOidsKeysYNSNextOid\NSOidsValues€Ø€ïq×€,€pr-Õ€€+ÖÈsÒ234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects€ Ò78BC£CD;\NSMutableSetUNSSetÒ>FG€š¯HIJKLMNOPQRSTUVWXYZ[\]^_`abcd€ €€,€2€8€>€B€G€K€P€R€V€£€¨€®€²€¶€»€¿€Ä€È€Í€Ñ€Õ€Ú€Þ€ã€ç€ëÓfghijXNSSourceWNSLabel€€ +-+€ØlmnopqrstuvwxyzWNSTitle_NSKeyEquivModMaskZNSKeyEquiv]NSMnemonicLocYNSOnImage\NSMixedImageVNSMenu€€ € ÿÿÿ€€€ Ól|}~[NSMenuItems€ò€÷€ù\Send "Print"PÓ2ƒ„…†^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78Š‹¢‹;_NSCustomResourceÓ2ƒ„…€€€_NSMenuMixedStateÒ78’“¢“;ZNSMenuItem_sendPrintKeyCode:Ò78–—£—˜;_NSNibControlConnector^NSNibConnectorÔšfg›œž]NSDestination€+€€€*Ò23¡€€[AppDelegateפ¥¦§¨©ª«¬­®¯ª_NSNextResponderWNSFrameVNSCellXNSvFlagsYNSEnabled[NSSuperview€€)€€ €Õ¤²§³+µ¶®·ZNSSubviews[NSFrameSize€€œ€^€›_{{59, 20}, {154, 10}}غ»¼½¾¿ÀÁÂÃÄÅœÇÈ[NSCellFlags_NSBackgroundColorZNSContentsYNSSupport]NSControlView\NSCellFlags2[NSTextColorþ€(€"€€€€'S2.0ÔËÌÍÎÏÐÑVNSSizeVNSNameXNSfFlags€!#@$€ YHelveticaÒ78ÔÕ¢Õ;VNSFontÕ×ØÙÚÛÜÝÞßWNSColor\NSColorSpace[NSColorName]NSCatalogName€&€%€$€#VSystem_textBackgroundColorÓØãÛåæWNSWhite€&B1Ò78è×¢×;ÓØãÛåë€&K0.33333299Ò78íî¤îï¦;_NSTextFieldCell\NSActionCellÒ78ñò¥òóôõ;[NSTextFieldYNSControlVNSView[NSResponder_mInfoVersionNumberÒ78øù£ù˜;_NSNibOutletConnectorÓfghüý€€-€1Ølmnopqrsuwxy€€/€0€€€.Ól|}€òTUndoQzUundo:Ófgh€€3€7Ølmnopqrsuwxy€€5€6€€€4ÔlÌ|}€ò_Hide Chicken of the VNCQhUhide:Ófgh!"€€9€=Ølmnopqrs%u&wxy)€€;€<€€€:ÔlÌ|},-.€ò +-+XMinimizeQm_performMiniaturize:Ófgh45€€?€AØlmnopqrs89vwxyz€€@€ €€€ _Send "Cmd-Option-Escape"^sendCmdOptEsc:ÓfghBC€€C€FØlmnopqrsFuGwxy€€D€E€€€.UPasteQvVpaste:ÓfghPQ€€H€JØlmnopqrsT9vwxyz€€I€ €€€ _Send "Ctrl-Alt-Del"_sendCtrlAltDel:Ófgh]^€€L€OØlmnopqrsaubwxy€€M€N€€€.ZSelect AllQaZselectAll:Ôšfg›m€+€€€QXdelegateÓfghqr€€S€UØlmnopqrsuuvwxyz€€T€ €€€ \Send "Break"_sendBreakKeyCode:Ôšfgh~€€€Y€W€¢×lnopqrsƒvwxy€€X€ €€€4oAbout Chicken of the VNC &ÝŠ‹ŒŽ‘’“”•ª—˜™š›œžŸå ¡\NSWindowView\NSScreenRect_NSFrameAutosaveName]NSWindowTitleYNSWTFlags]NSWindowClass\NSWindowRectYNSMaxSize_NSWindowBacking_NSWindowStyleMaskYNSMinSize[NSViewClass€€¡€€ €[`x€\€Z€Ÿ€ž€]_{{358, 543}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÒ>F¨€š©©œ«¬­®¯°±€_€€f€l€s€‚€‹€€•×¤¥¦§¨©ª«µ¶®¯ª€€)€`€a €_{{124, 137}, {265, 39}}غ»¼½¾¿ÀÁÂý¾©ÇÀ€(€"€b€c€_€e_Chicken of the VNCÔËÌÍÎÄÅÑ€!#@<€d^Helvetica-BoldÓØÈÛÊËUNSRGB€&M0.709804 0 0פ¥¦§¨©ª«ÏЮ¯ª€€)€g€h €_{{126, 99}, {242, 30}}غ»¼½¾¿ÀÕÂÃØÙ«ÇÛ!þ€(€"€i€j€f€k_DAdministered by Jason Harris +-+based on VNCViewer by Helmut MaierhoferÔËÌÍÎßÐÑ€!#@(€ ÓØÈÛÊã€&O0.117647 0.192157 0.45882401פ¥¦§¨©ª«ç讯ª€€)€m€n €_{{342, 20}, {203, 26}}غ»¼½¾¿ÀÕÂîïŬòÈ€(€p€o€€l€'_LCopyright 1998-2000 by Helmut Maierhofer +-+Copyright 2002-2006 by Jason HarrisÕ×ØÙÚÛ÷Ýø߀&€r€q€#\controlColorÓØãÛåý€&K0.66666669Ù¤¥ÿ¦§¨©ª®¯ªZNSEditable[NSDragTypes€€€|€}€t €Ò>? €§  €u€v€w€x€y€z€{_Apple PDF pasteboard type_Apple PNG pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NSFilenamesPboardType_NeXT TIFF v4.0 pasteboard type_Apple PICT pasteboard type_NeXT filename pasteboard type_{{20, 80}, {96, 96}}غ¼¿ !Ç"ÇÇ#WNSStyleWNSAlignWNSScaleZNSAnimatesþ€€€~Ó2ƒ„…(€€€_NSApplicationIconÒ78+,£,¦;[NSImageCellÒ78./¥/óôõ;[NSImageViewÛ¤12¥3§456©ªŸ89:®å<ǪYNSBoxType[NSTitleCell]NSTransparent\NSBorderTypeYNSOffsets_NSTitlePosition€€Š€…€ƒ€„€_{{12, 52}, {541, 5}}V{0, 0}׺»¼½¿ÀÁÂÃCDÇE€(€"€†€‡€‰SBoxÔËÌÍÎIJK€!#@*€ˆ\LucidaGrandeÓØãÛåO€&M0 0.80000001Ò78QR¤Rôõ;UNSBoxפ¥¦§¨©ª«VW®¯ª€€)€Œ€ €_{{125, 63}, {334, 28}}غ»¼½¾¿ÀÕÂÃ^ůÇa€(€"€Ž€€‹€_hreleased under the GNU Public License +-+source code and support available at http://cotvnc.sourceforge.netÓØÈÛÊã€&פ¥¦§¨©ª«hi®¯ª€€)€‘€’ €_{{20, 20}, {39, 10}}غ»¼½¾¿ÀÁÂÃpÅ°Çs€(€"€“€€€”WVersionÓØãÛåë€&פ¥¦§¨©ª«z{®¯ª€€)€–€— €_{{376, 99}, {169, 30}}غ»¼½¾¿ÀÕÂÂٱò…€(€"€˜€j€•€™_6(support@geekspiff.com) ++-bplist00Ô ++-X$versionT$topY$archiverX$objects† Ñ]IB.objectdata€_NSKeyedArchiver¯Ù 156<=AEek{€‚‡ˆ‰Œ‘”•™Ÿ¢£±¸¹ÉÊÒÓÖàáâçéìðö÷úþ  ++-  #*/0126>?@DKLMNRYZ[_fghinosz{|ˆ‰¢£¤¥¦²¹ºÁÂÆÇÌÓÔÜÝáäëìôõúûþ %)*-0>?@FGLMPSZ[bcelmtuw~†‡‰Ž‘’“”—˜œ£¤¥¦ª±µ¶·¸¼ÄÅÆÊÑÒÓ×Þâãäèïðñõüýþÿ ++-  %&'+2348?@ABFMNOSZ[\]ahijnuvw{‚ƒ„ÊËÐÒÓÙäïðñý '09ðBENW`adðmnzƒŒ•–Ÿð¤Dð­ð¶·¿ðÈÑðÒÖÙÚÞßá'nµ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷úýaÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿÊ  ++-    !"#$%(+.U$nullß  !"#$%&'()*+,-./0VNSRootV$class]NSObjectsKeys_NSClassesValues_NSAccessibilityOidsValues]NSConnections[NSNamesKeys[NSFramework]NSClassesKeysZNSOidsKeys]NSNamesValues_NSAccessibilityConnectors]NSFontManager_NSVisibleWindows_NSObjectsValues_NSAccessibilityOidsKeysYNSNextOid\NSOidsValues€Ø€ïq×€,€pr-Õ€€+ÖÈsÒ234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects€ Ò78BC£CD;\NSMutableSetUNSSetÒ>FG€š¯HIJKLMNOPQRSTUVWXYZ[\]^_`abcd€ €€,€2€8€>€B€G€K€P€R€V€£€¨€®€²€¶€»€¿€Ä€È€Í€Ñ€Õ€Ú€Þ€ã€ç€ëÓfghijXNSSourceWNSLabel€€ ++-€ØlmnopqrstuvwxyzWNSTitle_NSKeyEquivModMaskZNSKeyEquiv]NSMnemonicLocYNSOnImage\NSMixedImageVNSMenu€€ € ÿÿÿ€€€ Ól|}~[NSMenuItems€ò€÷€ù\Send "Print"PÓ2ƒ„…†^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78Š‹¢‹;_NSCustomResourceÓ2ƒ„…€€€_NSMenuMixedStateÒ78’“¢“;ZNSMenuItem_sendPrintKeyCode:Ò78–—£—˜;_NSNibControlConnector^NSNibConnectorÔšfg›œž]NSDestination€+€€€*Ò23¡€€[AppDelegateפ¥¦§¨©ª«¬­®¯ª_NSNextResponderWNSFrameVNSCellXNSvFlagsYNSEnabled[NSSuperview€€)€€ €Õ¤²§³+µ¶®·ZNSSubviews[NSFrameSize€€œ€^€›_{{59, 20}, {154, 10}}غ»¼½¾¿ÀÁÂÃÄÅœÇÈ[NSCellFlags_NSBackgroundColorZNSContentsYNSSupport]NSControlView\NSCellFlags2[NSTextColorþ€(€"€€€€'S2.0ÔËÌÍÎÏÐÑVNSSizeVNSNameXNSfFlags€!#@$€ YHelveticaÒ78ÔÕ¢Õ;VNSFontÕ×ØÙÚÛÜÝÞßWNSColor\NSColorSpace[NSColorName]NSCatalogName€&€%€$€#VSystem_textBackgroundColorÓØãÛåæWNSWhite€&B1Ò78è×¢×;ÓØãÛåë€&K0.33333299Ò78íî¤îï¦;_NSTextFieldCell\NSActionCellÒ78ñò¥òóôõ;[NSTextFieldYNSControlVNSView[NSResponder_mInfoVersionNumberÒ78øù£ù˜;_NSNibOutletConnectorÓfghüý€€-€1Ølmnopqrsuwxy€€/€0€€€.Ól|}€òTUndoQzUundo:Ófgh€€3€7Ølmnopqrsuwxy€€5€6€€€4ÔlÌ|}€ò_Hide Chicken of the VNCQhUhide:Ófgh!"€€9€=Ølmnopqrs%u&wxy)€€;€<€€€:ÔlÌ|},-.€ò ++-XMinimizeQm_performMiniaturize:Ófgh45€€?€AØlmnopqrs89vwxyz€€@€ €€€ _Send "Cmd-Option-Escape"^sendCmdOptEsc:ÓfghBC€€C€FØlmnopqrsFuGwxy€€D€E€€€.UPasteQvVpaste:ÓfghPQ€€H€JØlmnopqrsT9vwxyz€€I€ €€€ _Send "Ctrl-Alt-Del"_sendCtrlAltDel:Ófgh]^€€L€OØlmnopqrsaubwxy€€M€N€€€.ZSelect AllQaZselectAll:Ôšfg›m€+€€€QXdelegateÓfghqr€€S€UØlmnopqrsuuvwxyz€€T€ €€€ \Send "Break"_sendBreakKeyCode:Ôšfgh~€€€Y€W€¢×lnopqrsƒvwxy€€X€ €€€4oAbout Chicken of the VNC &ÝŠ‹ŒŽ‘’“”•ª—˜™š›œžŸå ¡\NSWindowView\NSScreenRect_NSFrameAutosaveName]NSWindowTitleYNSWTFlags]NSWindowClass\NSWindowRectYNSMaxSize_NSWindowBacking_NSWindowStyleMaskYNSMinSize[NSViewClass€€¡€€ €[`x€\€Z€Ÿ€ž€]_{{358, 543}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÒ>F¨€š©©œ«¬­®¯°±€_€€f€l€s€‚€‹€€•×¤¥¦§¨©ª«µ¶®¯ª€€)€`€a €_{{124, 137}, {265, 39}}غ»¼½¾¿ÀÁÂý¾©ÇÀ€(€"€b€c€_€e_Chicken of the VNCÔËÌÍÎÄÅÑ€!#@<€d^Helvetica-BoldÓØÈÛÊËUNSRGB€&M0.709804 0 0פ¥¦§¨©ª«ÏЮ¯ª€€)€g€h €_{{126, 99}, {242, 30}}غ»¼½¾¿ÀÕÂÃØÙ«ÇÛ!þ€(€"€i€j€f€k_DAdministered by Jason Harris ++-based on VNCViewer by Helmut MaierhoferÔËÌÍÎßÐÑ€!#@(€ ÓØÈÛÊã€&O0.117647 0.192157 0.45882401פ¥¦§¨©ª«ç讯ª€€)€m€n €_{{342, 20}, {203, 26}}غ»¼½¾¿ÀÕÂîïŬòÈ€(€p€o€€l€'_LCopyright 1998-2000 by Helmut Maierhofer ++-Copyright 2002-2006 by Jason HarrisÕ×ØÙÚÛ÷Ýø߀&€r€q€#\controlColorÓØãÛåý€&K0.66666669Ù¤¥ÿ¦§¨©ª®¯ªZNSEditable[NSDragTypes€€€|€}€t €Ò>? €§  €u€v€w€x€y€z€{_Apple PDF pasteboard type_Apple PNG pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NSFilenamesPboardType_NeXT TIFF v4.0 pasteboard type_Apple PICT pasteboard type_NeXT filename pasteboard type_{{20, 80}, {96, 96}}غ¼¿ !Ç"ÇÇ#WNSStyleWNSAlignWNSScaleZNSAnimatesþ€€€~Ó2ƒ„…(€€€_NSApplicationIconÒ78+,£,¦;[NSImageCellÒ78./¥/óôõ;[NSImageViewÛ¤12¥3§456©ªŸ89:®å<ǪYNSBoxType[NSTitleCell]NSTransparent\NSBorderTypeYNSOffsets_NSTitlePosition€€Š€…€ƒ€„€_{{12, 52}, {541, 5}}V{0, 0}׺»¼½¿ÀÁÂÃCDÇE€(€"€†€‡€‰SBoxÔËÌÍÎIJK€!#@*€ˆ\LucidaGrandeÓØãÛåO€&M0 0.80000001Ò78QR¤Rôõ;UNSBoxפ¥¦§¨©ª«VW®¯ª€€)€Œ€ €_{{125, 63}, {334, 28}}غ»¼½¾¿ÀÕÂÃ^ůÇa€(€"€Ž€€‹€_hreleased under the GNU Public License ++-source code and support available at http://cotvnc.sourceforge.netÓØÈÛÊã€&פ¥¦§¨©ª«hi®¯ª€€)€‘€’ €_{{20, 20}, {39, 10}}غ»¼½¾¿ÀÁÂÃpÅ°Çs€(€"€“€€€”WVersionÓØãÛåë€&פ¥¦§¨©ª«z{®¯ª€€)€–€— €_{{376, 99}, {169, 30}}غ»¼½¾¿ÀÕÂÂٱò…€(€"€˜€j€•€™_6(support@geekspiff.com) +++bplist00Ô +++Y$archiverX$versionT$topX$objects_NSKeyedArchiver† Ñ ]IB.objectdata€¯û 156<=AEpv„‰Š‹‘’–š›žŸ£§°±²¶½ÃÄÅÉÍÑØÙÚÝáéÙêëïö÷øþ$0<=MNUVYcdeikpt{‚ƒŠ‹“š›£¤¨«²³»¼ÁÂÅÐÚÛÜÝÞßàáâìðñõø  %&),34;<>EFMNPWX_`bcdefgjknsz{|€‡ˆ‰ŠŽ•™š›Ÿ¦ª«¬¯³º»¼¿ÃÊËÌÏÓÚÛÜàçèéìð÷øùü  %*+,-189:>EFIMTUVY^abchopqv}~€…ŒŽ”•š› §¨©ª¯¶º»¼½ÂÉÊËÌÐ×ÛÜÝáèéêîõö÷û")*+/678=DEFG—˜¥°¹ÄÅÄÆÒÛÝâåèéêî÷ $-Å-.3<MÅMAPYãÅbc—ÅléÅuv~‡ÅˆŠ— Å¡£¬µ¶·¹ %ABCDEFGyHwGIJKLawMKKNBOPSVÏHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxnyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½ÀÃÆU$nullß  !"#$%&'()*+,-./0_NSObjectsValues_NSAccessibilityConnectors_NSClassesValuesZNSOidsKeys[NSNamesKeys]NSClassesKeys_NSAccessibilityOidsValues\NSOidsValues_NSVisibleWindowsV$class]NSConnections]NSNamesValues]NSObjectsKeys_NSAccessibilityOidsKeys[NSFramework]NSFontManagerYNSNextOidVNSRoota÷~b}ù€€ú€c#ø€€È€Ò234[NSClassName€€]NSApplicationÒ789:X$classesZ$classname¢:;^NSCustomObjectXNSObject_IBCocoaFrameworkÒ>?@ZNS.objects €Ò78BC£CD;\NSMutableSetUNSSetÒ>Fo¯(GHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn€ €€€"€'€,€0€€“€˜€€£€¨€­€±€¶€»€¿€Ä€Ê€Î€Ò€×€Û€ß€ä€é€ë€í€ò€ø€ý +++€oÓqrstuWNSLabelXNSSource€€€ +++×wxyz{|}~€‚ƒVNSMenu]NSMnemonicLocWNSTitleYNSOnImageZNSKeyEquiv\NSMixedImage€ ÿÿÿ€ €€ €€Óy…†‡ˆ[NSMenuItems$.%oSet Connection Title &PÓŒ2Ž^NSResourceName€€€WNSImage_NSMenuCheckmarkÒ78“”£”•;_NSCustomResource_%NSCustomResourceÓŒ2—Ž€€€_NSMenuMixedStateÒ78œ¢;ZNSMenuItem_openNewTitlePanel:Ò78 ¡£¡¢;_NSNibControlConnector^NSNibConnectorÓqr¤t¦€€€Øwx¨yz{|}~ª«€‚ƒ_NSKeyEquivModMask€ €€€ €€oGet Connection Info &\openOptions:Óqr³tµ€ €€Øwx¨yz{|·~ª¸€º‚ƒ€€€€€€Ôy¾…¿À‡ÂVNSNameDJ.E_Quit Chicken of the VNCQqÒÆÇÈYNS.stringZterminate:€!Ò78ÊË£ËÌ;_NSMutableStringXNSStringÓqrÎtЀ&€€#Øwx¨yz{|·~ªÓ€Õ‚ƒ€€$€€%€€_Hide Chicken of the VNCQhÒÆÛÈUhide:€!ÓqrÞtà€+€€(Øwx¨yz{|·~ãä€æ‚ƒ€€)€€*€€[Hide Others_hideOtherApplications:Óqrìtî€/€€-Øwx¨yz{|·~ªñ€‚ƒ€€.€€ €€XShow All_unhideAllApplications:Ôùqrúûüú]NSDestination€1€€Ž€1Ýÿ  +++   _NSWindowStyleMask_NSWindowBackingYNSMinSize]NSWindowTitle]NSWindowClass\NSWindowRect\NSScreenRectYNSMaxSize\NSWindowViewYNSWTFlags[NSViewClass_NSFrameAutosaveName€‰€3€4€2€ˆ€Š€6`x€Œ€5€‹_{{358, 593}, {565, 196}}_About Chicken of the VNCWNSPanelTViewÔ ."#ZNSSubviews_NSNextResponderWNSFrame€7€€‡€nÒ>%o©&'()*+,-.€8€G€N€T€[€j€x€}€‚€o×1234789:;[NSSuperviewYNSEnabledXNSvFlagsVNSCell€6€6€9 €F€:_{{124, 137}, {265, 39}}Ø>?@ABCDEFGH&JKL_NSBackgroundColor[NSTextColorYNSSupportZNSContents]NSControlView[NSCellFlags\NSCellFlags2€?€D€<€;€8€Eþ_Chicken of the VNCÔO¾PQRSTVNSSizeXNSfFlags"Aà€=€>^Helvetica-BoldÒ78WX¢X;VNSFontÕZ[\]^_`abWNSColor[NSColorName\NSColorSpace]NSCatalogName€B€A€@€CVSystem_textBackgroundColorÓf\g bWNSWhiteB1€CÒ78jZ¢Z;Ól\mnbUNSRGBM0.709804 0 0€CÒ78qr¤rs4;_NSTextFieldCell\NSActionCellÒ78uv¦vwxyz;[NSTextField\%NSTextFieldYNSControlVNSView[NSResponder×1234~89:€6€6€H €F€I_{{59, 20}, {154, 10}}Ø>?@ABCDE…†‡'JKL€?€M€K€J€G€ES2.0ÔO¾PŒST"A €L€>YHelveticaÓf\‘ bK0.33333299€C×1234–89:™€6€6€O €F€P_{{126, 99}, {242, 30}}Ø>?@ABCDEžŸ(J¢L€?€S€R€Q€N€E!þ_DAdministered by Jason Harris +++based on VNCViewer by Helmut MaierhoferÔO¾P¥ST"A@€L€>Ól\©nbO0.117647 0.192157 0.45882401€C×1234®89:±€6€6€U €F€V_{{342, 20}, {203, 26}}Ø>?@ABCD´…†·)J¢º€X€M€K€W€T€E_LCopyright 1998-2000 by Helmut Maierhofer +++Copyright 2002-2006 by Jason HarrisÕZ[\]½¾`ab€Z€Y€@€C\controlColorÓf\à bK0.66666669€CÙ1234ÆÇÊ89ÌÍÎÏ[NSDragTypesZNSEditable€6€6€d €i€e€\Ò>Ñ@§ÒÓÔÕÖ×Ø€]€^€_€`€a€b€c€_Apple PDF pasteboard type_1NeXT Encapsulated PostScript v1.2 pasteboard type_NeXT filename pasteboard type_NeXT TIFF v4.0 pasteboard type_NSFilenamesPboardType_Apple PICT pasteboard type_Apple PNG pasteboard type_{{20, 80}, {96, 96}}ØãäAåæCDLLçÏLéêëWNSScaleWNSStyleZNSAnimatesWNSAlign€f€hþÓŒ2펀g€€_NSApplicationIconÒ78òó¤óô4;[NSImageCell\%NSImageCellÒ78ö÷¥÷xyz;[NSImageViewÛ1ùúûüýþÿ LÏ \NSBorderType_NSTitlePosition[NSTitleCellYNSOffsets]NSTransparentYNSBoxType€k€6€6€r€p€q€wÒ>o¡ €l€oÔ1++#€j€j€m€n_{{2, 2}, {435, 1}}Ò78y£yz;Ò78£;^NSMutableArrayWNSArray_{{12, 52}, {541, 5}}V{0, 0}×>?@ACDEJKL€?€v€t€s€ESBoxÔO¾P!"S$"AP€u€>\LucidaGrandeÓf\' bM0 0.80000001€CÒ78*+¤+yz;UNSBox×1234/89:2€6€6€y €F€z_{{125, 63}, {334, 28}}Ø>?@ABCDE6†8,J¢L€?€|€K€{€x€E_hreleased under the GNU Public License +++source code and support available at http://cotvnc.sourceforge.netÓl\©nb€C×1234A89:D€6€6€~ €F€_{{20, 20}, {39, 10}}Ø>?@ABCDEH†J-JKL€?€€K€€€}€EWVersionÓf\‘ b€C×1234S89:V€6€6€ƒ €F€„_{{376, 99}, {169, 30}}Ø>?@ABCDEZž\.J¢º€?€†€R€…€‚€E_6(support@geekspiff.com) + (helmut.maierhofer@chello.at) +--Ól\©nb€C_{{1, 1}, {565, 196}}_{{0, 0}, {1280, 832}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78hi¢i;_NSWindowTemplate_initialFirstResponderÒ78lm£m¢;_NSNibOutletConnectorÔùqrúptr€1€’€€×wxyz{|·~u€‚ƒ€€‘€€ €€oAbout Chicken of the VNC &_makeKeyAndOrderFront:Óqr}t€—€€”Øwx¨yz{|}~ª‚€„‚ƒ€ €•€€–€€\Close WindowQw]performClose:Óqr‹t€œ€€™Øwx¨yz{|~ª€‚ƒ€š€›€€ €€Óy…–‡˜>.?]Stop Speaking]stopSpeaking:Óqrœtž€¢€€žØwx¨yz{| ~ª¡€£‚ƒ€Ÿ€ €€¡€€Óy…§‡©V.WTUndoQzÒÆ­ÈUundo:€!Óqr°t²€§€€¤Øwx¨yz{| ~ªµ€·‚ƒ€Ÿ€¥€€¦€€SCutQxÒƽÈTcut:€!ÓqrÀt€¬€€©Øwx¨yz{| ~ªÅ€Ç‚ƒ€Ÿ€ª€€«€€UPasteQvÒÆÍÈVpaste:€!ÓqrÐtÒ€°€€®Øwx¨yz{|~ªÕ€‚ƒ€š€¯€€ €€^Start Speaking^startSpeaking:ÓqrÝt߀µ€€²Øwx¨yz{| ~ªâ€䂃€Ÿ€³€€´€€ZSelect AllQaÒÆêÈZselectAll:€!Óqrít€€·Øwx¨yz{| ~ªò€ô‚ƒ€Ÿ€¸€€¹€€TCopyQcÒÆúÈUcopy:€!Óqrýtÿ€¾€€¼Øwx¨yz{| ~ª€‚ƒ€Ÿ€½€€ €€VDeleteWdelete:Óqr +--t €Ã€€ÀØwx¨yz{| ~ª€‚ƒ€Ÿ€Á€€Â€€TRedoQZÒÆÈUredo:€!Óqrt€É€€ÅØwx¨yz{|~ €"‚ƒ€Æ€Ç€€È€€Ôy¾…&'‡)[^.\_Fullscreen ModeQ~_toggleFullscreenMode:Óqr.t0€Í€€ËØwx¨yz{|~ª3€‚ƒ€Æ€Ì€€ €€WRefresh_manuallyUpdateFrameBuffer:Óqr;t=€Ñ€€ÏØwx¨yz{|~ª@€‚ƒ€Æ€Ð€€ €€_Bring All to FrontÒÆGÈ_arrangeInFront:€!ÓqrJtL€Ö€€ÓØwx¨yz{|~ªO€Q‚ƒ€Æ€Ô€€Õ€€XMinimizeQmÒÆWÈ_performMiniaturize:€!ÔùqrZ[ü0€Ø€Ú€Ž€Ò23`€€Ù[AppDelegateXdelegateÔùqrZetg€Ø€Þ€€ÜØwx¨yz{|·~ªj€‚ƒ€€Ý€€ €€[Use Bonjour_changeRendezvousUse:ÔùqrZstu€Ø€ã€€àØwx¨yz{|·~ªx€z‚ƒ€€á€€â€€lPreferences &Q,_showPreferences:ÔùqrZ‚t„€Ø€è€€åØwx¨yz{|}~ª‡€‰‚ƒ€ €æ€€ç€€oOpen Connection &Qo_showConnectionDialog:Ôùqrg‘üZ€Ü€ê€Ž€Ø_mRendezvousMenuItemÔùqr'—üZ€G€ì€Ž€Ø_mInfoVersionNumberÔùqrZtŸ€Ø€ñ€€îØwx¨yz{|}~㢀¤‚ƒ€ €ï€€ð€€oConnection Profiles &Qp_showProfileManager:ÔùqrZ¬t®€Ø€÷€€óØwx¨yz{|°~ª±€³‚ƒ€ô€õ€€ö€€Óy…·‡¹3.4_Chicken of the VNC HelpQ?YshowHelp:ÔùqrZ¿tÁ€Ø€ü€€ùØwx¨yz{|}~ªÄ€Æ‚ƒ€ €ú€€û€€oListen for Server &Ql_showListenerDialog:ÓqrÍtÏ€€þØwx¨yz{|Ñ~ªÒ€‚ƒ€ÿ€€ €€Óy…؇Ú+.,\Send "Pause"_sendPauseKeyCode:ÓqrÞtà€Øwx¨yz{|Ñ~ª。ƒ€ÿ€€ €€\Send "Break"_sendBreakKeyCode:Óqrëtí €Øwx¨yz{|Ñ~ªð€‚ƒ€ÿ€€ €€\Send "Print"_sendPrintKeyCode:Óqrøtú € Øwx¨yz{|Ñ~ªý€‚ƒ€ÿ €€ €€^Send "Execute"_sendExecuteKeyCode:Óqrt€Øwx¨yz{|Ñ~ +--€‚ƒ€ÿ€€ €€_Send "Ctrl-Alt-Del"_sendCtrlAltDel:Óqrt€Øwx¨yz{|Ñ~€‚ƒ€ÿ€€ €€_Send "Cmd-Option-Escape"^sendCmdOptEsc:Óqrt!€Øwx¨yz{|Ñ~ª$€‚ƒ€ÿ€€ €€]Send "Insert"_sendInsertKeyCode:Óqr,t.€Øwx¨yz{|Ñ~ª1€‚ƒ€ÿ€€ €€]Send "Delete"_sendDeleteKeyCode:ÔùqrZ:t<€Ø"€Øwx¨yz{|}~ª?€A‚ƒ€  €!€€oNew Connection &Qn_showNewConnectionDialog:Ò>H–¯Màî }ßO,Ÿ+°„UíXY)[ú]uÁuaLc²®Ògh!(Ð* p0rg'uïxyz.<·ÑµÂ „…žZúÏ.à=Ž-ÿ¦r&€™€-€À€ €²/€x€î€j€ô€å567€T8€19€ +--€ù€à-€Ó'€¤€ó€®:;€N€6€#€[€l(€Ë@€Ü€GK€”€·NAS€€ÿ]€F€©€Ÿ&X€ž€Ø €þ€‚€(€Ï€ÆG€š€Å€}€¼€€€8`ZConnectionÒ>™oª<„Á„u¦Ÿcp€å€ù€”&€ +--€€î'(€oÚwx¨yz¦{|§}~ª€8‚ƒ8\NSIsDisabled]NSIsSeparator€ € € € €€ Úwx¨yz¦{|§}~ª€8‚ƒ8€ € € € €€ Úwx¨ºyz{|»}~ªÑ¾€‚ƒÃYNSSubmenuXNSAction€ €ÿ)€€ €€*\Special Keys^submenuAction:Ò>Ço©a!.Ïàíú-€þ €oÚwx¨yz¦{|§Ñ~ª€8‚ƒ8€ÿ€ € € €€ Ò78Üw¢w;Ôy¾…Þ߇á02.1ÒÆãÈXServices€!Ò>æo €o__NSServicesMenuTHelpÒ>ëo¡®€ó€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|» ~ª'€‚ƒ,€Ÿ€š<€€ €€=VSpeechÒ>/o¢Ò€®€™€oÚwx¨ºyz{|»y~ª·6€‚ƒ;A€B€€ €€CÔy¾…=>‡@Q_.RÒ>Bo¬rUugŽgÐàîYµ€5€à€ÜFG:€#€(€-7€€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|»·~ªO\€‚ƒa€/H€€ €€I\_NSAppleMenuÚwx¨ºyz{|»y~ª}f€‚ƒkA€ L€€ €€MÚwx¨ºyz{|»y~ª°o€‚ƒtA€ôO€€ €€P]OSX_RFBViewerÒ>wo¥ruz…x@KSXN€oÚwx¨ºyz{|»y~ª €‚ƒ†A€ŸT€€ €€UTEditÒƇȀ!Ò>‹oªž [²ïÂÿß]h€ž€À8€¤€·€©€¼€²9;€oÚwx¨ºyz{|»y~ªš€‚ƒŸA€ÆY€€ €€ZVWindowÒƠȀ!Ò>¤o¦XL0=€Å6€Ó€Ë]€Ï€oÚwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ ^_NSWindowsMenu[_NSMainMenuÒ78¸¢;Ò>º–¯MÑ· u Ž}x}·ÑÑ· 0 }}·Ñ} °· ÑÑú·+}y·y} y0yÑ}rp·· z}y 0ÑÑ·…·h }·€š€ÿ€€ŸK€ŸG€6€ €6N€ €€ÿ€ÿ€Æ€€6€Ÿ€€Ÿ€ € €€ÿ€Æ€ €Ÿ€ô€š€€Ÿ€ÿ€ÿ€6€1€€6€j€ €ÆA€€6A€ €ŸA€A€ÿ€ @(€Æ€€€ŸS€ A€Ÿ€€ÿ€ÿ€6€€ÆX€;€Æ€6€Ÿ€ €€6`Ò> +--–¯Yúgîàr¦ 0OÐyŽuZ·+u„urµ7€1:€-€(€€€l€/€#AG€ +--€Ø€€jK€åF€à@€`Ò>&–¯'()*+,-./0123456789:;<=>?defghijklmnopqrstuvwxyz{|`TInfo[NSMenuItem7[NSMenuItem6[NSMenuItem5[NSMenuItem4]NSMenuItem211[NSMenuItem2\File's OwnerXMainMenu[NSMenuItem3[NSMenuItem1^NSMenuItem2111VNSBox1[NSMenuItem9[NSMenuItem8Ò>Q– `Ò>T– `Ò>W–¯v( [kÂbfÐnZ*pú „àQT]0r…îhKžNZugSg'ïaMuO OÁjß}u0úaà[Ïx.,Li=Jm\d`ÒGŽ²yXŸ®cUczH^VY+W].°¦-„g·ÿ<LPhlReUíI_XÑ&Yr)!µ€N€ŸF8€©€6€ë€ý€#€™€Ê€[(€1€l&€€­9€Ë@X€-€'€ž€€Ø€ +--€Ü€¨€G€·€é€0K€”€“€À/€ù€²€ €à€ -€(€Î€þN€‚€x€Ó +--€Ï€"€Ò€ò€Æ€ä€®€ €šG€¤A€¿€î€ó'€±€íS€€Û€¶€Ä€j€»€×€ô€Å€€}€å:€€¼€,€˜;€£€ø5€€ß6€ÿ]€87€€T€`Ò>Ж¯vÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  +--    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEF‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö`åbÀ!ç`ºcÆ8ã°èŽ¶$'4d2i¼ptW¥Q&»ä"_s4m®¿=l¸¹h9±zÇ1½/oÄ:­3^¦e+¬û(a<Z)7*X‚0;V5jf Åq#Ã%¯Õ¾·n]5³²6áagæÁkÒ>¾o €oÒ>Á– `Ò>Ä– `Ò78ÇÈ¢È;^NSIBObjectData#,1:LQVdf`f±Ãßñü2?RYguƒ©·ÁÈËÎÑÔ×ÚÝàâåçêíðòô÷ù )2=BQZmv‚„”¡§°   !#%')+-/13579;=?ACFILORUX[]jr{}ž¥³»ÅÐÝßäæèêìîû +-- =>KZ\^`hzƒŠ±¾ÀÂÄ×àåð    - < I K M O p „ † ‹ ‘ “ • À Í Ú Ü Þ à +-+ÓØÈÛÊã€&Ò78Š‹£‹Œ;^NSMutableArrayWNSArrayZ{565, 196}Ò78ô£ôõ;_{{0, 0}, {1280, 778}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78•–¢–;_NSWindowTemplate_makeKeyAndOrderFront:Ófghš›€€¤€§ØlmnopqrsžuŸwxy€€¥€¦€€€4_Quit Chicken of the VNCQqZterminate:Ófgh¨©€€©€­Ølmnopqrs¬u­wxy°€€«€¬€€€ªÓl|}³´€ò€ó€ô\Close WindowQw]performClose:Ófghº»€€¯€±Ølmnopqrs¾¿wxy€€°€6€€€4[Hide Others_hideOtherApplications:ÓfghÈÉ€€³€µØlmnopqrsÌuvwxyz€€´€ €€€ \Send "Pause"_sendPauseKeyCode:ÓfghÕÖ€€·€ºØlmnopqrsÙuvwxyÝ€€¹€ €€€¸Ól|}àá€ò€ð€ñ]Stop Speaking]stopSpeaking:Ófghæ瀀¼€¾Ølmnopqrsêuvwxy)€€½€ €€€:_Bring All to Front_arrangeInFront:Ófghóô€€À€ÃØlmnopqrs÷9øwxy)€€Á€Â€€€:_Fullscreen ModeQ~_toggleFullscreenMode:Ófgh€€Å€ÇØlmnopqrsuvwxy)€€Æ€ €€€:WRefresh_manuallyUpdateFrameBuffer:Ófgh€€É€ÌØlmnopqrsuwxy€€Ê€Ë€€€.TRedoQZUredo:Ófgh€€Î€ÐØlmnopqrs uvwxyz€€Ï€ €€€ ]Send "Insert"_sendInsertKeyCode:Ófgh)*€€Ò€ÔØlmnopqrs-uvwxy€€Ó€ €€€.VDeleteWdelete:Ófgh67€€Ö€ÙØlmnopqrs:u;wxy€€×€Ø€€€.SCutQxTcut:ÓfghDE€€Û€ÝØlmnopqrsHuvwxyÝ€€Ü€ €€€¸^Start Speaking^startSpeaking:ÓfghQR€€ß€âØlmnopqrsUuVwxy€€à€á€€€.TCopyQcUcopy:Ófgh_`€€ä€æØlmnopqrscuvwxyz€€å€ €€€ ]Send "Delete"_sendDeleteKeyCode:Ófghlm€€è€êØlmnopqrspuvwxy€€é€ €€€4XShow All_unhideAllApplications:Ófghyz€€ì€îØlmnopqrs}uvwxyz€€í€ €€€ ^Send "Execute"_sendExecuteKeyCode:Ò>…†*¯CP)Ýœ±°¯yl’)~•q—ªš›üBæ!ÈÕDó6¦º°ª«¬¨i¯4Q]³©­_®¸¹º»¼š¾¿ÀÁ¬zÉ€H€Ò€¸€€•€ª€‹€ì€û€è€.€:€Y €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€¯€€ú€f€õ€©€ +-+€?€ß€L€_€s€ä€‚€¤" %(€€É€3€l€Å€ VSpeechÒ>FÍ€š¢DÕ€Û€·Ò78Ñr¢r;ZConnectionÒ>FÕ€š£¨¬š€©€õ€öÚlmÚnÛopqrsvu¯v¯wxy°]NSIsSeparator\NSIsDisabled€€ € €€€ªÚålmnopqræsz~uvwxy°îYNSSubmenuXNSAction€€ €÷€ €€€ª€ø\Special Keys^submenuAction:Ò>F󀚩4Pª_Èqiy€?€H€ú€Î€ä€³€S€ +-+€ìÚlmÚnÛopqrsvu¯v¯wxyz€€ € €€€ ÔlÌ|}  +-+€ò€ü€ÿ€þÒ  YNS.string€ýXServicesÒ78£;_NSMutableStringXNSStringÒ>F€š __NSServicesMenuÒ  €ýTEditÒ>F€šªü³6QB)]’»€-€É€Ö€ß€C€Ò€LÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚålmnopqræsÝàuvwxyA€€¸€ð€ €€€.Ò  D€ýVWindowÒ>FG€š¦óÉ!Àæ€À€9€Å €¼ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:^_NSWindowsMenuÒ234€€Úålmnopqræsguvwxyl€€û € €€€4_Chicken Of the VNCÒ>Fp€š©¸—¼ºl¿š€W €3€¯€è€¤ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4\_NSAppleMenuÚålmnopqræs°³uvwxy¹ž€€ª€ó€ €€ÔlÌ|}¡¢£€ò'Úålmnopqræs)§uvwxy¹¬€€:€ €€Úålmnopqræsuvwxy¹µ€€4€ €€]OSX_RFBViewerÒ>F¹€š¥¯›º¦¾"ÚålmnopqræsÂuvwxy¹Ç€€. € €€!ÚålmnopqræsÁËuvwxy¹Ѐ%#€ €€$THelpÓl|}ËÕ€ò#&Ò>FØ€š [_NSMainMenuÔ¤¥§+µÝ®€€œ)_{{2, 2}, {435, 1}}Ò78àŒ¢Œ;Ò>…ã*¯Cz»ªª›ªz—º¦z¯~°¹))zÝÝ)¹zªzª°°z¹zªªzª¹¹)¾®ª)š)€ €.€€€€  €4€.€€€ €4€Y€ª€.€.€:€:€4€ €¸€¸€:€.€ €4€€ €€ª€ª€ € €.€.€.€€€ €€4€€.€4€4€4€:"€‚€€.€4€€:€ö€:Ò>…)*¯DP)œÝ±°¯l’~)y•q—ªš›üBæ!ÈÕDó6¦°º«ª¬¯¨iQ4©­]³_®º¹¸»¼¾šÀÁ¿Â¬Éz€H€€Ò€€¸€•€ª€‹€è€.€û€Y€:€ì €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€€¯€f€ú€õ€©€ +-+€ß€?€_€s€L€ä€‚€"€¤ %(€É€l€3€Å€ Ò>…p*¯Dqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦¡¨©ª«¬­¡¯°±²³´./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc€defghi€]jklmno_Menu Item (Send "Ctrl-Alt-Del")\File's Owner_Menu Item (Delete)_Static Text (2.0)]Menu (Speech)_DStatic Text ((support@geekspiff.com) +-+(helmut.maierhofer@chello.at) +-+)_Menu (Connection)_vStatic Text (released under the GNU Public License +-+source code and support available at http://cotvnc.sourceforge.net)_Menu Item (Show All)[Menu (Edit)[Separator-6_Menu (Services)TInfo]Menu (Window)_Menu Item (Send "Execute")[Application_Menu Item (Send "Break")_Menu Item (Services)_Menu (Chicken Of the VNC)\Content View_Menu Item (Special Keys)_Menu Item (Connection)_Menu Item (Undo)_Menu Item (Paste)_Menu Item (Bring All to Front)_Menu Item (Minimize)o%Menu Item (About Chicken of the VNC &)_Menu Item (Send "Pause")_Menu Item (Stop Speaking)_Menu Item (Start Speaking)_Menu Item (Fullscreen Mode)_Menu Item (Cut)_Menu Item (Window)_Menu Item (Send "Insert")_Static Text (Version)_Menu Item (Hide Others)_RStatic Text (Administered by Jason Harris +-+based on VNCViewer by Helmut Maierhofer)[Separator-8YSeparator_Menu Item (Chicken Of the VNC)_Menu Item (Close Window)_Menu Item (Send "Print")_Menu Item (Copy)_$Menu Item (Send "Cmd-Option-Escape")_ Static Text (Chicken of the VNC)_Image View (NSApplicationIcon)_Menu Item (Select All)[Separator-7_Menu Item (Send "Delete")_Horizontal Line_Menu Item (Edit)XMainMenu[Separator-3_Menu Item (Speech)[Separator-4_Menu Item (Help)_#Menu Item (Quit Chicken of the VNC)[Separator-1[Menu (Help)[Separator-5_Menu Item (Redo)_ZStatic Text (Copyright 1998-2000 by Helmut Maierhofer +-+Copyright 2002-2006 by Jason Harris)_#Menu Item (Hide Chicken of the VNC)_Menu Item (Refresh)[Separator-2_Menu (Special Keys)Ò>…ù* Ò>…ü* Ò>…ÿ*¯aP)œHO[¯cy’)~Y^L—TªXš›W!ÕDZSó6¦\°ª«¬¯4]³©Mº¹»aš¾¿ÀÁ¬zÉÝ]±V°JlI•qbüBæNÈUdQº¨iKQ­_R®¸_¼P`€H€Ò€€ €G€Ä€‹€ç€ì€û€.€:€Y€»€Ñ€8 €4€£€€¶€ö€²€9€W€·€Û€¿€V€À€Ö€Î€È€€ú€f€õ€?€L€_€>€€Þ€¤" %(€l€Å€ €€¸€Í€•€®€ª€,€è€ €S€ã€-€C€¼€B€³€¨€ë€P€¯€©€ +-+€2€ß€s€ä€R€‚€Õ€K€É€3€ÚÒ>…c*¯adefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄtuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔ¾ 伿8q¸m3è9*:efnç#°4º1g7t02Á+V¹åûd³áÀW)kza6‚Žæ4²5ÃÇp=$i`ÿÿÿÿÿÿÿý¶Ä!/&±½Xh·o"ã»Õ%j(c'Ò>F'€š Ò>…** Ò>…-* Ò78/0¢0;^NSIBObjectData"'1:?DRTf"mt{‰›·ÅÑÝëö .ASmw„†‰‹Ž‘“–˜›ž¡¤¦¨«®±´½ÉËÍÛäíøý (1<>?HO\bkmª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäñú)1EP^hu|~€…‡ŒŽ’Ÿ«­¯±¾¿ÌÛÝßáéû )+-/BKP[ox—¦·ÅÇÉËÍÖØÚæ    $ - 7 C E G I K N O Q f q }  ƒ … ¾ Ê Þ é ó ++-ÓØÈÛÊã€&Ò78Š‹£‹Œ;^NSMutableArrayWNSArrayZ{565, 196}Ò78ô£ôõ;_{{0, 0}, {1280, 778}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78•–¢–;_NSWindowTemplate_makeKeyAndOrderFront:Ófghš›€€¤€§ØlmnopqrsžuŸwxy€€¥€¦€€€4_Quit Chicken of the VNCQqZterminate:Ófgh¨©€€©€­Ølmnopqrs¬u­wxy°€€«€¬€€€ªÓl|}³´€ò€ó€ô\Close WindowQw]performClose:Ófghº»€€¯€±Ølmnopqrs¾¿wxy€€°€6€€€4[Hide Others_hideOtherApplications:ÓfghÈÉ€€³€µØlmnopqrsÌuvwxyz€€´€ €€€ \Send "Pause"_sendPauseKeyCode:ÓfghÕÖ€€·€ºØlmnopqrsÙuvwxyÝ€€¹€ €€€¸Ól|}àá€ò€ð€ñ]Stop Speaking]stopSpeaking:Ófghæ瀀¼€¾Ølmnopqrsêuvwxy)€€½€ €€€:_Bring All to Front_arrangeInFront:Ófghóô€€À€ÃØlmnopqrs÷9øwxy)€€Á€Â€€€:_Fullscreen ModeQ~_toggleFullscreenMode:Ófgh€€Å€ÇØlmnopqrsuvwxy)€€Æ€ €€€:WRefresh_manuallyUpdateFrameBuffer:Ófgh€€É€ÌØlmnopqrsuwxy€€Ê€Ë€€€.TRedoQZUredo:Ófgh€€Î€ÐØlmnopqrs uvwxyz€€Ï€ €€€ ]Send "Insert"_sendInsertKeyCode:Ófgh)*€€Ò€ÔØlmnopqrs-uvwxy€€Ó€ €€€.VDeleteWdelete:Ófgh67€€Ö€ÙØlmnopqrs:u;wxy€€×€Ø€€€.SCutQxTcut:ÓfghDE€€Û€ÝØlmnopqrsHuvwxyÝ€€Ü€ €€€¸^Start Speaking^startSpeaking:ÓfghQR€€ß€âØlmnopqrsUuVwxy€€à€á€€€.TCopyQcUcopy:Ófgh_`€€ä€æØlmnopqrscuvwxyz€€å€ €€€ ]Send "Delete"_sendDeleteKeyCode:Ófghlm€€è€êØlmnopqrspuvwxy€€é€ €€€4XShow All_unhideAllApplications:Ófghyz€€ì€îØlmnopqrs}uvwxyz€€í€ €€€ ^Send "Execute"_sendExecuteKeyCode:Ò>…†*¯CP)Ýœ±°¯yl’)~•q—ªš›üBæ!ÈÕDó6¦º°ª«¬¨i¯4Q]³©­_®¸¹º»¼š¾¿ÀÁ¬zÉ€H€Ò€¸€€•€ª€‹€ì€û€è€.€:€Y €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€¯€€ú€f€õ€©€ ++-€?€ß€L€_€s€ä€‚€¤" %(€€É€3€l€Å€ VSpeechÒ>FÍ€š¢DÕ€Û€·Ò78Ñr¢r;ZConnectionÒ>FÕ€š£¨¬š€©€õ€öÚlmÚnÛopqrsvu¯v¯wxy°]NSIsSeparator\NSIsDisabled€€ € €€€ªÚålmnopqræsz~uvwxy°îYNSSubmenuXNSAction€€ €÷€ €€€ª€ø\Special Keys^submenuAction:Ò>F󀚩4Pª_Èqiy€?€H€ú€Î€ä€³€S€ ++-€ìÚlmÚnÛopqrsvu¯v¯wxyz€€ € €€€ ÔlÌ|}  ++-€ò€ü€ÿ€þÒ  YNS.string€ýXServicesÒ78£;_NSMutableStringXNSStringÒ>F€š __NSServicesMenuÒ  €ýTEditÒ>F€šªü³6QB)]’»€-€É€Ö€ß€C€Ò€LÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€.ÚålmnopqræsÝàuvwxyA€€¸€ð€ €€€.Ò  D€ýVWindowÒ>FG€š¦óÉ!Àæ€À€9€Å €¼ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:ÚlmÚnÛopqrsvu¯v¯wxy)€€ € €€€:^_NSWindowsMenuÒ234€€Úålmnopqræsguvwxyl€€û € €€€4_Chicken Of the VNCÒ>Fp€š©¸—¼ºl¿š€W €3€¯€è€¤ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4ÚlmÚnÛopqrsvu¯v¯wxy€€ € €€€4\_NSAppleMenuÚålmnopqræs°³uvwxy¹ž€€ª€ó€ €€ÔlÌ|}¡¢£€ò'Úålmnopqræs)§uvwxy¹¬€€:€ €€Úålmnopqræsuvwxy¹µ€€4€ €€]OSX_RFBViewerÒ>F¹€š¥¯›º¦¾"ÚålmnopqræsÂuvwxy¹Ç€€. € €€!ÚålmnopqræsÁËuvwxy¹Ѐ%#€ €€$THelpÓl|}ËÕ€ò#&Ò>FØ€š [_NSMainMenuÔ¤¥§+µÝ®€€œ)_{{2, 2}, {435, 1}}Ò78àŒ¢Œ;Ò>…ã*¯Cz»ªª›ªz—º¦z¯~°¹))zÝÝ)¹zªzª°°z¹zªªzª¹¹)¾®ª)š)€ €.€€€€  €4€.€€€ €4€Y€ª€.€.€:€:€4€ €¸€¸€:€.€ €4€€ €€ª€ª€ € €.€.€.€€€ €€4€€.€4€4€4€:"€‚€€.€4€€:€ö€:Ò>…)*¯DP)œÝ±°¯l’~)y•q—ªš›üBæ!ÈÕDó6¦°º«ª¬¯¨iQ4©­]³_®º¹¸»¼¾šÀÁ¿Â¬Éz€H€€Ò€€¸€•€ª€‹€è€.€û€Y€:€ì €S €4€€ö€-€C€¼€9€W€³€·€Û€À€Ö€Î€€¯€f€ú€õ€©€ ++-€ß€?€_€s€L€ä€‚€"€¤ %(€É€l€3€Å€ Ò>…p*¯Dqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦¡¨©ª«¬­¡¯°±²³´./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc€defghi€]jklmno_Menu Item (Send "Ctrl-Alt-Del")\File's Owner_Menu Item (Delete)_Static Text (2.0)]Menu (Speech)_DStatic Text ((support@geekspiff.com) ++-(helmut.maierhofer@chello.at) ++-)_Menu (Connection)_vStatic Text (released under the GNU Public License ++-source code and support available at http://cotvnc.sourceforge.net)_Menu Item (Show All)[Menu (Edit)[Separator-6_Menu (Services)TInfo]Menu (Window)_Menu Item (Send "Execute")[Application_Menu Item (Send "Break")_Menu Item (Services)_Menu (Chicken Of the VNC)\Content View_Menu Item (Special Keys)_Menu Item (Connection)_Menu Item (Undo)_Menu Item (Paste)_Menu Item (Bring All to Front)_Menu Item (Minimize)o%Menu Item (About Chicken of the VNC &)_Menu Item (Send "Pause")_Menu Item (Stop Speaking)_Menu Item (Start Speaking)_Menu Item (Fullscreen Mode)_Menu Item (Cut)_Menu Item (Window)_Menu Item (Send "Insert")_Static Text (Version)_Menu Item (Hide Others)_RStatic Text (Administered by Jason Harris ++-based on VNCViewer by Helmut Maierhofer)[Separator-8YSeparator_Menu Item (Chicken Of the VNC)_Menu Item (Close Window)_Menu Item (Send "Print")_Menu Item (Copy)_$Menu Item (Send "Cmd-Option-Escape")_ Static Text (Chicken of the VNC)_Image View (NSApplicationIcon)_Menu Item (Select All)[Separator-7_Menu Item (Send "Delete")_Horizontal Line_Menu Item (Edit)XMainMenu[Separator-3_Menu Item (Speech)[Separator-4_Menu Item (Help)_#Menu Item (Quit Chicken of the VNC)[Separator-1[Menu (Help)[Separator-5_Menu Item (Redo)_ZStatic Text (Copyright 1998-2000 by Helmut Maierhofer ++-Copyright 2002-2006 by Jason Harris)_#Menu Item (Hide Chicken of the VNC)_Menu Item (Refresh)[Separator-2_Menu (Special Keys)Ò>…ù* Ò>…ü* Ò>…ÿ*¯aP)œHO[¯cy’)~Y^L—TªXš›W!ÕDZSó6¦\°ª«¬¯4]³©Mº¹»aš¾¿ÀÁ¬zÉÝ]±V°JlI•qbüBæNÈUdQº¨iKQ­_R®¸_¼P`€H€Ò€€ €G€Ä€‹€ç€ì€û€.€:€Y€»€Ñ€8 €4€£€€¶€ö€²€9€W€·€Û€¿€V€À€Ö€Î€È€€ú€f€õ€?€L€_€>€€Þ€¤" %(€l€Å€ €€¸€Í€•€®€ª€,€è€ €S€ã€-€C€¼€B€³€¨€ë€P€¯€©€ ++-€2€ß€s€ä€R€‚€Õ€K€É€3€ÚÒ>…c*¯adefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄtuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔ¾ 伿8q¸m3è9*:efnç#°4º1g7t02Á+V¹åûd³áÀW)kza6‚Žæ4²5ÃÇp=$i`ÿÿÿÿÿÿÿý¶Ä!/&±½Xh·o"ã»Õ%j(c'Ò>F'€š Ò>…** Ò>…-* Ò78/0¢0;^NSIBObjectData"'1:?DRTf"mt{‰›·ÅÑÝëö .ASmw„†‰‹Ž‘“–˜›ž¡¤¦¨«®±´½ÉËÍÛäíøý (1<>?HO\bkmª¬®°²´¶¸º¼¾ÀÂÄÆÈÊÌÎÐÒÔÖØÚÜÞàâäñú)1EP^hu|~€…‡ŒŽ’Ÿ«­¯±¾¿ÌÛÝßáéû )+-/BKP[ox—¦·ÅÇÉËÍÖØÚæ    $ - 7 C E G I K N O Q f q }  ƒ … ¾ Ê Þ é ó +++Ól\©nb€C_{{1, 1}, {565, 196}}_{{0, 0}, {1280, 832}}]{246.944, 28}_{3.40282e+38, 3.40282e+38}UaboutÒ78hi¢i;_NSWindowTemplate_initialFirstResponderÒ78lm£m¢;_NSNibOutletConnectorÔùqrúptr€1€’€€×wxyz{|·~u€‚ƒ€€‘€€ €€oAbout Chicken of the VNC &_makeKeyAndOrderFront:Óqr}t€—€€”Øwx¨yz{|}~ª‚€„‚ƒ€ €•€€–€€\Close WindowQw]performClose:Óqr‹t€œ€€™Øwx¨yz{|~ª€‚ƒ€š€›€€ €€Óy…–‡˜>.?]Stop Speaking]stopSpeaking:Óqrœtž€¢€€žØwx¨yz{| ~ª¡€£‚ƒ€Ÿ€ €€¡€€Óy…§‡©V.WTUndoQzÒÆ­ÈUundo:€!Óqr°t²€§€€¤Øwx¨yz{| ~ªµ€·‚ƒ€Ÿ€¥€€¦€€SCutQxÒƽÈTcut:€!ÓqrÀt€¬€€©Øwx¨yz{| ~ªÅ€Ç‚ƒ€Ÿ€ª€€«€€UPasteQvÒÆÍÈVpaste:€!ÓqrÐtÒ€°€€®Øwx¨yz{|~ªÕ€‚ƒ€š€¯€€ €€^Start Speaking^startSpeaking:ÓqrÝt߀µ€€²Øwx¨yz{| ~ªâ€䂃€Ÿ€³€€´€€ZSelect AllQaÒÆêÈZselectAll:€!Óqrít€€·Øwx¨yz{| ~ªò€ô‚ƒ€Ÿ€¸€€¹€€TCopyQcÒÆúÈUcopy:€!Óqrýtÿ€¾€€¼Øwx¨yz{| ~ª€‚ƒ€Ÿ€½€€ €€VDeleteWdelete:Óqr +++t €Ã€€ÀØwx¨yz{| ~ª€‚ƒ€Ÿ€Á€€Â€€TRedoQZÒÆÈUredo:€!Óqrt€É€€ÅØwx¨yz{|~ €"‚ƒ€Æ€Ç€€È€€Ôy¾…&'‡)[^.\_Fullscreen ModeQ~_toggleFullscreenMode:Óqr.t0€Í€€ËØwx¨yz{|~ª3€‚ƒ€Æ€Ì€€ €€WRefresh_manuallyUpdateFrameBuffer:Óqr;t=€Ñ€€ÏØwx¨yz{|~ª@€‚ƒ€Æ€Ð€€ €€_Bring All to FrontÒÆGÈ_arrangeInFront:€!ÓqrJtL€Ö€€ÓØwx¨yz{|~ªO€Q‚ƒ€Æ€Ô€€Õ€€XMinimizeQmÒÆWÈ_performMiniaturize:€!ÔùqrZ[ü0€Ø€Ú€Ž€Ò23`€€Ù[AppDelegateXdelegateÔùqrZetg€Ø€Þ€€ÜØwx¨yz{|·~ªj€‚ƒ€€Ý€€ €€[Use Bonjour_changeRendezvousUse:ÔùqrZstu€Ø€ã€€àØwx¨yz{|·~ªx€z‚ƒ€€á€€â€€lPreferences &Q,_showPreferences:ÔùqrZ‚t„€Ø€è€€åØwx¨yz{|}~ª‡€‰‚ƒ€ €æ€€ç€€oOpen Connection &Qo_showConnectionDialog:Ôùqrg‘üZ€Ü€ê€Ž€Ø_mRendezvousMenuItemÔùqr'—üZ€G€ì€Ž€Ø_mInfoVersionNumberÔùqrZtŸ€Ø€ñ€€îØwx¨yz{|}~㢀¤‚ƒ€ €ï€€ð€€oConnection Profiles &Qp_showProfileManager:ÔùqrZ¬t®€Ø€÷€€óØwx¨yz{|°~ª±€³‚ƒ€ô€õ€€ö€€Óy…·‡¹3.4_Chicken of the VNC HelpQ?YshowHelp:ÔùqrZ¿tÁ€Ø€ü€€ùØwx¨yz{|}~ªÄ€Æ‚ƒ€ €ú€€û€€oListen for Server &Ql_showListenerDialog:ÓqrÍtÏ€€þØwx¨yz{|Ñ~ªÒ€‚ƒ€ÿ€€ €€Óy…؇Ú+.,\Send "Pause"_sendPauseKeyCode:ÓqrÞtà€Øwx¨yz{|Ñ~ª。ƒ€ÿ€€ €€\Send "Break"_sendBreakKeyCode:Óqrëtí €Øwx¨yz{|Ñ~ªð€‚ƒ€ÿ€€ €€\Send "Print"_sendPrintKeyCode:Óqrøtú € Øwx¨yz{|Ñ~ªý€‚ƒ€ÿ €€ €€^Send "Execute"_sendExecuteKeyCode:Óqrt€Øwx¨yz{|Ñ~ +++€‚ƒ€ÿ€€ €€_Send "Ctrl-Alt-Del"_sendCtrlAltDel:Óqrt€Øwx¨yz{|Ñ~€‚ƒ€ÿ€€ €€_Send "Cmd-Option-Escape"^sendCmdOptEsc:Óqrt!€Øwx¨yz{|Ñ~ª$€‚ƒ€ÿ€€ €€]Send "Insert"_sendInsertKeyCode:Óqr,t.€Øwx¨yz{|Ñ~ª1€‚ƒ€ÿ€€ €€]Send "Delete"_sendDeleteKeyCode:ÔùqrZ:t<€Ø"€Øwx¨yz{|}~ª?€A‚ƒ€  €!€€oNew Connection &Qn_showNewConnectionDialog:Ò>H–¯Màî }ßO,Ÿ+°„UíXY)[ú]uÁuaLc²®Ògh!(Ð* p0rg'uïxyz.<·ÑµÂ „…žZúÏ.à=Ž-ÿ¦r&€™€-€À€ €²/€x€î€j€ô€å567€T8€19€ +++€ù€à-€Ó'€¤€ó€®:;€N€6€#€[€l(€Ë@€Ü€GK€”€·NAS€€ÿ]€F€©€Ÿ&X€ž€Ø €þ€‚€(€Ï€ÆG€š€Å€}€¼€€€8`ZConnectionÒ>™oª<„Á„u¦Ÿcp€å€ù€”&€ +++€€î'(€oÚwx¨yz¦{|§}~ª€8‚ƒ8\NSIsDisabled]NSIsSeparator€ € € € €€ Úwx¨yz¦{|§}~ª€8‚ƒ8€ € € € €€ Úwx¨ºyz{|»}~ªÑ¾€‚ƒÃYNSSubmenuXNSAction€ €ÿ)€€ €€*\Special Keys^submenuAction:Ò>Ço©a!.Ïàíú-€þ €oÚwx¨yz¦{|§Ñ~ª€8‚ƒ8€ÿ€ € € €€ Ò78Üw¢w;Ôy¾…Þ߇á02.1ÒÆãÈXServices€!Ò>æo €o__NSServicesMenuTHelpÒ>ëo¡®€ó€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§ ~ª€8‚ƒ8€Ÿ€ € € €€ Úwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|» ~ª'€‚ƒ,€Ÿ€š<€€ €€=VSpeechÒ>/o¢Ò€®€™€oÚwx¨ºyz{|»y~ª·6€‚ƒ;A€B€€ €€CÔy¾…=>‡@Q_.RÒ>Bo¬rUugŽgÐàîYµ€5€à€ÜFG:€#€(€-7€€oÚwx¨yz¦{|§·~ª€8‚ƒ8€€ € € €€ Úwx¨ºyz{|»·~ªO\€‚ƒa€/H€€ €€I\_NSAppleMenuÚwx¨ºyz{|»y~ª}f€‚ƒkA€ L€€ €€MÚwx¨ºyz{|»y~ª°o€‚ƒtA€ôO€€ €€P]OSX_RFBViewerÒ>wo¥ruz…x@KSXN€oÚwx¨ºyz{|»y~ª €‚ƒ†A€ŸT€€ €€UTEditÒƇȀ!Ò>‹oªž [²ïÂÿß]h€ž€À8€¤€·€©€¼€²9;€oÚwx¨ºyz{|»y~ªš€‚ƒŸA€ÆY€€ €€ZVWindowÒƠȀ!Ò>¤o¦XL0=€Å6€Ó€Ë]€Ï€oÚwx¨yz¦{|§~ª€8‚ƒ8€Æ€ € € €€ ^_NSWindowsMenu[_NSMainMenuÒ78¸¢;Ò>º–¯MÑ· u Ž}x}·ÑÑ· 0 }}·Ñ} °· ÑÑú·+}y·y} y0yÑ}rp·· z}y 0ÑÑ·…·h }·€š€ÿ€€ŸK€ŸG€6€ €6N€ €€ÿ€ÿ€Æ€€6€Ÿ€€Ÿ€ € €€ÿ€Æ€ €Ÿ€ô€š€€Ÿ€ÿ€ÿ€6€1€€6€j€ €ÆA€€6A€ €ŸA€A€ÿ€ @(€Æ€€€ŸS€ A€Ÿ€€ÿ€ÿ€6€€ÆX€;€Æ€6€Ÿ€ €€6`Ò> +++–¯Yúgîàr¦ 0OÐyŽuZ·+u„urµ7€1:€-€(€€€l€/€#AG€ +++€Ø€€jK€åF€à@€`Ò>&–¯'()*+,-./0123456789:;<=>?defghijklmnopqrstuvwxyz{|`TInfo[NSMenuItem7[NSMenuItem6[NSMenuItem5[NSMenuItem4]NSMenuItem211[NSMenuItem2\File's OwnerXMainMenu[NSMenuItem3[NSMenuItem1^NSMenuItem2111VNSBox1[NSMenuItem9[NSMenuItem8Ò>Q– `Ò>T– `Ò>W–¯v( [kÂbfÐnZ*pú „àQT]0r…îhKžNZugSg'ïaMuO OÁjß}u0úaà[Ïx.,Li=Jm\d`ÒGŽ²yXŸ®cUczH^VY+W].°¦-„g·ÿ<LPhlReUíI_XÑ&Yr)!µ€N€ŸF8€©€6€ë€ý€#€™€Ê€[(€1€l&€€­9€Ë@X€-€'€ž€€Ø€ +++€Ü€¨€G€·€é€0K€”€“€À/€ù€²€ €à€ -€(€Î€þN€‚€x€Ó +++€Ï€"€Ò€ò€Æ€ä€®€ €šG€¤A€¿€î€ó'€±€íS€€Û€¶€Ä€j€»€×€ô€Å€€}€å:€€¼€,€˜;€£€ø5€€ß6€ÿ]€87€€T€`Ò>Ж¯vÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ  +++    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEF‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö`åbÀ!ç`ºcÆ8ã°èŽ¶$'4d2i¼ptW¥Q&»ä"_s4m®¿=l¸¹h9±zÇ1½/oÄ:­3^¦e+¬û(a<Z)7*X‚0;V5jf Åq#Ã%¯Õ¾·n]5³²6áagæÁkÒ>¾o €oÒ>Á– `Ò>Ä– `Ò78ÇÈ¢È;^NSIBObjectData#,1:LQVdf`f±Ãßñü2?RYguƒ©·ÁÈËÎÑÔ×ÚÝàâåçêíðòô÷ù )2=BQZmv‚„”¡§°   !#%')+-/13579;=?ACFILORUX[]jr{}ž¥³»ÅÐÝßäæèêìîû +++ =>KZ\^`hzƒŠ±¾ÀÂÄ×àåð    - < I K M O p „ † ‹ ‘ “ • À Í Ú Ü Þ à +  +-- +-- +-- +-- +-- +-- +-- +-+ +-+ +-+ +-+! +-+# ++- ++- ++- ++-! ++-# +++ +++ +++ +++ +++ +++ +++ + % +--( +-+' +-+) ++-' ++-) +++( + + +--. +-+- ++-- +++. + 1 +--K +--M +--V +--` +--k +--m +--v +--} +-- +--˜ +--¥ +--§ +--© +--« +--Ì +--Î +--Ð +--Ò +--Ô +--Ö +--Ø +-+B +-+I +-+P +-+Y +-+[ +-+d +-+f +-+h +-+r +-+{ +-+€ +-+‡ +-+œ +-+¤ +-+± +-+½ +-+Ë +-+Í +-+Ï +-+Ñ +-+Ó +-+Õ +-+Ü ++-B ++-I ++-P ++-Y ++-[ ++-d ++-f ++-h ++-r ++-{ ++-€ ++-‡ ++-œ ++-¤ ++-± ++-½ ++-Ë ++-Í ++-Ï ++-Ñ ++-Ó ++-Õ ++-Ü +++K +++M +++V +++` +++k +++m +++v +++} +++ +++˜ +++¥ +++§ +++© +++« +++Ì +++Î +++Ð +++Ò +++Ô +++Ö +++Ø + ò +--ô +--ý       9 ; @ B D F H J V o | ~ € ‚ £ ¥ § © « ­ ¯ ¸ Ñ â ð ò ô ö ø - A S ] k y † “ ª ´ À Ö Ø Ú Ü Þ à â ä æ è í ï ñ ó  ) 1 6 G R d l n p r t } ’ ” – ˜ š œ ž   ¢ ¤ Á Í × à ç é ë í î ñ ó õ0DPZesŒŽ’”–˜Ÿ´ÅÌÕÚÜÞàïøý!-:HJLNPRYo|„‡‰’—¤ª¸º¼ÅÎàíö&-9VXZ\]_ayšœž ¢¤¦ª»ÀÂÄÎÛçé +--  *KMOQSUW\£´¹»½Êêì   -NPRTVXZ_®ÃÅÇÉËØåñó$/13568:<=FUWY[]_aceµÕö+G^‡š¢¤¥§¬±¾ÀÂÄØáêö #P]o{…“Ÿ¡£¥§©ª¬µ¸º¼ÍÏÑÓÕêóú +--!8?\^`bdfj{€‚„‡”¡¯±ºÃÉæèêìíïñ +--+-/1357¢¯±ÎÐÒÔÕ×Ùð%24QSUWXZ\u–˜šœž ¢Ûèê'DJSXkƒŒ“ª»½¿ÁÃàâäæèêì!9FHJLmoqsuwy†ˆ–£¥§©ÊÌÎÐÒÔÖãæéìú<>@BDFHUX[^centvƒ…‡‰ª¬®°²´¶º¼ÅÊÌÙÛÝß +-- $&3579Z\^`bdfu„‘“•—¸º¼¾ÀÂÄÏÑÚåçôöøú!#%',.7=?LNPRsuwy{}†Ž›Ÿ¡ÂÄÆÈÊÌÎÓÕÞäæóõ÷ù!#%')+<?BEHZ\tƒ…‡¨ª¬®°²´¼Ùæèêì .7IKXZ\^ƒ…‡‰‹”–Ÿµ·ÈÊÌÎÐÙÛÝéò    , . 0 2 4 6 8 D [ l n p r t • — ™ › Ÿ ¡ º ¼ Ï à â ä æ è! ! ! !!!!!8!:!R!c!e!g!i!k!!’!”!–!˜!š!¯!À!Â!Ä!Æ!È!é!ë!í!ï!ñ!ó!õ" """8"I"K"M"O"Q"r"t"v"x"z"|"~"‹"Ž"‘"”"®"°"º"Ë"Í"Ï"Ñ"Ó"ô"ö"ø"ú"ü"þ##'#)#?#L#O#Q#S#t#v#y#{#}###Ž#‘#”#—#¤#¸#Å#È#Ê#Í#î#ð#ó#õ#÷#ù#û$$$)$,$.$1$R$T$W$Y$[$]$_$l$€$$$’$•$¶$¸$»$½$¿$Á$Ã$Ò$è$õ$ø$ú$ý%% %#%%%'%)%+%A%S%`%c%e%h%‰%‹%Ž%%’%”%–%±%À%Í%Ð%Ò%Õ%ö%ø%û%ý%ÿ&&&&&&3&6&8&;&\&^&a&c&e&g&i&w&Œ&&Ÿ&¢&¤&§&È&Ê&Í&Ï&Ò&Ô&Ö&÷&ù'''º'¼'¿'Á'Ã'Å'Ç'Ê'Ì'Î'Ð'Ò'Ô'×'Ú'Ý'à'ã'å'è'ê'í'ï'ñ'ó'ö'ø'û'ý'ÿ(((( +--( (((((((((!(#(&(((*(-(0(3(6(9(;(=(@(B(E(G(I(L(O(Q(S(V(X(Z(\(^(`(c(e(g(i(k(m(o(q(t((ˆ(( (¢(¤(¦(©(«(­(¯(²(µ(·(à(í(û(ý(ÿ)))))) )2)4)6)8)9);)=)?)@)i)s)|)~)€)ƒ)…)‡)‰)‹)Ž)›)ª)³)Æ)É)Ì)Ï)Ò)Õ)×)Ú)Ý)à)â* * ********"*'*8*;*>*A*D*M*V*X*a*b*d*v*{*„*‡*‰*‹*´*¶*¸*º*»*½*¿*Á*Â*ë*í*ï*ñ*ò*ô*ö*ø*ù+"+$+&+(+)+++-+/+0+Y+[+]+_+`+b+d+f+g++’+”+–+—+™+›++ž+Ç+É+Ë+Í+Î+Ð+Ò+Ô+Õ+þ,,,,, , , ,,, ,%,',),+,T,W,Y,\,^,`,b,d,g,x,{,~,,„,,¦,¨,«,­,¯,²,µ,¸,º,¼,¾,Á,Ã,Å,î,ð,ò,ô,õ,÷,ù,û,ü-%-'-*---/-1-3-5-8-E-n-q-s-v-x-z-|-~--ª-­-¯-²-´-¶-¸-º-½-Ë-Ô-ß-â-å-è-ë-î-ð....!.#.%.'.).,.1.:.<.E.Z.\.^.a.c.e.g.i.k.n.q.s.œ.Ÿ.¡.¤.¦.¨.ª.¬.¯.¶.¿.Á.Ê.×.Ù.Ü.Þ.à.ã.å.ç//////////-/9/B/G/P/í/ï/ñ/ó/õ/ø/ú/ý/ÿ00000 +--0 0000000000 0"0$0&0(0*0,0.00020406080:0<0>0@0B0E0G0I0L0N0P0S0U0X0Z0\0_0b0d0f0h0j0m0o0r0t0v0x0z0|0~0€0ƒ0…0ˆ0Š0Œ0Ž00’0”0—0 0Õ0Ø0Ú0Ý0ß0á0ã0æ0è0ê0ì0ï0ñ0ô0÷0ù0ü0þ11111 +--1 11111R1U1X1[1^1a1d1g1j1m1p1s1v1y1|11‚1…1ˆ1‹1Ž1‘1”1—1š11 1¥1±1½1É1Õ1ã1ï1ü2222,232?2K2T2U2X2a2b2e2n3]3_3a3d3g3j3l3n3p3r3t3w3y3{3}3€3‚3„3‡3Š3Œ3Ž3‘3“3–3™3›3ž3 3¢3¤3¦3¨3ª3¬3¯3±3³3µ3·3º3¼3¾3À3Ã3Å3È3Ê3Ì3Î3Ð3Ó3Ö3Ø3Ú3Ü3ß3á3ã3å3è3ê3ì3ï3ñ3ó3õ3÷3ù3û3ý44444 4 4444444444!4#4&4(4*4,4.404345474:4<4>4A4D4F4H4K4N4Q4S4U4X4[4]4`4b4e4g4i4l4n4q4z5i5l5o5r5u5x5{5~55„5‡5Š555“5–5™5œ5Ÿ5¢5¥5¨5«5®5±5´5·5º5½5À5Ã5Æ5É5Ì5Ï5Ò5Õ5Ø5Û5Þ5á5ä5ç5ê5í5ð5ó5ö5ù5ü5ÿ6666 6666666 6#6&6)6,6/6265686;6>6A6D6G6J6M6P6S6V6Y6\6_6b6e6h6k6n6q6t6w6z6}6€6ƒ6†6‰6Œ66’6•6˜6›6ž6¡6¤6§6ª6­6°6³6¶6¹6¼6¿6Â6Å6È6Ë6Î6Ð6Ó6Ö6Ù6Ü6ß6á6ä6ç6ê6í6ð6ó6õ6ø6ú6ý7777 7 7777777!7$7'7)7,7/7274777:7=7?7B7E7H7K7N7Q7T7V7Y7\7_7b7e7h7k7n7q7t7w7z7}7€7ƒ7†7‰7Œ77‘7”7—7š7œ7Ÿ7¢7¥7¨7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7×7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø7û7þ8888 +--8 8888888 8)8*8,8586898B8C8F8O8TÉ8c ++-ÿ     ) + 7 @ I [ h q | ˆ ’ ™ ¥ º Ã Ê á î ð ò ô       ! . 0 3 6 ; = C P R T V w y { }  ƒ ” – ™ œ Ÿ ¹ » Á Î Ð Ò Ô õ ÷ ù û ý ÿ       & ( > K M O Q r t v { }  ƒ ž ­ º ¼ ¾ À á ã å ç é ë í ó õ ü   02468:<Rdqsuw˜šœž ¢¤¯±¼ÍÏÑÓÕÞëíïñ+?PRTVXuwy{}¶ëø)3ANXj~ˆ”–˜šœž£¥§©«­¯Êåíòûý "?ACEGHJd…‡‰‹‘¦·¹ÂÄÓàæèêø 9Z_acegik²ÃÅÎÐÝßÿ "$%'@acegikprÁÖØÚÜÞëøú+6BDFHIKMNPY[jlnprtvx”°äü:Zq’š¢ªµº¼¾ÃÄÑÓÕ×ëôû'T^jx…¡£¥§©ª¬®ÅÌéëíïñó÷ ++-%24BKTZwy{}€‚›¼¾ÀÂÄÆÈ3@B_aceghj¢¤¦¨ª¬®¶ÃÅâäæèêëí')+-/13ly{„‹š¢­¶½Õã'?LNPRsuwy{}™›¦³µ·¹ÚÜÞàâäæóõ÷ù#%')JLNSUWY[g€‘“´¶¸º¼¾ÀÍáîðòô!.024BP]_ac„†ˆŠŒŽ¥·ÄÆÈÊëíïñóõ÷  #0246WY[]_ackˆ•—™›¼¾ÀÂÄÆÈÍÏÕâäæè   #8EGIKlnprtvx‡”–˜š»½¿ÁÃÅÇËÍÒßáãå ++- !0=?ACdfhjlnpuw}ŠŒŽ±³µ·¹»½Ëàíïñó       ) B O Q S U v x z | ~ € ‚ ‘ § ° ³!!@!B!D!F!H!J!L!N!P!R!U!W!Y!\!^!a!c!e!g!j!l!n!p!r!t!v!x!z!|!~!!ƒ!…!‡!‰!‹!!!‘!”!–!˜!š!!Ÿ!¡!£!¥!¨!«!®!±!´!¶!¹!¼!¿!Â!Å!Ç!É!Ë!Í!Ï!Ñ!Ô!Û!ä!æ!ë!í!ï!ø!ý""""""" "I"W"d"f"h"i"k"l"n"p"r"›"¥"®"°"²"´"¶"¸"º"¼"¾"Ë"Ú"ã"å"ø"ú"ü"þ###### ++-#3#5#7#8#:#;#=#?#A#R#T#V#X#Z#c#m#o#x##ˆ#š#£#¬#®#¯#Á#Ê#Ì#Ñ#Ú#Ü#ñ#ó#õ#ø#ú#ü#þ$$$$$1$3$5$6$8$9$;$=$?$h$j$l$m$o$p$r$t$v$Ÿ$¡$£$¥$§$©$«$­$°$¹$»$Â$Ë$Í$Ú$Ü$ß$á$ã$æ$è%%%%%%%%%%H%J%L%M%O%P%R%T%V%e%n%p%r%›%%Ÿ%¢%¤%¦%¨%ª%­%Â%Ë%Í%à%â%å%è%ë%í%ï%ñ%ô%ö&&!&#&$&&&'&)&+&-&V&X&Z&[&]&^&`&b&d&&&‘&’&”&•&—&™&›&¨&Ñ&Ó&Õ&×&Ù&Û&Ý&à&ã&ô&ö&ù&ü&ÿ'('*','/'1'3'5'8';'d'f'h'k'm'o'q't'w'…'Ž''›'ž'¡'¤'§'ª'Ó'Õ'×'Ú'Ü'Þ'à'ã'æ(((((((( (#(((5(7(:(=(F(H(I(U(f(h(j(m(‚(‹((™(œ)%)'))),).)0)3)5)7):)<)?)A)D)F)H)J)L)O)Q)S)V)X)Z)\)^)`)b)d)f)h)j)m)o)q)s)u)w)y){)})€)‚)„)†)ˆ)Š)Œ)Ž))’)”)—)™)›)) )¢)¤)§)©)«)­)¯)±)³)µ)·)À)Ã*N*P*R*T*V*X*Z*\*^*`*b*e*g*i*k*m*p*r*u*w*y*{*~*€*‚*„*†*ˆ*Š*Œ*Ž**’*•*—*™*›**Ÿ*¡*¤*¦*¨*ª*¬*®*°*²*µ*·*¹*¼*¿*Â*Å*Ç*Ê*Í*Ï*Ò*Õ*Ø*Û*Ý*ß*á*ã*æ*è*ñ*ô++‚+…+ˆ+‹+Ž+‘+”+—+š++ +£+¦+©+¬+¯+²+µ+¸+»+¾+Á+Ä+Ç+Ê+Í+Ð+Ó+Ö+Ù+Ü+ß+â+å+è+ë+î+ñ+ô+÷+ú+ý,,,, , ,,,,,,,!,#,&,),,,/,2,5,7,:,=,@,C,F,I,k,x,,¡,¯,ö- ++--ƒ-š-¦-²-Ä-É-×-ô...2.N.[.v..¢.¶.×.î/;/V/r//­/¿/Ô/ð00"0w0ƒ00®0É0ä0÷11A1b1{1‡1£1µ1È1Ñ1Ý1ò1þ2272C2O2[2n2Ë2ñ333)3235363?3B3C3L3O4444444 4"4$4&4(4*4-4/414345474:4<4>4@4B4D4G4I4K4M4O4Q4S4U4W4Y4\4^4`4b4d4f4h4k4m4o4r4t4v4y4|444ƒ4…4ˆ4‹4Ž4‘4”4–4˜4š44Ÿ4¡4£4¥4§4©4«4­4¯4²4´4¶4¸4º4¼4¾4À4Â4Ä4Æ4È4Ê4Ì4Î4Ð4Ò4Ô4Ö4Ø4Û4Ý4à4â4ä4æ4è4ñ4ô5¹5¼5¿5Â5Å5È5Ë5Î5Ñ5Ô5×5Ú5Ý5à5ã5æ5é5ì5ï5ò5õ5ø5û5þ6666 ++-6 6666666"6%6(6+6.6164676:6=6@6C6F6I6L6O6R6U6X6[6^6a6d6g6j6m6p6s6v6y6|66‚6…6ˆ6‹6Ž6‘6”6—6š66 6£6¦6©6¬6¯6²6µ6¸6»6¾6Á6Ä6Ç6Ê6Í6Ð6Ó6Ö6Ù6Ü6ß6â6ä6ç6ê6í6ð6ó6ö6ù6ü6ÿ7777 ++-7 7777777 7#7&7)7,7/7275787;7>7A7D7G7J7L7O7R7U7X7[7]7`7c7e7h7k7n7q7t7w7z7}7€7‚7…7ˆ7‹7Ž7‘7”7—7™7œ7Ÿ7¢7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7Ø7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø8888 888888'8,18; + \ No newline at end of file +-+ÿ     ) + 7 @ I [ h q | ˆ ’ ™ ¥ º Ã Ê á î ð ò ô       ! . 0 3 6 ; = C P R T V w y { }  ƒ ” – ™ œ Ÿ ¹ » Á Î Ð Ò Ô õ ÷ ù û ý ÿ       & ( > K M O Q r t v { }  ƒ ž ­ º ¼ ¾ À á ã å ç é ë í ó õ ü   02468:<Rdqsuw˜šœž ¢¤¯±¼ÍÏÑÓÕÞëíïñ+?PRTVXuwy{}¶ëø)3ANXj~ˆ”–˜šœž£¥§©«­¯Êåíòûý "?ACEGHJd…‡‰‹‘¦·¹ÂÄÓàæèêø 9Z_acegik²ÃÅÎÐÝßÿ "$%'@acegikprÁÖØÚÜÞëøú+6BDFHIKMNPY[jlnprtvx”°äü:Zq’š¢ªµº¼¾ÃÄÑÓÕ×ëôû'T^jx…¡£¥§©ª¬®ÅÌéëíïñó÷ +-+%24BKTZwy{}€‚›¼¾ÀÂÄÆÈ3@B_aceghj¢¤¦¨ª¬®¶ÃÅâäæèêëí')+-/13ly{„‹š¢­¶½Õã'?LNPRsuwy{}™›¦³µ·¹ÚÜÞàâäæóõ÷ù#%')JLNSUWY[g€‘“´¶¸º¼¾ÀÍáîðòô!.024BP]_ac„†ˆŠŒŽ¥·ÄÆÈÊëíïñóõ÷  #0246WY[]_ackˆ•—™›¼¾ÀÂÄÆÈÍÏÕâäæè   #8EGIKlnprtvx‡”–˜š»½¿ÁÃÅÇËÍÒßáãå +-+ !0=?ACdfhjlnpuw}ŠŒŽ±³µ·¹»½Ëàíïñó       ) B O Q S U v x z | ~ € ‚ ‘ § ° ³!!@!B!D!F!H!J!L!N!P!R!U!W!Y!\!^!a!c!e!g!j!l!n!p!r!t!v!x!z!|!~!!ƒ!…!‡!‰!‹!!!‘!”!–!˜!š!!Ÿ!¡!£!¥!¨!«!®!±!´!¶!¹!¼!¿!Â!Å!Ç!É!Ë!Í!Ï!Ñ!Ô!Û!ä!æ!ë!í!ï!ø!ý""""""" "I"W"d"f"h"i"k"l"n"p"r"›"¥"®"°"²"´"¶"¸"º"¼"¾"Ë"Ú"ã"å"ø"ú"ü"þ###### +-+#3#5#7#8#:#;#=#?#A#R#T#V#X#Z#c#m#o#x##ˆ#š#£#¬#®#¯#Á#Ê#Ì#Ñ#Ú#Ü#ñ#ó#õ#ø#ú#ü#þ$$$$$1$3$5$6$8$9$;$=$?$h$j$l$m$o$p$r$t$v$Ÿ$¡$£$¥$§$©$«$­$°$¹$»$Â$Ë$Í$Ú$Ü$ß$á$ã$æ$è%%%%%%%%%%H%J%L%M%O%P%R%T%V%e%n%p%r%›%%Ÿ%¢%¤%¦%¨%ª%­%Â%Ë%Í%à%â%å%è%ë%í%ï%ñ%ô%ö&&!&#&$&&&'&)&+&-&V&X&Z&[&]&^&`&b&d&&&‘&’&”&•&—&™&›&¨&Ñ&Ó&Õ&×&Ù&Û&Ý&à&ã&ô&ö&ù&ü&ÿ'('*','/'1'3'5'8';'d'f'h'k'm'o'q't'w'…'Ž''›'ž'¡'¤'§'ª'Ó'Õ'×'Ú'Ü'Þ'à'ã'æ(((((((( (#(((5(7(:(=(F(H(I(U(f(h(j(m(‚(‹((™(œ)%)'))),).)0)3)5)7):)<)?)A)D)F)H)J)L)O)Q)S)V)X)Z)\)^)`)b)d)f)h)j)m)o)q)s)u)w)y){)})€)‚)„)†)ˆ)Š)Œ)Ž))’)”)—)™)›)) )¢)¤)§)©)«)­)¯)±)³)µ)·)À)Ã*N*P*R*T*V*X*Z*\*^*`*b*e*g*i*k*m*p*r*u*w*y*{*~*€*‚*„*†*ˆ*Š*Œ*Ž**’*•*—*™*›**Ÿ*¡*¤*¦*¨*ª*¬*®*°*²*µ*·*¹*¼*¿*Â*Å*Ç*Ê*Í*Ï*Ò*Õ*Ø*Û*Ý*ß*á*ã*æ*è*ñ*ô++‚+…+ˆ+‹+Ž+‘+”+—+š++ +£+¦+©+¬+¯+²+µ+¸+»+¾+Á+Ä+Ç+Ê+Í+Ð+Ó+Ö+Ù+Ü+ß+â+å+è+ë+î+ñ+ô+÷+ú+ý,,,, , ,,,,,,,!,#,&,),,,/,2,5,7,:,=,@,C,F,I,k,x,,¡,¯,ö- +-+-ƒ-š-¦-²-Ä-É-×-ô...2.N.[.v..¢.¶.×.î/;/V/r//­/¿/Ô/ð00"0w0ƒ00®0É0ä0÷11A1b1{1‡1£1µ1È1Ñ1Ý1ò1þ2272C2O2[2n2Ë2ñ333)3235363?3B3C3L3O4444444 4"4$4&4(4*4-4/414345474:4<4>4@4B4D4G4I4K4M4O4Q4S4U4W4Y4\4^4`4b4d4f4h4k4m4o4r4t4v4y4|444ƒ4…4ˆ4‹4Ž4‘4”4–4˜4š44Ÿ4¡4£4¥4§4©4«4­4¯4²4´4¶4¸4º4¼4¾4À4Â4Ä4Æ4È4Ê4Ì4Î4Ð4Ò4Ô4Ö4Ø4Û4Ý4à4â4ä4æ4è4ñ4ô5¹5¼5¿5Â5Å5È5Ë5Î5Ñ5Ô5×5Ú5Ý5à5ã5æ5é5ì5ï5ò5õ5ø5û5þ6666 +-+6 6666666"6%6(6+6.6164676:6=6@6C6F6I6L6O6R6U6X6[6^6a6d6g6j6m6p6s6v6y6|66‚6…6ˆ6‹6Ž6‘6”6—6š66 6£6¦6©6¬6¯6²6µ6¸6»6¾6Á6Ä6Ç6Ê6Í6Ð6Ó6Ö6Ù6Ü6ß6â6ä6ç6ê6í6ð6ó6ö6ù6ü6ÿ7777 +-+7 7777777 7#7&7)7,7/7275787;7>7A7D7G7J7L7O7R7U7X7[7]7`7c7e7h7k7n7q7t7w7z7}7€7‚7…7ˆ7‹7Ž7‘7”7—7™7œ7Ÿ7¢7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7Ø7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø8888 888888'8,18; +++ô +++ý       9 ; @ B D F H J V o | ~ € ‚ £ ¥ § © « ­ ¯ ¸ Ñ â ð ò ô ö ø - A S ] k y † “ ª ´ À Ö Ø Ú Ü Þ à â ä æ è í ï ñ ó  ) 1 6 G R d l n p r t } ’ ” – ˜ š œ ž   ¢ ¤ Á Í × à ç é ë í î ñ ó õ0DPZesŒŽ’”–˜Ÿ´ÅÌÕÚÜÞàïøý!-:HJLNPRYo|„‡‰’—¤ª¸º¼ÅÎàíö&-9VXZ\]_ayšœž ¢¤¦ª»ÀÂÄÎÛçé +++  *KMOQSUW\£´¹»½Êêì   -NPRTVXZ_®ÃÅÇÉËØåñó$/13568:<=FUWY[]_aceµÕö+G^‡š¢¤¥§¬±¾ÀÂÄØáêö #P]o{…“Ÿ¡£¥§©ª¬µ¸º¼ÍÏÑÓÕêóú +++!8?\^`bdfj{€‚„‡”¡¯±ºÃÉæèêìíïñ ++++-/1357¢¯±ÎÐÒÔÕ×Ùð%24QSUWXZ\u–˜šœž ¢Ûèê'DJSXkƒŒ“ª»½¿ÁÃàâäæèêì!9FHJLmoqsuwy†ˆ–£¥§©ÊÌÎÐÒÔÖãæéìú<>@BDFHUX[^centvƒ…‡‰ª¬®°²´¶º¼ÅÊÌÙÛÝß +++ $&3579Z\^`bdfu„‘“•—¸º¼¾ÀÂÄÏÑÚåçôöøú!#%',.7=?LNPRsuwy{}†Ž›Ÿ¡ÂÄÆÈÊÌÎÓÕÞäæóõ÷ù!#%')+<?BEHZ\tƒ…‡¨ª¬®°²´¼Ùæèêì .7IKXZ\^ƒ…‡‰‹”–Ÿµ·ÈÊÌÎÐÙÛÝéò    , . 0 2 4 6 8 D [ l n p r t • — ™ › Ÿ ¡ º ¼ Ï à â ä æ è! ! ! !!!!!8!:!R!c!e!g!i!k!!’!”!–!˜!š!¯!À!Â!Ä!Æ!È!é!ë!í!ï!ñ!ó!õ" """8"I"K"M"O"Q"r"t"v"x"z"|"~"‹"Ž"‘"”"®"°"º"Ë"Í"Ï"Ñ"Ó"ô"ö"ø"ú"ü"þ##'#)#?#L#O#Q#S#t#v#y#{#}###Ž#‘#”#—#¤#¸#Å#È#Ê#Í#î#ð#ó#õ#÷#ù#û$$$)$,$.$1$R$T$W$Y$[$]$_$l$€$$$’$•$¶$¸$»$½$¿$Á$Ã$Ò$è$õ$ø$ú$ý%% %#%%%'%)%+%A%S%`%c%e%h%‰%‹%Ž%%’%”%–%±%À%Í%Ð%Ò%Õ%ö%ø%û%ý%ÿ&&&&&&3&6&8&;&\&^&a&c&e&g&i&w&Œ&&Ÿ&¢&¤&§&È&Ê&Í&Ï&Ò&Ô&Ö&÷&ù'''º'¼'¿'Á'Ã'Å'Ç'Ê'Ì'Î'Ð'Ò'Ô'×'Ú'Ý'à'ã'å'è'ê'í'ï'ñ'ó'ö'ø'û'ý'ÿ(((( +++( (((((((((!(#(&(((*(-(0(3(6(9(;(=(@(B(E(G(I(L(O(Q(S(V(X(Z(\(^(`(c(e(g(i(k(m(o(q(t((ˆ(( (¢(¤(¦(©(«(­(¯(²(µ(·(à(í(û(ý(ÿ)))))) )2)4)6)8)9);)=)?)@)i)s)|)~)€)ƒ)…)‡)‰)‹)Ž)›)ª)³)Æ)É)Ì)Ï)Ò)Õ)×)Ú)Ý)à)â* * ********"*'*8*;*>*A*D*M*V*X*a*b*d*v*{*„*‡*‰*‹*´*¶*¸*º*»*½*¿*Á*Â*ë*í*ï*ñ*ò*ô*ö*ø*ù+"+$+&+(+)+++-+/+0+Y+[+]+_+`+b+d+f+g++’+”+–+—+™+›++ž+Ç+É+Ë+Í+Î+Ð+Ò+Ô+Õ+þ,,,,, , , ,,, ,%,',),+,T,W,Y,\,^,`,b,d,g,x,{,~,,„,,¦,¨,«,­,¯,²,µ,¸,º,¼,¾,Á,Ã,Å,î,ð,ò,ô,õ,÷,ù,û,ü-%-'-*---/-1-3-5-8-E-n-q-s-v-x-z-|-~--ª-­-¯-²-´-¶-¸-º-½-Ë-Ô-ß-â-å-è-ë-î-ð....!.#.%.'.).,.1.:.<.E.Z.\.^.a.c.e.g.i.k.n.q.s.œ.Ÿ.¡.¤.¦.¨.ª.¬.¯.¶.¿.Á.Ê.×.Ù.Ü.Þ.à.ã.å.ç//////////-/9/B/G/P/í/ï/ñ/ó/õ/ø/ú/ý/ÿ00000 +++0 0000000000 0"0$0&0(0*0,0.00020406080:0<0>0@0B0E0G0I0L0N0P0S0U0X0Z0\0_0b0d0f0h0j0m0o0r0t0v0x0z0|0~0€0ƒ0…0ˆ0Š0Œ0Ž00’0”0—0 0Õ0Ø0Ú0Ý0ß0á0ã0æ0è0ê0ì0ï0ñ0ô0÷0ù0ü0þ11111 +++1 11111R1U1X1[1^1a1d1g1j1m1p1s1v1y1|11‚1…1ˆ1‹1Ž1‘1”1—1š11 1¥1±1½1É1Õ1ã1ï1ü2222,232?2K2T2U2X2a2b2e2n3]3_3a3d3g3j3l3n3p3r3t3w3y3{3}3€3‚3„3‡3Š3Œ3Ž3‘3“3–3™3›3ž3 3¢3¤3¦3¨3ª3¬3¯3±3³3µ3·3º3¼3¾3À3Ã3Å3È3Ê3Ì3Î3Ð3Ó3Ö3Ø3Ú3Ü3ß3á3ã3å3è3ê3ì3ï3ñ3ó3õ3÷3ù3û3ý44444 4 4444444444!4#4&4(4*4,4.404345474:4<4>4A4D4F4H4K4N4Q4S4U4X4[4]4`4b4e4g4i4l4n4q4z5i5l5o5r5u5x5{5~55„5‡5Š555“5–5™5œ5Ÿ5¢5¥5¨5«5®5±5´5·5º5½5À5Ã5Æ5É5Ì5Ï5Ò5Õ5Ø5Û5Þ5á5ä5ç5ê5í5ð5ó5ö5ù5ü5ÿ6666 6666666 6#6&6)6,6/6265686;6>6A6D6G6J6M6P6S6V6Y6\6_6b6e6h6k6n6q6t6w6z6}6€6ƒ6†6‰6Œ66’6•6˜6›6ž6¡6¤6§6ª6­6°6³6¶6¹6¼6¿6Â6Å6È6Ë6Î6Ð6Ó6Ö6Ù6Ü6ß6á6ä6ç6ê6í6ð6ó6õ6ø6ú6ý7777 7 7777777!7$7'7)7,7/7274777:7=7?7B7E7H7K7N7Q7T7V7Y7\7_7b7e7h7k7n7q7t7w7z7}7€7ƒ7†7‰7Œ77‘7”7—7š7œ7Ÿ7¢7¥7¨7«7®7±7´7·7º7½7À7Ã7Æ7É7Ì7Ï7Ò7Õ7×7Ú7Ý7à7ã7æ7é7ì7ï7ò7õ7ø7û7þ8888 +++8 8888888 8)8*8,8586898B8C8F8O8TÉ8c + \ No newline at end of file +-Only in ./Resources/English.lproj/OSX_RFBViewer.nib: objects.nib +-diff -aurr ./Source/ListenerController.m ../cotvnc-gitso/Source/ListenerController.m +---- ./Source/ListenerController.m 2006-01-17 12:20:14.000000000 -0700 +-+++ ../cotvnc-gitso/Source/ListenerController.m 2008-11-07 22:40:05.000000000 -0700 +-@@ -86,7 +86,8 @@ ++Only in ../cotvnc/Resources/English.lproj/OSX_RFBViewer.nib: objects.nib ++diff -aurr ./Source/ListenerController.m ../cotvnc/Source/ListenerController.m ++--- ./Source/ListenerController.m 2008-11-07 22:40:05.000000000 -0700 +++++ ../cotvnc/Source/ListenerController.m 2006-01-17 12:20:14.000000000 -0700 ++@@ -86,8 +86,7 @@ + if (listeningSocket) { + [self stopListener]; + } +-- [self savePrefs]; +-+ //[self savePrefs]; +-+ ++- //[self savePrefs]; ++- +++ [self savePrefs]; + [super dealloc]; + + [[NSNotificationCenter defaultCenter] removeObserver:self +-@@ -104,7 +105,7 @@ ++@@ -105,7 +104,7 @@ + name:ProfileListChangeMsg + object:(id)[ProfileDataManager sharedInstance]]; + +-- [self updateUI]; +-+ //[self updateUI]; ++- //[self updateUI]; +++ [self updateUI]; + } + + +-@@ -198,7 +199,7 @@ ++@@ -199,7 +198,7 @@ + + [listeningSocket acceptConnectionInBackgroundAndNotify]; + +-- [self updateUI]; +-+ //[self updateUI]; ++- //[self updateUI]; +++ [self updateUI]; + + return YES; + } +-@@ -218,7 +219,7 @@ ++@@ -219,7 +218,7 @@ + [listeningSocket release]; listeningSocket = nil; + [listeningProfile release]; listeningProfile = nil; + +-- [self updateUI]; +-+ //[self updateUI]; ++- //[self updateUI]; +++ [self updateUI]; + } + + +-@@ -286,7 +287,7 @@ ++@@ -287,7 +286,7 @@ + + - (void)updateProfileView:(id)notification + { +-- [self loadProfileIntoView]; +-+ //[self loadProfileIntoView]; ++- //[self loadProfileIntoView]; +++ [self loadProfileIntoView]; + } + + +-diff -aurr ./Source/MyApp.m ../cotvnc-gitso/Source/MyApp.m +---- ./Source/MyApp.m 2005-07-11 05:22:56.000000000 -0600 +-+++ ../cotvnc-gitso/Source/MyApp.m 2008-11-07 21:28:00.000000000 -0700 +-@@ -14,6 +14,7 @@ ++diff -aurr ./Source/MyApp.m ../cotvnc/Source/MyApp.m ++--- ./Source/MyApp.m 2008-11-07 21:28:00.000000000 -0700 +++++ ../cotvnc/Source/MyApp.m 2005-07-11 05:22:56.000000000 -0600 ++@@ -14,7 +14,6 @@ + + @implementation MyApp + +-+ ++- + - (void)sendEvent:(NSEvent *)anEvent + { + /* +-diff -aurr ./Source/RFBConnection.m ../cotvnc-gitso/Source/RFBConnection.m +---- ./Source/RFBConnection.m 2007-03-15 23:24:14.000000000 -0600 +-+++ ../cotvnc-gitso/Source/RFBConnection.m 2008-11-10 21:24:43.000000000 -0700 ++diff -aurr ./Source/RFBConnection.m ../cotvnc/Source/RFBConnection.m ++--- ./Source/RFBConnection.m 2008-11-10 21:24:43.000000000 -0700 +++++ ../cotvnc/Source/RFBConnection.m 2007-03-15 23:24:14.000000000 -0600 + @@ -337,7 +337,7 @@ + [_eventFilter synthesizeRemainingEvents]; + [_eventFilter sendAllPendingQueueEntriesNow]; + +-- if(aReason) { +-+ if(false) { ++- if(false) { +++ if(aReason) { + if ( _autoReconnect ) { + NSLog(@"Automatically reconnecting to server. The connection was closed because: \"%@\".", aReason); + // Just auto-reconnect (by reinstantiating ourselves) +-diff -aurr ./Source/RFBConnectionManager.m ../cotvnc-gitso/Source/RFBConnectionManager.m +---- ./Source/RFBConnectionManager.m 2007-03-15 21:31:56.000000000 -0600 +-+++ ../cotvnc-gitso/Source/RFBConnectionManager.m 2008-11-07 22:42:17.000000000 -0700 +-@@ -21,6 +21,7 @@ ++diff -aurr ./Source/RFBConnectionManager.m ../cotvnc/Source/RFBConnectionManager.m ++--- ./Source/RFBConnectionManager.m 2008-11-07 22:42:17.000000000 -0700 +++++ ../cotvnc/Source/RFBConnectionManager.m 2007-03-15 21:31:56.000000000 -0600 ++@@ -21,7 +21,6 @@ + #import "RFBConnection.h" + #import "PrefController.h" + #import "ProfileManager.h" +-+#import "ListenerController.h" ++-#import "ListenerController.h" + #import "Profile.h" + #import "rfbproto.h" + #import "vncauth.h" +-@@ -36,7 +37,7 @@ ++@@ -37,7 +36,7 @@ + static id sInstance = nil; + if ( ! sInstance ) + { +-- sInstance = [[self alloc] initWithWindowNibName: @"ConnectionDialog"]; +-+ sInstance = [self alloc]; ++- sInstance = [self alloc]; +++ sInstance = [[self alloc] initWithWindowNibName: @"ConnectionDialog"]; + NSParameterAssert( sInstance != nil ); + + [sInstance wakeup]; +-@@ -144,8 +145,23 @@ ++@@ -145,23 +144,8 @@ + for (i = 1; i < argCount; i++) + { + arg = [args objectAtIndex:i]; +-- +-- if ([arg hasPrefix:@"-psn"]) +-+ +-+ if ([arg hasPrefix:@"--listen"]) +-+ { +-+ NSLog(@"Called with --listen."); +-+ +-+ ListenerController* listener = [ListenerController sharedController]; +-+ ProfileManager* pm = [ProfileManager sharedManager]; +-+ +-+ int port = 5500; +-+ profile = [pm profileNamed: @"Called with --listen."]; +-+ BOOL local = false; +-+ +-+ [listener startListenerOnPort:port withProfile:profile localOnly:local]; +-+ +-+ return YES; +-+ } +-+ else if ([arg hasPrefix:@"-psn"]) ++- ++- if ([arg hasPrefix:@"--listen"]) ++- { ++- NSLog(@"Called with --listen."); ++- ++- ListenerController* listener = [ListenerController sharedController]; ++- ProfileManager* pm = [ProfileManager sharedManager]; ++- ++- int port = 5500; ++- profile = [pm profileNamed: @"Called with --listen."]; ++- BOOL local = false; ++- ++- [listener startListenerOnPort:port withProfile:profile localOnly:local]; ++- ++- return YES; ++- } ++- else if ([arg hasPrefix:@"-psn"]) +++ +++ if ([arg hasPrefix:@"-psn"]) + { + // Called from the finder. Do nothing. + continue; +-diff -aurr ./Source/VNCViewer_main.m ../cotvnc-gitso/Source/VNCViewer_main.m +---- ./Source/VNCViewer_main.m 2003-01-17 04:55:52.000000000 -0700 +-+++ ../cotvnc-gitso/Source/VNCViewer_main.m 2008-11-07 21:24:00.000000000 -0700 +-@@ -14,5 +14,6 @@ ++diff -aurr ./Source/VNCViewer_main.m ../cotvnc/Source/VNCViewer_main.m ++--- ./Source/VNCViewer_main.m 2008-11-07 21:24:00.000000000 -0700 +++++ ../cotvnc/Source/VNCViewer_main.m 2003-01-17 04:55:52.000000000 -0700 ++@@ -14,6 +14,5 @@ + [NSAutoreleasePool setPoolCountHighWaterMark: 2000]; + [NSAutoreleasePool setPoolCountHighWaterResolution: 2000]; + #endif +-+ ++- + return NSApplicationMain(argc, argv); + } ++Only in .: cotvnc-gitso.diff diff --git a/arch/osx/cotvnc.app.tar.gz b/arch/osx/cotvnc.app.tar.gz new file mode 100644 index 0000000..5e41ea5 Binary files /dev/null and b/arch/osx/cotvnc.app.tar.gz differ diff --git a/arch/osx/cotvnc_src.tar.gz b/arch/osx/cotvnc_src.tar.gz new file mode 100644 index 0000000..815718d Binary files /dev/null and b/arch/osx/cotvnc_src.tar.gz differ diff --git a/arch/osx/dmg_DS_Store b/arch/osx/dmg_DS_Store new file mode 100644 index 0000000..22e2060 Binary files /dev/null and b/arch/osx/dmg_DS_Store differ diff --git a/arch/osx/dmg_background.png b/arch/osx/dmg_background.png new file mode 100644 index 0000000..8367e05 Binary files /dev/null and b/arch/osx/dmg_background.png differ diff --git a/arch/osx/libjpeg-copyright.txt b/arch/osx/libjpeg-copyright.txt new file mode 100644 index 0000000..86cc206 --- /dev/null +++ b/arch/osx/libjpeg-copyright.txt @@ -0,0 +1,385 @@ +The Independent JPEG Group's JPEG software +========================================== + +README for release 6b of 27-Mar-1998 +==================================== + +This distribution contains the sixth public release of the Independent JPEG +Group's free JPEG software. You are welcome to redistribute this software and +to use it for any purpose, subject to the conditions under LEGAL ISSUES, below. + +Serious users of this software (particularly those incorporating it into +larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to +our electronic mailing list. Mailing list members are notified of updates +and have a chance to participate in technical discussions, etc. + +This software is the work of Tom Lane, Philip Gladstone, Jim Boucher, +Lee Crocker, Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi, +Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG +Group. + +IJG is not affiliated with the official ISO JPEG standards committee. + + +DOCUMENTATION ROADMAP +===================== + +This file contains the following sections: + +OVERVIEW General description of JPEG and the IJG software. +LEGAL ISSUES Copyright, lack of warranty, terms of distribution. +REFERENCES Where to learn more about JPEG. +ARCHIVE LOCATIONS Where to find newer versions of this software. +RELATED SOFTWARE Other stuff you should get. +FILE FORMAT WARS Software *not* to get. +TO DO Plans for future IJG releases. + +Other documentation files in the distribution are: + +User documentation: + install.doc How to configure and install the IJG software. + usage.doc Usage instructions for cjpeg, djpeg, jpegtran, + rdjpgcom, and wrjpgcom. + *.1 Unix-style man pages for programs (same info as usage.doc). + wizard.doc Advanced usage instructions for JPEG wizards only. + change.log Version-to-version change highlights. +Programmer and internal documentation: + libjpeg.doc How to use the JPEG library in your own programs. + example.c Sample code for calling the JPEG library. + structure.doc Overview of the JPEG library's internal structure. + filelist.doc Road map of IJG files. + coderules.doc Coding style rules --- please read if you contribute code. + +Please read at least the files install.doc and usage.doc. Useful information +can also be found in the JPEG FAQ (Frequently Asked Questions) article. See +ARCHIVE LOCATIONS below to find out where to obtain the FAQ article. + +If you want to understand how the JPEG code works, we suggest reading one or +more of the REFERENCES, then looking at the documentation files (in roughly +the order listed) before diving into the code. + + +OVERVIEW +======== + +This package contains C software to implement JPEG image compression and +decompression. JPEG (pronounced "jay-peg") is a standardized compression +method for full-color and gray-scale images. JPEG is intended for compressing +"real-world" scenes; line drawings, cartoons and other non-realistic images +are not its strong suit. JPEG is lossy, meaning that the output image is not +exactly identical to the input image. Hence you must not use JPEG if you +have to have identical output bits. However, on typical photographic images, +very good compression levels can be obtained with no visible change, and +remarkably high compression levels are possible if you can tolerate a +low-quality image. For more details, see the references, or just experiment +with various compression settings. + +This software implements JPEG baseline, extended-sequential, and progressive +compression processes. Provision is made for supporting all variants of these +processes, although some uncommon parameter settings aren't implemented yet. +For legal reasons, we are not distributing code for the arithmetic-coding +variants of JPEG; see LEGAL ISSUES. We have made no provision for supporting +the hierarchical or lossless processes defined in the standard. + +We provide a set of library routines for reading and writing JPEG image files, +plus two sample applications "cjpeg" and "djpeg", which use the library to +perform conversion between JPEG and some other popular image file formats. +The library is intended to be reused in other applications. + +In order to support file conversion and viewing software, we have included +considerable functionality beyond the bare JPEG coding/decoding capability; +for example, the color quantization modules are not strictly part of JPEG +decoding, but they are essential for output to colormapped file formats or +colormapped displays. These extra functions can be compiled out of the +library if not required for a particular application. We have also included +"jpegtran", a utility for lossless transcoding between different JPEG +processes, and "rdjpgcom" and "wrjpgcom", two simple applications for +inserting and extracting textual comments in JFIF files. + +The emphasis in designing this software has been on achieving portability and +flexibility, while also making it fast enough to be useful. In particular, +the software is not intended to be read as a tutorial on JPEG. (See the +REFERENCES section for introductory material.) Rather, it is intended to +be reliable, portable, industrial-strength code. We do not claim to have +achieved that goal in every aspect of the software, but we strive for it. + +We welcome the use of this software as a component of commercial products. +No royalty is required, but we do ask for an acknowledgement in product +documentation, as described under LEGAL ISSUES. + + +LEGAL ISSUES +============ + +In plain English: + +1. We don't promise that this software works. (But if you find any bugs, + please let us know!) +2. You can use this software for whatever you want. You don't have to pay us. +3. You may not pretend that you wrote this software. If you use it in a + program, you must acknowledge somewhere in your documentation that + you've used the IJG code. + +In legalese: + +The authors make NO WARRANTY or representation, either express or implied, +with respect to this software, its quality, accuracy, merchantability, or +fitness for a particular purpose. This software is provided "AS IS", and you, +its user, assume the entire risk as to its quality and accuracy. + +This software is copyright (C) 1991-1998, Thomas G. Lane. +All Rights Reserved except as specified below. + +Permission is hereby granted to use, copy, modify, and distribute this +software (or portions thereof) for any purpose, without fee, subject to these +conditions: +(1) If any part of the source code for this software is distributed, then this +README file must be included, with this copyright and no-warranty notice +unaltered; and any additions, deletions, or changes to the original files +must be clearly indicated in accompanying documentation. +(2) If only executable code is distributed, then the accompanying +documentation must state that "this software is based in part on the work of +the Independent JPEG Group". +(3) Permission for use of this software is granted only if the user accepts +full responsibility for any undesirable consequences; the authors accept +NO LIABILITY for damages of any kind. + +These conditions apply to any software derived from or based on the IJG code, +not just to the unmodified library. If you use our work, you ought to +acknowledge us. + +Permission is NOT granted for the use of any IJG author's name or company name +in advertising or publicity relating to this software or products derived from +it. This software may be referred to only as "the Independent JPEG Group's +software". + +We specifically permit and encourage the use of this software as the basis of +commercial products, provided that all warranty or liability claims are +assumed by the product vendor. + + +ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, +sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. +ansi2knr.c is NOT covered by the above copyright and conditions, but instead +by the usual distribution terms of the Free Software Foundation; principally, +that you must include source code if you redistribute it. (See the file +ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part +of any program generated from the IJG code, this does not limit you more than +the foregoing paragraphs do. + +The Unix configuration script "configure" was produced with GNU Autoconf. +It is copyright by the Free Software Foundation but is freely distributable. +The same holds for its supporting scripts (config.guess, config.sub, +ltconfig, ltmain.sh). Another support script, install-sh, is copyright +by M.I.T. but is also freely distributable. + +It appears that the arithmetic coding option of the JPEG spec is covered by +patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot +legally be used without obtaining one or more licenses. For this reason, +support for arithmetic coding has been removed from the free JPEG software. +(Since arithmetic coding provides only a marginal gain over the unpatented +Huffman mode, it is unlikely that very many implementations will support it.) +So far as we are aware, there are no patent restrictions on the remaining +code. + +The IJG distribution formerly included code to read and write GIF files. +To avoid entanglement with the Unisys LZW patent, GIF reading support has +been removed altogether, and the GIF writer has been simplified to produce +"uncompressed GIFs". This technique does not use the LZW algorithm; the +resulting GIF files are larger than usual, but are readable by all standard +GIF decoders. + +We are required to state that + "The Graphics Interchange Format(c) is the Copyright property of + CompuServe Incorporated. GIF(sm) is a Service Mark property of + CompuServe Incorporated." + + +REFERENCES +========== + +We highly recommend reading one or more of these references before trying to +understand the innards of the JPEG software. + +The best short technical introduction to the JPEG compression algorithm is + Wallace, Gregory K. "The JPEG Still Picture Compression Standard", + Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44. +(Adjacent articles in that issue discuss MPEG motion picture compression, +applications of JPEG, and related topics.) If you don't have the CACM issue +handy, a PostScript file containing a revised version of Wallace's article is +available at ftp://ftp.uu.net/graphics/jpeg/wallace.ps.gz. The file (actually +a preprint for an article that appeared in IEEE Trans. Consumer Electronics) +omits the sample images that appeared in CACM, but it includes corrections +and some added material. Note: the Wallace article is copyright ACM and IEEE, +and it may not be used for commercial purposes. + +A somewhat less technical, more leisurely introduction to JPEG can be found in +"The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by +M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1. This book provides +good explanations and example C code for a multitude of compression methods +including JPEG. It is an excellent source if you are comfortable reading C +code but don't know much about data compression in general. The book's JPEG +sample code is far from industrial-strength, but when you are ready to look +at a full implementation, you've got one here... + +The best full description of JPEG is the textbook "JPEG Still Image Data +Compression Standard" by William B. Pennebaker and Joan L. Mitchell, published +by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1. Price US$59.95, 638 pp. +The book includes the complete text of the ISO JPEG standards (DIS 10918-1 +and draft DIS 10918-2). This is by far the most complete exposition of JPEG +in existence, and we highly recommend it. + +The JPEG standard itself is not available electronically; you must order a +paper copy through ISO or ITU. (Unless you feel a need to own a certified +official copy, we recommend buying the Pennebaker and Mitchell book instead; +it's much cheaper and includes a great deal of useful explanatory material.) +In the USA, copies of the standard may be ordered from ANSI Sales at (212) +642-4900, or from Global Engineering Documents at (800) 854-7179. (ANSI +doesn't take credit card orders, but Global does.) It's not cheap: as of +1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7% +shipping/handling. The standard is divided into two parts, Part 1 being the +actual specification, while Part 2 covers compliance testing methods. Part 1 +is titled "Digital Compression and Coding of Continuous-tone Still Images, +Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS +10918-1, ITU-T T.81. Part 2 is titled "Digital Compression and Coding of +Continuous-tone Still Images, Part 2: Compliance testing" and has document +numbers ISO/IEC IS 10918-2, ITU-T T.83. + +Some extensions to the original JPEG standard are defined in JPEG Part 3, +a newer ISO standard numbered ISO/IEC IS 10918-3 and ITU-T T.84. IJG +currently does not support any Part 3 extensions. + +The JPEG standard does not specify all details of an interchangeable file +format. For the omitted details we follow the "JFIF" conventions, revision +1.02. A copy of the JFIF spec is available from: + Literature Department + C-Cube Microsystems, Inc. + 1778 McCarthy Blvd. + Milpitas, CA 95035 + phone (408) 944-6300, fax (408) 944-6314 +A PostScript version of this document is available by FTP at +ftp://ftp.uu.net/graphics/jpeg/jfif.ps.gz. There is also a plain text +version at ftp://ftp.uu.net/graphics/jpeg/jfif.txt.gz, but it is missing +the figures. + +The TIFF 6.0 file format specification can be obtained by FTP from +ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz. The JPEG incorporation scheme +found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems. +IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6). +Instead, we recommend the JPEG design proposed by TIFF Technical Note #2 +(Compression tag 7). Copies of this Note can be obtained from ftp.sgi.com or +from ftp://ftp.uu.net/graphics/jpeg/. It is expected that the next revision +of the TIFF spec will replace the 6.0 JPEG design with the Note's design. +Although IJG's own code does not support TIFF/JPEG, the free libtiff library +uses our library to implement TIFF/JPEG per the Note. libtiff is available +from ftp://ftp.sgi.com/graphics/tiff/. + + +ARCHIVE LOCATIONS +================= + +The "official" archive site for this software is ftp.uu.net (Internet +address 192.48.96.9). The most recent released version can always be found +there in directory graphics/jpeg. This particular version will be archived +as ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz. If you don't have +direct Internet access, UUNET's archives are also available via UUCP; contact +help@uunet.uu.net for information on retrieving files that way. + +Numerous Internet sites maintain copies of the UUNET files. However, only +ftp.uu.net is guaranteed to have the latest official version. + +You can also obtain this software in DOS-compatible "zip" archive format from +the SimTel archives (ftp://ftp.simtel.net/pub/simtelnet/msdos/graphics/), or +on CompuServe in the Graphics Support forum (GO CIS:GRAPHSUP), library 12 +"JPEG Tools". Again, these versions may sometimes lag behind the ftp.uu.net +release. + +The JPEG FAQ (Frequently Asked Questions) article is a useful source of +general information about JPEG. It is updated constantly and therefore is +not included in this distribution. The FAQ is posted every two weeks to +Usenet newsgroups comp.graphics.misc, news.answers, and other groups. +It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/ +and other news.answers archive sites, including the official news.answers +archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/. +If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu +with body + send usenet/news.answers/jpeg-faq/part1 + send usenet/news.answers/jpeg-faq/part2 + + +RELATED SOFTWARE +================ + +Numerous viewing and image manipulation programs now support JPEG. (Quite a +few of them use this library to do so.) The JPEG FAQ described above lists +some of the more popular free and shareware viewers, and tells where to +obtain them on Internet. + +If you are on a Unix machine, we highly recommend Jef Poskanzer's free +PBMPLUS software, which provides many useful operations on PPM-format image +files. In particular, it can convert PPM images to and from a wide range of +other formats, thus making cjpeg/djpeg considerably more useful. The latest +version is distributed by the NetPBM group, and is available from numerous +sites, notably ftp://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/. +Unfortunately PBMPLUS/NETPBM is not nearly as portable as the IJG software is; +you are likely to have difficulty making it work on any non-Unix machine. + +A different free JPEG implementation, written by the PVRG group at Stanford, +is available from ftp://havefun.stanford.edu/pub/jpeg/. This program +is designed for research and experimentation rather than production use; +it is slower, harder to use, and less portable than the IJG code, but it +is easier to read and modify. Also, the PVRG code supports lossless JPEG, +which we do not. (On the other hand, it doesn't do progressive JPEG.) + + +FILE FORMAT WARS +================ + +Some JPEG programs produce files that are not compatible with our library. +The root of the problem is that the ISO JPEG committee failed to specify a +concrete file format. Some vendors "filled in the blanks" on their own, +creating proprietary formats that no one else could read. (For example, none +of the early commercial JPEG implementations for the Macintosh were able to +exchange compressed files.) + +The file format we have adopted is called JFIF (see REFERENCES). This format +has been agreed to by a number of major commercial JPEG vendors, and it has +become the de facto standard. JFIF is a minimal or "low end" representation. +We recommend the use of TIFF/JPEG (TIFF revision 6.0 as modified by TIFF +Technical Note #2) for "high end" applications that need to record a lot of +additional data about an image. TIFF/JPEG is fairly new and not yet widely +supported, unfortunately. + +The upcoming JPEG Part 3 standard defines a file format called SPIFF. +SPIFF is interoperable with JFIF, in the sense that most JFIF decoders should +be able to read the most common variant of SPIFF. SPIFF has some technical +advantages over JFIF, but its major claim to fame is simply that it is an +official standard rather than an informal one. At this point it is unclear +whether SPIFF will supersede JFIF or whether JFIF will remain the de-facto +standard. IJG intends to support SPIFF once the standard is frozen, but we +have not decided whether it should become our default output format or not. +(In any case, our decoder will remain capable of reading JFIF indefinitely.) + +Various proprietary file formats incorporating JPEG compression also exist. +We have little or no sympathy for the existence of these formats. Indeed, +one of the original reasons for developing this free software was to help +force convergence on common, open format standards for JPEG files. Don't +use a proprietary file format! + + +TO DO +===== + +The major thrust for v7 will probably be improvement of visual quality. +The current method for scaling the quantization tables is known not to be +very good at low Q values. We also intend to investigate block boundary +smoothing, "poor man's variable quantization", and other means of improving +quality-vs-file-size performance without sacrificing compatibility. + +In future versions, we are considering supporting some of the upcoming JPEG +Part 3 extensions --- principally, variable quantization and the SPIFF file +format. + +As always, speeding things up is of great interest. + +Please send bug reports, offers of help, etc. to jpeg-info@uunet.uu.net. diff --git a/arch/osx/osxnvc_echoware-copyright.txt b/arch/osx/osxnvc_echoware-copyright.txt new file mode 100644 index 0000000..2bd8584 --- /dev/null +++ b/arch/osx/osxnvc_echoware-copyright.txt @@ -0,0 +1,78 @@ + + EchoWare OSX Bundle Version 1.926 + Released: 9 August 2007 + =============================== + +INTRODUCTION +------------ +EchoWare is an OSX bundle that enables both client-server as +well as peer-to-peer applications to communicate with each other +via a "relay server" (aka, an "echoServer"). All communication +between echoWare and the echoserver appears to be outgoing TCP +from the point of view of the OSX network. This allows the +echoWare-enabled applications to communicate with each other +without either side of the connection needing to set or adjust +any firewall or router's port-forwarding settings. + +EchoWare is utilized in both the Kaboodle "Network Manager +and Personal VPN application", as well as in EchoVNC, a +firewall-friendly VNC Server and Viewer. For more details on +these projects, please visit our website at: + + http://www.echogent.com/ + +EchoWare includes software developed by the OpenSSL Project +for use in the OpenSSL Toolkit. (http://www.openssl.org/) + +LICENSE +------- +EchoWare is Copyright (C) 2004-2007 Echogent Systems, Inc. +All rights reserved. + +EchoWare is available for use under the open-source "Sleepycat" +license. Details can be found in the LICENSE file. In general, +the Sleepycat license allows the binary to be freely included in +any other open-source application. Any application wishing to +remain closed-source must purcahse a seperate license from +Echogent Systems, Inc, the owner of EchoWare. + +EchoWare(R) is a registered trademark of Echogent Systems, Inc. + +SOURCE +------ +The accompanying source code has been built and compiled using +XCode 2.4.1 for Mac OSX with GCC 4 as the base compiler. + +CHANGELIST +---------- +1.92 11-Nov-07 Initial OSX release +1.926 26-Jul-07 Added support for login character filtering + +ENCRYPTION +---------- +EchoWare's 128-bit AES encryption is enabled by the +OpenSSL source-code. It is covered by the following +Copyrights: + + Copyright (c) 1998-2004 The OpenSSL Project + Copyright (c) 1995-1998 Eric A. Young, Tim J. Hudson + +Please see openssl.org for information about their +license and to contribute to their great efforts. + +TECH SUPPORT +------------ +Support for our Service Provider customers is available 24/7, +via phone or email. + +Mailing list support is available for all users; you can find +those details on the EchoVNC homepage: + + http://echovnc.sourceforge.net/fom-serve/cache/1.html + +When asking a tech-support question, be sure to include as much +information about your computer and network as possible. + +Thanks for using EchoWare! + +REV20070726SB diff --git a/arch/osx/osxvnc-copyright.txt b/arch/osx/osxvnc-copyright.txt new file mode 100644 index 0000000..56b1c46 --- /dev/null +++ b/arch/osx/osxvnc-copyright.txt @@ -0,0 +1,394 @@ +Copyright © 2002-2007 Redstone Software + Jonathan Gillaspie + Doug Simons + +Special Thanks For Vine Server manual: + Pamela Gillaspie + +Special Thanks for corrections to allow multiple clients with the Tight protocol: + Solletica + +Special Thanks For Server Side Scaling: + Noriaki Yamazaki + Administrator of micro-VNC + Hitachi System & Service, Ltd. + +Special Thanks For Reverse Connections: + Mark Lentczner + +Zlib, ZlibHex and Tight encodings: + Mahmud Haque + +Other Contributions: + David Johnson + Steven Tamm + Mihai Parparita + Marvin Simkin + +French Localization: + Pascal Frey + +Japanese Localization: + Hiroshi Saito + +Italian Localization: + Claudio and Creative Shield + http://shieldnet.tk/ + +German Localizatoin: + Jšrg Mehring + +---------------------------------------------------- + +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 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 General Public License for more details. + +You should have received a copy of the GNU General Public License along with this program; if not, write to: + +Free Software Foundation, Inc. +59 Temple Place - Suite 330 +Boston, MA 02111-1307 +USA + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place - Suite 330, Boston, MA + 02111-1307, USA. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + 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 +this service 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. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + END OF TERMS AND CONDITIONS + + Appendix: 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 +convey 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) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/arch/osx/setup.py b/arch/osx/setup.py new file mode 100644 index 0000000..70beee2 --- /dev/null +++ b/arch/osx/setup.py @@ -0,0 +1,20 @@ +""" +This is a setup.py script generated by py2applet + +Usage: + python setup.py py2app +""" + +from setuptools import setup + +APP = ['Gitso.py'] +DATA_FILES = [] +OPTIONS = {'argv_emulation': True, +'site_packages': True} + +setup( + app=APP, + data_files=DATA_FILES, + options={'py2app': OPTIONS}, + setup_requires=['py2app'], +) diff --git a/arch/win32/VNCHooks.dll b/arch/win32/VNCHooks.dll new file mode 100644 index 0000000..726ba40 Binary files /dev/null and b/arch/win32/VNCHooks.dll differ diff --git a/arch/win32/VNCHooks_COPYING.txt b/arch/win32/VNCHooks_COPYING.txt new file mode 100644 index 0000000..b21304d --- /dev/null +++ b/arch/win32/VNCHooks_COPYING.txt @@ -0,0 +1,21 @@ +Company : TightVNC Group +Product Version: 1, 3, 9, 0 +Part Number: 0 + +Original Filename: VNCHooks.dll +Internal Filename: VNCHooks + +Product Major Part: 1 +Product Minor Part: 3 +Product Build Part: 9 + +File Major Part: 1 +File Minor Part: 3 +File Build Part: 9 + +Key: 1, 3, 9, 0 +Language: English (United States) + +Based on VNC by AT&T Research Labs Cambridge, RealVNC Ltd. + +Copyright (C) 2000-2007 TightVNC Group diff --git a/arch/win32/WinVNC.exe b/arch/win32/WinVNC.exe new file mode 100644 index 0000000..e714ac5 Binary files /dev/null and b/arch/win32/WinVNC.exe differ diff --git a/arch/win32/msvcr71_README.txt b/arch/win32/msvcr71_README.txt new file mode 100644 index 0000000..369d83f --- /dev/null +++ b/arch/win32/msvcr71_README.txt @@ -0,0 +1,18 @@ +Licensees of Python are permitted +to redistribute mscvr71.dll, as long as they redistribute it in order +to support pythonxy.dll. The EULA says + +# You also agree not to permit further distribution of the +# Redistributables by your end users except you may permit further +# redistribution of the Redistributables by your distributors to your +# end-user customers if your distributors only distribute the +# Redistributables in conjunction with, and as part of, the Licensee +# Software, you comply with all other terms of this EULA, and your +# distributors comply with all restrictions of this EULA that are +# applicable to you. + +In this text, "you" is the licensee of VS 2003 (i.e. me, redistributing +msvcr71.dll as part of Python 2.5), and the "Redistributable" is +msvcr71.dll. The "Licensee Software" is "a software application product +developed by you that adds significant and primary functionality to the +Redistributables", i.e. python25.dll. diff --git a/arch/win32/setup.py b/arch/win32/setup.py new file mode 100644 index 0000000..ed6cf79 --- /dev/null +++ b/arch/win32/setup.py @@ -0,0 +1,20 @@ +import glob +from distutils.core import setup +import py2exe +DATA_FILES = [] +OPTIONS = {'argv_emulation': True} + +setup( + version = "0.6.0", + description = "Gitso is to support Others", + name="Gitso", + + windows=[{"script":"Gitso.py", "icon_resources":[(1,"icon.ico")]}], + data_files=[(".", ["icon.ico"])], + py_modules = ['AboutWindow', 'ConnectionWindow', 'ArgsParser', 'GitsoThread', 'Processes', 'NATPMP'], + options = { + "py2exe": { + "dll_excludes": ["MSVCP90.dll"] + } + }, +) diff --git a/arch/win32/tightVNC_COPYING.txt b/arch/win32/tightVNC_COPYING.txt new file mode 100644 index 0000000..2aeb20c --- /dev/null +++ b/arch/win32/tightVNC_COPYING.txt @@ -0,0 +1,26 @@ +// Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved. +// +// This file is part of the VNC system. +// +// The VNC system is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 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 General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, +// USA. +// +// TightVNC distribution homepage on the Web: http://www.tightvnc.com/ +// +// If the source code for the VNC system is not available from the place +// whence you received this file, check http://www.uk.research.att.com/vnc or +// contact the authors on vnc@uk.research.att.com for information on obtaining it. +// + diff --git a/arch/win32/tightVNC_LICENCE.txt b/arch/win32/tightVNC_LICENCE.txt new file mode 100644 index 0000000..ae3b531 --- /dev/null +++ b/arch/win32/tightVNC_LICENCE.txt @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + 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 +this service 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. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + END OF TERMS AND CONDITIONS + + Appendix: 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 +convey 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) 19yy + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, + USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) 19yy name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/arch/win32/tightVNC_README.txt b/arch/win32/tightVNC_README.txt new file mode 100644 index 0000000..cb06831 --- /dev/null +++ b/arch/win32/tightVNC_README.txt @@ -0,0 +1,98 @@ + + TightVNC version 1.3.10 + Source distribution for Windows platforms + +====================================================================== + +This distribution is based on the standard VNC source and includes new +TightVNC-specific features and fixes, such as additional low-bandwidth +optimizations, major GUI improvements, file transfers, and more. + + Copyright (C) 1999 AT&T Laboratories Cambridge. + Copyright (C) 2000 Tridia Corp. + Copyright (C) 2002-2003 RealVNC Ltd. + Copyright (C) 2001-2004 HorizonLive.com, Inc. + Copyright (C) 2000-2006 Constantin Kaplinsky. + Copyright (C) 2000-2009 TightVNC Group + All rights reserved. + +This software is distributed under the GNU General Public Licence as +published by the Free Software Foundation. See the file LICENCE.TXT for +the conditions under which this software is made available. TightVNC also +contains code from other sources. See the Acknowledgements section below, +and the individual files for details of the conditions under which they +are made available. + +There are two programs here in the two subdirectories: + + vncviewer - this is the VNC viewer, or client, program for Win32. + + winvnc - this is the VNC server for Win32. It allows an NT desktop + to be accessed remotely using a VNC viewer. + +The executables can be built using Microsoft Visual C++ 6.0. +See BUILDING.txt files for more details on compilation. + + +ACKNOWLEDGEMENTS +================ + +This distribution contains public domain DES software by Richard Outerbridge. +This is: + + Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge. + (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992. + + +This distribution contains Java DES software by Dave Zimmerman + and Jef Poskanzer . This is: + + Copyright (c) 1996 Widget Workshop, Inc. All Rights Reserved. + + Permission to use, copy, modify, and distribute this software and its + documentation for NON-COMMERCIAL or COMMERCIAL purposes and without fee + is hereby granted, provided that this copyright notice is kept intact. + + WIDGET WORKSHOP MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE + SUITABILITY OF THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT + NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A + PARTICULAR PURPOSE, OR NON-INFRINGEMENT. WIDGET WORKSHOP SHALL NOT BE + LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, + MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES. + + THIS SOFTWARE IS NOT DESIGNED OR INTENDED FOR USE OR RESALE AS ON-LINE + CONTROL EQUIPMENT IN HAZARDOUS ENVIRONMENTS REQUIRING FAIL-SAFE + PERFORMANCE, SUCH AS IN THE OPERATION OF NUCLEAR FACILITIES, AIRCRAFT + NAVIGATION OR COMMUNICATION SYSTEMS, AIR TRAFFIC CONTROL, DIRECT LIFE + SUPPORT MACHINES, OR WEAPONS SYSTEMS, IN WHICH THE FAILURE OF THE + SOFTWARE COULD LEAD DIRECTLY TO DEATH, PERSONAL INJURY, OR SEVERE + PHYSICAL OR ENVIRONMENTAL DAMAGE ("HIGH RISK ACTIVITIES"). WIDGET + WORKSHOP SPECIFICALLY DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY OF + FITNESS FOR HIGH RISK ACTIVITIES. + + Copyright (C) 1996 by Jef Poskanzer . All rights + reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions + are met: + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND + ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR + PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS + BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR + OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF + ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Visit the ACME Labs Java page for up-to-date versions of this and other + fine Java utilities: http://www.acme.com/java/ diff --git a/arch/win32/vncviewer.exe b/arch/win32/vncviewer.exe new file mode 100644 index 0000000..5387326 Binary files /dev/null and b/arch/win32/vncviewer.exe differ diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..765c44c --- /dev/null +++ b/debian/changelog @@ -0,0 +1,59 @@ +gitso (0.6.2) precise; urgency=low + + * Cleaned up .deb creation. + * Remove CHANGELOG.txt. + * Make gitso executable. + * Added homepage to .deb control file. + * Changed vncviewer dependency to xtightvncviewer. + * Fix package name in linux changelog. + * Added 8 bit color compression. + + -- Markus Roth Thu, 27 Sep 2012 03:06:54 +0200 + +gitso (0.6) karmic; urgency=low + + * Complete rewrite of process management. + * Actually stop VNC Processes (Windows) + * Support loading remote hosts file. + * Command line switches + * --dev + * --listen + * --connect IP + * --list list_file + * --version + * --help + * manpage for (All UNIX sytems) + * Support for .rpms (Fedora, OpenSUSE) + * Implement Native VNC listener (OS X) + * Better process management, user gets notified if connection is broken. + * Licensing Updates (across the board). + * Improved documentation. + + -- Aaron D. Gerber Sun, 21 Feb 2010 17:32:40 -0600 + +gitso (0.5) hardy; urgency=low + + * Complete rewrite of the interface + * Gitso no longer has Zombied VNC processes after it quits. + * Gitso stops the VNC process when it closes + * Updated Icon + * Updated License: GPL 3 + * Added Support to be able to specify a list of hosts when you distribute it. + * Added History/Clear History of servers + * Added OS X 10.5 Support (need testing on 10.4 and 10.3) + * OS X uses TightVNC 1.3.9 + * OS X uses OSXVNC 3.0 + + -- Aaron D. Gerber Sat, 26 Jul 2008 16:32:40 -0600 + +gitso (0.4) hardy; urgency=low + + * Made Deb, updated with icons and much more. + + -- Aaron D. Gerber Sat, 10 May 2008 16:17:43 -0600 + +gitso (0.3) UNRELEASED; urgency=low + + * Initial release. (Closes: #XXXXXX) + + -- Aaron D. Gerber Thu, 08 May 2008 22:35:52 -0600 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..a4b25db --- /dev/null +++ b/debian/control @@ -0,0 +1,18 @@ +Source: gitso +Section: utils +Priority: optional +Maintainer: Markus Roth +Build-Depends: debhelper (>= 8.0.0) +Standards-Version: 3.9.2 +Homepage: http://code.google.com/p/gitso/ +Vcs-Svn: http://gitso.googlecode.com/svn/gitso/trunk +Vcs-Browser: http://code.google.com/p/gitso/source/browse/gitso + +Package: gitso +Architecture: all +Depends: x11vnc, xtightvncviewer, python-wxtools +Description: gitso is to support others (using wxPython and reverse vnc) + gitso is a Python and wxWidgets frontend to x11vnc server + and vncviewer. It runs x11vnc -connect and + vncviewer -listen depending on if you are giving + or receiving help. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..ffd2181 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,29 @@ +Format: http://dep.debian.net/deps/dep5 +Upstream-Name: gitso +Source: http://code.google.com/p/gitso/ + +Files: * +Copyright: 2008 - 2010: Aaron Gerber + 2008 - 2010: Derek Buranen +License: GPL-3.0+ + +Files: debian/* +Copyright: 2012 Markus Roth +License: GPL-3.0+ + +License: GPL-3.0+ + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + . + This package 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 General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/gitso.install b/debian/gitso.install new file mode 100644 index 0000000..30257ca --- /dev/null +++ b/debian/gitso.install @@ -0,0 +1,14 @@ +arch/linux/gitso usr/bin +Gitso.py usr/share/gitso +ConnectionWindow.py usr/share/gitso +AboutWindow.py usr/share/gitso +GitsoThread.py usr/share/gitso +Processes.py usr/share/gitso +ArgsParser.py usr/share/gitso +__init__.py usr/share/gitso +NATPMP.py usr/share/gitso +hosts.txt usr/share/gitso +icon.ico usr/share/gitso +icon.png usr/share/gitso +arch/linux/gitso.desktop usr/share/applications +arch/linux/README.txt usr/share/doc/gitso diff --git a/debian/gitso.manpages b/debian/gitso.manpages new file mode 100644 index 0000000..2e112ff --- /dev/null +++ b/debian/gitso.manpages @@ -0,0 +1 @@ +arch/linux/gitso.1 diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..b760bee --- /dev/null +++ b/debian/rules @@ -0,0 +1,13 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ diff --git a/dist.zip b/dist.zip new file mode 100644 index 0000000..d0cac41 Binary files /dev/null and b/dist.zip differ diff --git a/hosts.txt b/hosts.txt new file mode 100644 index 0000000..e69de29 diff --git a/icon.ico b/icon.ico new file mode 100644 index 0000000..f3b5201 Binary files /dev/null and b/icon.ico differ diff --git a/icon.png b/icon.png new file mode 100644 index 0000000..a40dcd6 Binary files /dev/null and b/icon.png differ diff --git a/icon_large.ico b/icon_large.ico new file mode 100644 index 0000000..b7889d8 Binary files /dev/null and b/icon_large.ico differ diff --git a/makegitso.bat b/makegitso.bat new file mode 100644 index 0000000..1f1d1ef --- /dev/null +++ b/makegitso.bat @@ -0,0 +1,25 @@ +:: +:: Gisto - Gitso is to support others +:: +:: Copyright 2008, Aaron Gerber and Derek Buranen +:: +:: Gitso is free software: you can redistribute it and/or modify +:: it under the terms of the GNU General Public License as published by +:: the Free Software Foundation, either version 3 of the License, or +:: (at your option) any later version. +:: +:: Gitso 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 General Public License for more details. +:: +:: You should have received a copy of the GNU General Public License +:: along with Gitso. If not, see . +:: + +"C:\Python27\python" arch\win32\setup.py py2exe + +COPY "C:\Python27\Lib\site-packages\wx-2.8-msw-unicode\wx\msvcp71.dll" dist\msvcp71.dll + +:: "%ProgramFiles%\NSIS\makensis.exe" /X"SetCompressor /FINAL /SOLID lzma " makegitso.nsi +:: rd build /s /q diff --git a/makegitso.nsi b/makegitso.nsi new file mode 100644 index 0000000..890bb35 --- /dev/null +++ b/makegitso.nsi @@ -0,0 +1,131 @@ +; makegitso.nsi +; ---------------- +; Package Gitso for Windows using NSIS +; +; Copyright 2008 - 2010: Aaron Gerber and Derek Buranen +; +; Gitso is free software: you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation, either version 3 of the License, or +; (at your option) any later version. +; +; Gitso 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 General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with Gitso. If not, see . +;-------------------------------- + +!define VERSION "0.6" +Name "Gitso ${VERSION}" +Icon "./icon.ico" +UninstallIcon "./icon.ico" +OutFile "gitso-install.exe" + +; The default installation directory +InstallDir $PROGRAMFILES\Gitso +; Registry key to check for directory (so if you install again, it will overwrite the old one automatically) +InstallDirRegKey HKLM "Software\Gitso" "Install_Dir" + +;-------------------------------- +; Version Information + VIProductVersion "0.6.0.0" + VIAddVersionKey "ProductName" "Gitso" + VIAddVersionKey "Comments" "Gitso is to support others" + VIAddVersionKey "CompanyName" "http://code.google.com/p/gitso" + VIAddVersionKey "LegalCopyright" "GPL 3" + VIAddVersionKey "FileDescription" "Gitso" + VIAddVersionKey "FileVersion" "${VERSION}" +;-------------------------------- + +;-------------------------------- +; Pages +Page components +Page directory +Page instfiles + +UninstPage uninstConfirm +UninstPage instfiles +;-------------------------------- + +Section "Gitso" + SectionIn RO + SetOutPath $INSTDIR + ; Write the installation path into the registry + ; Write the uninstall keys for Windows + WriteRegStr HKLM SOFTWARE\Gitso "Install_Dir" "$INSTDIR" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" "DisplayName" "Gitso" + WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" "UninstallString" '"$INSTDIR\uninstall.exe"' + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" "NoModify" 1 + WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" "NoRepair" 1 + WriteUninstaller "uninstall.exe" + File ".\hosts.txt" + File ".\icon.ico" + File ".\icon.png" + File ".\COPYING" + File ".\dist\Gitso.exe" + File ".\dist\icon.ico" + File ".\dist\library.zip" + File ".\dist\msvcp71.dll" + File ".\dist\MSVCR71.dll" + File ".\dist\python25.dll" + File ".\dist\pywintypes25.dll" + File ".\dist\bz2.pyd" + File ".\dist\win32api.pyd" + File ".\dist\_ssl.pyd" + File ".\dist\_socket.pyd" + File ".\dist\select.pyd" + File ".\dist\unicodedata.pyd" + File ".\dist\w9xpopen.exe" + File ".\dist\wx._controls_.pyd" + File ".\dist\wx._core_.pyd" + File ".\dist\wx._gdi_.pyd" + File ".\dist\wx._misc_.pyd" + File ".\dist\wx._windows_.pyd" + File ".\dist\wxbase28uh_net_vc.dll" + File ".\dist\wxbase28uh_vc.dll" + File ".\dist\wxmsw28uh_adv_vc.dll" + File ".\dist\wxmsw28uh_core_vc.dll" + File ".\dist\wxmsw28uh_html_vc.dll" + File ".\arch\win32\tightVNC_LICENCE.txt" + File ".\arch\win32\tightVNC_COPYING.txt" + File ".\arch\win32\tightVNC_README.txt" + File ".\arch\win32\VNCHooks_COPYING.txt" + File ".\arch\win32\msvcr71_README.txt" + ;start menu items + CreateDirectory "$SMPROGRAMS\Gitso" + CreateShortCut "$SMPROGRAMS\Gitso\Gitso.lnk" "$INSTDIR\Gitso.exe" "" "$INSTDIR\icon.ico" 0 + File ".\arch\win32\vncviewer.exe" + File ".\arch\win32\WinVNC.exe" + File ".\arch\win32\VNCHooks.dll" + + ;Registry tweaks to TightVNC's server + WriteRegDWORD HKCU "Software\ORL\WinVNC3" "RemoveWallpaper" 1 + WriteRegDWORD HKCU "Software\ORL\WinVNC3" "EnableFileTransfers" 1 + ;set default password to something so WinVNC.exe doesn't complain about having no password + WriteRegBin HKCU "SOFTWARE\ORL\WinVNC3" "Password" "238f16962aeb734e" + WriteRegBin HKCU "SOFTWARE\ORL\WinVNC3" "PasswordViewOnly" "238f16962aeb734e" + ;Try to set it for all users, but I'm not positive this works + WriteRegDWORD HKLM "Software\ORL\WinVNC3" "RemoveWallpaper" 1 + WriteRegDWORD HKLM "Software\ORL\WinVNC3" "EnableFileTransfers" 1 + WriteRegBin HKLM "SOFTWARE\ORL\WinVNC3" "Password" "238f16962aeb734e" + WriteRegBin HKLM "SOFTWARE\ORL\WinVNC3" "PasswordViewOnly" "b0f0ac1997133bc9" +SectionEnd + + +; Uninstall +;------------------------------------------------------ +Section "Uninstall" + ; Remove registry keys + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" + DeleteRegKey HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Gitso" + ; Remove files and uninstaller + Delete $INSTDIR\vncviewer.exe + Delete $INSTDIR\VNCHooks.dll + Delete $INSTDIR\WinVNC.exe + ; Remove shortcuts and folder + RMDir /r "$SMPROGRAMS\Gitso" + RMDir /r $INSTDIR +SectionEnd diff --git a/makegitso.sh b/makegitso.sh new file mode 100644 index 0000000..273e1fc --- /dev/null +++ b/makegitso.sh @@ -0,0 +1,364 @@ +#! /bin/bash + +########## +# Gisto - Gitso is to support others +# +# Copyright 2008 - 2010: Aaron Gerber, Derek Buranen +# +# Gitso is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Gitso 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Gitso. If not, see . +########## + + +## +# Helper methods +############################ + + +# +# Creates the source package, works on all UNIX/LINUX based platforms +# +function mksrc { + P=`pwd` + TMP_PKG="../pkg" + + # Clean up first. + find . -name "*~" -exec rm {} ';' + + rm -rf $OSX_BUILD_DIR + rm -rf $RPM_BUILD_DIR + rm -rf $DEB_TARGZ_PATH + rm -rf $P/*.bz2 + rm -rf $P/*.tar + rm -rf $P/*.gz + rm -rf $P/*.app + rm -rf $P/*.dmg + rm -rf $P/*.deb + rm -rf $P/*.rpm + rm -rf $P/*.exe + rm -rf $TMP_PKG + + # Create the SRC file + mkdir -p $TMP_PKG/trunk/ + cp -r ./ $TMP_PKG/trunk/ + find $TMP_PKG/trunk -name ".svn" -exec rm -rf {} 2>&1 > /dev/null ';' 2>&1 > /dev/null + mv $TMP_PKG/trunk $TMP_PKG/gitso-0.6.2 + tar -cj -C $TMP_PKG/ gitso-0.6.2 > $P/$SRC + rm -rf $TMP_PKG +} + + +# +# Create the .app folder for snow leopard, it uses a different version of pythong +# And because py2app needs to know there, we just use different config files. +# +function snowLeopardDMG { + # Grab the default option and then reset it at the end. + #defaults write com.apple.versioner.python Prefer-32-Bit -bool yes + echo -e "Creating Gitso.app " + rm -f setup.py + rm -rf $OSX_BUILD_DIR + + echo -e ".." + + python arch/osx/setup.py py2app + + echo -e ".." + cp arch/osx/Info_OSX-10.6.plist $OSX_BUILD_DIR/Gitso.app/Contents/Info.plist + + cp COPYING $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp PythonApplet.icns $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + tar xvfz arch/osx/OSXvnc.tar.gz + mv OSXvnc $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + tar xvfz arch/osx/cotvnc.app.tar.gz + mv cotvnc.app $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + cp icon.ico $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp icon.png $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp __init__.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp ArgsParser.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp Processes.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp ConnectionWindow.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp AboutWindow.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp GitsoThread.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp NATPMP.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + cp arch/osx/libjpeg-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Frameworks/ + cp arch/osx/osxnvc_echoware-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/OSXvnc/ + cp arch/osx/cotvnc-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/cotvnc.app/contents/Resources + cp arch/osx/osxvnc-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/OSXvnc/ + + echo -e " [done]\n" + + echo -e "Creating $DMG_OSX_106" + rm -f $DMG_OSX_106 + + mkdir $OSX_BUILD_DIR/Gitso + cp arch/osx/dmg_DS_Store $OSX_BUILD_DIR/Gitso/.DS_Store + ln -s /Applications/ $OSX_BUILD_DIR/Gitso/Applications + + mv "$OSX_BUILD_DIR/Gitso.app" "$OSX_BUILD_DIR/Gitso/" + cp -r arch/osx/Readme.rtfd $OSX_BUILD_DIR/Gitso/Readme.rtfd + + echo -e "..." + hdiutil create -srcfolder $OSX_BUILD_DIR/Gitso/ $DMG_OSX_106 + echo -e "... [done]\n" +} + + +# +# Create the .app folder for Leopard, it uses a different version of pythong +# And because py2app needs to know there, we just use different config files. +# +function LeopardDMG { + echo -e "Creating Gitso.app " + rm -f setup.py + rm -rf $OSX_BUILD_DIR + + echo -e ".." + + python arch/osx/setup.py py2app + + echo -e ".." + cp arch/osx/Info_OSX-10.5.plist $OSX_BUILD_DIR/Gitso.app/Contents/Info.plist + + cp COPYING $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp PythonApplet.icns $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + tar xvfz arch/osx/OSXvnc.tar.gz + mv OSXvnc $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + tar xvfz arch/osx/cotvnc.app.tar.gz + mv cotvnc.app $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + cp icon.ico $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp icon.png $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp __init__.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp ArgsParser.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp Processes.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp ConnectionWindow.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp AboutWindow.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp GitsoThread.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + cp NATPMP.py $OSX_BUILD_DIR/Gitso.app/Contents/Resources/ + + cp arch/osx/libjpeg-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Frameworks/ + cp arch/osx/osxnvc_echoware-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/OSXvnc/ + cp arch/osx/cotvnc-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/cotvnc.app/contents/Resources + cp arch/osx/osxvnc-copyright.txt $OSX_BUILD_DIR/Gitso.app/Contents/Resources/OSXvnc/ + + echo -e " [done]\n" + + echo -e "Creating $DMG_OSX_105" + rm -f $DMG_OSX_105 + + mkdir $OSX_BUILD_DIR/Gitso + cp arch/osx/dmg_DS_Store $OSX_BUILD_DIR/Gitso/.DS_Store + ln -s /Applications/ $OSX_BUILD_DIR/Gitso/Applications + + mv "$OSX_BUILD_DIR/Gitso.app" "$OSX_BUILD_DIR/Gitso/" + cp -r arch/osx/Readme.rtfd $OSX_BUILD_DIR/Gitso/Readme.rtfd + + echo -e "..." + hdiutil create -srcfolder $OSX_BUILD_DIR/Gitso/ $DMG_OSX_105 + echo -e "... [done]\n" +} + + +# +# Displays the help menu +# +function helpMenu { + echo -e "Usage makegitso.sh: [ BUILD OPTIONS ] [ OPTIONS ]" + echo -e "\tBUILD OPTIONS" + echo -e "\t--fedora\tMake package for Fedora. (only avaible on Fedora)" + echo -e "\t--opensuse\tMake package for OpenSUSE. (only avaible on OpenSUSE)" + + # Cent OS doesn't have wxWidget in it's repo.... + #echo -e "\t--centos\tMake package for CentOS. (only avaible on CentOS)" + + echo -e "\t--source\tMake the source package. (All UNIX/Linux systems)\n" + echo -e "\tOPTIONS:" + echo -e "\t--no-clean\tDo not remove the build directory." + echo -e "\t--help \tThese options." + exit 0 + +} + + +## +# Initialize values +############################ +DMG_OSX_106="Gitso_0.6.2_mac_SnowLeopard.dmg" +DMG_OSX_105="Gitso_0.6.2_mac_Leopard.dmg" +DEB="../gitso_0.6.2_all.deb" +TARGZ="../gitso_0.6.2_all.tar.gz" +SRC="gitso_0.6.2_src.tar.bz2" +RPM="gitso-0.6.2-1.i586.rpm" +RPMOUT="" + +OSX_BUILD_DIR=`pwd`"/dist" +RPM_BUILD_DIR=`pwd`"/build" +DEB_BUILD_DIR="debian/gitso" +DEB_TARGZ_PATH="gitso" + +CLEAN="yes" +RPMNAME="" +USESRC="no" + + +## +# Get Comman line arguments +############################ +for param in "$@" +do + if test "${param}" = "--no-clean"; then + CLEAN="no" + elif test "${param}" = "--fedora"; then + RPMNAME="fedora" + RPMOUT="gitso_0.6.2-1_fedora.i386.rpm" + elif test "${param}" = "--centos"; then + RPMNAME="centos" + RPMOUT="gitso_0.6.2-1_centos.i386.rpm" + elif test "${param}" = "--opensuse"; then + RPMNAME="opensuse" + RPMOUT="gitso_0.6.2-1_opensuse.i586.rpm" + elif test "${param}" = "--source"; then + USESRC="yes" + else + helpMenu + fi +done + + +## +# Create packages! +######################## +if [ "$USESRC" = "yes" ]; then + # Creating the source + echo -n "Creating gitso $SRC...." + mksrc + echo -e " [done]\n" + +elif [ "`uname -a | grep Darwin`" != "" ]; then + #We're on OS X + + if test `which py2applet`; then + # To Make cotvnc + # cvs -z3 -d:pserver:anonymous@cotvnc.cvs.sourceforge.net:/cvsroot/cotvnc co -P cotvnc + # + # cd cotvnc + # patch -p0 < [Gitso-path]/arch/osx/cotvnc-gitso.diff + # + # Then in xCode build cotvnc + # find build/Development/ + # rename Chicken Of The VNC.app to cotvnc.app + # remove cotvnc.app/Contents/Resources/*non English.lproj + # rename cotvnc.app/Contents/MacOS/Chicken Of The VNC to cotvnc.app/Contents/MacOS/cotvnc + # + # Patch was made with: diff -aurr . ../cotvnc-gitso/ > cotvnc-gitso.diff + # + LeopardDMG + snowLeopardDMG + else + echo -e "Error, you need py2applet to be installed." + fi + +elif test "`uname -a 2>&1 | grep Linux | grep -v which`"; then + #We're on Linux + + if test "`which dpkg 2>&1 | grep -v which`"; then + # Deb version of Gitso. + echo -n "Creating $DEB" + dpkg-buildpackage -us -uc -d -b + echo -e " [done]" + + # Standalone version of Gitso. + echo -n "Creating $TARGZ" + rm -rf $DEB_TARGZ_PATH + + cp -r $DEB_BUILD_DIR $DEB_TARGZ_PATH + rm -rf $DEB_TARGZ_PATH/DEBIAN + + echo -n ".." + cp arch/linux/README-stand-alone.txt $DEB_TARGZ_PATH/README + cp arch/linux/run-gitso.sh $DEB_TARGZ_PATH/ + mv $DEB_TARGZ_PATH/usr/bin $DEB_TARGZ_PATH/bin + mv $DEB_TARGZ_PATH/usr/share $DEB_TARGZ_PATH/share + rm -rf $DEB_TARGZ_PATH/usr/ + + echo -n "." + tar -cvzf $TARGZ $DEB_TARGZ_PATH 2>&1 > /dev/null + + echo -e " [done]\n" + + elif test "`which rpm 2>&1 | grep -v which`"; then + # RPM version of Gitso + if [ "$RPMNAME" = "fedora" ]; then + SPEC="gitso_rpm_fedora.spec" + # yum --nogpgcheck install gitso_0.6.2-1_fedora.i386.rpm + elif [ "$RPMNAME" = "opensuse" ]; then + SPEC="gitso_rpm.spec" + elif [ "$RPMNAME" = "centos" ]; then + SPEC="gitso_rpm_centos.spec" + else + echo -e "Error: Invalid RPM Type: '$RPMNAME'\n\tPlease specify one of the following:\n\t--opensuse\n\t--fedora\n" + exit 1 + fi + + echo "Creating $RPM" + export RPM_BUILD_DIR=$RPM_BUILD_DIR + TMP="$RPM_BUILD_DIR/rpm/tmp" + BUILD_ROOT="$RPM_BUILD_DIR/rpm/tmp/gitso-root" + + # We need this because the rpmbuild below needs to the source ball. + # Also realize that mksrc is going to clean-up, so if you creat diste files before this line + # They will be deleted. + mksrc + + mkdir -p $RPM_BUILD_DIR/rpm/{BUILD,RPMS/$ARCH,RPMS/noarch,SOURCES,SRPMS,SPECS,tmp} + mkdir -p $BUILD_ROOT + + cp $SRC $RPM_BUILD_DIR/rpm/SOURCES/$SRC + + cp arch/linux/$SPEC $TMP + perl -e 's/%\(echo \$HOME\)/$ENV{'RPM_BUILD_DIR'}/g;' -pi $TMP/$SPEC + + if [ "$RPMNAME" = "fedora" ]; then + rpmbuild -ba $TMP/$SPEC + elif [ "$RPMNAME" = "opensuse" ]; then + export RPM_BUILD_ROOT="$HOME/rpmbuild/BUILDROOT/gitso-0.6.2-1.i386" + rpmbuild -ba --buildroot=$RPM_BUILD_ROOT $TMP/$SPEC + elif [ "$RPMNAME" = "centos" ]; then + export RPM_BUILD_ROOT="$HOME/rpmbuild/BUILDROOT/gitso-0.6.2-1.i386" + rpmbuild -ba --buildroot=$RPM_BUILD_ROOT $TMP/$SPEC + fi + + find $RPM_BUILD_DIR/rpm/RPMS -name "*.rpm" -exec cp {} $RPMOUT ';' + + echo -e " [done]\n" + fi + +fi + +# Clean up +if [ "$CLEAN" = "yes" ]; then + echo -e "Cleaning up...." + rm -rf $RPM_BUILD_DIR + dpkg-buildpackage -tc -us -uc -d -b + rm -rf $DEB_TARGZ_PATH + find . -name "*.pyc" -exec rm {} ';' + echo -e " [done]\n" +fi +