A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/30 13:09
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.220.198
Hostname : p4FCFDCC6.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:development:nightly-builds?rev=1388251402
New Revision: http://wiki.x2go.org/doku.php/wiki:development:nightly-builds
Edit Summary: [Nightly Builds for EPEL]
User : …
[View More]sunweaver
@@ -66,17 +66,20 @@
gpgcheck=0
enabled=1
protect=0
- [x2go-extras]er te
+ [x2go-extras]
name=Upstream X2Go Packages (extra packages)
baseurl=http://packages.x2go.org/epel/6/extras/$basearch
gpgcheck=0
enabled=1
protect=0
</code>
+ The ''[x2go-extras]'' repository is currently / temporarily required for installing some of the X2Go packages via our EPEL-6 repository.
+
+ Some packages from ''[x2go-extras]'' are required for the nightly built packages as well as
for [[wiki:repositories:epel|released RPM packages]]. [[http://packages.x2go.org/epel/6/extras/x86_64/rpms/|Those packages]] are not part of X2Go, but required as dependencies. They finally have to be integrated into the official EPEL-6 project's repository.
===== Preview Builds for MS Windows =====
Currently we provide irregular pre-views of X2Go Client / PyHoca-GUI binaries for MS Windows. [[http://code.x2go.org/releases/binary-win32/|Refer to our download server]] for what previews are available.
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/30 12:28
Browser : Mozilla/5.0 (Windows NT 6.1; rv:26.0) Gecko/20100101 Firefox/26.0
IP-Address : 149.172.200.27
Hostname : HSI-KBW-149-172-200-27.hsi13.kabel-badenwuerttemberg.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:development:i18n?rev=1362749499
New Revision: http://wiki.x2go.org/doku.php/wiki:development:i18n
Edit Summary: [Translating x2goclient] - added file name of executable
…
[View More]User : stefanbaur
@@ -35,9 +35,9 @@
- Also remember to follow the instructions there on how to set your name and email in Git
- When you got your Git working copy of X2Go Client cloned locally, changedir into the cloned directory
- Edit the .pro file, e.g. //'x2goclient.pro'// for the x2goclient repository and add your language file there (if it doesn't exist). For the Swedish language I added this line: <code text>TRANSLATIONS += x2goclient_sv.ts</code>:!: Some locales
have both language and territory specified, e.g. the file for the Bokmal languague in Norway is named **x2goclient_nb_no.ts**.
- After adding the intended language we need to get the actual language file created. Run this in the same directory:<code bash>lupdate <filename>.pro</code>(e.g. //lupdate x2goclient.pro//)
- - Start Qt Linguist and open your translation file. Remember to go to //Edit -> Translation File Settings// and set the correct **target** language. When you are done translating, save the file.
+ - Start Qt Linguist (linguist-qt4) and open your translation file. Remember to go to //Edit -> Translation File Settings// and set the correct **target** language. When you are done translating, save the file.
- If you want to verify your translation, you have to build the software with the new/updated language file, here's a brief instruction on how to build x2goclient on Debian:
- Install build dependencies (specific for X2Go Client)<code bash>sudo apt-get
install libldap2-dev libssh-dev libcups2-dev libgd2-xpm-dev</code>
- Open resources.rcc in a text editor and add a line for the new qm file, example:<code xml><file>x2goclient_sv.qm</file></code>
- Build qm files from all ts files:<code bash>lrelease *.ts</code>
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
The branch, master has been updated
via 02d04cd1091d8d6a70179aded3d06530b563806d (commit)
from e37cf30ac733217310dc6e516aa3b49063ab79c2 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 02d04cd1091d8d6a70179aded3d06530b563806d
Author: Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de…
[View More]>
Date: Mon Dec 30 01:18:13 2013 +0100
Fix scan for pulseaudio cookie file. Issue got introduced in X2Go Client 4.0.1.2 and let pulseaudio sound setup fail completely in the Linux X2Go Client of that version. (Fixes: #384).
-----------------------------------------------------------------------
Summary of changes:
debian/changelog | 6 ++++++
onmainwindow.cpp | 8 ++++----
2 files changed, 10 insertions(+), 4 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 6a3ef6b..7add7c1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -9,6 +9,12 @@ x2goclient (4.0.1.3-0x2go1) UNRELEASED; urgency=low
* New upstream version (4.0.1.3):
- Protect x2goplugin.html. Make it only available from the local host.
+ [ Mike Gabriel ]
+ * New upstream version (4.0.1.3):
+ - Fix scan for pulseaudio cookie file. Issue got introduced in X2Go Client
+ 4.0.1.2 and let pulseaudio sound setup fail completely in the Linux
+ X2Go Client of that version. (Fixes: #384).
+
-- Mike Gabriel <mike.gabriel(a)das-netzwerkteam.de> Tue, 17 Dec 2013 15:34:49 +0100
x2goclient (4.0.1.2-0x2go2) unstable; urgency=low
diff --git a/onmainwindow.cpp b/onmainwindow.cpp
index 61f6458..b49230c 100644
--- a/onmainwindow.cpp
+++ b/onmainwindow.cpp
@@ -5109,11 +5109,11 @@ void ONMainWindow::slotRetResumeSess ( bool result,
else
{
#ifndef Q_OS_WIN
- if ( QFile::exists(homeDir+".config/pulse/cookie") ) {
- pulsecookie_filename = homeDir+".config/pulse/cookie";
+ if ( QFile::exists(homeDir+"/.config/pulse/cookie") ) {
+ pulsecookie_filename = homeDir+"/.config/pulse/cookie";
}
- else if ( QFile::exists(homeDir+".pulse-cookie") ) {
- pulsecookie_filename = homeDir+".pulse-cookie";
+ else if ( QFile::exists(homeDir+"/.pulse-cookie") ) {
+ pulsecookie_filename = homeDir+"/.pulse-cookie";
}
if ( pulsecookie_filename.length() > 0 )
{
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:28
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings?rev=1388276878
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings
Edit Summary:
User : sunweaver
@@ -1,9 +1,9 @@
====== …
[View More]X2Go Desktop Bindings ======
To integrate X2Go fluently into your desktop, we provide desktop binding tools for the most common desktop environments. The following desktops are supported:
- * GNOME (v2.x)
+ * GNOMEv2 (v2.x)
* MATE (v1.x)
* KDE/Plasma (v4.x)
* LXDE (v5.x)
* Trinity (KDE3 fork, v3.5.x) -> planned FIXME
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:27
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings?rev=1388276862
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings
Edit Summary: [Desktop Bindings for GNOME (v2.x)]
User : …
[View More]sunweaver
@@ -26,9 +26,9 @@
===== Desktop Bindings for GNOME (v2.x) =====
X2Go bindings for GNOMEv2 (package name: ''x2gognomebindings'') will add additional X2Go-related functionality to your GNOMEv2 Desktop.
- :!: **Note:** The package x2gognomebindings is not available on systems that ship a GNOMEv3 desktop environment.
+ :!: **Note:** The package ''x2gognomebindings'' is not available on systems that ship a GNOMEv3 desktop environment.
==== Installation ====
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:27
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings?rev=1363300788
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:desktopbindings
Edit Summary:
User : sunweaver
@@ -2,8 +2,9 @@
To …
[View More]integrate X2Go fluently into your desktop, we provide desktop binding tools for the most common desktop environments. The following desktops are supported:
* GNOME (v2.x)
+ * MATE (v1.x)
* KDE/Plasma (v4.x)
* LXDE (v5.x)
* Trinity (KDE3 fork, v3.5.x) -> planned FIXME
* XFCE4 (v4.x) -> not planned yet, but requested by the community (help welcome)
@@ -23,9 +24,12 @@
> Installation of the desktop bindings are currently only provided as Debian/Ubuntu packages. Please make
sure that you have added the x2go repository to your package management system. The required steps are described [[wiki:repositories:debian|here (Debian)]] and [[wiki:repositories:ubuntu|here (Ubuntu)]]
===== Desktop Bindings for GNOME (v2.x) =====
- X2Go bindings for GNOME (package name: ''x2gognomebindings'') will add additional X2Go-related functionality to your GNOME Desktop.
+ X2Go bindings for GNOMEv2 (package name: ''x2gognomebindings'') will add additional X2Go-related functionality to your GNOMEv2 Desktop.
+
+ :!: **Note:** The package x2gognomebindings is not available on systems that ship a GNOMEv3 desktop environment.
+
==== Installation ====
<code>
@@ -33,15 +37,36 @@
</code>
==== Usage ====
- X2Go GNOME desktop bindings take care of mounted X2Go shares (local client folder sharing). If a client share is mounted via your X2Go client application, a desktop icon appears that allows the user to start GNOME'S file browser ''nautilus'' opening
the mounted (SSHFS) share.
+ X2Go GNOMEv2 desktop bindings take care of mounted X2Go shares (local client folder sharing). If a client share is mounted via your X2Go client application, a desktop icon appears that allows the user to start GNOMEv2'S file browser ''nautilus'' opening the mounted (SSHFS) share.
+
+ The X2Go GNOMEv2 desktop package defines a set of desktop icons and MIME types so that mounted client shares get associated to opening Nautilus.
+
+ The X2Go GNOMEv2 desktop bindings package also adds a context menu item that allows the X2Go session user to unmount shared client folders by right-clicking on their desktop icons.
+
+ The X2Go GNOMEv2 desktop bindings package furtheron adds a //Systen// menu item to your GNOMEv2 panel. Users will be able to suspend their X2Go sessions with just a click on a menu entry: //System// -> //Suspend X2Go Session//.
+
+ ===== Desktop Bindings for MATE (v1.x) =====
+
+ X2Go bindings for MATE (package name: ''x2gomatebindings'')
will add additional X2Go-related functionality to your MATE Desktop.
+
+ ==== Installation ====
+
+ <code>
+ $ aptitude install x2gomatebindings
+ </code>
+
+ ==== Usage ====
+
+ X2Go MATE desktop bindings take care of mounted X2Go shares (local client folder sharing). If a client share is mounted via your X2Go client application, a desktop icon appears that allows the user to start MATE'S file browser ''caja'' opening the mounted (SSHFS) share.
+
+ The X2Go MATE desktop package defines a set of desktop icons and MIME types so that mounted client shares get associated to opening Caja.
- The X2Go GNOME desktop package defines a set of desktop icons and MIME types so that mounted client shares get associated to opening Nautilus.
+ The X2Go MATE desktop bindings package also adds a context menu item that allows the X2Go session user to unmount shared client folders by right-clicking on their desktop icons.
- The X2Go GNOME desktop bindings package also adds a context menu
item that allows the X2Go session user to unmount shared client folders by right-clicking on their desktop icons.
+ The X2Go MATE desktop bindings package furtheron adds a //Systen// menu item to your MATE panel. Users will be able to suspend their X2Go sessions with just a click on a menu entry: //System// -> //Suspend X2Go Session//.
- The X2Go GNOME desktop bindings package furtheron adds a //Systen// menu item to your GNOME panel. Users will be able to suspend their X2Go sessions with just a click on a menu entry: //System// -> //Suspend X2Go Session//.
===== Desktop Bindings for KDE/Plasma (v4.x) =====
X2Go bindings for KDE/Plasma offer an X2Go plasmoid for the Plasma desktop framework. The X2Go plasmoid adds additional X2Go-related functionality to your KDE/Plasma Desktop (package name: ''plasma-widget-x2go'').
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:24
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start?rev=1388276619
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start
Edit Summary:
User : sunweaver
@@ -4,9 +4,9 @@
===== X2Go Browser …
[View More]Plugin =====
<WRAP round info>
- <menu col=2,align=center,caption="X2Go Plugin Setups">
+ <menu col=2,align=center,caption="X2Go Browser Plugin">
<item>X2Go Plugin Website|Set up an X2Go web portal with X2Go Plugin|[[wiki:advanced:x2goplugin]]|{{:wiki:litte-phoca.png|}}</item>
</menu>
</WRAP>
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:23
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start?rev=1388276598
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start
Edit Summary:
User : sunweaver
@@ -2,16 +2,17 @@
====== Advanced X2Go …
[View More]Setups ======
===== X2Go Browser Plugin =====
-
- X2Go Client is also available as a browser plugin. With this plugin your web browser can be turned into an X2Go Client very easily. The session configuration can be embedded into the HTML file initiating the plugin startup.
<WRAP round info>
<menu col=2,align=center,caption="X2Go Plugin Setups">
<item>X2Go Plugin Website|Set up an X2Go web portal with X2Go Plugin|[[wiki:advanced:x2goplugin]]|{{:wiki:litte-phoca.png|}}</item>
</menu>
</WRAP>
+
+ X2Go Client is also available as a browser plugin. With this plugin your web browser can be turned into an X2Go Client very easily. The session configuration can be embedded into the HTML file initiating the plugin startup.
+
----
===== X2Go Server Advanced =====
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]
A page in your DokuWiki was added or changed. Here are the details:
Date : 2013/12/29 00:23
Browser : Mozilla/5.0 (X11; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0 Iceweasel/23.0
IP-Address : 79.207.210.167
Hostname : p4FCFD2A7.dip0.t-ipconnect.de
Old Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start?rev=1388276523
New Revision: http://wiki.x2go.org/doku.php/wiki:advanced:start
Edit Summary:
User : sunweaver
@@ -5,9 +5,15 @@
===== X2Go Browser Plugin …
[View More]=====
X2Go Client is also available as a browser plugin. With this plugin your web browser can be turned into an X2Go Client very easily. The session configuration can be embedded into the HTML file initiating the plugin startup.
- * [[wiki:advanced:x2goplugin|Set up an X2Go web portal with X2Go Plugin]]
+ <WRAP round info>
+ <menu col=2,align=center,caption="X2Go Plugin Setups">
+ <item>X2Go Plugin Website|Set up an X2Go web portal with X2Go
Plugin|[[wiki:advanced:x2goplugin]]|{{:wiki:litte-phoca.png|}}</item>
+ </menu>
+ </WRAP>
+
+ ----
===== X2Go Server Advanced =====
<WRAP round info>
@@ -17,9 +23,8 @@
<item>X2Go Desktop Bindings|Integration of X2Go into various desktops|[[wiki:advanced:desktopbindings]]|{{:wiki:litte-phoca.png|}}</item>
<item>X2Go Published Applications|Using X2Go for SaaS setups|[[wiki:advanced:published-applications]]|{{:wiki:litte-phoca.png|}}</item>
<item>X2Go Desktop Branding|Customizing desktop session in X2Go|[[wiki:advanced:desktopbranding]]|{{:wiki:litte-phoca.png|}}</item>
<item>NX Keyboard Shortcuts|Customize NX Keyboard Shortcuts|[[wiki:advanced:nx-keyboard-shortcuts]]|{{:wiki:litte-phoca.png|}}</item>
-
</menu>
</WRAP>
----
--
This mail was generated by DokuWiki at
http://wiki.x2go.org/
[View Less]