annotate lisp/gnus/gnus-gl.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; gnus-gl.el --- an interface to GroupLens for Gnus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1995,96 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Author: Brad Miller <bmiller@cs.umn.edu>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Keywords: news, score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Commentary:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; GroupLens software and documentation is copyright (c) 1995 by Paul
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; Resnick (Massachusetts Institute of Technology); Brad Miller, John
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; Riedl, Jon Herlocker, and Joseph Konstan (University of Minnesota),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; and David Maltz (Carnegie-Mellon University).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; Permission to use, copy, modify, and distribute this documentation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; for non-commercial and commercial purposes without fee is hereby
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; granted provided that this copyright notice and permission notice
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; appears in all copies and that the names of the individuals and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; institutions holding this copyright are not used in advertising or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; publicity pertaining to this software without specific, written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; prior permission. The copyright holders make no representations
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;; about the suitability of this software and documentation for any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; purpose. It is provided ``as is'' without express or implied
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ;; warranty.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;; The copyright holders request that they be notified of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;; modifications of this code. Please send electronic mail to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ;; grouplens@cs.umn.edu for more information or to announce derived
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;; works.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ;; Author: Brad Miller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;; User Documentation:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ;; To use GroupLens you must load this file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 ;; You must also register a pseudonym with the Better Bit Bureau.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 ;; http://www.cs.umn.edu/Research/GroupLens
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 ;; ---------------- For your .emacs or .gnus file ----------------
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 ;; As of version 2.5, grouplens now works as a minor mode of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 ;; gnus-summary-mode. To get make that work you just need a couple of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 ;; hooks.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 ;; (setq gnus-use-grouplens t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 ;; (setq grouplens-pseudonym "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 ;; (setq grouplens-bbb-host "grouplens.cs.umn.edu")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 ;; (setq gnus-summary-default-score 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 ;; USING GROUPLENS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 ;; How do I Rate an article??
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 ;; Before you type n to go to the next article, hit a number from 1-5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; Type r in the summary buffer and you will be prompted.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; Note that when you're in grouplens-minor-mode 'r' maskes the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 ;; usual reply binding for 'r'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 ;; What if, Gasp, I find a bug???
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 ;; Please type M-x gnus-gl-submit-bug-report. This will set up a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 ;; mail buffer with the state of variables and buffers that will help
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 ;; me debug the problem. A short description up front would help too!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 ;; How do I display the prediction for an aritcle:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 ;; If you set the gnus-summary-line-format as shown above, the score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 ;; (prediction) will be shown automatically.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 ;; Programmer Notes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 ;; 10/9/95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ;; gnus-scores-articles contains the articles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ;; When scoring is done, the call tree looks something like:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ;; gnus-possibly-score-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;; ==> gnus-score-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ;; ==> gnus-score-load-file
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ;; ==> get-all-mids (from the eval form)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ;; it would be nice to have one that gets called after all the other
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;; headers have been scored.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ;; we may want a variable gnus-grouplens-scale-factor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ;; and gnus-grouplens-offset this would probably be either -3 or 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 ;; to make the scores centered around zero or not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;; Notes 10/12/95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 ;; According to Lars, Norse god of gnus, the simple way to insert a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 ;; call to an external function is to have a function added to the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 ;; variable gnus-score-find-files-function This new function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 ;; gnus-grouplens-score-alist will return a core alist that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 ;; has (("message-id" ("<message-id-xxxx>" score) ("<message-id-xxxy>" score))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 ;; This seems like it would be pretty inefficient, though workable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 ;; TODO
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 ;; 3. Add some more ways to rate messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 ;; 4. Better error handling for token timeouts.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 ;; bugs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (require 'gnus-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (require 'cl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;;;; User variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (defvar gnus-summary-grouplens-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 "%U%R%z%l%I%(%[%4L: %-20,20n%]%) %s\n"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 "*The line format spec in summary GroupLens mode buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (defvar grouplens-pseudonym ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 "User's pseudonym. This pseudonym is obtained during the registration process")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (defvar grouplens-bbb-host "grouplens.cs.umn.edu"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 "Host where the bbbd is running" )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (defvar grouplens-bbb-port 9000
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 "Port where the bbbd is listening" )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (defvar grouplens-newsgroups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 '("comp.lang.c++" "rec.humor" "rec.food.recipes" "comp.groupware"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 "mn.general" "rec.arts.movies" "rec.arts.movies.current-films"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 "comp.lang.java" "comp.os.linux.announce" "comp.os.linux.misc"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 "comp.os.linux.development.apps" "comp.os.linux.development.system")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 "*Groups that are part of the GroupLens experiment.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (defvar grouplens-prediction-display 'prediction-spot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 "valid values are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 prediction-spot -- an * corresponding to the prediction between 1 and 5,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 confidence-interval -- a numeric confidence interval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 prediction-bar -- |##### | the longer the bar, the better the article,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 confidence-bar -- | ----- } the prediction is in the middle of the bar,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 confidence-spot -- ) * | the spot gets bigger with more confidence,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 prediction-num -- plain-old numeric value,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 confidence-plus-minus -- prediction +/i confidence")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (defvar grouplens-score-offset 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 "Offset the prediction by this value.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 Setting this variable to -2 would have the following effect on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 GroupLens scores:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 1 --> -2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 2 --> -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 3 --> 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 4 --> 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 5 --> 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 The reason is that a user might want to do this is to combine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 GroupLens predictions with scores calculated by other score methods.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (defvar grouplens-score-scale-factor 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 "This variable allows the user to magnify the effect of GroupLens scores.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 The scale factor is applied after the offset.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (defvar gnus-grouplens-override-scoring 'override
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 "Tell Grouplens to override the normal Gnus scoring mechanism.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 GroupLens scores can be combined with gnus scores in one of three ways.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 'override -- just use grouplens predictions for grouplens groups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 'combine -- combine grouplens scores with gnus scores
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 'separate -- treat grouplens scores completely separate from gnus")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 ;;;; Program global variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (defvar grouplens-bbb-token "0"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 "Current session token number")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defvar grouplens-bbb-process nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 "Process Id of current bbbd network stream process")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (defvar grouplens-bbb-buffer nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 "Buffer associated with the BBBD process")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (defvar grouplens-rating-alist nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 "Current set of message-id rating pairs")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (defvar grouplens-current-hashtable (make-hash-table :test 'equal :size 100))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 ;; this seems like a pretty ugly way to get around the problem, but If
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 ;; I don't do this, then the compiler complains when I call gethash
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (eval-when-compile (setq grouplens-current-hashtable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (make-hash-table :test 'equal :size 100)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (defvar grouplens-current-group nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (defvar bbb-mid-list nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (defvar bbb-alist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (defvar bbb-timeout-secs 10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 "Number of seconds to wait for some response from the BBB.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 If this times out we give up and assume that something has died..." )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 (defvar grouplens-previous-article nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 "Message-ID of the last article read.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (defvar bbb-read-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (defvar bbb-response-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 ;;;; Utility Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (defun bbb-connect-to-bbbd (host port)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (unless grouplens-bbb-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (setq grouplens-bbb-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (get-buffer-create (format " *BBBD trace: %s*" host)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (set-buffer grouplens-bbb-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (make-local-variable 'bbb-read-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (setq bbb-read-point (point-min))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 ;; clear the trace buffer of old output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (set-buffer grouplens-bbb-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 ;; open the connection to the server
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (setq grouplens-bbb-process nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (catch 'done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (condition-case error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (setq grouplens-bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (open-network-stream "BBBD" grouplens-bbb-buffer host port))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (error (gnus-message 3 "Error: Failed to connect to BBB")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (and (null grouplens-bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (throw 'done nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; (set-process-filter grouplens-bbb-process 'bbb-process-filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (set-buffer grouplens-bbb-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 (setq bbb-read-point (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (or (bbb-read-response grouplens-bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (throw 'done nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 grouplens-bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 ;; (defun bbb-process-filter (process output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 ;; (set-buffer (bbb-process-buffer process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 ;; (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ;; (insert output)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (defun bbb-send-command (process command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (insert command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (insert "\r\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (setq bbb-read-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (setq bbb-response-point (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (set-marker (process-mark process) (point)) ; process output also comes here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (process-send-string process command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (process-send-string process "\r\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (defun bbb-read-response (process) ; &optional return-response-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 "This function eats the initial response of OK or ERROR from the BBB."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (let ((case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 match-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (goto-char bbb-read-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (while (and (not (search-forward "\r\n" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (accept-process-output process bbb-timeout-secs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (goto-char bbb-read-point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (setq match-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (goto-char bbb-read-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (setq bbb-read-point match-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (looking-at "OK")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 ;;;; Login Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (defun bbb-login ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 "return the token number if login is successful, otherwise return nil"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (setq grouplens-bbb-token nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (if (not (equal grouplens-pseudonym ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (let ((bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (bbb-connect-to-bbbd grouplens-bbb-host grouplens-bbb-port)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (if bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (set-buffer (process-buffer bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (bbb-send-command bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (concat "login " grouplens-pseudonym))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (if (bbb-read-response bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (setq grouplens-bbb-token (bbb-extract-token-number))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (gnus-message 3 "Error: Grouplens login failed")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (gnus-message 3 "Error: you must set a pseudonym"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 grouplens-bbb-token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (defun bbb-extract-token-number ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (let ((token-pos (search-forward "token=" nil t) ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (if (looking-at "[0-9]+")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (buffer-substring token-pos (match-end 0)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (gnus-add-shutdown 'bbb-logout 'gnus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (defun bbb-logout ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 "logout of bbb session"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (let ((bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (bbb-connect-to-bbbd grouplens-bbb-host grouplens-bbb-port)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (if bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (set-buffer (process-buffer bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (bbb-send-command bbb-process (concat "logout " grouplens-bbb-token))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (bbb-read-response bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 ;;;; Get Predictions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (defun bbb-build-mid-scores-alist (groupname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 "this function can be called as part of the function to return the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 list of score files to use. See the gnus variable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 gnus-score-find-score-files-function.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 *Note:* If you want to use grouplens scores along with calculated scores,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 you should see the offset and scale variables. At this point, I don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 recommend using both scores and grouplens predictions together."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (setq grouplens-current-group groupname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (if (member groupname grouplens-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (let* ((mid-list (bbb-get-all-mids))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (predict-list (bbb-get-predictions mid-list groupname)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (setq grouplens-previous-article nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 ;; scores-alist should be a list of lists:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 ;; ((("message-id" ("<mid1>" score1 nil s) ("<mid2> score2 nil s))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ;;`((("message-id" . ,predict-list))) ; Yes, this is the return value
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (list (list (list (append (list "message-id") predict-list)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (defun bbb-get-predictions (midlist groupname)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 "Ask the bbb for predictions, and build up the score alist."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (if (or (null grouplens-bbb-token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (equal grouplens-bbb-token "0"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (gnus-message 3 "Error: You are not logged in to a BBB")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (gnus-message 5 "Fetching Predictions...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (let (predict-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (predict-command (bbb-build-predict-command midlist groupname
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 grouplens-bbb-token))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (bbb-process (bbb-connect-to-bbbd grouplens-bbb-host
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 grouplens-bbb-port)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (if bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (set-buffer (process-buffer bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (bbb-send-command bbb-process predict-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (if (bbb-read-response bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (setq predict-list (bbb-get-prediction-response bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (gnus-message 1 "Invalid Token, login and try again")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (ding))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (setq bbb-alist predict-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (defun bbb-get-all-mids ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (let ((index (nth 1 (assoc "message-id" gnus-header-index)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (articles gnus-newsgroup-headers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 art this)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (setq bbb-mid-list nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (while articles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (progn (setq art (car articles)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 this (aref art index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 articles (cdr articles))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (setq bbb-mid-list (cons this bbb-mid-list))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 bbb-mid-list))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (defun bbb-build-predict-command (mlist grpname token)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (let ((cmd (concat "getpredictions " token " " grpname "\r\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 art)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (while mlist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (setq art (car mlist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 cmd (concat cmd art "\r\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 mlist (cdr mlist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (setq cmd (concat cmd ".\r\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 cmd))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (defun bbb-get-prediction-response (process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (let ((case-fold-search nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 match-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (goto-char bbb-read-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (while (and (not (search-forward ".\r\n" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (accept-process-output process bbb-timeout-secs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (goto-char bbb-read-point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (setq match-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (goto-char (+ bbb-response-point 4)) ;; we ought to be right before OK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (bbb-build-response-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 ;; build-response-alist assumes that the cursor has been positioned at
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 ;; the first line of the list of mid/rating pairs. For now we will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 ;; use a prediction of 99 to signify no prediction. Ultimately, we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 ;; should just ignore messages with no predictions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (defun bbb-build-response-alist ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (let ((resp nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (match-end (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (setq grouplens-current-hashtable (make-hash-table :test 'equal :size 100))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (while
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (cond ((looking-at "\\(<.*>\\) :nopred=")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (push `(,(bbb-get-mid) ,gnus-summary-default-score nil s) resp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 ((looking-at "\\(<.*>\\) :pred=\\([0-9]\.[0-9][0-9]\\) :conflow=\\([0-9]\.[0-9][0-9]\\) :confhigh=\\([0-9]\.[0-9][0-9]\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (push `(,(bbb-get-mid) ,(bbb-get-pred) nil s) resp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (cl-puthash (bbb-get-mid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (list (bbb-get-pred) (bbb-get-confl) (bbb-get-confh))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 grouplens-current-hashtable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 ((looking-at "\\(<.*>\\) :pred=\\([0-9]\.[0-9][0-9]\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (push `(,(bbb-get-mid) ,(bbb-get-pred) nil s) resp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (cl-puthash (bbb-get-mid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (list (bbb-get-pred) 0 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 grouplens-current-hashtable)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (t nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 resp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 ;; these two functions assume that there is an active match lying
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 ;; around. Where the first parenthesized expression is the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 ;; message-id, and the second is the prediction. Since gnus assumes
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 ;; that scores are integer values?? we round the prediction.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (defun bbb-get-mid ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 (buffer-substring (match-beginning 1) (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 (defun bbb-get-pred ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (let ((tpred (string-to-number (buffer-substring
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 (match-beginning 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 (match-end 2)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (if (> tpred 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (round (* grouplens-score-scale-factor (+ grouplens-score-offset tpred)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (defun bbb-get-confl ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 (string-to-number (buffer-substring (match-beginning 3) (match-end 3))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 (defun bbb-get-confh ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 (string-to-number (buffer-substring (match-beginning 4) (match-end 4))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 ;;;; Prediction Display
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 (defconst grplens-rating-range 4.0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (defconst grplens-maxrating 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 (defconst grplens-minrating 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (defconst grplens-predstringsize 12)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (defvar gnus-tmp-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (defun bbb-grouplens-score (header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (if (eq gnus-grouplens-override-scoring 'separate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (bbb-grouplens-other-score header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (let* ((rate-string (make-string 12 ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (mid (aref header (nth 1 (assoc "message-id" gnus-header-index))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (hashent (gethash mid grouplens-current-hashtable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 (iscore gnus-tmp-score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (low (car (cdr hashent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 (high (car (cdr (cdr hashent)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (aset rate-string 0 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (aset rate-string 11 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 (unless (member grouplens-current-group grouplens-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (unless (equal grouplens-prediction-display 'prediction-num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (cond ((< iscore 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 (setq iscore 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 ((> iscore 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 (setq iscore 5))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (setq low 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (setq high 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (if (and (bbb-valid-score iscore)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 (not (null mid)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 ;; prediction-spot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 ((equal grouplens-prediction-display 'prediction-spot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 (setq rate-string (bbb-fmt-prediction-spot rate-string iscore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 ;; confidence-interval
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 ((equal grouplens-prediction-display 'confidence-interval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 (setq rate-string (bbb-fmt-confidence-interval iscore low high)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 ;; prediction-bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 ((equal grouplens-prediction-display 'prediction-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 (setq rate-string (bbb-fmt-prediction-bar rate-string iscore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 ;; confidence-bar
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 ((equal grouplens-prediction-display 'confidence-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (setq rate-string (format "| %4.2f |" iscore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 ;; confidence-spot
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 ((equal grouplens-prediction-display 'confidence-spot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (setq rate-string (format "| %4.2f |" iscore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 ;; prediction-num
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 ((equal grouplens-prediction-display 'prediction-num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (setq rate-string (bbb-fmt-prediction-num iscore)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 ;; confidence-plus-minus
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 ((equal grouplens-prediction-display 'confidence-plus-minus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (setq rate-string (bbb-fmt-confidence-plus-minus iscore low high))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 (t (gnus-message 3 "Invalid prediction display type")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (aset rate-string 5 ?N) (aset rate-string 6 ?A))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 rate-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 ;; Gnus user format function that doesn't depend on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 ;; bbb-build-mid-scores-alist being used as the score function, but is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 ;; instead called from gnus-select-group-hook. -- LAB
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (defun bbb-grouplens-other-score (header)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (if (not (member grouplens-current-group grouplens-newsgroups))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 ;; Return an empty string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (let* ((rate-string (make-string 12 ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (mid (aref header (nth 1 (assoc "message-id" gnus-header-index))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 (hashent (gethash mid grouplens-current-hashtable))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (pred (or (nth 0 hashent) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (low (nth 1 hashent))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 (high (nth 2 hashent)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 ;; Init rate-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (aset rate-string 0 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (aset rate-string 11 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (unless (equal grouplens-prediction-display 'prediction-num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (cond ((< pred 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 (setq pred 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ((> pred 5)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (setq pred 5))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 ;; If no entry in BBB hash mark rate string as NA and return
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ((null hashent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (aset rate-string 5 ?N)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (aset rate-string 6 ?A)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 rate-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 ((equal grouplens-prediction-display 'prediction-spot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 (bbb-fmt-prediction-spot rate-string pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 ((equal grouplens-prediction-display 'confidence-interval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (bbb-fmt-confidence-interval pred low high))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 ((equal grouplens-prediction-display 'prediction-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (bbb-fmt-prediction-bar rate-string pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 ((equal grouplens-prediction-display 'confidence-bar)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (format "| %4.2f |" pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 ((equal grouplens-prediction-display 'confidence-spot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (format "| %4.2f |" pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 ((equal grouplens-prediction-display 'prediction-num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 (bbb-fmt-prediction-num pred))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 ((equal grouplens-prediction-display 'confidence-plus-minus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (bbb-fmt-confidence-plus-minus pred low high))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (gnus-message 3 "Invalid prediction display type")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (aset rate-string 0 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 (aset rate-string 11 ?|)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 rate-string)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 (defun bbb-valid-score (score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (or (equal grouplens-prediction-display 'prediction-num)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (and (>= score grplens-minrating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (<= score grplens-maxrating))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (defun bbb-requires-confidence (format-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (or (equal format-type 'confidence-plus-minus)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (equal format-type 'confidence-spot)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (equal format-type 'confidence-interval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (defun bbb-have-confidence (clow chigh)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (not (or (null clow)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (null chigh))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581 (defun bbb-fmt-prediction-spot (rate-string score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (aset rate-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (round (* (/ (- score grplens-minrating) grplens-rating-range)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (+ (- grplens-predstringsize 4) 1.49)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 ?*)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 rate-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (defun bbb-fmt-confidence-interval (score low high)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (if (bbb-have-confidence low high)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (format "|%4.2f-%4.2f |" low high)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (bbb-fmt-prediction-num score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (defun bbb-fmt-confidence-plus-minus (score low high)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (if (bbb-have-confidence low high)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (format "|%3.1f+/-%4.2f|" score (/ (- high low) 2.0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (bbb-fmt-prediction-num score)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (defun bbb-fmt-prediction-bar (rate-string score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (let* ((i 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (step (/ grplens-rating-range (- grplens-predstringsize 4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (half-step (/ step 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (loc (- grplens-minrating half-step)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (while (< i (- grplens-predstringsize 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 (if (> score loc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (aset rate-string i ?#)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 (aset rate-string i ? ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 (setq i (+ i 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 (setq loc (+ loc step)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 rate-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 (defun bbb-fmt-prediction-num (score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (format "| %4.2f |" score))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 ;;;; Put Ratings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 ;; The message-id for the current article can be found in
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 ;; (aref gnus-current-headers (nth 1 (assoc "message-id" gnus-header-index)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (defun bbb-put-ratings ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (if (and grouplens-rating-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (member gnus-newsgroup-name grouplens-newsgroups))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (let ((bbb-process (bbb-connect-to-bbbd grouplens-bbb-host
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 grouplens-bbb-port))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (rate-command (bbb-build-rate-command grouplens-rating-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (if bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (set-buffer (process-buffer bbb-process))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (gnus-message 5 "Sending Ratings...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (bbb-send-command bbb-process rate-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (if (bbb-read-response bbb-process)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (setq grouplens-rating-alist nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (gnus-message 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 "Token timed out: call bbb-login and quit again")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (ding))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (gnus-message 5 "Sending Ratings...Done"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 (gnus-message 3 "No BBB connection")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (setq grouplens-rating-alist nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 (defun bbb-build-rate-command (rate-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 (let (this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 (cmd (concat "putratings " grouplens-bbb-token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 " " grouplens-current-group " \r\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 (while rate-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (setq this (car rate-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 cmd (concat cmd (car this) " :rating=" (cadr this) ".00"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 " :time=" (cddr this) "\r\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 rate-alist (cdr rate-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (concat cmd ".\r\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 ;; Interactive rating functions.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (defun bbb-summary-rate-article (rating &optional midin)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (interactive "nRating: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (when (member gnus-newsgroup-name grouplens-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (let ((mid (or midin (bbb-get-current-id))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (if (and rating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (>= rating grplens-minrating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (<= rating grplens-maxrating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 mid)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 (let ((oldrating (assoc mid grouplens-rating-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 (if oldrating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 (setcdr oldrating (cons rating 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (push `(,mid . (,rating . 0)) grouplens-rating-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 (gnus-summary-mark-article nil (int-to-string rating)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (gnus-message 3 "Invalid rating")))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 (defun grouplens-next-unread-article (rating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 "Select unread article after current one."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 (if rating (bbb-summary-rate-article rating))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 (gnus-summary-next-unread-article))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 (defun grouplens-best-unread-article (rating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 "Select unread article after current one."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 (if rating (bbb-summary-rate-article rating))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 (gnus-summary-best-unread-article))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 (defun grouplens-summary-catchup-and-exit (rating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 "Mark all articles not marked as unread in this newsgroup as read,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 then exit. If prefix argument ALL is non-nil, all articles are
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 marked as read."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 (if rating
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 (bbb-summary-rate-article rating))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 (if (numberp rating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 (gnus-summary-catchup-and-exit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 (gnus-summary-catchup-and-exit rating)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 (defun grouplens-score-thread (score)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 "Raise the score of the articles in the current thread with SCORE."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 (interactive "nRating: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 (let (e)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 (let ((articles (gnus-summary-articles-in-thread)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 (while articles
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 (gnus-summary-goto-subject (car articles))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 (gnus-set-global-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 (bbb-summary-rate-article score
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 (mail-header-id
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 (gnus-summary-article-header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (car articles))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 (setq articles (cdr articles))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 (setq e (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 (let ((gnus-summary-check-current t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 (or (zerop (gnus-summary-next-subject 1 t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (goto-char e))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 (gnus-summary-recenter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (gnus-summary-position-point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (gnus-set-mode-line 'summary))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (defun bbb-get-current-id ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (if gnus-current-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 (aref gnus-current-headers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (nth 1 (assoc "message-id" gnus-header-index)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 (gnus-message 3 "You must select an article before you rate it")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 (defun bbb-grouplens-group-p (group)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 "Say whether GROUP is a GroupLens group."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 (if (member group grouplens-newsgroups) " (GroupLens Enhanced)" ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 ;; TIME SPENT READING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 (defvar grouplens-current-starting-time nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 (defun grouplens-start-timer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 (setq grouplens-current-starting-time (current-time)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 (defun grouplens-elapsed-time ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 (let ((et (bbb-time-float (current-time))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 (- et (bbb-time-float grouplens-current-starting-time))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 (defun bbb-time-float (timeval)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 (+ (* (car timeval) 65536)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739 (cadr timeval)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741 (defun grouplens-do-time ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 (when (member gnus-newsgroup-name grouplens-newsgroups)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743 (when grouplens-previous-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 (let ((elapsed-time (grouplens-elapsed-time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 (oldrating (assoc grouplens-previous-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 grouplens-rating-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 (if (not oldrating)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 (push `(,grouplens-previous-article . (0 . ,elapsed-time))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 grouplens-rating-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 (setcdr oldrating (cons (cadr oldrating) elapsed-time)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 (grouplens-start-timer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 (setq grouplens-previous-article (bbb-get-current-id))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 ;; BUG REPORTING
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 (defconst gnus-gl-version "gnus-gl.el 2.12")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 (defconst gnus-gl-maintainer-address "grouplens-bug@cs.umn.edu")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 (defun gnus-gl-submit-bug-report ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761 "Submit via mail a bug report on gnus-gl"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 (require 'reporter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 (reporter-submit-bug-report gnus-gl-maintainer-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 (concat "gnus-gl.el " gnus-gl-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 (list 'grouplens-pseudonym
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 'grouplens-bbb-host
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 'grouplens-bbb-port
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 'grouplens-newsgroups
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 'grouplens-bbb-token
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 'grouplens-bbb-process
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 'grouplens-current-group
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 'grouplens-previous-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 'grouplens-mid-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 'bbb-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 'gnus-gl-get-trace))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779 (defun gnus-gl-get-trace ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 "Insert the contents of the BBBD trace buffer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 (if grouplens-bbb-buffer (insert-buffer grouplens-bbb-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 ;;; Additions to make gnus-grouplens-mode Warning Warning!!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 ;;; This version of the gnus-grouplens-mode does
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 ;;; not work with gnus-5.x. The "old" way of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787 ;;; setting up GroupLens still works however.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 ;;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 (defvar gnus-grouplens-mode nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 "Minor mode for providing a GroupLens interface in Gnus summary buffers.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792 (defvar gnus-grouplens-mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 (unless gnus-grouplens-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 (setq gnus-grouplens-mode-map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 (gnus-define-keys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 gnus-grouplens-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 "n" grouplens-next-unread-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799 "r" bbb-summary-rate-article
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 "k" grouplens-score-thread
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 "c" grouplens-summary-catchup-and-exit
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 "," grouplens-best-unread-article))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 (defun gnus-grouplens-make-menu-bar ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805 (unless (boundp 'gnus-grouplens-menu)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 (easy-menu-define
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 gnus-grouplens-menu gnus-grouplens-mode-map ""
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 '("GroupLens"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 ["Login" bbb-login t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 ["Rate" bbb-summary-rate-article t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 ["Next article" grouplens-next-unread-article t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 ["Best article" grouplens-best-unread-article t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 ["Raise thread" grouplens-score-thread t]
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 ["Report bugs" gnus-gl-submit-bug-report t]))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 (defun gnus-grouplens-mode (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 "Minor mode for providing a GroupLens interface in Gnus summary buffers."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 (when (and (eq major-mode 'gnus-summary-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 (member gnus-newsgroup-name grouplens-newsgroups))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 (make-local-variable 'gnus-grouplens-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 (setq gnus-grouplens-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 (if (null arg) (not gnus-grouplens-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 (> (prefix-numeric-value arg) 0)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 (when gnus-grouplens-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 (if (not (fboundp 'make-local-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 (add-hook 'gnus-select-article-hook 'grouplens-do-time)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 (make-local-hook 'gnus-select-article-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 (add-hook 'gnus-select-article-hook 'grouplens-do-time nil 'local))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 (if (not (fboundp 'make-local-hook))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831 (add-hook 'gnus-exit-group-hook 'bbb-put-ratings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 (make-local-hook 'gnus-exit-group-hook)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 (add-hook 'gnus-exit-group-hook 'bbb-put-ratings nil 'local))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 (make-local-variable 'gnus-score-find-score-files-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 (cond ((eq gnus-grouplens-override-scoring 'combine)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836 ;; either add bbb-buld-mid-scores-alist to a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 ;; or make a list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 (if (listp gnus-score-find-score-files-function)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 (setq gnus-score-find-score-files-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 (append 'bbb-build-mid-scores-alist
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 gnus-score-find-score-files-function ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 (setq gnus-score-find-score-files-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 (list gnus-score-find-score-files-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 'bbb-build-mid-scores-alist))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845 ;; leave the gnus-score-find-score-files variable alone
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 ((eq gnus-grouplens-override-scoring 'separate)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847 (add-hook 'gnus-select-group-hook
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 '(lambda()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 (bbb-build-mid-scores-alist gnus-newsgroup-name))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850 ;; default is to override
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 (t (setq gnus-score-find-score-files-function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852 'bbb-build-mid-scores-alist)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 (make-local-variable 'gnus-summary-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 (setq gnus-summary-line-format
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 gnus-summary-grouplens-line-format)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 (make-local-variable 'gnus-summary-line-format-spec)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 (setq gnus-summary-line-format-spec nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 ;; Set up the menu.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 (when (and menu-bar-mode
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 (gnus-visual-p 'grouplens-menu 'menu))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 (gnus-grouplens-make-menu-bar))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863 (unless (assq 'gnus-grouplens-mode minor-mode-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 (push '(gnus-grouplens-mode " GroupLens") minor-mode-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865 (unless (assq 'gnus-grouplens-mode minor-mode-map-alist)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 (push (cons 'gnus-grouplens-mode gnus-grouplens-mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867 minor-mode-map-alist))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 (run-hooks 'gnus-grouplens-mode-hook))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870 (provide 'gnus-gl)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 ;;; gnus-gl.el ends here