Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d406cffa
Commit
d406cffa
authored
Mar 29, 2013
by
Andrew Cohen
Committed by
Katsumi Yamaoka
Mar 29, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/gnus/nnir.el: Allow nnir group creation based on an existing query
parent
75a2f981
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
14 deletions
+44
-14
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+8
-0
lisp/gnus/nnir.el
lisp/gnus/nnir.el
+36
-14
No files found.
lisp/gnus/ChangeLog
View file @
d406cffa
2013-03-29 Andrew Cohen <cohen@bu.edu>
* nnir.el: Define 'number-sequence for xemacs.
(gnus-summary-create-nnir-group): New function to create an nnir group
from an nnir summary buffer based on the current query.
(nnir-request-create-group): Update to allow nnir group creation based
on the current query.
2013-03-28 Katsumi Yamaoka <yamaoka@jpl.org>
* nndraft.el (nndraft-request-expire-articles):
...
...
lisp/gnus/nnir.el
View file @
d406cffa
...
...
@@ -173,7 +173,15 @@
;; For Emacs <22.2 and XEmacs.
(
eval-and-compile
(
unless
(
fboundp
'declare-function
)
(
defmacro
declare-function
(
&rest
r
))))
(
unless
(
fboundp
'declare-function
)
(
defmacro
declare-function
(
&rest
r
)))
(
unless
(
fboundp
'number-sequence
)
(
defun
number-sequence
(
from
to
)
(
let
(
seq
(
n
0
)
(
next
from
))
(
while
(
<=
next
to
)
(
setq
seq
(
cons
next
seq
)
n
(
1+
n
)
next
(
+
from
n
)))
(
nreverse
seq
)))))
(
require
'nnoo
)
(
require
'gnus-group
)
...
...
@@ -1840,24 +1848,38 @@ article came from is also searched."
(
add-hook
'gnus-summary-article-expire-hook
'nnir-registry-action
t
t
))))
(
defun
gnus-summary-create-nnir-group
()
(
interactive
)
(
let
((
name
(
gnus-read-group
"Group name: "
))
(
method
"nnir"
)
(
pgroup
(
if
(
gnus-group-prefixed-p
gnus-newsgroup-name
)
gnus-newsgroup-name
(
gnus-group-prefixed-name
gnus-newsgroup-name
'
(
nnir
"nnir"
)))))
(
with-current-buffer
gnus-group-buffer
(
gnus-group-make-group
name
method
nil
(
gnus-group-find-parameter
pgroup
)))))
(
deffoo
nnir-request-create-group
(
group
&optional
server
args
)
(
message
"Creating nnir group %s"
group
)
(
let
((
group
(
gnus-group-prefixed-name
group
'
(
nnir
"nnir"
)))
(
let*
((
group
(
gnus-group-prefixed-name
group
'
(
nnir
"nnir"
)))
(
specs
(
assoc
'nnir-specs
args
))
(
query-spec
(
or
(
cdr
(
assoc
'nnir-query-spec
specs
))
(
list
(
cons
'query
(
read-string
"Query: "
nil
'nnir-search-history
))))
(
group-spec
(
list
(
list
(
read-string
"Server: "
nil
nil
)))))
(
gnus-group-set-parameter
group
'nnir-specs
(
list
(
cons
'nnir-query-spec
query-spec
)
(
cons
'nnir-group-spec
group-spec
)))
(
read-string
"Query: "
nil
'nnir-search-history
)))))
(
group-spec
(
or
(
cdr
(
assoc
'nnir-group-spec
specs
))
(
list
(
list
(
read-string
"Server: "
nil
nil
)))))
(
nnir-specs
(
list
(
cons
'nnir-query-spec
query-spec
)
(
cons
'nnir-group-spec
group-spec
))))
(
gnus-group-set-parameter
group
'nnir-specs
nnir-specs
)
(
gnus-group-set-parameter
group
'nnir-artlist
(
setq
nnir-artlist
(
nnir-run-query
(
list
(
cons
'nnir-query-spec
query-spec
)
(
cons
'nnir-group-spec
group-spec
)))))
(
or
(
cdr
(
assoc
'nnir-artlist
args
))
(
nnir-run-query
nnir-specs
)))
(
nnir-request-update-info
group
(
gnus-get-info
group
)))
t
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment