Your message dated Wed, 20 Apr 2005 18:33:01 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#290032: fixed in surfraw 2.1.0-1
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 12 Jan 2005 14:21:12 +0000
>From [EMAIL PROTECTED] Wed Jan 12 06:21:12 2005
Return-path: <[EMAIL PROTECTED]>
Received: from anchor-post-34.mail.demon.net [194.217.242.92]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CojN1-0003yv-00; Wed, 12 Jan 2005 06:21:11 -0800
Received: from xibalba.demon.co.uk ([80.176.227.229])
by anchor-post-34.mail.demon.net with esmtp (Exim 4.42)
id 1CojMz-00001k-F4
for [EMAIL PROTECTED]; Wed, 12 Jan 2005 14:21:09 +0000
Date: Wed, 12 Jan 2005 14:21:08 +0000
From: Justin B Rye <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: surfraw: wishlist elvi
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary="C7zPtVaVf+AK4Oqc"
Content-Disposition: inline
X-Reportbug-Version: 3.2
User-Agent: Mutt/1.5.6+20040907i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Package: surfraw
Version: 2.0.2-1
Severity: wishlist
Tags: patch
Attached are four simple optionless elvi that I've found useful.
Use/modify/discard as convenient.
cia
This could perhaps also have options like -worldfactbook,
but the basic version does all I ever need.
deblogs
See note below on bash-completion.
etym
This may be something only I would ever use...
foldoc
I was surprised there wasn't one for this already.
The deblogs elvis can be added to the "packagename" list in my old
bash-completion script (sorry about the ">&-", guys!). Strictly
speaking this is wrong - like debpts and perhaps others, it really
wants to complete on source-package names such as xfree86 rather
than binary-package names such as xserver-common... but I can't find
any way of getting a list of Debian source-package names to complete
on.
Here's a free bonus piece of drive-by wishlistery: it seems to me
that you'd be saved all the effort of maintaining an up-to-date
surfraw.elvi list if each elvis supported a standard "-about" option
which worked something like this:
$ sr -about google
Search the web using Google (www.google.com) - v1.2
Then "for x in $elvidir/*; do surfraw -about $x; done" (or perhaps
even just "sr -about $elvidir/*") would give you an automatic elvi
list...
-- System Information:
Debian Release: 3.1
APT prefers testing
APT policy: (500, 'testing')
Architecture: i386 (i586)
Kernel: Linux 2.6.9
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Versions of packages surfraw depends on:
ii debconf 1.4.30.11 Debian configuration management sy
ii lynx [www-browser] 2.8.5-2 Text-mode WWW Browser
ii mozilla-browser [www-browser] 2:1.7.3-5 The Mozilla Internet application s
ii mozilla-firefox [www-browser] 1.0-4 lightweight web browser based on M
ii w3m [www-browser] 0.5.1-1 WWW browsable pager with excellent
ii xemacs21-nomule [www-browser] 21.4.16-1 Editor and kitchen sink -- Non-mul
-- debconf information:
* surfraw/surfraw-path:
surfraw/surfraw-v2-upgrade:
--
JBR
Ankh kak! (Ancient Egyptian blessing)
--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=cia
#!/bin/sh
# jbr20050112
# elvis: cia -- Search CIA documents at www.cia.gov
. surfraw || exit 1
# could have -worldfactbook etc, but I always use Entire Site
w3_usage_hook () {
cat <<EOF
Usage: $w3_argv0 [options] [search words]...
Description:
Search CIA documents at www.cia.gov
Example:
cia WDM
EOF
w3_global_usage
}
w3_config
w3_parse_args "$@"
# w3_args now contains a list of arguments
if test -z "$w3_args"; then
w3_browse_url "http://www.cia.gov/"
else
escaped_args=`w3_url_of_arg $w3_args`
w3_browse_url
"http://www.cia.gov/search?NS-collection=Entire+Site&NS-search-page=results&NS-query=${escaped_args}"
fi
--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=deblogs
#!/bin/sh
# jbr20050112
# elvis: deblogs -- Show changelogs for a package in Debian main
(changelogs.debian.net)
. surfraw || exit 1
w3_usage_hook () {
cat <<EOF
Usage: $w3_argv0 [options] [search words]...
Description:
Show changelogs for a package in Debian main (changelogs.debian.net)
EOF
w3_global_usage
}
w3_config
w3_parse_args "$@"
# w3_args now contains a list of arguments
if test -z "$w3_args"; then
w3_browse_url "http://changelogs.debian.net/"
else
escaped_args=`w3_url_of_arg $w3_args`
w3_browse_url "http://changelogs.debian.net/${escaped_args}"
fi
--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=etym
#!/bin/sh
# jbr20050112
# elvis: etym -- Look up word origins at www.etymonline.com
. surfraw || exit 1
w3_usage_hook () {
cat <<EOF
Usage: $w3_argv0 [options] [search words]...
Description:
Look up word origins at www.etymonline.com
Example:
etym surf
'1685, probably from earlier suffe (1599), of uncertain origin...'
EOF
w3_global_usage
}
w3_config
w3_parse_args "$@"
# w3_args now contains a list of arguments
if test -z "$w3_args"; then
w3_browse_url "http://www.etymonline.com/"
else
escaped_args=`w3_url_of_arg $w3_args`
w3_browse_url "http://www.etymonline.com/?search=${escaped_args}"
fi
--C7zPtVaVf+AK4Oqc
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=foldoc
#!/bin/sh
# jbr20050112
# elvis: foldoc -- The Free On-Line Dictionary Of Computing (foldoc.org)
. surfraw || exit 1
w3_usage_hook () {
cat <<EOF
Usage: $w3_argv0 [options] [search words]...
Description:
The Free On-Line Dictionary Of Computing (foldoc.org)
Example:
foldoc pcmcia
"Personal Computer Memory Card International Association(*).
(Or People Can't Memorise Computer Industry Acronyms)."
EOF
w3_global_usage
}
w3_config
w3_parse_args "$@"
# w3_args now contains a list of arguments
if test -z "$w3_args"; then
w3_browse_url "http://www.foldoc.org/"
else
escaped_args=`w3_url_of_arg $w3_args`
w3_browse_url
"http://foldoc.doc.ic.ac.uk/foldoc/foldoc.cgi?query=${escaped_args}&action=Search"
fi
--C7zPtVaVf+AK4Oqc--
---------------------------------------
Received: (at 290032-close) by bugs.debian.org; 20 Apr 2005 22:40:58 +0000
>From [EMAIL PROTECTED] Wed Apr 20 15:40:58 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DONsQ-0007rX-00; Wed, 20 Apr 2005 15:40:58 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DONkj-0001wE-00; Wed, 20 Apr 2005 18:33:01 -0400
From: Thomas Smith <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#290032: fixed in surfraw 2.1.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Wed, 20 Apr 2005 18:33:01 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
X-CrossAssassin-Score: 2
Source: surfraw
Source-Version: 2.1.0-1
We believe that the bug you reported is fixed in the latest version of
surfraw, which is due to be installed in the Debian FTP archive:
surfraw_2.1.0-1.dsc
to pool/main/s/surfraw/surfraw_2.1.0-1.dsc
surfraw_2.1.0-1.tar.gz
to pool/main/s/surfraw/surfraw_2.1.0-1.tar.gz
surfraw_2.1.0-1_all.deb
to pool/main/s/surfraw/surfraw_2.1.0-1_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Thomas Smith <[EMAIL PROTECTED]> (supplier of updated surfraw package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Wed, 20 Apr 2005 17:00:59 -0500
Source: surfraw
Binary: surfraw
Architecture: source all
Version: 2.1.0-1
Distribution: unstable
Urgency: medium
Maintainer: Christian Surchi <[EMAIL PROTECTED]>
Changed-By: Thomas Smith <[EMAIL PROTECTED]>
Description:
surfraw - a fast unix command line interface to WWW
Closes: 289498 289499 289502 289503 290032
Changes:
surfraw (2.1.0-1) unstable; urgency=medium
.
* Ian Beckwith <[EMAIL PROTECTED]>:
+ New elvi: dmoz, w3html, w3link, w3css, w3rdf.
+ New elvi: rae (by Ruben Pollan <[EMAIL PROTECTED]>).
+ surfraw.IN:w3_url_escape: escaped `(' and `)'.
+ Fixed elvi (Thanks to Justin B. Rye):
- sunsolve (Closes: #289502).
- altavista (Closes: #289503).
+ deblists: Updated list of debian mailing lists.
+ currency: Now a proper elvis.
+ Added appendix 2 to HACKING on preparing a release.
* Moritz Muehlenhoff <[EMAIL PROTECTED]>:
+ Switch rhymes search from Lycos to Rhymezone (by Justin B Rye)
(Closes: #289498)
+ Fix BBC News search (by Justin B Rye) (Closes: #289499)
+ New elvi by by Justin B Rye (Closes: #290032)
- cia Search for CIA documents
- deblogs Debian changelogs
- etym Search for word origins
- foldoc Free online dictionary of computing
+ New cve elvis for CAN assignment searches
+ Rewrite debian/copyright properly
Files:
fbb91c617ffe976ecbae13d3c83defc9 559 web optional surfraw_2.1.0-1.dsc
f58ed958545297879d571a1cde3224b2 137302 web optional surfraw_2.1.0-1.tar.gz
f17df27ecad9a3fab0fa445eb003d4e4 72712 web optional surfraw_2.1.0-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCZtRB/xuE/qyrqB4RAlTSAJ9+FTrhm1AjS6cZJyBvM6pAK676bgCfbOZ0
8vXURkz0atlvYpzeb0kMviU=
=Q9IH
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]