Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread newsgroups.ma...@stefanbaur.de

Am 19.02.2012 06:59, schrieb Mihai Moldovan:

I'll post my installer (really just a .dmg image with x2goclient.app
in it, how all project redistribute on OS X) to the list when it's ready
and I've had some sleep.


Uh, I don't think posting it to the list is a good idea. I'd suggest you 
send it by eMail to Heinz and Alex so they can upload it somewhere on 
x2go.org, and if you want to, CC me, since I should have my Mac mini 
back from Mike in a few days and could act as a tester.
(I'm not exactly experienced with Mac OS X and have a reputation for 
crashing Macs just by getting near to them ;-) so I should be the ideal 
tester - if I can get it to work, the average Joe should be able to do 
that, too.)


-Stefan
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Several Typos in X2Go-Client, Windows, English (was: German)

2012-02-19 Thread Mike Gabriel

Hi Stefan,

On So 05 Feb 2012 13:32:12 CET newsgroups.ma...@stefanbaur.de wrote:

Also, can I change the English parts of the file as well, if I  
notice inaccuracies, or will that break the build process?


I have fast-read through the .ts files of x2goclient as well now and  
agree about the inaccuracies in the English originals.


My suggestion is to translate the hard-coded passages within the C++  
code into English. Something similar to what we do with non-English  
languages we can do with the English language. Thus linguistic quality  
of X2Go Client is no business of the code developers anymore but can  
be given into the hands of an English native speaker.


I have provided an empty x2goclient_en.ts file. Do you think you could  
take a look? Or maybe any of the native speakers here on the list?


Thanks,
Mike

--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgp3j88DjAdPy.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] [PATCH] xauth file location mismatch in x2gostartagent

2012-02-19 Thread Milan Knížek
V Sat, 18 Feb 2012 00:47:38 +0100
Mike Gabriel mike.gabr...@das-netzwerkteam.de napsáno:

Hello Mike,

 Hi Milan,
 
 On Mi 15 Feb 2012 21:23:56 CET Milan Knížek wrote:
 
  The attached patch removes the -f $HOME/.Xauthority parameter from
  the x2goagent command line to resolve the problem. It also removes a
  redundant '-S' parameter (there is already $SESSION_TYPE there).
 
 This part has been committed as is:
 http://code.x2go.org/gitweb?p=x2goserver.git;a=commitdiff;h=c4a1ea405879b07d351b6c10da02bb891c02c45b

Thanks.

  the /usr/bin/x2gostartagent script does not sufficiently specify the
  location of $XAUTHORITY file for the xauth command, while the
  command line for starting x2goagent refers to a specific location
  $HOME/.Xauthority.
 
 I have modified your patch slightly, could you test my patch if that  
 works for you???
 http://code.x2go.org/gitweb?p=x2goserver.git;a=commitdiff;h=51771f645ffa60d561e156847dbc79cce6b41d4d

Should we want -xauth parameter for x2goagent (xserver), wouldn't it be
consistent to add the same for xauth commands? (Patch attached.)

P.S. It works for me with the extra patch and also w/o it.

Regards,
Milan
-- 
http://www.milan-knizek.net/
About linux and photography (Czech only)
O linuxu a fotografování
From 36dbaf446ea0457aaf0f4a7e5a02dc5026b0adc5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Milan=20Kn=C3=AD=C5=BEek?= kni...@volny.cz
Date: Sun, 19 Feb 2012 16:07:55 +0100
Subject: [PATCH] Add -f $XAUTHORITY to xauth commands in x2gostartagent

---
 x2goserver/bin/x2gostartagent |8 
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/x2goserver/bin/x2gostartagent b/x2goserver/bin/x2gostartagent
index 2dbaf0a..fe1ccee 100755
--- a/x2goserver/bin/x2gostartagent
+++ b/x2goserver/bin/x2gostartagent
@@ -78,8 +78,8 @@ if [ $X2GO_STYPE == S ]; then
 		X2GO_COOKIE=`echo $OUTPUT | awk '{print $2}'`
 		X2GO_PORT=`echo $OUTPUT | awk '{print $1}'`
 		$X2GO_LIB_PATH/x2gosyslog $0 debug received shadow session information: cookie: $X2GO_COOKIE, port: $X2GO_PORT
-		xauth add ${HOSTNAME}/unix:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
-		xauth add ${HOSTNAME}:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
+		xauth -f $XAUTHORITY add ${HOSTNAME}/unix:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
+		xauth -f $XAUTHORITY add ${HOSTNAME}:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
 
 		echo $X2GO_PORT
 		echo $X2GO_COOKIE
@@ -204,8 +204,8 @@ PATH=${PATH}:${X2GO_BIN}/
 export PATH
 
 
-xauth add ${HOSTNAME}/unix:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
-xauth add ${HOSTNAME}:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
+xauth -f $XAUTHORITY add ${HOSTNAME}/unix:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
+xauth -f $XAUTHORITY add ${HOSTNAME}:${X2GO_PORT} MIT-MAGIC-COOKIE-1 ${X2GO_COOKIE}
 
 
 if [ $X2GO_SET_KBD == 0 ]
-- 
1.7.9.1



signature.asc
Description: PGP signature
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mihai Moldovan
Hi Mike

Don't worry, I'll just give you a link to the file on my server when
it's done. ;)

So far I'm still building Qt4...

Best regards,


Mihai


 
* On 19.02.2012 01:03 PM, Mike Gabriel wrote:
 Hi Mihai,

 On So 19 Feb 2012 11:43:44 CET newsgroups.ma...@stefanbaur.de wrote:

 Am 19.02.2012 06:59, schrieb Mihai Moldovan:
 I'll post my installer (really just a .dmg image with x2goclient.app
 in it, how all project redistribute on OS X) to the list when it's
 ready
 and I've had some sleep.

 Uh, I don't think posting it to the list is a good idea. I'd suggest
 you send it by eMail to Heinz and Alex so they can upload it
 somewhere on x2go.org, and if you want to, CC me, since I should have
 my Mac mini back from Mike in a few days and could act as a tester.
 (I'm not exactly experienced with Mac OS X and have a reputation for
 crashing Macs just by getting near to them ;-) so I should be the
 ideal tester - if I can get it to work, the average Joe should be
 able to do that, too.)

 If you have web space somewhere where you upload the .dmg and I can
 download it that will be easiest, I guess. I also have upload rights
 on code.x2go.org, so I can take over placing the files there.

 Thanks,
 Mike



smime.p7s
Description: S/MIME Cryptographic Signature
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] [PATCH] xauth file location mismatch in x2gostartagent

2012-02-19 Thread Mike Gabriel

Hi Milan,

On So 19 Feb 2012 16:21:56 CET Milan Knížek wrote:


 the /usr/bin/x2gostartagent script does not sufficiently specify the
 location of $XAUTHORITY file for the xauth command, while the
 command line for starting x2goagent refers to a specific location
 $HOME/.Xauthority.

I have modified your patch slightly, could you test my patch if that
works for you???
http://code.x2go.org/gitweb?p=x2goserver.git;a=commitdiff;h=51771f645ffa60d561e156847dbc79cce6b41d4d


Should we want -xauth parameter for x2goagent (xserver), wouldn't it be
consistent to add the same for xauth commands? (Patch attached.)

P.S. It works for me with the extra patch and also w/o it.


yes, makes sense...
http://code.x2go.org/gitweb?p=x2goserver.git;a=commitdiff;h=4f8e5f05cf758b6b7d98cc563da553b05b443cd2

Mike



--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb

pgpfy8bGiIyP2.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mike Gabriel

Hi Mihai,

On So 19 Feb 2012 16:45:50 CET Mihai Moldovan wrote:


Hi Mike

Don't worry, I'll just give you a link to the file on my server when
it's done. ;)

So far I'm still building Qt4...

Best regards,


Mihai


Brilliant!!! I am getting more and more excited!!!

Mike

--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgphhCrPsc9BL.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


[X2Go-Dev] translating X2Go

2012-02-19 Thread Mike Gabriel

Hi all,

over the weekend Daniel Lindgren and Terje Andersen have added Swedish  
and Norwegian translations to X2Go Client and Pyhoca-GUI.


We have set up a wiki page together that explains how translating X2Go works:
http://wiki.x2go.org/wiki:development:i18n

The translators communicate on:
x2go-i...@lists.berlios.de

We currently need help with any language apart from:

  German
  Bokmal (Norway)
  Swedish

The following language we have translators for, but the teams could grow here:

  Dutch
  Russian
  Spanish (currently only for PyHoca-GUI)

Apart from the named language no other languages are supported within  
X2Go components. If you are shy with coding but speak a language that  
is not on the list here (or that is on the bottom list), then do not  
hesitate to support the i18n team of X2Go.


Join the list...
http://lists.berlios.de/mailman/listinfo/x2go-i18n

... and start translating X2Go into your regional language!!!

Welcome everyone!
Mike


--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpdptMBMbVuO.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mihai Moldovan
Aaand this...

/usr/bin/g++-4.2 -headerpad_max_install_names
-Wl,-syslibroot,/Developer/SDKs/MacOSX10.6.sdk -o
x2goclient.app/Contents/MacOS/x2goclient sharewidget.o settingswidget.o
configwidget.o sessionwidget.o connectionwidget.o configdialog.o
editconnectiondialog.o exportdialog.o imgframe.o LDAPSession.o
onmainwindow.o onmainwindow_part2.o onmainwindow_part3.o
onmainwindow_part4.o sessionbutton.o sessionmanagedialog.o
sshmasterconnection.o sshprocess.o SVGFrame.o userbutton.o
x2gologdebug.o printprocess.o cupsprint.o cupsprintwidget.o
cupsprintersettingsdialog.o printwidget.o printercmddialog.o
printdialog.o wapi.o clicklineedit.o httpbrokerclient.o ongetpass.o
x2gosettings.o brokerpassdlg.o contest.o xsettingswidget.o x2goclient.o
moc_configdialog.o moc_editconnectiondialog.o moc_exportdialog.o
moc_imgframe.o moc_onmainwindow.o moc_sessionbutton.o
moc_sessionmanagedialog.o moc_sshmasterconnection.o moc_sshprocess.o
moc_SVGFrame.o moc_userbutton.o moc_printprocess.o moc_cupsprintwidget.o
moc_cupsprintersettingsdialog.o moc_printwidget.o moc_printercmddialog.o
moc_printdialog.o moc_sessionwidget.o moc_connectionwidget.o
moc_settingswidget.o moc_sharewidget.o moc_clicklineedit.o
moc_httpbrokerclient.o moc_brokerpassdlg.o moc_contest.o
moc_xsettingswidget.o qrc_resources.o  
/opt/local/libexec/heimdal/lib/libhcrypto.a
/opt/local/libexec/heimdal/lib/libcom_err.a
/opt/local/libexec/heimdal/lib/libasn1.a
/opt/local/libexec/heimdal/lib/libhdb.a
/opt/local/libexec/heimdal/lib/libheimntlm.a
/opt/local/libexec/heimdal/lib/libheimsqlite.a
/opt/local/libexec/heimdal/lib/libhx509.a
/opt/local/libexec/heimdal/lib/libkadm5clnt.a
/opt/local/libexec/heimdal/lib/libkafs.a
/opt/local/libexec/heimdal/lib/libkdc.a
/opt/local/libexec/heimdal/lib/libotp.a
/opt/local/libexec/heimdal/lib/libroken.a
/opt/local/libexec/heimdal/lib/libsl.a
/opt/local/libexec/heimdal/lib/libwind.a
/opt/local/libexec/heimdal/lib/windc.a
/opt/local/libexec/heimdal/lib/libkrb5.a
/opt/local/libexec/heimdal/lib/libgssapi.a /opt/local/lib/libsasl2.a
/usr/src/x2goclient-git/dist/lib/libssh.a
/usr/src/x2goclient-git/dist/lib/libldap.a
/usr/src/x2goclient-git/dist/lib/liblber.a -lcups -L/opt/local/lib
-lQtSvg -framework ApplicationServices -framework Carbon -framework
AppKit -framework Security -lQtGui /opt/local/lib/libjpeg.a
/opt/local/lib/liblcms.a /opt/local/lib/libintl.a
/opt/local/lib/libiconv.a /usr/lib/libresolv.dylib
/opt/local/lib/libmng.a /opt/local/lib/libtiff.a /opt/local/lib/libpng.a
-lQtNetwork -framework SystemConfiguration -framework CoreFoundation
/usr/lib/libssl.dylib /usr/lib/libcrypto.dylib -lQtCore
/usr/lib/libz.dylib -lm

is transforming into this:

x2goclient.app/Contents/MacOS/x2goclient:
/usr/lib/libcups.2.dylib (compatibility version 2.0.0, current
version 2.8.0)
   
/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
(compatibility version 1.0.0, current version 38.0.0)
/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
(compatibility version 2.0.0, current version 152.0.0)
/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
(compatibility version 45.0.0, current version 1038.32.0)
/System/Library/Frameworks/Security.framework/Versions/A/Security
(compatibility version 1.0.0, current version 37594.0.0)
/usr/lib/libresolv.9.dylib (compatibility version 1.0.0, current
version 41.0.0)
   
/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
(compatibility version 1.0.0, current version 293.5.0)
   
/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
(compatibility version 150.0.0, current version 550.29.0)
/usr/lib/libssl.0.9.8.dylib (compatibility version 0.9.8, current
version 0.9.8)
/usr/lib/libcrypto.0.9.8.dylib (compatibility version 0.9.8, current
version 0.9.8)
/usr/lib/libz.1.dylib (compatibility version 1.0.0, current version
1.2.3)
/usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current
version 125.2.0)
/usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current
version 7.9.0)
/usr/lib/libobjc.A.dylib (compatibility version 1.0.0, current
version 227.0.0)
   
/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices 
(compatibility
version 1.0.0, current version 44.0.0)
   
/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
(compatibility version 300.0.0, current version 751.29.0)

Yay, no more external dependencies.

Now, let me build your nxcomp and test the application.



* On 19.02.2012 05:02 PM, Mike Gabriel wrote:
 Hi Mihai,

 On So 19 Feb 2012 16:45:50 CET Mihai Moldovan wrote:

 Hi Mike

 Don't worry, I'll just give you a link to the file on my server when
 it's done. ;)

 So far I'm still building Qt4...

 Best regards,


 Mihai

 Brilliant!!! I am getting more and more excited!!!

 Mike



 ___
 X2Go-Dev mailing list
 X2Go-Dev@lists.berlios.de
 

Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mihai Moldovan
Hi Mike

please fetch and try the file at
http://www.ionic.de/x2goclient-3.99.1.0.dmg.

It's starting up and connecting fine for me, however, I can't test X11
stuff as some other bug is biting me again where it can't connect to the
X11 server. I started debugging this a few days ago but couldn't get
really into it as the problem just vanished from one run to another...

Anyway, I'd be delighted if you could give it a try, Mike!

Best regards,


Mihai



* On 19.02.2012 01:03 PM, Mike Gabriel wrote:
 Hi Mihai,

 On So 19 Feb 2012 11:43:44 CET newsgroups.ma...@stefanbaur.de wrote:

 Am 19.02.2012 06:59, schrieb Mihai Moldovan:
 I'll post my installer (really just a .dmg image with x2goclient.app
 in it, how all project redistribute on OS X) to the list when it's
 ready
 and I've had some sleep.

 Uh, I don't think posting it to the list is a good idea. I'd suggest
 you send it by eMail to Heinz and Alex so they can upload it
 somewhere on x2go.org, and if you want to, CC me, since I should have
 my Mac mini back from Mike in a few days and could act as a tester.
 (I'm not exactly experienced with Mac OS X and have a reputation for
 crashing Macs just by getting near to them ;-) so I should be the
 ideal tester - if I can get it to work, the average Joe should be
 able to do that, too.)

 If you have web space somewhere where you upload the .dmg and I can
 download it that will be easiest, I guess. I also have upload rights
 on code.x2go.org, so I can take over placing the files there.

 Thanks,
 Mike



 ___
 X2Go-Dev mailing list
 X2Go-Dev@lists.berlios.de
 https://lists.berlios.de/mailman/listinfo/x2go-dev




smime.p7s
Description: S/MIME Cryptographic Signature
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mike Gabriel

Hi Mihai,

On So 19 Feb 2012 19:55:41 CET Mihai Moldovan wrote:


Hi Mike

please fetch and try the file at
http://www.ionic.de/x2goclient-3.99.1.0.dmg.

It's starting up and connecting fine for me, however, I can't test X11
stuff as some other bug is biting me again where it can't connect to the
X11 server. I started debugging this a few days ago but couldn't get
really into it as the problem just vanished from one run to another...


Maybe an xauth problem? Does X2GoClient's Qt work through X11 on Mac  
OS or does Qt4 connect to the graphical Mac desktop directly?



Anyway, I'd be delighted if you could give it a try, Mike!


Unfortunately, I do not have a Mac around (anymore). I am currently in  
the process of sending a test machine provided by Stefan back to him.  
Stefan will be able to test your build in a couple of days.


Anyone else on the list who has a Mac OS around, please give us  
feedback on the .dmg file provided by Mihai.


Thanks thanks thanks!!!
Mike



--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpreme496dFs.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mihai Moldovan
* On 19.02.2012 08:33 PM, Mike Gabriel wrote:
 Hi Mihai,

 On So 19 Feb 2012 19:55:41 CET Mihai Moldovan wrote:

 Hi Mike

 please fetch and try the file at
 http://www.ionic.de/x2goclient-3.99.1.0.dmg.

 It's starting up and connecting fine for me, however, I can't test X11
 stuff as some other bug is biting me again where it can't connect to the
 X11 server. I started debugging this a few days ago but couldn't get
 really into it as the problem just vanished from one run to another...

 Maybe an xauth problem? Does X2GoClient's Qt work through X11 on Mac
 OS or does Qt4 connect to the graphical Mac desktop directly?
Nah, Qt4 is using the native Cocoa interface on OS X. X2go then tries to
start (if not already started) and to connect to the xserver on
localhost:6000 (which seems weird/wrong to me, why not via the UNIX
socket for instance? I guess I should try to change that.) and then it
should basically work.

However, on my system the X server is listening on port 6004 instead of
6000 (thus using displayPort 5?) - for whatever reason. Due to the
hardcoded connection settings in x2goclient, it won't be able to connect
to the server... but again, as I was about to fix it, it started working
again (probably the xserver restarted on displayport 0/port 6000), so I
lost the interest and tried getting the universal build setup first.

 Anyway, I'd be delighted if you could give it a try, Mike!

 Unfortunately, I do not have a Mac around (anymore). I am currently in
 the process of sending a test machine provided by Stefan back to him.
 Stefan will be able to test your build in a couple of days.

 Anyone else on the list who has a Mac OS around, please give us
 feedback on the .dmg file provided by Mihai.

Oh alright, I can wait. But please do me a big favor: fetch
http://www.ionic.de/x2goclient-3.99.1.0-r2.dmg - I forgot to add i386
support in the x2goclient binary before, shame on me. r2 is now
featuring both x86 and x86_64 support.

Best regards,


Mihai



smime.p7s
Description: S/MIME Cryptographic Signature
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


[X2Go-Dev] x2godesktopsharing: Full Access not available for other users?

2012-02-19 Thread Milan Knížek
Hello list!

I am a bit confused re. the discrepancy between wiki and actual
behaviour of x2godesktop sharing:

x the wiki [1] reads that 
With the desktopsharing function of X2go you can have full-access
the desktop from somebody else...

x when I (USER_B) connect from a remote machine with x2goclient to
local desktop (USER_A logged in on tty7 of x2goserver), the
USER_A's session is shown in the lists of sessions available for
sharing, however the button Full Access is greyed-out and cannot be
clicked. So USER_B is only allowed to view the USER_A's deskto.

x having looked at x2godesktopsharing.git/sharetray.cpp, I can see that
this is due to bShadow-SetEnabled ( user==getCurrentUname() ); and
have verified that the following patch removes the limitation:

===
--- onmainwindow_part2.cpp2011-11-25 13:08:10.0 +0100
+++ onmainwindow_part2.cpp_mod2012-02-19 19:50:36.200838546 +0100
@@ -1132,7 +1132,7 @@
  index.row(),
  D_USER ).data().toString();
 bShadowView-setEnabled ( true );
-bShadow-setEnabled ( user==getCurrentUname() );
+bShadow-setEnabled ( true );
 }
 }

===

Is this intentional behaviour due to the potential security issues
mentioned here [2] (anyway, the remote user _can_ recompile the
x2goagent to get rid of the limitation)?


[1] http://www.x2go.org/wiki:components:desktop-sharing#usage
[2]
http://comments.gmane.org/gmane.linux.terminal-server.x2go.devel/2437

Regards,
Milan


-- 
http://www.milan-knizek.net/
About linux and photography (Czech only)
O linuxu a fotografování
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] x2godesktopsharing: Full Access not available for other users?

2012-02-19 Thread Milan Knížek
Oops, made few mistakes in package names, corrected below.

Sorry,
Milan

V Sun, 19 Feb 2012 21:14:30 +0100
Milan Knížek knizek.co...@gmail.com napsáno:

 Hello list!
 
 I am a bit confused re. the discrepancy between wiki and actual
 behaviour of x2godesktop sharing:
 
 x the wiki [1] reads that 
 With the desktopsharing function of X2go you can have full-access
 the desktop from somebody else...
 
 x when I (USER_B) connect from a remote machine with x2goclient to
 local desktop (USER_A logged in on tty7 of x2goserver), the
 USER_A's session is shown in the lists of sessions available for
 sharing, however the button Full Access is greyed-out and cannot be
 clicked. So USER_B is only allowed to view the USER_A's deskto.
 
 x having looked at x2godesktopsharing.git/sharetray.cpp, I can see
 
 x2goclient.git/onmainwindow_part2.cpp

 that this is due to bShadow-SetEnabled ( user==getCurrentUname()
 ); and have verified that the following patch removes the limitation:
 
 ===
 --- onmainwindow_part2.cpp2011-11-25 13:08:10.0 +0100
 +++ onmainwindow_part2.cpp_mod2012-02-19 19:50:36.200838546 +0100
 @@ -1132,7 +1132,7 @@
   index.row(),
   D_USER ).data().toString();
  bShadowView-setEnabled ( true );
 -bShadow-setEnabled ( user==getCurrentUname() );
 +bShadow-setEnabled ( true );
  }
  }
 
 ===
 
 Is this intentional behaviour due to the potential security issues
 mentioned here [2] (anyway, the remote user _can_ recompile the
 x2goagent to get rid of the limitation)?
  ^
  x2goclient
 
 
 [1] http://www.x2go.org/wiki:components:desktop-sharing#usage
 [2]
 http://comments.gmane.org/gmane.linux.terminal-server.x2go.devel/2437
 
 Regards,
 Milan
 
 



-- 
http://www.milan-knizek.net/
About linux and photography (Czech only)
O linuxu a fotografování
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread newsgroups.ma...@stefanbaur.de

Am 19.02.2012 20:45, schrieb Mihai Moldovan:

However, on my system the X server is listening on port 6004 instead of
6000 (thus using displayPort 5?) - for whatever reason.


Does defaults read org.x.X11 say anything regarding the port number?
If so, have you tried setting it to 6000 using the corresponding 
defaults write command (possibly requiring sudo)?



Oh alright, I can wait. But please do me a big favor: fetch
http://www.ionic.de/x2goclient-3.99.1.0-r2.dmg - I forgot to add i386
support in the x2goclient binary before, shame on me. r2 is now
featuring both x86 and x86_64 support.


I fetched both and will give them a try once my Mac is back. ;-)
Note that my Mac is x86_64-based, so I will neither be able to confirm 
nor to deny the functionality of the x86 support.


-Stefan
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mihai Moldovan
* On 19.02.2012 09:24 PM, newsgroups.ma...@stefanbaur.de wrote:
 Does defaults read org.x.X11 say anything regarding the port number?
 If so, have you tried setting it to 6000 using the corresponding
 defaults write command (possibly requiring sudo)?

Nope, and note that I'm special yet again - I'm using the MacPorts
X11-dev (that is, pretty much always the newest version.)

defaults read org.macports.X11 does give me a list with a lot of
options, but only those which could be set via the GUI too (rootless,
clipboard, etc.) - no displayPort or TCP port.

AFAIK the X server is autodetecting the displayPort and adding this to
6000 (i.e., port = 6000 + displayPort = 6000 if displayPort == 0).

At the same time, I really don't see any reason for connecting to the
local machine via X11, I'll try to get a connection via the UNIX socket
during next week. :)


 I fetched both and will give them a try once my Mac is back. ;-)
 Note that my Mac is x86_64-based, so I will neither be able to confirm
 nor to deny the functionality of the x86 support.
Well... personally, I don't care about x86-only machines either, as
there was only one generation without x86_64 support, but since I went
the extra mile, I'd still like to know if it's working on these boxes
too. Let's see if other people are reporting back. :)

Best regards,


Mihai



smime.p7s
Description: S/MIME Cryptographic Signature
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] [X2go-User] Suggestion - x2go Community Core-Dev's should set a date for a Week of Wiki updating/cleanup

2012-02-19 Thread Mike Gabriel

Hi all,

On So 19 Feb 2012 22:56:41 CET Terje Andersen wrote:


Hi Brian,

Den 19. feb. 2012 17:17, skrev brian mullan:

I wanted to make a suggestion to the x2go Community.

Everyone knows how fast and how much x2go has been changing in  
regards to features, capabilities, etc.


Like most projects Documentation is hard to keep up with but to  
keep growing the x2go Community as fast in the future as it has in  
the past year or so I'd like to suggest the date for a week of  
focused x2go Wiki updating/cleanup.


For success - it would take the commitment of both the x2go  
Community  the Core-Devs and some planning.By that I mean try  
to come up with ways to impact the core-dev team the least but  
maximize their knowledge of x2go config, install, operation   
troubleshooting so the Community people can do the actual editing  
of the Wiki.


Ideas:

 * identify  input any missing information
 * all the FIX ME place-holders should be addressed
 * incorrect or out of date information should be updated or removed
 * add any new information that just hasn't found time to be posted yet



I think this is a good idea and I would be willing to help out, but  
for people like me to able to help out I guess I would need a list  
of subjects in advance, that way I could research my allocated  
subjects first. I'm fairly new to X2Go; my experience is with FreeNX  
so I need to learn X2Go better before writing anything :-)


I am willing to proof-read and answer question wherever asked. I would  
love watching you write the wiki!!! Note, my focus is Git and code  
maintenance. I would love if someone else takes over the draft writing  
for documentation.


I'll see if I can find some time to identify some subjects that  
either needs updating or new documentation, but where should I place  
this list? Could you start a wiki page Brian, where we could  
collaborate on the subjects?


Please use the FIXME tags of the wiki. There is a page already that  
refers to all the FIXME tags being placed on wiki pages:

http://wiki.x2go.org/fixme-entries

Orphaned pages are here:
http://wiki.x2go.org/link-orphans

The site map is here.
http://wiki.x2go.org/wiki:start?do=index

When creating new pages, make sure to use namespaces and to feel into  
the already provided structure.



Regards,
Terje


Brian and Terje, could you become the leaders of this documentation  
sprint and organize everything. That would be awesome. I'll contribute  
whatever possible and needed.


Thanks,
Mike


PS: I am also cross-posting this to x2go-dev...


--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpq34fJ0tidi.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mike Gabriel

On So 19 Feb 2012 20:45:08 CET Mihai Moldovan wrote:


Oh alright, I can wait. But please do me a big favor: fetch
http://www.ionic.de/x2goclient-3.99.1.0-r2.dmg - I forgot to add i386
support in the x2goclient binary before, shame on me. r2 is now
featuring both x86 and x86_64 support.


copied and rename to code.x2go.org:
http://code.x2go.org/releases/binary-macosx/x2goclient/x2goclient-3.99.1.0preview2.dmg

Mike

--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgpICsiTanokx.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] Fwd: MAC developers wanted

2012-02-19 Thread Mike Gabriel

Hi Mihai,

On So 19 Feb 2012 21:46:11 CET Mihai Moldovan wrote:


AFAIK the X server is autodetecting the displayPort and adding this to
6000 (i.e., port = 6000 + displayPort = 6000 if displayPort == 0).


It might well be that localhost:0 is hardcoded in x2goclient for Mac.  
Not sure, though.


Have you tried

  DISPLAY=:0 x2goclient

or in your case

  DISPLAY=:4 x2goclient

???

Greets,
Mike


--

DAS-NETZWERKTEAM
mike gabriel, dorfstr. 27, 24245 barmissen
fon: +49 (4302) 281418, fax: +49 (4302) 281419

GnuPG Key ID 0xB588399B
mail: mike.gabr...@das-netzwerkteam.de, http://das-netzwerkteam.de

freeBusy:
https://mail.das-netzwerkteam.de/freebusy/m.gabriel%40das-netzwerkteam.de.xfb


pgptNfFK46SqS.pgp
Description: Digitale PGP-Unterschrift
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev


Re: [X2Go-Dev] [X2go-User] Suggestion - x2go Community Core-Dev's should set a date for a Week of Wiki updating/cleanup

2012-02-19 Thread Daniel Lindgren
I can help cleaning up the wiki. I would also suggest changing
template (i e layout) in DokuWiki, the one used at wiki.x2go.org has
issues with readability and general looks. That is of course my
personal opinion, but I have used and administered DokuWiki for years
and know that it could look a lot better with a different template.

Cheers,
Daniel
___
X2Go-Dev mailing list
X2Go-Dev@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/x2go-dev