]> source.dussan.org Git - tigervnc.git/commitdiff
Rebrand the source as TigerVNC. It is my hope that this patch is
authorPeter Åstrand <astrand@cendio.se>
Fri, 27 Feb 2009 10:12:14 +0000 (10:12 +0000)
committerPeter Åstrand <astrand@cendio.se>
Fri, 27 Feb 2009 10:12:14 +0000 (10:12 +0000)
minimal but still complete. The rebranding was done using a script:

find trunk -name .svn -prune -o -type f -exec rep.sh \{\} \;
pushd trunk
svn revert doc/TODO doc/registered-codes.txt doc/ft-protocol-problems.txt doc/rfbtight.tex
perl -pi -e 's|tightvnc|tigervnc|g' unix/configure.ac win/configure.ac unix/README

With rep.sh looking like:

perl -pi -e 's|TightVNC|TigerVNC|g' "$@"
perl -pi -e 's|www\.tightvnc\.com/bugs\.html|www\.tigervnc\.org|g' "$@"
perl -pi -e 's|www\.tightvnc\.com|www\.tigervnc\.org|g' "$@"
perl -pi -e 's|devteam\@tightvnc\.com|tigervnc-devel\@lists\.sourceforge\.net|g' "$@"
perl -pi -e 's|TigerVNC Team|TightVNC Team|g' "$@"
perl -pi -e 's|TigerVNC Group|TightVNC Group|g' "$@"
perl -pi -e 's|TigerVNC protocol|TightVNC protocol|g' "$@"
perl -pi -e 's|TigerVNC-specific|TightVNC-specific|g' "$@"
perl -pi -e 's|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TigerVNC|Vendor signatures: standard VNC/RealVNC, TridiaVNC, and TightVNC|g' "$@"
perl -pi -e 's|TigerVNC vendor|TightVNC vendor|g' "$@"
perl -pi -e 's|TigerVNC extension|TightVNC extension|g' "$@"
perl -pi -e 's|protocolTigerVNC|protocolTightVNC|g' "$@"
perl -pi -e 's|TigerVNC additions were|TightVNC additions were|g' "$@"
perl -pi -e 's|TigerVNC 1\.2|TightVNC 1\.2|g' "$@"
perl -pi -e 's|TigerVNC authentication type|TightVNC authentication type|g' "$@"

git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3621 3789f03b-4d11-0410-bbf8-ca57d06f2519

48 files changed:
common/configure.ac
common/jpeg/README_TightVNC.txt
common/rfb/HTTPServer.cxx
common/rfb/VNCServerST.h
doc/building-vc7.txt
doc/realvnc-internals.txt
java/src/com/tightvnc/vncviewer/ClipboardFrame.java
java/src/com/tightvnc/vncviewer/OptionsFrame.java
java/src/com/tightvnc/vncviewer/README
java/src/com/tightvnc/vncviewer/RecordingFrame.java
java/src/com/tightvnc/vncviewer/VncViewer.java
java/src/com/tightvnc/vncviewer/index.html
java/src/com/tightvnc/vncviewer/index.vnc
unix/README
unix/configure.ac
unix/po/Makevars
unix/po/de.po
unix/po/ru.po
unix/po/sk.po
unix/po/sv.po
unix/po/tightvnc.pot
unix/vncconfig/vncconfig.man
unix/vncpasswd/vncpasswd.man
unix/vncserver.man
unix/vncviewer/CConn.cxx
unix/vncviewer/vncviewer.cxx
unix/vncviewer/vncviewer.man
unix/x0vncserver/x0vncserver.cxx
unix/x0vncserver/x0vncserver.man
unix/xserver/hw/vnc/Xvnc.man
unix/xserver/hw/vnc/xvnc.cc
win/README.txt
win/README_BINARY.txt
win/configure.ac
win/vncconfig/vncconfig.cxx
win/vncconfig/vncconfig.exe.manifest
win/vncconfig/vncconfig.rc
win/vncviewer/CConnOptions.cxx
win/vncviewer/DesktopWindow.cxx
win/vncviewer/FTDialog.cxx
win/vncviewer/MRU.h
win/vncviewer/vncviewer.cxx
win/vncviewer/vncviewer.exe.manifest
win/vncviewer/vncviewer.rc
win/winvnc/VNCServerWin32.cxx
win/winvnc/winvnc.rc
win/winvnc/winvnc4.exe.manifest
win/wm_hooks/wm_hooks.rc

index ab7829b0fcaf23fa27fc148c65e2ef2009d59550..f151029c5d62a1a0e038af79c47b3e44a47ee8b8 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ([2.61])
-AC_INIT([librfb], [1.5.0a1], [http://www.tightvnc.com/bugs.html])
+AC_INIT([librfb], [1.5.0a1], [http://www.tigervnc.org])
 
 AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
 
index 72d502dca675b57526408c0fd2878fbff5966d71..c73070a658cf6046a52d0b02f86c3b62b0722b0c 100644 (file)
@@ -1,5 +1,5 @@
 This directory includes a copy of the Independent JPEG Group's JPEG
 library (see the README file for more information). Not all the files
-from the original distribution have been included into the TightVNC
+from the original distribution have been included into the TigerVNC
 codebase. To obtain the original library, please see the README file,
 section "ARCHIVE LOCATIONS".
index e40d48025037334808a7396e2fb85d299be5ceb7..94f06090503b7d7fb0d9216445b344aa236eaae1 100644 (file)
@@ -150,7 +150,7 @@ HTTPServer::Session::writeResponse(int result, const char* text) {
   sprintf(buffer, "%s %d %s", "HTTP/1.1", result, text);
   OutStream& os=sock.outStream();
   writeLine(os, buffer);
-  writeLine(os, "Server: TightVNC/4.0");
+  writeLine(os, "Server: TigerVNC/4.0");
   time_t now = time(0);
   struct tm* tm = gmtime(&now);
   strftime(buffer, 1024, "Date: %a, %d %b %Y %H:%M:%S GMT", tm);
index 0b8a2e672507851f3bfc5e8ed4ada77259dc2ce7..ddd73c9279b6ce150bbb7760a6c4e5169f8347c2 100644 (file)
@@ -198,7 +198,7 @@ namespace rfb {
     // part of the framebuffer will be sent using JpegEncoder, on each update
     // request, as we expect that video data is changing continuously. By
     // default, this option is disabled, as it's rather a specialized feature
-    // and video selection GUI can confuse users of the TightVNC client.
+    // and video selection GUI can confuse users of the TigerVNC client.
     void enableVideoSelection(bool enable);
     bool isVideoSelectionEnabled() const;
 
index 8771aa44c30b048001c2c77b8c3e79c62bf1c6ba..cadde88a19ff33c9fe7f0c2cfadef3e542cb0709 100644 (file)
@@ -1,11 +1,11 @@
-How to build TightVNC with VC7 (Visual C++ .NET)
+How to build TigerVNC with VC7 (Visual C++ .NET)
 ================================================
 
 
 Introduction
 ------------
 
-This text documents how to build TightVNC with VC7. 
+This text documents how to build TigerVNC with VC7. 
 
 
 The VC7 "Standard" Edition
index 998b78aab50343da609fa089dad092ad2a8c3b5d..16975acd25986fa947309fbaf1deccab9425d809 100644 (file)
@@ -8,7 +8,7 @@ as few changes to the RealVNC sources as possible.
 
 Files
 =====
-(t) means only in TightVNC. 
+(t) means only in TigerVNC. 
 
 Name                           Server/Client/Both      Windows/UNIX/Both
 -------------------------------------------------------------------------
index f6e7f41077d27db9e41bd8cd85501350a28c9a4e..2b11eb89ddd432b4e41a515b134b7818587d656c 100644 (file)
@@ -40,7 +40,7 @@ class ClipboardFrame extends Frame
   //
 
   ClipboardFrame(VncViewer v) {
-    super("TightVNC Clipboard");
+    super("TigerVNC Clipboard");
 
     viewer = v;
 
index 5034af6bf31f0c32fe7c8335d0bb2dcc4a416298..e1125f4b65ce65d5749eded9b87c49823c4c359d 100644 (file)
@@ -113,7 +113,7 @@ class OptionsFrame extends Frame
   //
 
   OptionsFrame(VncViewer v) {
-    super("TightVNC Options");
+    super("TigerVNC Options");
 
     viewer = v;
 
index 0e455b0976a798c72ef41a1e476ceba298a449ec..18fd7dbde47849e4d56067292d277440b174bbbd 100644 (file)
@@ -1,5 +1,5 @@
 
-  TightVNC Java Viewer version 1.3.9
+  TigerVNC Java Viewer version 1.3.9
 
 ======================================================================
 
@@ -17,7 +17,7 @@ optimizations, major GUI improvements, and more.
 
 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
+conditions under which this software is made available. TigerVNC 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.
@@ -38,15 +38,15 @@ of .class files, or the JAR archive.
 Installation
 ============
 
-There are three basic ways to use TightVNC Java viewer:
+There are three basic ways to use TigerVNC Java viewer:
 
-  1. Running applet as part of TightVNC server installation.
+  1. Running applet as part of TigerVNC server installation.
 
-     Both the Unix and Windows versions of TightVNC servers include small
+     Both the Unix and Windows versions of TigerVNC servers include small
      built-in HTTP server which can serve Java viewer to Web clients. This
      enables easy Web access to the shared desktop without need to install
      any software on the client computer. Unix and Windows versions of
-     TightVNC servers are different in the way they store the .class and .jar
+     TigerVNC servers are different in the way they store the .class and .jar
      files: the Unix server (Xvnc) is able to serve any set of files present
      in a particular directory, while the Windows server (WinVNC) has all the
      .class and .jar files inside the WinVNC executable file. Therefore, for
@@ -70,7 +70,7 @@ There are three basic ways to use TightVNC Java viewer:
      fully-functional HTTP server such as Apache or IIS. Obviously, this
      method requires running an HTTP server, and due to the Java security
      restrictions, it's also required that the server should be installed on
-     the same machine which is running the TightVNC server. In this case,
+     the same machine which is running the TigerVNC server. In this case,
      installation is simply copying the .class and .jar files into a
      directory that is under control of the HTTP server. Also, an HTML page
      should be created which will act as a the base document for the viewer
@@ -98,7 +98,7 @@ There are three basic ways to use TightVNC Java viewer:
 Parameters
 ==========
 
-TightVNC Java viewer supports a number of parameters allowing you to
+TigerVNC Java viewer supports a number of parameters allowing you to
 customize its behavior. Most parameters directly correspond to the settings
 found in the Options window. However, there are parameters that do not
 correspond to those settings. For such parameters, you can see a note "no GUI
@@ -126,7 +126,7 @@ viewer is used:
 Both parameter names and their values are case-insensitive. The only
 exception is the "PASSWORD" parameter, as VNC passwords are case-sensitive.
 
-Here is the complete list of parameters supported in TightVNC Java viewer:
+Here is the complete list of parameters supported in TigerVNC Java viewer:
 
 --> "HOST" (no GUI equivalent)
 
@@ -182,7 +182,7 @@ Here is the complete list of parameters supported in TightVNC Java viewer:
     that are appropriate for current connection speed. "Hextile" is an
     encoding that was designed for fast networks, while "Tight" is better
     suited for low-bandwidth connections. From the other side, "Tight"
-    decoder in the TightVNC Java viewer seems to be more efficient than
+    decoder in the TigerVNC Java viewer seems to be more efficient than
     "Hextile" decoder so it may be ok for fast networks too. "ZRLE" encoding
     is similar to "Tight", but it does not support JPEG compression and
     compression levels. Unlike "Tight" encoding, "ZRLE" is supported in
@@ -407,12 +407,12 @@ Here is the complete list of parameters supported in TightVNC Java viewer:
 RECORDING VNC SESSIONS
 ======================
 
-Current version of the TightVNC Java viewer is able to record VNC (RFB)
+Current version of the TigerVNC Java viewer is able to record VNC (RFB)
 sessions in files for later playback. The data format in saved session files
 is compatible with the rfbproxy program written by Tim Waugh. Most important
 thing about session recording is that it's supported only if Java security
 manager allows access to local filesystem. Typically, it would not work for
-unsigned applets. To use this feature, either use TightVNC Java viewer as a
+unsigned applets. To use this feature, either use TigerVNC Java viewer as a
 standalone application (Java Runtime Environment or Java Development Kit
 should be installed), or as a signed applet. The code checks if it's possible
 to support session recording, and if everything's fine, the new "Record"
index 6d9ea110dd4cdb3067dfade4028a36e56b578cb4..f2e1faedde99520540431eb49f18f3a83d5a7056 100644 (file)
@@ -67,7 +67,7 @@ class RecordingFrame extends Frame
   //
 
   RecordingFrame(VncViewer v) {
-    super("TightVNC Session Recording");
+    super("TigerVNC Session Recording");
 
     viewer = v;
 
index fd71114515fa443e65bb7ba40f38cc39b55239ce..bdaee687b20910b4ec2e250baab4bcd41fc93c83 100644 (file)
@@ -105,7 +105,7 @@ public class VncViewer extends java.applet.Applet
     refApplet = this;
 
     if (inSeparateFrame) {
-      vncFrame = new Frame("TightVNC");
+      vncFrame = new Frame("TigerVNC");
       if (!inAnApplet) {
        vncFrame.add("Center", this);
       }
index 1ebf0c2c97346256213e57d6d7363cf14dae011e..96805dc57f6f19ed5124a2408fe2f0c861d76539 100644 (file)
@@ -1,7 +1,7 @@
 <!-- 
-     index.html - an example HTML page for TightVNC Java viewer applet, to be
+     index.html - an example HTML page for TigerVNC Java viewer applet, to be
      used with a standalone Web server running on the same machine where the
-     TightVNC server is running. Before using this example, please MAKE SURE
+     TigerVNC server is running. Before using this example, please MAKE SURE
      to check the following:
 
      * the value of the PORT parameter should be set correctly (normally, the
 
 <HTML>
 <TITLE>
-TightVNC desktop
+TigerVNC desktop
 </TITLE>
 <APPLET CODE="VncViewer.class" ARCHIVE="VncViewer.jar"
         WIDTH="800" HEIGHT="632">
 <PARAM NAME="PORT" VALUE="5901">
 </APPLET>
 <BR>
-<A href="http://www.tightvnc.com/">TightVNC site</A>
+<A href="http://www.tigervnc.org/">TigerVNC site</A>
 </HTML>
index a987bf5c9a9ef6f8046f0e54b39221b71d8a2e02..f24df7c5576e32ed98f1df2f0b0308beaed34525 100644 (file)
@@ -1,5 +1,5 @@
 <!-- 
-     index.vnc - default HTML page for TightVNC Java viewer applet, to be
+     index.vnc - default HTML page for TigerVNC Java viewer applet, to be
      used with Xvnc. On any file ending in .vnc, the HTTP server embedded in
      Xvnc will substitute the following variables when preceded by a dollar:
      USER, DESKTOP, DISPLAY, APPLETWIDTH, APPLETHEIGHT, WIDTH, HEIGHT, PORT,
@@ -7,7 +7,7 @@
      HTML page.
 
      NOTE: the $PARAMS variable is not supported by the standard VNC, so
-     make sure you have TightVNC on the server side, if you're using this
+     make sure you have TigerVNC on the server side, if you're using this
      variable.
 -->
 
@@ -21,5 +21,5 @@ $USER's $DESKTOP desktop ($DISPLAY)
 $PARAMS
 </APPLET>
 <BR>
-<A href="http://www.tightvnc.com/">TightVNC site</A>
+<A href="http://www.tigervnc.org/">TigerVNC site</A>
 </HTML>
index 043c0b58359ff54b1ae73989a6cdcbf2fb5e02c9..db0301adf5d490237a2ef387bfe5bff1f5b68dd2 100644 (file)
@@ -1,5 +1,5 @@
 
-TightVNC Source Distribution for Unix platforms
+TigerVNC Source Distribution for Unix platforms
 ===============================================
 
 Copyright (C) 2002-2005 RealVNC Ltd.  All Rights Reserved.
@@ -9,7 +9,7 @@ Copyright (C) 2004-2009 Peter Astrand for Cendio AB
 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
+TigerVNC 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.
 
@@ -54,7 +54,7 @@ To build everything but Xvnc, do:
 
 This should build first some libraries - zlib, jpeg, rdr, network, Xregion, rfb
 and tx - then vncviewer, vncconfig and vncpasswd.  System zlib and jpeg are
-preferred. If you want use zlib and jpeg distributed with TightVNC you have to
+preferred. If you want use zlib and jpeg distributed with TigerVNC you have to
 run configure "./configure --with-tight-zlib --with-tight-jpeg".
 
 Building Xvnc
@@ -83,11 +83,11 @@ First you have to download X source:
 
 Once you have a copy of the X source tree, copy it to vnc source tree
 
-  % cp -r xorg/* <path_to_tightvnc_source>/unix/xserver
+  % cp -r xorg/* <path_to_tigervnc_source>/unix/xserver
 
 Then you have to apply a patch to some files in the X source tree:
 
-  % cd <path_to_tightvnc_source>/unix/xserver
+  % cd <path_to_tigervnc_source>/unix/xserver
   % patch -p1 < ../xserver15.patch
 
 - note: you can use server-1.6-branch. Simply checkout it as written above
@@ -124,7 +124,7 @@ Installing
 Different unix platforms have different conventions for where software should
 be installed.  To copy the programs to some directory which is in your PATH
 environment variable, such as /usr/local/bin you can use Makefile variables. In
-<tightvnc>/unix subdirectory run:
+<tigervnc>/unix subdirectory run:
 
   % make install bindir=/usr/local/bin mandir=/usr/local/man
 
@@ -133,7 +133,7 @@ Both can be installed when you run:
 
   % make install bindir=/usr/local/bin mandir=/usr/local/man
 
-in <tightvnc>/unix/xserver subdirectory
+in <tigervnc>/unix/xserver subdirectory
 
 Module can be enabled like any other module by adding a Load "vnc" line to
 the Module section of xorg.conf.  The parameters listed in the Xvnc manual
index a01a657e0ea6c0638694e3ec1e6b6d62b9125a75..4b7b7d9d2000993c0ca5eb0c630cda4767fcd912 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ([2.61])
-AC_INIT([tightvnc], [1.5.0a1], [http://www.tightvnc.com/bugs.html])
+AC_INIT([tigervnc], [1.5.0a1], [http://www.tigervnc.org])
 AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
 
 AC_SUBST([COMMON_DIR], ['$(top_srcdir)/../common'])
index 3458a7576f4d2ab49c53362d6347f2c8d0f419d1..93e76d41a34506897dbe9e3db794fd0aa42d4f83 100644 (file)
@@ -34,7 +34,7 @@ COPYRIGHT_HOLDER = RealVNC Ltd, Constantin Kaplinsky, Peter Astrand, Cendio AB
 # It can be your email address, or a mailing list address where translators
 # can write to without being subscribed, or the URL of a web page through
 # which the translators can contact you.
-MSGID_BUGS_ADDRESS = devteam@tightvnc.com
+MSGID_BUGS_ADDRESS = tigervnc-devel@lists.sourceforge.net
 
 # This is the list of locale categories, beyond LC_MESSAGES, for which the
 # message catalogs shall be used.  It is usually empty.
index e06477d0538d26c31433fac875076b3123d266f7..76bb9f2fe4c3db4cc3d6b36b1c7af15ee04b16e8 100644 (file)
@@ -8,7 +8,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: tightvnc 1.5.0\n"
-"Report-Msgid-Bugs-To: devteam@tightvnc.com\n"
+"Report-Msgid-Bugs-To: tigervnc-devel@lists.sourceforge.net\n"
 "POT-Creation-Date: 2005-03-01 20:37+0100\n"
 "PO-Revision-Date: 2005-03-01 20:41+0100\n"
 "Last-Translator: Klaus Franken <Klaus.Franken@StrukturPunkt.de>\n"
@@ -177,15 +177,15 @@ msgstr "
 
 #, c-format
 msgid ""
-"TightVNC viewer for X version 4.0 - built %s\n"
+"TigerVNC viewer for X version 4.0 - built %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Constantin Kaplinsky\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"See http://www.tightvnc.com for information on TightVNC."
+"See http://www.tigervnc.org for information on TigerVNC."
 msgstr ""
-"TightVNC-Viewer für X version 4.0 - gebaut %s\n"
+"TigerVNC-Viewer für X version 4.0 - gebaut %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Constantin Kaplinsky.\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
 "Copyright (C) 2005 Klaus Franken, StrukturPunkt\n"
-"Siehe http://www.tightvnc.com für Informationen über TightVNC."
+"Siehe http://www.tigervnc.org für Informationen über TigerVNC."
index 7cfa210332625946343f0bbce731cc9de4bdb2e8..57a69d136de8a5b1e5be6024504e12968c1d8c4d 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: tightvnc 1.5.0\n"
-"Report-Msgid-Bugs-To: devteam@tightvnc.com\n"
+"Report-Msgid-Bugs-To: tigervnc-devel@lists.sourceforge.net\n"
 "POT-Creation-Date: 2005-03-01 20:37+0100\n"
 "PO-Revision-Date: 2006-04-13 20:13+0700\n"
 "Last-Translator: Constantin Kaplinsky <const@tightvnc.com>\n"
@@ -175,14 +175,14 @@ msgstr "О программе..."
 
 #, c-format
 msgid ""
-"TightVNC viewer for X version 4.0 - built %s\n"
+"TigerVNC viewer for X version 4.0 - built %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Constantin Kaplinsky\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"See http://www.tightvnc.com for information on TightVNC."
+"See http://www.tigervnc.org for information on TigerVNC."
 msgstr ""
-"TightVNC viewer для X, версия 4.0 - время сборки %s\n"
+"TigerVNC viewer для X, версия 4.0 - время сборки %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Константин Каплинский\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"Ищите информацию о TightVNC на сайте http://www.tightvnc.com"
+"Ищите информацию о TigerVNC на сайте http://www.tigervnc.org"
index 4a4a03e149691ed76360af9c17c4d6139925a5e4..7f397c9370e3339c052eccee6904924f2c177e98 100644 (file)
@@ -1,12 +1,12 @@
 # Translation of tightvnc.pot to Slovak
 # Copyright (C) YEAR RealVNC Ltd, Constantin Kaplinsky, Peter Astrand, Cendio AB
-# This file is distributed under the same license as the TightVNC package.
+# This file is distributed under the same license as the TigerVNC package.
 # Jozef Riha <jose1711@gmail.com>, 2008.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: TightVNC 1.5.0\n"
-"Report-Msgid-Bugs-To: devteam@tightvnc.com\n"
+"Project-Id-Version: TigerVNC 1.5.0\n"
+"Report-Msgid-Bugs-To: tigervnc-devel@lists.sourceforge.net\n"
 "POT-Creation-Date: 2005-03-01 20:37+0100\n"
 "PO-Revision-Date: 2008-11-30 21:34+0100\n"
 "Last-Translator: Jozef Riha <jose1711@gmail.com>\n"
@@ -174,14 +174,14 @@ msgstr "O programe..."
 
 #, c-format
 msgid ""
-"TightVNC viewer for X version 4.0 - built %s\n"
+"TigerVNC viewer for X version 4.0 - built %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Constantin Kaplinsky\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"See http://www.tightvnc.com for information on TightVNC."
+"See http://www.tigervnc.org for information on TigerVNC."
 msgstr ""
-"TightVNC viewer pre X verzie 4.0 - zostavené %s\n"
+"TigerVNC viewer pre X verzie 4.0 - zostavené %s\n"
 "Copyright (C) 2002-2004 RealVNC Ltd.\n"
 "Copyright (C) 2000-2004 Constantin Kaplinsky\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"Pre informácie o TightVNC navštívte http://www.tightvnc.com."
+"Pre informácie o TigerVNC navštívte http://www.tigervnc.org."
index a217031a06d01770587f2c9b458079554263197e..0ac2edb78a8284eebb6b8daf5ee3186b07eda09b 100644 (file)
@@ -7,7 +7,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: tightvnc 1.5.0\n"
-"Report-Msgid-Bugs-To: devteam@tightvnc.com\n"
+"Report-Msgid-Bugs-To: tigervnc-devel@lists.sourceforge.net\n"
 "POT-Creation-Date: 2009-01-26 13:27+0100\n"
 "PO-Revision-Date: 2009-01-26 13:31+0100\n"
 "Last-Translator: Peter Astrand <astrand@cendio.se>\n"
@@ -24,8 +24,8 @@ msgid "VNC authentication"
 msgstr "VNC-autentisering"
 
 #, c-format
-msgid "TightVNC: %.240s"
-msgstr "TightVNC: %.240s"
+msgid "TigerVNC: %.240s"
+msgstr "TigerVNC: %.240s"
 
 msgid "Exit viewer"
 msgstr "Avsluta visaren"
@@ -180,14 +180,14 @@ msgstr "Om..."
 
 #, c-format
 msgid ""
-"TightVNC Viewer for X version %s - built %s\n"
+"TigerVNC Viewer for X version %s - built %s\n"
 "Copyright (C) 2002-2005 RealVNC Ltd.\n"
 "Copyright (C) 2000-2006 TightVNC Group\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"See http://www.tightvnc.com for information on TightVNC."
+"See http://www.tigervnc.org for information on TigerVNC."
 msgstr ""
-"TightVNC-visare för X version %s - byggd %s\n"
+"TigerVNC-visare för X version %s - byggd %s\n"
 "Copyright (C) 2002-2005 RealVNC Ltd.\n"
 "Copyright (C) 2000-2006 TightVNC Group\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"Se http://www.tightvnc.com för information om TightVNC."
+"Se http://www.tigervnc.org för information om TigerVNC."
index 86a468dbd1219e9c2f17b2c142c70b622ffc3628..a5e5aafb580bcd8341e0f070d8d772290a275e1a 100644 (file)
@@ -6,7 +6,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: devteam@tightvnc.com\n"
+"Report-Msgid-Bugs-To: tigervnc-devel@lists.sourceforge.net\n"
 "POT-Creation-Date: 2009-01-26 13:27+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
@@ -22,7 +22,7 @@ msgid "VNC authentication"
 msgstr ""
 
 #, c-format
-msgid "TightVNC: %.240s"
+msgid "TigerVNC: %.240s"
 msgstr ""
 
 msgid "Exit viewer"
@@ -168,9 +168,9 @@ msgstr ""
 
 #, c-format
 msgid ""
-"TightVNC Viewer for X version %s - built %s\n"
+"TigerVNC Viewer for X version %s - built %s\n"
 "Copyright (C) 2002-2005 RealVNC Ltd.\n"
 "Copyright (C) 2000-2006 TightVNC Group\n"
 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-"See http://www.tightvnc.com for information on TightVNC."
+"See http://www.tigervnc.org for information on TigerVNC."
 msgstr ""
index 483aae4f4769ce18d21c5bfd1efa5ac07100c0fb..10a487aae3dc964fa77144608952c73ed43e45c3 100644 (file)
@@ -1,4 +1,4 @@
-.TH vncconfig 1 "17 Apr 2006" "TightVNC" "Virtual Network Computing"
+.TH vncconfig 1 "17 Apr 2006" "TigerVNC" "Virtual Network Computing"
 .SH NAME
 vncconfig \- configure and control a VNC server
 .SH SYNOPSIS
@@ -117,7 +117,7 @@ When run as a "helper" app, make the window iconified at startup.
 .BR vncserver (1),
 .BR Xvnc (1)
 .br
-http://www.tightvnc.com
+http://www.tigervnc.org
 
 .SH AUTHOR
 Tristan Richardson, RealVNC Ltd.
index fbde85e163d2090f871e37cc684d232aed0a4db4..c846d576a14bb8e7ec9d70a6e5601a0033ad2f59 100644 (file)
@@ -1,4 +1,4 @@
-.TH vncpasswd 1 "05 May 2006" "TightVNC" "Virtual Network Computing"
+.TH vncpasswd 1 "05 May 2006" "TigerVNC" "Virtual Network Computing"
 .SH NAME
 vncpasswd \- change a VNC password
 .SH SYNOPSIS
@@ -32,7 +32,7 @@ Default location of the VNC password file.
 .BR Xvnc (1)
 .BR vncconfig (1),
 .br
-http://www.tightvnc.com
+http://www.tigervnc.org
 
 .SH AUTHOR
 Tristan Richardson, RealVNC Ltd.
index 463eec9d9c545083fb9c85b3924b3e51b790457b..6b65892ea291fd86efe4f61d5e25b0405cf651e8 100644 (file)
@@ -1,4 +1,4 @@
-.TH vncserver 1 "17 Apr 2006" "TightVNC" "Virtual Network Computing"
+.TH vncserver 1 "17 Apr 2006" "TigerVNC" "Virtual Network Computing"
 .SH NAME
 vncserver \- start or stop a VNC server
 .SH SYNOPSIS
@@ -110,7 +110,7 @@ option.
 .BR vncconfig (1),
 .BR Xvnc (1)
 .br
-http://www.tightvnc.com
+http://www.tigervnc.org
 
 .SH AUTHOR
 Tristan Richardson, RealVNC Ltd.
index 138acbef873e453c63ff1d3d16106e54f7a0a15d..53d5ed3d66e0826da7c164f3b30fd2a1f94d20dd 100644 (file)
@@ -279,7 +279,7 @@ void CConn::setName(const char* name) {
   CharArray windowNameStr(windowName.getData());
   if (!windowNameStr.buf[0]) {
     windowNameStr.replaceBuf(new char[256]);
-    snprintf(windowNameStr.buf, 256, _("TightVNC: %.240s"), cp.name());
+    snprintf(windowNameStr.buf, 256, _("TigerVNC: %.240s"), cp.name());
   }
 
   if (viewport) {
@@ -625,7 +625,7 @@ void CConn::recreateViewport()
   CharArray windowNameStr(windowName.getData());
   if (!windowNameStr.buf[0]) {
     windowNameStr.replaceBuf(new char[256]);
-    snprintf(windowNameStr.buf, 256, _("TightVNC: %.240s"), cp.name());
+    snprintf(windowNameStr.buf, 256, _("TigerVNC: %.240s"), cp.name());
   }
   viewport->toplevel(windowNameStr.buf, this, argc, argv);
   viewport->setBumpScroll(fullScreen);
index c973b1dddf18671a4b58b8ee34934aadbd7c203b..8b9fea4ea6fd9b6723fade9b2d8aa8fb8742bc31 100644 (file)
@@ -255,7 +255,7 @@ createTunnel (const char *gatewayHost, const char *remoteHost,
   setenv ("L", lport, 1);
   if (!cmd)
     cmd = "/usr/bin/ssh -f -L \"$L\":\"$H\":\"$R\" \"$G\" sleep 20";
-  /* Compatibility with TightVNC's method. */
+  /* Compatibility with TigerVNC's method. */
   while ((percent = strchr (cmd, '%')) != NULL)
     *percent = '$';
   system (cmd);
@@ -267,11 +267,11 @@ int main(int argc, char** argv)
   bindtextdomain(PACKAGE_NAME, LOCALEDIR);
   textdomain(PACKAGE_NAME);
 
-  const char englishAbout[] = N_("TightVNC Viewer for X version %s - built %s\n"
+  const char englishAbout[] = N_("TigerVNC Viewer for X version %s - built %s\n"
                                 "Copyright (C) 2002-2005 RealVNC Ltd.\n"
                                 "Copyright (C) 2000-2006 TightVNC Group\n"
                                 "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n"
-                                "See http://www.tightvnc.com for information on TightVNC.");
+                                "See http://www.tigervnc.org for information on TigerVNC.");
 
   // Write about text to console, still using normal locale codeset
   snprintf(aboutText, sizeof(aboutText),
index 2a764da2cdbe8f96ef828ccc57973d94e002697e..5add8cd7f0d2b83a29a8cea373c817a8b2ca7b23 100644 (file)
@@ -1,4 +1,4 @@
-.TH vncviewer 1 "05 May 2004" "TightVNC" "Virtual Network Computing"
+.TH vncviewer 1 "05 May 2004" "TigerVNC" "Virtual Network Computing"
 .SH NAME
 vncviewer \- VNC viewer for X
 .SH SYNOPSIS
@@ -186,7 +186,7 @@ prefix from the entries in "/usr/include/X11/keysymdef.h").  Default is F8.
 \fB\-via\fR \fIgateway\fR
 Automatically create encrypted TCP tunnel to the \fIgateway\fR machine
 before connection, connect to the \fIhost\fR through that tunnel
-(TightVNC\-specific). By default, this option invokes SSH local port
+(TigerVNC\-specific). By default, this option invokes SSH local port
 forwarding, assuming that SSH client binary can be accessed as
 /usr/bin/ssh. Note that when using the \fB\-via\fR option, the host
 machine name should be specified as known to the gateway machine, e.g. 
@@ -205,7 +205,7 @@ respectively.
 .BR vncconfig (1),
 .BR vncserver (1)
 .br
-http://www.tightvnc.com
+http://www.tigervnc.org
 
 .SH AUTHOR
 Tristan Richardson, RealVNC Ltd.
index 55a599161392995f1aeca6a471c2b57f777e97f0..f6bd26e54a78a5b055d712efc69f1d5ac627f252 100644 (file)
@@ -371,7 +371,7 @@ char* programName;
 
 static void printVersion(FILE *fp)
 {
-  fprintf(fp, "TightVNC Server version %s, built %s\n",
+  fprintf(fp, "TigerVNC Server version %s, built %s\n",
           PACKAGE_VERSION, buildtime);
 }
 
index 91bb956bc0706cba9b2031a9c52474f0c0d5b5d0..e98030ef5932e845fa9e6cf519c485b113cd92cc 100644 (file)
@@ -1,6 +1,6 @@
-.TH X0VNCSERVER 1 "Dec 23, 2008" "TightVNC" "TightVNC Manual"
+.TH X0VNCSERVER 1 "Dec 23, 2008" "TigerVNC" "TigerVNC Manual"
 .SH NAME
-x0vncserver \- TightVNC Server for X displays
+x0vncserver \- TigerVNC Server for X displays
 .SH SYNOPSIS
 .B x0vncserver
 .RI [ options ]
@@ -8,8 +8,8 @@ x0vncserver \- TightVNC Server for X displays
 .B x0vncserver -version
 .SH DESCRIPTION
 .B x0vncserver
-is a TightVNC Server which makes any X display remotely accessible via VNC,
-TightVNC or compatible viewers.  Unlike \fBXvnc\fP(1), it does not create a
+is a TigerVNC Server which makes any X display remotely accessible via VNC,
+TigerVNC or compatible viewers.  Unlike \fBXvnc\fP(1), it does not create a
 virtual display.  Instead, it just shares an existing X server (typically,
 that one connected to the physical screen).
 .SH OPTIONS
@@ -148,7 +148,7 @@ right and/or from the bottom of the screen.  Offsets are optional, +0+0 is
 assumed by default (top left corner).  Video area is not checked for actual
 changes, it is assumed to be changing continuously and is sent in each screen
 update.  Normally, video area is compressed with JPEG (if allowed by the
-client).  Note that this setting can be overriden by TightVNC clients
+client).  Note that this setting can be overriden by TigerVNC clients
 supporting VideoRectangleSelection protocol extension.  In other words,
 clients may choose video selection themselves, but if they do not, then the
 \fBVideoArea\fP parameter will take effect.  If the argument is empty, no
@@ -226,6 +226,6 @@ responding.  Default is 20000.
 .BR Xvnc (1),
 .BR vncpasswd (1),
 .br
-http://www.tightvnc.com/
+http://www.tigervnc.org/
 .SH AUTHOR
 This manual page was written by Constantin Kaplinsky.
index 94a2786c671fc8cb83ff768a735cd4df1cf5aad8..da7cba83df6ad45ae890bcddc0eba4d2bfd50957 100644 (file)
@@ -1,4 +1,4 @@
-.TH Xvnc 1 "17 Apr 2006" "TightVNC" "Virtual Network Computing"
+.TH Xvnc 1 "17 Apr 2006" "TigerVNC" "Virtual Network Computing"
 .SH NAME
 Xvnc \- the X VNC server 
 .SH SYNOPSIS
@@ -273,7 +273,7 @@ created automatically the next time he connects.
 .BR Xserver (1),
 .BR inetd (1)
 .br
-http://www.tightvnc.com
+http://www.tigervnc.org
 
 .SH AUTHOR
 Tristan Richardson, RealVNC Ltd.
index 78e3319c378d03f971632fa587cf272a05776b34..4643740d53eef3962f95998a39b5d469a8268272 100644 (file)
@@ -86,11 +86,11 @@ extern "C" {
 #undef public
 }
 
-#define XVNCVERSION "TightVNC 1.5 series"
+#define XVNCVERSION "TigerVNC 1.5 series"
 #define XVNCCOPYRIGHT ("Copyright (C) 2002-2005 RealVNC Ltd.\n" \
                       "Copyright (C) 2000-2006 Constantin Kaplinsky\n" \
                       "Copyright (C) 2004-2009 Peter Astrand for Cendio AB\n" \
-                       "See http://www.tightvnc.com for information on TightVNC.\n")
+                       "See http://www.tigervnc.org for information on TigerVNC.\n")
 
 
 extern char *display;
index 6d1b3931972e6fb45bb94dc758da4842d1918e01..dc765888f03327a7499e418f723d7b54112acd4e 100644 (file)
@@ -1,5 +1,5 @@
 
-TightVNC Source Distribution for Windows platforms
+TigerVNC Source Distribution for Windows platforms
 ==================================================
 
 Copyright (C) 2002-2004 RealVNC Ltd.  All Rights Reserved.
@@ -9,7 +9,7 @@ Copyright (C) 2004-2009 Peter Astrand for Cendio AB
 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
+TigerVNC 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.
 
index 5d0b0cb9846b9d10e3bc0a5d1559e98cab54fdc2..7750150e7b0948e59453827da0eee38fdeaac483 100644 (file)
@@ -1,5 +1,5 @@
 
-TightVNC Binary Distribution for Windows platforms
+TigerVNC Binary Distribution for Windows platforms
 ==================================================
 
 Copyright (C) 2002-2004 RealVNC Ltd.  All Rights Reserved.
@@ -9,7 +9,7 @@ Copyright (C) 2004-2009 Peter Astrand for Cendio AB
 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
+TigerVNC 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.
 
index 256d69ae38ed3cd6eb945ce59c158d0e9e903715..b34d22f1f5a12c12fffef0651ddffa00cee91cb2 100644 (file)
@@ -1,6 +1,6 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_PREREQ([2.61])
-AC_INIT([tightvnc], [1.5.0a1], [http://www.tightvnc.com/bugs.html])
+AC_INIT([tigervnc], [1.5.0a1], [http://www.tigervnc.org])
 AM_INIT_AUTOMAKE([-Wall foreign dist-bzip2])
 
 AC_SUBST([COMMON_DIR], ['$(top_srcdir)/../common'])
index 6c9e1c5ad8dd76a242755f40e6f9138e9c84191d..f5b1631fac5e20c1b3a332b0c2000b6bc23395a9 100644 (file)
@@ -110,7 +110,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, char* cmdLine, int cmdShow) {
 
       // Create the required configuration registry key
       RegKey rootKey;
-      rootKey.createKey(configKey, _T("Software\\TightVNC\\WinVNC4"));
+      rootKey.createKey(configKey, _T("Software\\TigerVNC\\WinVNC4"));
   
       // Override whatever security it already had (NT only)
       bool warnOnChangePassword = false;
@@ -144,7 +144,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prev, char* cmdLine, int cmdShow) {
 
       // Start a RegConfig thread, to load in existing settings
       RegConfigThread config;
-      config.start(configKey, _T("Software\\TightVNC\\WinVNC4"));
+      config.start(configKey, _T("Software\\TigerVNC\\WinVNC4"));
 
       // Build the dialog
       std::list<PropSheetPage*> pages;
index 77cb1b9aded396f6f4fbf7bde02bf53e4e0e0167..dc525727a5c3fc6fab787165eaaa0a80d4c3f0ba 100644 (file)
@@ -3,7 +3,7 @@
 <assemblyIdentity
    version="4.0.0.26"
    processorArchitecture="X86"
-   name="TightVNC.vncconfig.exe"
+   name="TigerVNC.vncconfig.exe"
    type="win32"
 />
 <description>.NET control deployment tool</description>
index bf2f9696714ae364e0be3150d8a13cbaae71f1d3..363ab2957980a25e6e54664d5917bf3d6c1262ef 100644 (file)
@@ -220,7 +220,7 @@ BEGIN
     LTEXT           ">version<",IDC_VERSION,165,7,77,18
     LTEXT           ">buildtime<",IDC_BUILDTIME,40,25,202,15
     LTEXT           ">copyright<",IDC_COPYRIGHT,40,40,202,15
-    LTEXT           "See http://www.tightvnc.com for more information on TightVNC.",
+    LTEXT           "See http://www.tigervnc.org for more information on TigerVNC.",
                     IDC_STATIC,40,55,202,15
 END
 
@@ -452,14 +452,14 @@ BEGIN
         BEGIN
             VALUE "Comments", "\0"
             VALUE "CompanyName", "Constantin Kaplinsky\0"
-            VALUE "FileDescription", "TightVNC Server Configuration Applet for Win32\0"
+            VALUE "FileDescription", "TigerVNC Server Configuration Applet for Win32\0"
             VALUE "FileVersion", "4.1.1\0"
             VALUE "InternalName", "vncconfig\0"
             VALUE "LegalCopyright", "Copyright (C) 1998-2005 [many holders]\0"
-            VALUE "LegalTrademarks", "TightVNC\0"
+            VALUE "LegalTrademarks", "TigerVNC\0"
             VALUE "OriginalFilename", "vncconfig.exe\0"
             VALUE "PrivateBuild", "\0"
-            VALUE "ProductName", "TightVNC Configurator\0"
+            VALUE "ProductName", "TigerVNC Configurator\0"
             VALUE "ProductVersion", "4.1.1\0"
             VALUE "SpecialBuild", "\0"
         END
index 7829d1b450c9b780d88a4b629b554c964f0ffeda..7bf36eb7ba2bf95a52c237f9d1b2ec4136b7175e 100644 (file)
@@ -388,7 +388,7 @@ void CConnOptions::writeToFile(const char* filename) {
 
 void CConnOptions::writeDefaults() {
   RegKey key;
-  key.createKey(HKEY_CURRENT_USER, _T("Software\\TightVNC\\VNCviewer4"));
+  key.createKey(HKEY_CURRENT_USER, _T("Software\\TigerVNC\\VNCviewer4"));
   key.setBool(_T("UseLocalCursor"), useLocalCursor);
   key.setBool(_T("UseDesktopResize"), useDesktopResize);
   key.setBool(_T("FullScreen"), fullScreen);
index 5a9fe4e03e0af3b46f5e8a450216406afc249d29..c85730a490a2cb36a499cf33b6f8802b061c9ac4 100644 (file)
@@ -1268,7 +1268,7 @@ DesktopWindow::setName(const char* name) {
     strCopy(desktopName, name, sizeof(desktopName));
   }
   char *newTitle = new char[strlen(desktopName)+20];
-  sprintf(newTitle, "TightVNC: %.240s @ %i%%", desktopName, getDesktopScale());
+  sprintf(newTitle, "TigerVNC: %.240s @ %i%%", desktopName, getDesktopScale());
   SetWindowText(handle, TStr(newTitle));
   delete [] newTitle;
 }
index dd094e73a1723a0ed3f337cd2ed678cad2fb3ade..bf819a32a84db0fddf724636e8d53a6cc44fae19 100644 (file)
@@ -28,9 +28,9 @@
 using namespace rfb;
 using namespace rfb::win32;
 
-const char FTDialog::szCheckDeleteQueueText[]    = "TightVNC.Viewer.CheckDeleteQueue.Msg";
-const char FTDialog::szCheckTransferQueueText[]  = "TightVNC.Viewer.CheckTransferQueue.Msg";
-const char FTDialog::szUploadFilePortionText[]   = "TightVNC.Viewer.UploadFilePortion.Msg";
+const char FTDialog::szCheckDeleteQueueText[]    = "TigerVNC.Viewer.CheckDeleteQueue.Msg";
+const char FTDialog::szCheckTransferQueueText[]  = "TigerVNC.Viewer.CheckTransferQueue.Msg";
+const char FTDialog::szUploadFilePortionText[]   = "TigerVNC.Viewer.UploadFilePortion.Msg";
 
 FTDialog::FTDialog(HINSTANCE hInst, FileTransfer *pFT)
 {
index fd9bf71c4a877782dbc33b8de041c59e278b99d0..a0aef814de22574f98036caec22ed5f693c42687 100644 (file)
@@ -32,7 +32,7 @@ namespace rfb {
     namespace MRU {
 
       static const RegKey RegRoot = HKEY_CURRENT_USER;
-      static const TCHAR* RegPath = _T("Software\\TightVNC\\VNCViewer4\\MRU");
+      static const TCHAR* RegPath = _T("Software\\TigerVNC\\VNCViewer4\\MRU");
       static const int MaxMRUEntries = 256;
       static const int MRUEntries = 10;
 
index f8f2fb52da510922842b559ca7bbc9f7ea818caa..060e8a135e3419e6d2992bd88944b66dff10d423 100644 (file)
@@ -205,7 +205,7 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prevInst, char* cmdLine, int cmdSho
 
 #ifdef _DIALOG_CAPTURE
     if (captureDialogs) {
-      CConn::userConfigKey.openKey(HKEY_CURRENT_USER, _T("Software\\TightVNC\\VNCViewer4"));
+      CConn::userConfigKey.openKey(HKEY_CURRENT_USER, _T("Software\\TigerVNC\\VNCViewer4"));
       OptionsDialog::global.showDialog(0, true);
       return 0;
     }
@@ -221,10 +221,10 @@ int WINAPI WinMain(HINSTANCE inst, HINSTANCE prevInst, char* cmdLine, int cmdSho
     if (!configFiles.empty() || !hosts.empty() || acceptIncoming) {
       // - Configure the registry configuration reader
       win32::RegConfigThread config;
-      config.start(HKEY_CURRENT_USER, _T("Software\\TightVNC\\VNCViewer4"));
+      config.start(HKEY_CURRENT_USER, _T("Software\\TigerVNC\\VNCViewer4"));
 
       // - Tell the rest of VNC Viewer where to write config data to
-      CConn::userConfigKey.createKey(HKEY_CURRENT_USER, _T("Software\\TightVNC\\VNCViewer4"));
+      CConn::userConfigKey.createKey(HKEY_CURRENT_USER, _T("Software\\TigerVNC\\VNCViewer4"));
 
       if (acceptIncoming) {
         int port = 5500;
index 7fd947fff8bcb64a12f045f3148b39146b4b79f4..daab6db7756ddf0d8d98d35711bb3414ee201db1 100644 (file)
@@ -3,7 +3,7 @@
 <assemblyIdentity
    version="4.0.0.26"
    processorArchitecture="X86"
-   name="TightVNC.vncviewer.exe"
+   name="TigerVNC.vncviewer.exe"
    type="win32"
 />
 <description>.NET control deployment tool</description>
index 0f26d461f8b85f843ce75557f08f2317b04ccd09..91d056720fbaf14d63144bbdb04a515a195db1a8 100644 (file)
@@ -85,14 +85,14 @@ BEGIN
         BEGIN
             VALUE "Comments", "\0"
             VALUE "CompanyName", "Constantin Kaplinsky\0"
-            VALUE "FileDescription", "TightVNC Viewer for Win32\0"
+            VALUE "FileDescription", "TigerVNC Viewer for Win32\0"
             VALUE "FileVersion", "4.1.1\0"
             VALUE "InternalName", "free4/vncviewer/win\0"
             VALUE "LegalCopyright", "Copyright (C) 1998-2006 [many holders]\0"
-            VALUE "LegalTrademarks", "TightVNC\0"
+            VALUE "LegalTrademarks", "TigerVNC\0"
             VALUE "OriginalFilename", "vncviewer.exe\0"
             VALUE "PrivateBuild", "\0"
-            VALUE "ProductName", "TightVNC Viewer\0"
+            VALUE "ProductName", "TigerVNC Viewer\0"
             VALUE "ProductVersion", "4.1.1\0"
             VALUE "SpecialBuild", "\0"
         END
@@ -169,7 +169,7 @@ BEGIN
     LTEXT           ">version<",IDC_VERSION,165,10,77,15
     LTEXT           ">buildtime<",IDC_BUILDTIME,46,25,196,15
     LTEXT           ">copyright<",IDC_COPYRIGHT,46,40,196,15
-    LTEXT           "Visit www.tightvnc.com for more information on TightVNC.",
+    LTEXT           "Visit www.tigervnc.org for more information on TigerVNC.",
                     IDC_STATIC,46,55,196,15
 END
 
@@ -313,7 +313,7 @@ IDD_FILETRANSFER_DLG DIALOGEX 0, 0, 530, 282
 STYLE DS_MODALFRAME | DS_CONTEXTHELP | WS_POPUP | WS_VISIBLE | WS_CAPTION | 
     WS_SYSMENU
 EXSTYLE WS_EX_CONTEXTHELP | WS_EX_CONTROLPARENT
-CAPTION "TightVNC File Transfers"
+CAPTION "TigerVNC File Transfers"
 FONT 8, "MS Sans Serif", 0, 0, 0x1
 BEGIN
     CONTROL         "List1",IDC_FTLOCALLIST,"SysListView32",LVS_REPORT | 
@@ -349,7 +349,7 @@ BEGIN
     PUSHBUTTON      "",IDC_FTREMOTEUP,495,20,14,12,BS_ICON | NOT WS_TABSTOP
     PUSHBUTTON      "",IDC_FTREMOTERELOAD,509,20,14,12,BS_ICON | NOT 
                     WS_TABSTOP
-    CTEXT           "TightVNC Server",IDC_FTREMOTELABEL,323,7,200,10
+    CTEXT           "TigerVNC Server",IDC_FTREMOTELABEL,323,7,200,10
     LTEXT           "Current File",IDC_STATIC,323,245,36,8
     CTEXT           "0%",IDC_FTGENERALPERCENT,189,245,18,8
     CTEXT           "0%",IDC_FTSINGLEPERCENT,505,245,18,8
index 3b0e1a0a6d0f9d5fb31f04960d7b6612b0f7540b..6412aaec9466dead2a339b8613fe37403c62db1f 100644 (file)
@@ -37,7 +37,7 @@ using namespace network;
 static LogWriter vlog("VNCServerWin32");
 
 
-const TCHAR* winvnc::VNCServerWin32::RegConfigPath = _T("Software\\TightVNC\\WinVNC4");
+const TCHAR* winvnc::VNCServerWin32::RegConfigPath = _T("Software\\TigerVNC\\WinVNC4");
 
 // FIXME: Move into an .h file?
 extern const UINT VNCM_FT_DOWNLOAD;
index 143b0d6f6feb3bac66fde324c1b64aaf3531dd36..7036da2e91b5145f0db1ccbd3eac1cf4087495f4 100644 (file)
@@ -72,14 +72,14 @@ BEGIN
         BEGIN
             VALUE "Comments", "\0"
             VALUE "CompanyName", "Constantin Kaplinsky\0"
-            VALUE "FileDescription", "TightVNC Server for Win32\0"
+            VALUE "FileDescription", "TigerVNC Server for Win32\0"
             VALUE "FileVersion", "4.1.1\0"
             VALUE "InternalName", "winvnc\0"
             VALUE "LegalCopyright", "Copyright (C) 1998-2005 [many holders]\0"
-            VALUE "LegalTrademarks", "TightVNC\0"
+            VALUE "LegalTrademarks", "TigerVNC\0"
             VALUE "OriginalFilename", "winvnc4.exe\0"
             VALUE "PrivateBuild", "\0"
-            VALUE "ProductName", "TightVNC Server\0"
+            VALUE "ProductName", "TigerVNC Server\0"
             VALUE "ProductVersion", "4.1.1\0"
             VALUE "SpecialBuild", "\0"
         END
@@ -144,7 +144,7 @@ BEGIN
     LTEXT           ">version<",IDC_VERSION,170,10,72,15
     LTEXT           ">buildtime<",IDC_BUILDTIME,45,25,202,15
     LTEXT           ">copyright<",IDC_COPYRIGHT,45,40,202,15
-    LTEXT           "See http://www.tightvnc.com for more information on VNC.",
+    LTEXT           "See http://www.tigervnc.org for more information on VNC.",
                     IDC_STATIC,45,55,202,15
 END
 
index 69be5a04d4f6eb86fac8ca75717e01224d78296c..0a29d9eb6bb0fad17161c0e6b02496484239477f 100644 (file)
@@ -3,7 +3,7 @@
 <assemblyIdentity
    version="4.0.0.26"
    processorArchitecture="X86"
-   name="TightVNC.winvnc4.exe"
+   name="TigerVNC.winvnc4.exe"
    type="win32"
 />
 <description>.NET control deployment tool</description>
index 3f171d266fea012ab7fcb056ffdbc684797f5397..85351926929203920c627095cbe0a5ed26d79c25 100644 (file)
@@ -72,14 +72,14 @@ BEGIN
         BEGIN
             VALUE "Comments", "\0"
             VALUE "CompanyName", "Constantin Kaplinsky\0"
-            VALUE "FileDescription", "TightVNC Server Hooking DLL for Win32\0"
+            VALUE "FileDescription", "TigerVNC Server Hooking DLL for Win32\0"
             VALUE "FileVersion", "4.1\0"
             VALUE "InternalName", "\0"
             VALUE "LegalCopyright", "Copyright (C) 1998-2005 [many holders]\0"
-            VALUE "LegalTrademarks", "TightVNC\0"
+            VALUE "LegalTrademarks", "TigerVNC\0"
             VALUE "OriginalFilename", "wm_hooks.dll\0"
             VALUE "PrivateBuild", "\0"
-            VALUE "ProductName", "TightVNC Server\0"
+            VALUE "ProductName", "TigerVNC Server\0"
             VALUE "ProductVersion", "4.1\0"
             VALUE "SpecialBuild", "\0"
         END