spacer
spacer search

PHARscape
Phar enough!

Search
spacer
header
Main Menu
Home
Linux and 3G
Linux and 3G Forum
Python Stuff
Pictures
Astronomy
Links
Contacting Me
Search
Mambo License
About
Syndicate
phpBB Login
Username

Password

Remember me
Forgotten your password??
No account yet? Create one
Lunarpages.com Web Hosting
 
Home arrow Linux and 3G Forum

PHARscape
3G Datacards and Linux
 
  FAQFAQ    SearchSearch  RegisterRegister 
   Log inLog in 

BETA HSOconnect 1.1.83 - Python 2.5 Python 2.4 DEB and RPM
Goto page Previous  1, 2
 
Post new topic   Reply to topic    PHARscape Forum Index -> HSOconnect
View previous topic :: View next topic  
Author Message
fmeyer



Joined: 16 Jan 2006
Posts: 10
Location: France

france.gif
PostPosted: Sun Jun 22, 2008 2:41 pm    Post subject: new updated french translation files (menus and help) Reply with quote

Hello,
attached are updated French translated files for HSOconnect (menus and help)

Some errors or previous file has been corrected, and the Help file has also been now translated.

you just need to extract the tar.gz file in /usr/share/HSOconnect/languages/French and rename text_french.cfg by text.cfg and Help_HSOconnect_french.html by help.html.

I hope that helps.

Franz



HSOconnect_French_language&help.tar.gz
 Description:

Download
 Filename:  HSOconnect_French_language&help.tar.gz
 Filesize:  5.19 KB
 Downloaded:  45 Time(s)

Back to top
View user's profile Send private message
Vesa



Joined: 22 May 2008
Posts: 4

finland.gif
PostPosted: Mon Jun 23, 2008 10:35 pm    Post subject: Reply with quote

Hello Paul,

I was wondering whether you got my finnish translation file a couple of weeks ago? I sent it to your email and I haven't got a reply from you since then.
If you want to, I can send the file again if you don't have the last one.

Sincerely,
Vesa
Back to top
View user's profile Send private message
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 455
Location: UK and Belgium

uk.gif
PostPosted: Mon Jun 23, 2008 10:49 pm    Post subject: Reply with quote

Vesa wrote:
Hello Paul,

I was wondering whether you got my finnish translation file a couple of weeks ago? I sent it to your email and I haven't got a reply from you since then.
If you want to, I can send the file again if you don't have the last one.

Sincerely,
Vesa


Hi Vesa,

Yes I got your mail and thank you for the file, sorry I didn't reply in good time. I was hoping to release a new version last week with all the languages included but I got distracted by real work and my dbus investigation.

I am creating a dbus server interface which will allow other programs to control HSOconnect - window control (show/hide), connect/disconnect, report status. This will allow a panel applet to be created or shell script control without modifying too much the main HSOconnect code.

I am also trying to control Network Manager but I am not finding much useful information on the API.

Cheers,
Paul
Back to top
View user's profile Send private message Visit poster's website
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 455
Location: UK and Belgium

uk.gif
PostPosted: Mon Jun 23, 2008 10:53 pm    Post subject: Re: new updated french translation files (menus and help) Reply with quote

fmeyer wrote:
Hello,
attached are updated French translated files for HSOconnect (menus and help)

Some errors or previous file has been corrected, and the Help file has also been now translated.

you just need to extract the tar.gz file in /usr/share/HSOconnect/languages/French and rename text_french.cfg by text.cfg and Help_HSOconnect_french.html by help.html.

I hope that helps.

Franz


Thanks Franz, I will add in the update ASAP. Thank you for the news on RHEL5.

Cheers,
Paul
Back to top
View user's profile Send private message Visit poster's website
Vesa



Joined: 22 May 2008
Posts: 4

finland.gif
PostPosted: Mon Jun 23, 2008 10:56 pm    Post subject: Reply with quote

Paul wrote:
Yes I got your mail and thank you for the file, sorry I didn't reply in good time. I was hoping to release a new version last week with all the languages included but I got distracted by real work and my dbus investigation.
Ok, good to know.
Just to mention (maybe I've mentioned this before) that in the language configuration file there isn't an option for every line of text, so when I'd use the language file it would show me english in some points of the program. The "Connect" button is a great example, since it's text can't be changed via language files.

Thanks for a fast reply!
Vesa

P.S.
My writing might be hard to understand since it's 2 AM here + i'm suffering from flu. Evil or Very Mad
Back to top
View user's profile Send private message
jnethack



Joined: 24 Jun 2008
Posts: 2
Location: Japan

japan.gif
PostPosted: Tue Jun 24, 2008 3:19 pm    Post subject: JP translation ;-) Reply with quote

Paul,
Thanks for drivers and also CM. So far it is working quite fine here. I'm trying to find something that I can contribute this Linux stuff Wink
BRs,



text.cfg.tar.gz
 Description:

Download
 Filename:  text.cfg.tar.gz
 Filesize:  1.7 KB
 Downloaded:  38 Time(s)

Back to top
View user's profile Send private message MSN Messenger
Paul
Site Admin


Joined: 08 Oct 2004
Posts: 455
Location: UK and Belgium

uk.gif
PostPosted: Tue Jun 24, 2008 6:45 pm    Post subject: Re: JP translation ;-) Reply with quote

jnethack wrote:
Paul,
Thanks for drivers and also CM. So far it is working quite fine here. I'm trying to find something that I can contribute this Linux stuff Wink
BRs,

Hi jnethack,

Welcome to the forum. Cool Many thanks for your contribution Cool

Cheers,
Paul
Back to top
View user's profile Send private message Visit poster's website
lord_alan



Joined: 28 Jun 2008
Posts: 1

blank.gif
PostPosted: Sat Jun 28, 2008 12:28 pm    Post subject: Reply with quote

Paul wrote:


I am creating a dbus server interface which will allow other programs to control HSOconnect - window control (show/hide), connect/disconnect, report status. This will allow a panel applet to be created or shell script control without modifying too much the main HSOconnect code.
...


I've been trying to get HSOconnect to load automatically using a udev rule. It *almost* works...

Here's the udev rule in z20_hso-udev.rules:

Code:
# Start the HSOconnect client via our shell script
SUBSYSTEMS=="scsi", ATTRS{vendor}=="ZCOPTION", KERNEL=="sg[0-9]*", RUN+="/usr/bin/hsoconnect.sh"


and here's my shell script.
Code:

#!/bin/bash

# Shell script to start the HSOConnect Python application from udev

if ps -ef | grep -v grep | grep "python2.5 -m hsoc" > /dev/null
then
   #Program is already running, die quietly
   exit 0
else
   #Start HSOConnect independantly
   ( python2.5 -m hsoc 2>&1 > /dev/null &) &
   exit 0
fi


When I plug in the dongle, the client is launched, but it runs as root and does not display in my X display. It's the first time I've done any udev stuff so if anyone can suggest how to get this to load into *my* desktop and preferably as *me* rather than root, it would be great. But maybe that's why you working on hal support?

Secondly, how difficult do you think it would be to extend the functionality of your client to work with other Dongles such as the Huawei series?

Thanks for a great resource and your contribution. It has helped me a great deal to get the Option225 running on Ubuntu.

Al
Back to top
View user's profile Send private message
atlas95



Joined: 08 Jul 2008
Posts: 3

france.gif
PostPosted: Tue Jul 08, 2008 9:02 pm    Post subject: Reply with quote

lord_alan: I'm trying too to do the udev rules but same problem as you, we must search with!


Code:
export DISPLAY=":0.0" ?

sudo -u $USER commandline ?


Could you help us please ? Smile

What are the new function which will become for hsoconnect? I really love this project :p
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
atlas95



Joined: 08 Jul 2008
Posts: 3

france.gif
PostPosted: Thu Jul 24, 2008 1:41 pm    Post subject: Reply with quote

Hey? Anybody here now?
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
steffe77



Joined: 28 Jul 2008
Posts: 2

sweden.gif
PostPosted: Mon Jul 28, 2008 8:43 pm    Post subject: Problem with Ubuntu 8.04 and Option icon 225 Reply with quote

Hi Paul!

I've got a problem with Options iCon 225 and Ubuntu 8.04
I have tried following the HowTo, but when i come to start HSOconnect i've got problems.

When I try start HSOConnect from the console "python -m hsoc' HSOconnect starts up correctly, it founds my mobile operator and all seens fine. Except some output in the console.

Output i console:
Quote:

False
Serial(port='/dev/ttyHS1', baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=1, xonxoff=0, rtscts=0)


When i Click Connect HSO Connect went grey. After a short while it looks normal again, unconnected.

When i look in the console the following messeages has been added
Quote:

Did not finish AT commands.
Closed port
Quit gtk.main
Serial(port='/dev/ttyHS1', baudrate=115200, bytesize=8, parity='N', stopbits=1, timeout=1, xonxoff=0, rtscts=0)


/Stefan
Back to top
View user's profile Send private message
erik78se



Joined: 09 Aug 2008
Posts: 2

blank.gif
PostPosted: Sat Aug 09, 2008 4:43 pm    Post subject: Problems when pressing "Connect" Reply with quote

I have the same problem as steffe77 - post above.

When I press the "Connect" button, it grays out for a while. Yeah, exectly like steffe77 describes.

Anyone figured out why?

I'm using Ubuntu 8.04, i686... just normal stuff.

/Erik
Back to top
View user's profile Send private message
erik78se



Joined: 09 Aug 2008
Posts: 2

blank.gif
PostPosted: Sat Aug 09, 2008 8:16 pm    Post subject: [solved] Did not finish AT commands. Reply with quote

[Disregard of my last post.

I found out that I didn't configured the "Profile" correcly.

I have glocalnet (Sweden) and I needed to set the APN in the profile:

APN=bredband.glocalnet.se
USERNAME=[leave empty]
PASSWORD=[leave empty]

After this, the connection works good.

Worth notice is that you wont get a default gateway (it is set to 0.0.0.0) from glocalnet and the /etc/resolv.conf is modified. I'm not sure if this will conflict with network manager in ubuntu, but its worth it for now =)

Thanx for a good tutorial on how to get this to work.
Back to top
View user's profile Send private message
gunnar-eee



Joined: 28 Aug 2008
Posts: 2
Location: Stockholm, Sweden

sweden.gif
PostPosted: Sun Sep 07, 2008 4:34 pm    Post subject: Swedish translation Reply with quote

Hello find attached my contributed Swedish translation text file.

I am using HSOconnect with great success with an Option Globetrotter 7.2 modem.

Norwegian operator "Telenor" who runs a Mobile Broadband service in Sweden
is the only operator who deploy that particular modem on this market.
They so far do not offer any Linux support. So I was happy to learn about HSO and
your utilities. I see you have designed the tool so it will be easy to operator brand.
I played around with this and came up with a nice looking appearance.
[img]http://www6.zippyshare.com/downloadImage?key=4784780514&time=1220789046[/img]

But I'll keep that 'branding' to my own pc so far, operators don't want their logos on public stuff they don't endorse. But the above photo may serve as inspiration of what's possible.



Swedish.tar.gz
 Description:
Swedish translation

Download
 Filename:  Swedish.tar.gz
 Filesize:  1.98 KB
 Downloaded:  0 Time(s)


_________________
/gunnar
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    PHARscape Forum Index -> HSOconnect All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


phpBB component by Adam van Dongen. Based on phpBB © 2001, 2002 phpBB Group
spacer

 
Copyright 2000 - 2005 Miro International Pty Ltd. All rights reserved.
Mambo is Free Software released under the GNU/GPL License.
spacer