~ubuntu-branches/ubuntu/hardy/surfraw/hardy

« back to all changes in this revision

Viewing changes to elvi/ftpfind

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Smith
  • Date: 2005-04-20 17:00:59 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050420170059-z7j6h1rsqfgfwhmg
Tags: 2.1.0-1
* Ian Beckwith <ianb@nessie.mcc.ac.uk>:
  + New elvi: dmoz, w3html, w3link, w3css, w3rdf.
  + New elvi: rae (by Ruben Pollan <meskio@terra.es>).
  + 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 <jmm@inutil.org>:
  + 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

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#!/bin/sh
2
 
# $Id: ftpfind,v 1.1 2001/12/23 10:15:18 proff Exp $
3
 
# elvis: ftpfind                -- Search files on ftpfind (www.ftpfind.com)
4
 
. surfraw || exit 1
5
 
 
6
 
w3_usage_hook () {
7
 
    cat <<EOF
8
 
Usage: $w3_argv0 [options] [search words]...
9
 
Description:
10
 
  Surfraw search files on www.ftpfind.com (www.ftpfind.com)
11
 
EOF
12
 
    w3_global_usage
13
 
}
14
 
 
15
 
w3_config
16
 
w3_parse_args "$@"
17
 
# w3_args now contains a list of arguments
18
 
if test -z "$w3_args"; then
19
 
    w3_browse_url "http://"www.ftpfind.com/index.php?adv=true""
20
 
else
21
 
    escaped_args=`w3_url_of_arg $w3_args`
22
 
    w3_browse_url "http://www.ftpfind.com/search.php?query=${escaped_args}&method=iss"
23
 
fi