updates.
authorPekka Riikonen <priikone@silcnet.org>
Wed, 4 Dec 2002 20:30:48 +0000 (20:30 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Wed, 4 Dec 2002 20:30:48 +0000 (20:30 +0000)
TODO
apps/irssi/default.theme
apps/irssi/docs/help/in/smsg.in
lib/silccrypt/Makefile.am
libtoolfix

diff --git a/TODO b/TODO
index c972651c0cd7f583863f0e167d85c26e12d3da8c..a286ba075dbad1365899b06e7ce28719205a37b1 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,8 +1,6 @@
 TODO for Irssi SILC Client 1.0
 ==============================
 
- o Signed message payload handling on UI
-
  o Check make install with static/shared libs
 
  o Testing - See test plan:
index 4c97c6d9a30e9475f6babff8fe9c40d2686d4af1..b3c7ba3b4122824b01bb5cb722d946e067901d83 100644 (file)
@@ -304,10 +304,10 @@ abstracts = {
   # ownmsgnick_signed = "{msgnick {flag_signed} $1-}";
   # ownprivmsgnick_signed = "{msgnick {flag_signed} $*}";
   #
-  flag_signed = "%GS%n";
-  flag_unknown = "%Y?%n";
-  flag_failed = "%RF%n";
-  
+  flag_signed = "[%GS%n]";
+  flag_unknown = "[%Y?%n]";
+  flag_failed = "[%RF%n]";
+
   pubmsghinick_signed = "{msgnick {flag_signed} $0$2-%n}";
   pubmsghinick_unknown = "{msgnick {flag_unknown} $0$2-%n}";
   pubmsghinick_failed = "{msgnick {flag_failed} $0$2-%n}";
@@ -316,9 +316,9 @@ abstracts = {
   pubmsgmenick_unknown = "%g<{flag_unknown}$1->%n %|";
   pubmsgmenick_failed = "%g<{flag_failed}$1->%n %|";
   
-  pubmsgnick_signed = "{msgnick {flag_signed} $1-}";
-  pubmsgnick_unknown = "{msgnick {flag_unknown} $1-}";
-  pubmsgnick_failed = "{msgnick {flag_failed} $1-}";
+  pubmsgnick_signed = "{msgnick {flag_signed}$0 $1-}";
+  pubmsgnick_unknown = "{msgnick {flag_unknown}$0 $1-}";
+  pubmsgnick_failed = "{msgnick {flag_failed}$0 $1-}";
   
   privmsg_signed = "{privmsg {flag_signed}$0 $1}";
   privmsg_unknown = "{privmsg {flag_unknown}$0 $1}";
index 1bdad4ebb1d1338392e1f4cd8a7d8b4777098090..659de86de2d6b68b80ef0d01186060f2f608f799 100644 (file)
@@ -11,8 +11,17 @@ IS NOT private message, it is normal channel message.  Also this
 message will be signed and can be verified by using your public
 key.
 
-Example:
+The default theme of Irssi SILC Client shows the digital signed
+messages with [S] at start of the nickname who sent the message, when
+the message was successfully verified, [?] if the message could not
+be verified since the public key of the sender isn't cached locally,
+or [F] if the signature verificationn failed.  If you do not have
+the sender's public key you can fetch it with GETKEY command.
+
+Examples:
 
 /SMSG Foobar Very authenticated message
+/SMSG -channel silc Another signed message
+/SMSG * I truly said this
 
-See also: MSG QUERY
+See also: MSG QUERY GETKEY
index ec36004dc448c616e547a4e9b3693818833d3ecb..e2522d889f575d345642559f6c8b1e49f71d6c55 100644 (file)
@@ -20,8 +20,7 @@ AUTOMAKE_OPTIONS = 1.0 no-dependencies foreign
 
 noinst_LTLIBRARIES = libsilccrypt.la
 
-# Compile silccrypt always also as shared library since the SIMs will
-# need it.
+# Compile silccrypt always as shared library since silcsim will need it.
 LIBTOOL_ENABLE_SHARED=yes
 
 libsilccrypt_la_SOURCES = \
index 4f2a01ff7a391e3ebf4aca6109d475479facc13d..e7955faad478fa9ccb5ee47e9810ec577163df3e 100755 (executable)
@@ -40,8 +40,7 @@ EOF
 # Do a trick with the ltmain.sh to make these settings valid
 ltmain=`pwd`/ltmain.sh
 echo ". $ltmain" >> ./libtool.tmp
-mv ./libtool ./libtool.orig
-mv ./libtool.tmp ./libtool
+mv -f ./libtool.tmp ./libtool
 chmod +x ./libtool
 
 exit 1