diff options
author | Peter Åstrand <astrand@cendio.se> | 2009-02-27 10:12:14 +0000 |
---|---|---|
committer | Peter Åstrand <astrand@cendio.se> | 2009-02-27 10:12:14 +0000 |
commit | 4eacc02e123ed1cceb9c8181f16d5ae145fdae35 (patch) | |
tree | f3be44634f9e9c3ee32f4ed4cf387e69a8c0bedb /unix/vncviewer | |
parent | b031862497e0603622c498cc4311b2726c223cbb (diff) | |
download | tigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.tar.gz tigervnc-4eacc02e123ed1cceb9c8181f16d5ae145fdae35.zip |
Rebrand the source as TigerVNC. It is my hope that this patch is
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
Diffstat (limited to 'unix/vncviewer')
-rw-r--r-- | unix/vncviewer/CConn.cxx | 4 | ||||
-rw-r--r-- | unix/vncviewer/vncviewer.cxx | 6 | ||||
-rw-r--r-- | unix/vncviewer/vncviewer.man | 6 |
3 files changed, 8 insertions, 8 deletions
diff --git a/unix/vncviewer/CConn.cxx b/unix/vncviewer/CConn.cxx index 138acbef..53d5ed3d 100644 --- a/unix/vncviewer/CConn.cxx +++ b/unix/vncviewer/CConn.cxx @@ -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); diff --git a/unix/vncviewer/vncviewer.cxx b/unix/vncviewer/vncviewer.cxx index c973b1dd..8b9fea4e 100644 --- a/unix/vncviewer/vncviewer.cxx +++ b/unix/vncviewer/vncviewer.cxx @@ -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), diff --git a/unix/vncviewer/vncviewer.man b/unix/vncviewer/vncviewer.man index 2a764da2..5add8cd7 100644 --- a/unix/vncviewer/vncviewer.man +++ b/unix/vncviewer/vncviewer.man @@ -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. |