ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [Comm] Perl unicode
@ 2004-10-21  9:18 Stanislav Yadykin
  2004-10-22  8:48 ` Stanislav Yadykin
  2004-10-22 14:25 ` Alexey Tourbin
  0 siblings, 2 replies; 8+ messages in thread
From: Stanislav Yadykin @ 2004-10-21  9:18 UTC (permalink / raw)
  To: community

[-- Attachment #1: Type: text/plain, Size: 1871 bytes --]

Добрый день!
Поскольку у моего аплинка временная проблема с ru.perl, решил написать сюда, 
возможно кто-то сталкивался/знает.
Есть программа:
==============================
use Net::Jabber qw(Client);
use Text::Iconv;

my $jabber = new Net::Jabber::Client;
$jabber->Connect(hostname => 'host');
my @status = $jabber->AuthSend(
  'username'  => 'user',
  'password'  => 'password',
  'resource'  => 'client'
);
$jabber->PresenceSend('type' => 'available');
$jabber->SetCallBacks('message' => \&JabberGetMessage);

while($jabber->Process){ 1; }

sub fUni {
  my $conv = Text::Iconv->new('utf8', 'windows-1251');
  return $conv->convert(shift);
}
sub tUni {
  my $conv = Text::Iconv->new('windows-1251', 'utf8');
  return $conv->convert(shift);
}

sub JabberGetMessage {
  my $id = shift;
  my $message = shift;
  my $from = fUni($message->GetFrom);
  my $subj = fUni($message->GetSubject);
  my $body = fUni($message->GetBody);
  $jabber->MessageSend(
    To => 'newuser@newhost',
    Subject => tUni($subj),
    Body => tUni($body)
  )
}
==============================

При отсылке жаббером текста "тест", проходя через этот "жаббер-прокси" 
приходит в виде "Ñ,есÑ,", т.е. почему-то проходит двойную конертацию в 
юникод. Если процедуру JabberGetMessage переписать в виде 

sub JabberGetMessage {
  my $id = shift;
  my $message = shift;
  $jabber->MessageSend(
    To => 'newuser@newhost',
    Subject => $message->GetSubject,
    Body => $message->GetBody
  )
}

то к клиенту возвращается нормальный "тест". В чем может быть проблема?
-- 
Stanislav Yadykin

[-- Attachment #2: Type: application/pgp-signature, Size: 190 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2004-10-25  6:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-21  9:18 [Comm] Perl unicode Stanislav Yadykin
2004-10-22  8:48 ` Stanislav Yadykin
2004-10-22 13:58   ` [Comm] " Alexey Tourbin
2004-10-22 14:51     ` Stanislav Yadykin
2004-10-22 14:25 ` Alexey Tourbin
2004-10-22 14:50   ` Stanislav Yadykin
2004-10-22 15:58     ` Alexey Tourbin
2004-10-25  6:00   ` Mike Lykov

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git