Re: [kopete-devel] question about password manager

2007-02-26 Thread Martijn Klingens
On Saturday 24 February 2007 15:44, Matt Rogers wrote:
 On Saturday 24 February 2007 01:07, Cindy wrote:
  I don't have my messenger s/w store my passwords, I know them all and
  enter them every time.  But kopete insists on asking for access to
  some sort of password storage when I go online.  It seems to me that
  if I have specified the account(s) in question to NOT remember
  passwords, it should NOT ask about this kwallet or whatever it is --
  or I should be able to find an option to tell it to stop asking me
  about it.

 We have to ask for the password for the password manager (aka KWallet) to
 ensure that the passwords haven't been saved and we need to ask you for
 them.

Usability-wise it's a bit silly though.

I wonder if we can't detect the case of no existing passwords without forcing 
the KWallet dialog upon the user?

-- 
Martijn

Printer paper is strongest at the perforation...
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


Re: [kopete-devel] Usability issues in Chat History dialog

2007-02-26 Thread Martijn Klingens
Hi Johannes,

I cannot comment on most of the code since I don't know the History plugin 
very well (I would need to famliarize myself with it too), so I hope someone 
else can comment on parts of.

But some general comments to your mail:

On Saturday 24 February 2007 16:24, Johannes Jowereit wrote:
 first of all, thanks for your encouraging answers. I have now written
 a patch (applies to Kopete version 0.12.3) that solves at least some
 of the issues I wrote about:

Please note that Kopete 0.12 (KDE 3.5 version) is in maintenance mode, and 
only bugfixes are allowed. Some of your changes are perfect, but others 
probably belong in KDE 4's Kopete.

Speaking of which, do you think you'll be able to work on Kopete for KDE 4 as 
well? We could use more developers there...

Now, on to your changes:

 - The search line above the date list view has been removed.

Is it gone entirely or replaced with something else?

 - The status label has been removed and the progress bar is now placed
 at the bottom-left corner of the date list view (like in the file
 open dialog), where it doesn't take much space.

I probably need to see this before I can comment. It sounds like a good idea 
though.

 - The messages now have a header, even if it is not very pretty at the
 moment.

This is a new feature and probably a no-go for KDE 3.5, especially given that 
it introduces new strings.

For KDE 4 it's a good idea.

Some notes and thoughts though:

* You ask at some places whether i18n is needed. E.g.:

+  // FIXME: Does this have to be i18n'ed?
+  recipientsHTML += QString(td%3%1 (%2)/td).arg(...);

  The answer is yes, because in right-to-left languages (Hebrew and Arabic)
  the string may look like '(%2) %1%3' or so. It needs a translator comment to
  explain the meaning of %1-3 though or nobody can translate it ;)

* In that same line of code you do

   QString( %1 %2 %3 ).arg( A ).arg( B ).arg( C );

  Don't do that. Using arg() like this is slower, but worse, if A contains the
  text %1, it will replace that %1 with B, and %2 with C. This is the Qt 2
  way of doing things, in Qt 3 and Qt 4 it should be:

   QString( %1 %2 %3 ).arg( A, B, C );

* Should we use the chatwindow style here too, to make it look consistent?

 - The i18n issues have been fixed; all dates are now localized.

That should be safe for KDE 3.5. i18n changes that are fixes are allowed.

 - The search button is removed and has been replaced by a timer which
 starts the search after a typing pause of 500ms.

I don't think that's a good idea. I personally don't want to wait half a 
second, and at other times there's a half-second delay when I don't want to 
search yet.

If the search can be made lightweight, make it truly incremental. Otherwise, 
keep the search button.

In any case, this is too sensitive for bugs, please only do this for KDE 4.

 Additionally, I have fixed two bugs I found during testing:
 - The search now only begins when all messages have been loaded.
 Before, the progress bar did some crazy things when searching while
 the messages were loaded.

Good idea.

 - If you change the contact with the contact combo box while messages
 are loaded, the date list view will no longer be polluted with the
 messages of the contact selected before.

Also great :)

 In the UI, the combo boxes and the search box can now be accessed via
 keyboard shortcuts (accelerators).

That's a string change, but I very much would like to see this in 3.5. Matt, 
can this be done for 3.x?

 The message is now not only displayed in the message viewer when the
 corresponding item is clicked, but also when it is selected e.g. by
 keyboard (it now reacts simply on the selectionChanged signal).

Great!

 There are also some problems I couldn't solve. Maybe you can help me
 with it:
 - I commented out the code in line 374-381 (non-patched version) and
 replaced it by putting the account in the header. However, the
 original code does some checks I don't really understand. Is my code
 sufficent?

I'm not sure what it does either. Did you try 'svn annotate' to see what 
revision added this and find the corresponding 'svn log' message?

 - I couldn't get Qt to let the size of the date list view fixed, so
 now it is too big and resizes when the window is resized. How can this
 be fixed?

QSizePolicy::Fixed? But I'm not sure if hardcoding is a good idea. A splitter 
might be better.

 - I wanted to include a link to chat with the person whose messages
 are displayed. In KMail, the link had a form like im:cryptical
 string, but I couldn't figure out how to get that in Kopete. Or
 does this only work for contacts that are listed in the address book?

The cryptical string is the ID from the address book. But within Kopete you 
don't need to make this indirection. I think the chat window already does 
this. Take a look at that. But this really screams for sharing the code 
between history and chat window.

 - How are chats with more than one person handled? (I don't have an
 

[kopete-devel] [Bug 134907] No longer able to decrypt GPG IMs

2007-02-26 Thread Jörg
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
 
http://bugs.kde.org/show_bug.cgi?id=134907 




--- Additional Comments From yojoe schneebrett com  2007-02-26 15:27 ---
Subscribing to this thread...
Same problem here with Kopete 12.4 (KDE 3.5.6 release 31.2 openSUSE 10.2).
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


Re: [kopete-devel] question about password manager

2007-02-26 Thread Cindy
On 2/26/07, Martijn Klingens [EMAIL PROTECTED] wrote:
 On Saturday 24 February 2007 15:44, Matt Rogers wrote:
  On Saturday 24 February 2007 01:07, Cindy wrote:
   I don't have my messenger s/w store my passwords, I know them all and
   enter them every time.  But kopete insists on asking for access to
   some sort of password storage when I go online.  It seems to me that
   if I have specified the account(s) in question to NOT remember
   passwords, it should NOT ask about this kwallet or whatever it is --
   or I should be able to find an option to tell it to stop asking me
   about it.
 
  We have to ask for the password for the password manager (aka KWallet) to
  ensure that the passwords haven't been saved and we need to ask you for
  them.

 Usability-wise it's a bit silly though.

 I wonder if we can't detect the case of no existing passwords without forcing
 the KWallet dialog upon the user?

Yes, that's what I was thinking.  I have to tick off something that
tells Kopete whether or not to save the password for the account I set
up.  I should think that could be stored to determine whether or no to
call up the wallet.  If  I later tick it to remember, then it can
start calling the wallet for the password.  Because as it is, this
involves several useless dialog boxes for me to get thru before
running Kopete and it's annoying.

Thanks,
--Cindy
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] [Bug 142231] New: application shutdown, when i tried to establishe connection

2007-02-26 Thread Pasha Obraztsov
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
 
http://bugs.kde.org/show_bug.cgi?id=142231 
   Summary: application shutdown, when i tried to establishe
connection
   Product: kopete
   Version: unspecified
  Platform: unspecified
OS/Version: Linux
Status: UNCONFIRMED
  Severity: crash
  Priority: NOR
 Component: general
AssignedTo: kopete-devel kde org
ReportedBy: patx inbox ru


Version:   невідома (using KDE 3.5.5 release 45 , openSUSE 10.2)
Compiler:  Target: i586-suse-linux
OS:Linux (i686) release 2.6.18.2-34-default

application shutdown, when i tried to establishe connection
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] Deutschlands größtes Videocampo rtal

2007-02-26 Thread [EMAIL PROTECTED]
 - Dies ist eine HTML-Nachricht. Nicht alle Elemente können im Nur-Text Modus 
angezeigt werden. -

Deutschlands größtes Videocamportal!!!
hunderte kostenlose Videocams mit Chat! keine versteckten kosten! schauen Sie 
selbst:
www.nestrada.de
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] kostenloses Videocamportal

2007-02-26 Thread [EMAIL PROTECTED]
 - Dies ist eine HTML-Nachricht. Nicht alle Elemente können im Nur-Text Modus 
angezeigt werden. -

___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] [Bug 142234] Filesending in Yahoo not working with some IDs

2007-02-26 Thread Andre Duffeck
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
 
http://bugs.kde.org/show_bug.cgi?id=142234 
andre duffeck de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From andre duffeck de  2007-02-26 20:00 ---
That's a duplicate but thanks for the hint with the underscores, maybe it helps.

*** This bug has been marked as a duplicate of 128563 ***
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] [Bug 128563] File transfer with Yahoo protocol

2007-02-26 Thread owner
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
 
http://bugs.kde.org/show_bug.cgi?id=128563 
andre duffeck de changed:

   What|Removed |Added

 CC||nrg88hq gmail com



--- Additional Comments From andre duffeck de  2007-02-26 20:01 ---
*** Bug 142234 has been marked as a duplicate of this bug. ***
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel


[kopete-devel] [Bug 138800] Unable to Send and Recieve Files

2007-02-26 Thread Andre Duffeck
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.
 
http://bugs.kde.org/show_bug.cgi?id=138800 
andre duffeck de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||DUPLICATE



--- Additional Comments From andre duffeck de  2007-02-26 20:01 ---


*** This bug has been marked as a duplicate of 128563 ***
___
kopete-devel mailing list
kopete-devel@kde.org
https://mail.kde.org/mailman/listinfo/kopete-devel