Jabber client redux

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Jabber client redux

Gary Dunn
(Resent; I was not subscribed.)

I am looking into using XMPP to extend the capabilities of Nebraska. I
tried installing the package from SqueakMap but after the usual
compatibility warnings the load stops with error: 'Invalid utf8 input
detected' I installed yaxo first, as directed, same result.

How should I deal with this?
--
Gary Dunn, Honolulu
[hidden email]
http://openslate.net/
http://e9erust.blogspot.com/
Sent from Slate001


Reply | Threaded
Open this post in threaded view
|

Re: Jabber client redux

Edgar J. De Cleene



On 10/19/09 5:49 AM, "Gary Dunn" <[hidden email]> wrote:

> (Resent; I was not subscribed.)
>
> I am looking into using XMPP to extend the capabilities of Nebraska. I
> tried installing the package from SqueakMap but after the usual
> compatibility warnings the load stops with error: 'Invalid utf8 input
> detected' I installed yaxo first, as directed, same result.
>
> How should I deal with this?
> --
> Gary Dunn, Honolulu

I can't find XMPP in SqueakMap, could send more info ?

Edgar



Reply | Threaded
Open this post in threaded view
|

Re: Jabber client redux

Julian Fitzell-2
In reply to this post by Gary Dunn
http://lists.squeakfoundation.org/pipermail/squeak-dev/2009-April/135848.html

Try loading from SqueakSource... seemed to work for John I guess (at
least he didn't write back with further problems).

Julian

On Mon, Oct 19, 2009 at 12:49 AM, Gary Dunn <[hidden email]> wrote:

> (Resent; I was not subscribed.)
>
> I am looking into using XMPP to extend the capabilities of Nebraska. I
> tried installing the package from SqueakMap but after the usual
> compatibility warnings the load stops with error: 'Invalid utf8 input
> detected' I installed yaxo first, as directed, same result.
>
> How should I deal with this?
> --
> Gary Dunn, Honolulu
> [hidden email]
> http://openslate.net/
> http://e9erust.blogspot.com/
> Sent from Slate001
>
>
>

Reply | Threaded
Open this post in threaded view
|

Re: Jabber client redux

Gary Dunn
In reply to this post by Gary Dunn
On Mon, 19 Oct 2009 Edgar J. De Cleene wrote:

> On 10/19/09 5:49 AM, "Gary Dunn" <[hidden email]> wrote:
>
>> (Resent; I was not subscribed.)
>>
>> I am looking into using XMPP to extend the capabilities of Nebraska. I
>> tried installing the package from SqueakMap but after the usual
>> compatibility warnings the load stops with error: 'Invalid utf8 input
>> detected' I installed yaxo first, as directed, same result.
>>
>> How should I deal with this?
>> --
>> Gary Dunn, Honolulu
>
> I can't find XMPP in SqueakMap, could send more info ?
>
> Edgar

In SqueakMap it is called Jabber.

On Mon, 19 Oct 2009 Julian Fitzell wrote:

> Try loading from SqueakSource... seemed to work for John I guess (at
> least he didn't write back with further problems).
>
> Julian

How do I load from SqueakSource?
--
Gary Dunn, Honolulu
[hidden email]
http://openslate.net/
http://e9erust.blogspot.com/
Sent from a Newton 2100 via Mail V

Reply | Threaded
Open this post in threaded view
|

Re: Jabber client redux

Julian Fitzell-2
On Tue, Oct 20, 2009 at 2:20 PM, Gary Dunn <[hidden email]> wrote:

> On Mon, 19 Oct 2009 Edgar J. De Cleene wrote:
>> On 10/19/09 5:49 AM, "Gary Dunn" <[hidden email]> wrote:
>>
>>> (Resent; I was not subscribed.)
>>>
>>> I am looking into using XMPP to extend the capabilities of Nebraska. I
>>> tried installing the package from SqueakMap but after the usual
>>> compatibility warnings the load stops with error: 'Invalid utf8 input
>>> detected' I installed yaxo first, as directed, same result.
>>>
>>> How should I deal with this?
>>> --
>>> Gary Dunn, Honolulu
>>
>> I can't find XMPP in SqueakMap, could send more info ?
>>
>> Edgar
>
> In SqueakMap it is called Jabber.
>
> On Mon, 19 Oct 2009 Julian Fitzell wrote:
>
>> Try loading from SqueakSource... seemed to work for John I guess (at
>> least he didn't write back with further problems).
>>
>> Julian
>
> How do I load from SqueakSource?

Either just download the .mcz from here and open with Squeak:
http://squeaksource.com/Jabber/

Or add a new repository to Monticello with this definition:

MCHttpRepository
    location: 'http://www.squeaksource.com/Jabber'
    user: ''
    password: ''

If you need an intro to Monticello:
http://www.wiresong.ca/Monticello/UserManual/GettingStarted/

Julian

Reply | Threaded
Open this post in threaded view
|

Re: Jabber client redux

Gary Dunn
On Tue, 2009-10-20 at 15:35 -0700, Julian Fitzell wrote:
> On Tue, Oct 20, 2009 at 2:20 PM, Gary Dunn <[hidden email]> wrote:

...

> > How do I load from SqueakSource?
>
> Either just download the .mcz from here and open with Squeak:
> http://squeaksource.com/Jabber/
>
> Or add a new repository to Monticello with this definition:
>
> MCHttpRepository
>     location: 'http://www.squeaksource.com/Jabber'
>     user: ''
>     password: ''
>
> If you need an intro to Monticello:
> http://www.wiresong.ca/Monticello/UserManual/GettingStarted/
>
> Julian

Thanks! This was my first time using Monticello -- you have to start
somewhere. I did a "save as" to a different image file in case I botch
things up. Now I have a lot of reading and poking to do.

For those of you who use Gnome, here is my shell script for selecting
which image to load. They do have to be in the home folder. I tried
using find but it takes a lot longer. zenity creates Gnome dialog boxes.
In this case the selected item is printed to stdout and gets assigned to
IMAGE.

Thanks again for your patience and help.

#! /bin/sh
# start Squeak with user selected image
IMAGE=`ls -1 *.image |  zenity  --list  --title  "Select Image" --text
"Squeak image files" --column "Files"`
case $? in
        0) squeak $IMAGE
        ;;
        *) echo "Nothing selected"
esac


--
Gary Dunn, Honolulu
[hidden email]
http://openslate.net/
http://e9erust.blogspot.com/
Sent from Slate001