File: README.md

package info (click to toggle)
vf1 0.0.11-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 216 kB
  • sloc: python: 820; makefile: 16
file content (431 lines) | stat: -rw-r--r-- 16,107 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# VF-1
Command line gopher client.  High speed, low drag.

## Installation

Ideally, you would install VF-1 as follows:

```
pip3 install VF-1
```

This should install the command `vf1` in either `/usr/local/bin`,
`/usr/bin`, or `~/.local/bin`.

Alternatively, check out the source code and install it as follows:

```
pip3 install .
```

If you're a developer, you probably want an "editable" installation:

```
pip3 install --editable .
```

If you're a developer on a Windows machine and your pip is broken, you
can also install as follows:

```
python3 setup.py install
```

And finally, if you just can't install it, just run the `vf1.py`
file directly.

```
python3 vf1.py
```

## Invocation

Start VF-1:

```
vf1
```

Start VF-1 with your bookmarks:

```
vf1 --bookmarks
```

Start VF-1 with your favourite site:

```
vf1 phlogosphere.org
```

## Quick, informal tutorial-style introduction

VF-1 is built around an interactive command prompt, and has a very "REPL"
feeling.  You only need a small number of commands to get around, and most of
them can be abbreviated to one or two chars, so with practice you can get
around very quickly.  You can safely unplug your mouse the entire time you
are using VF-1. :)

Well, let's start off by heading to SDF to check out some nice phlogs!  Use the
"go" command:

```
VF-1> go sdf.org/
```

(if you are lazy, you can type "g sdf.org/" instead, i.e. you can
abbreviate "go" to "g")

You should see a listing of the SDF Gopherspace.  The different menu items are
indicated by numbers in square brackets, and the SDF Member PHLOGOSPHERE is
option [1], so go ahead and type "1" and then enter:

```
VF-1> 1
```

You should see all the phlogs fly by, and unless you have a very large monitor
some have probably run off the top of the screen.  This will not be an uncommon
problem, and there are various ways to deal with it.  Obviously, you can scroll
up in your terminal like always, but VF-1 gives you other ways to deal with
this.  After you have visited a gopher menu (as opposed to a document), if you
just press Enter (i.e. execute an empty line), VF-1 will print the first 10
items in the menu by themselves (any ASCII art etc. in the original listing is
removed in this mode).  Each time you press Enter you will see the next ten
items in the listing.  Page through a few times to get a feel for it.  There
are other ways to deal with gopher menus which don't fit on one screen, but
nothing is faster than just tapping Enter, so it's a good habit to pick up.

If you just want to see which phlogs have been updated lately, seeing the first
10 or 20 menu items is probably enough for you.  But suppose you are really
curious about one phlog in particular.  Say you want to know what Tomasino has
been up to.  You could search for his phlog specifically:

```
VF-1> search tom
```

(if you are lazy, you can use "/" instead of "search", i.e. "/ tom")

This will show you the phlogs with "tom" in them (it's a simple case-insensitive
search).  Tomasino will probably be [1] or [2] (depends whether tomatobodhi has
updated more recently :).  So go ahead and type "1" and hit enter again to enter
Tomasino's gopherhole.  Then you can type "2" and enter to go to his phlog, and
then "1" and enter to read his most recent entry.

Suppose now you want to go back to the main SDF phlog listing.  Let's check out
your history:

```
VF-1> history
```

(if you are lazy, you can abbreviate "history" to "hist", and in fact if
you are very lazy you can just use "h")

You should this time see a menu of the few places you've been so far.  The
phlogosphere list will probably be [2], so type "2" and enter to go back there.
By now you are probably getting the hang of using numbers to get around.

For this next bit, let's focus on gunnarfrost's phlog, because he writes very
nice short entries which work well for this.  Once you're at the main phlog
listing, do a:

```
VF-1> search frost
```

To easily find gunnarfrost's phlog and then press [1] to type the first entry.

Short and sweet!  Now, suppose you want to read his next post.  You *could* use
the "back" command to go back to the menu listing and then press "2", and then
do "back" and "3", "back" and "4", etc.  But it's much easier to just type:

```
VF-1> next
```

(or, if you are lazy, just "n")

This will automatically take you to the next item in the most recently seen
gopher menu after the one you just viewed.  So you can just hit "n" and enter
again and again to flip through the pages of gunnar's phlog.  Each one is much
shorter than a full screen, so this works very nicely.

Lately gunnarfrost is a good phlogger and wraps his entries at 70 or 80 chars or
thereabouts.  But if you keep hitting "n" you'll get to early entries where the
lines just keep going until your terminal wraps them (sorry, gunnarfrost, I
don't mean to single you out here, plenty of other folk do this too!).  Once
you've found one of these, try running:

```
VF-1> fold
```

And VF-1 will wrap the lines at 80 chars for you (assuming you have the "fold"
command installed on whatever system you are using).  This isn't the only helper
command of this kind available.  Get back to the main SDF phlog listing (either
by running "back" a few times or using "hist" and a number to jump straight to
it) and go to my phlog.  Unlike gunnarfrost, I appear to be physiologically
incapable of writing phlog posts which are less than a few whole screens long.
Go to one of these posts, and watch the lines fly by.  Now try:

```
VF-1> less
```

This will pipe my giant entry through "less", so you can move back and forth and
read it.  Just press "q" when you're done like usual to get your VF-1 prompt
back.  You can also use less to navigate long menus, and unlike hitting Enter
to page through items 10 at a time, less will preserve non-entry lines, so you
can see ASCII art etc.

I usually have at least one reference at the end of that entry, formatted as a
URL after an index number in square brackets.  You might be tempted to pick up
your mouse, highlight the URL, type "go " and then paste the URL to visit it.
Put that rodent down!  The mouse, that is, not the gopher.  Instead, try this
command:

```
VF-1> links
```

VF-1 will then scan the most recently viewed post for URLs.  Well, actually, it
scans for words (i.e. things separated by spaces) which contain "://" and at
least one ".".  This might not catch all URLs and it might sometimes catch
things which are not URLs, but it works well enough for now.  You will see a
menu and now you can use numbers to follow any of those links without your
mouse!

If you want to know the URL of a document you are at so that you can refer to
it, just do:

```
VF-1> url
```

If you want to save the document, just do:

```
VF-1> save ~/some/random/path/somefilename.txt
```

If you're in a hurry, you can just do:

```
VF-1> save
```

and VF-1 will try to derive a sensible filename from the current document's
URL.  There's no guarantee it will be pretty, or easy to remember, though.

Everything so far has been text-based.  Gopher items with itemtype 0 (text) are
fed to the "cat" command by default, or to "less" or "fold" if you request it.
But VF-1 can handle other itemtypes too.  Image files with an item type of "g"
or "I" will be opened using the "feh" image viewer (if installed).  HTML
content with an item type of "h" will be fed to "lynx --dump", and audio files
with an item type of "a" will be fed to "mpg123" (e.g. you can listen to jynx's
doom metal songs in this way).  Obviously if you do not have one of these
programs installed, it will not work.  Fear not, there's a way for you to
customise these handler programs - see the "Handlers" section below for all
the details.

You probably need some bookmarks, right? Here's how to add the current
URL to your bookmarks. You can provide your own name, if you want.

```
VF-1> add
```

(or, if you are lazy as usual, just "a")

If you want to reorganize your bookmarks, just open
`~/.vf1-bookmarks.txt` using a text editor and do it.

If you want to look at your bookmarks:

```
VF-1> bookmarks
```

(if lazy, just "bm")

Now let's look at VF-1's two tools for quick and easy navigation through
gopherspace - tours and marks.

Sometimes you're looking at a menu and it's very long but you know you
want to look at few items, one after another. Assume you're looking at
`phlogosphere.org`, for example. How about adding the first four items
to a *tour* and then going on that tour?

```
VF-1> tour 1 2 3 4
VF-1> tour
```

Use the tour command without any arguments to go to the next stop.
This is basically your stack of items to go to. (And yes, you guessed
it. Use "t" if you're feeling lazy.)

Actually, if you're really lazy, you can use ranges, too:

```
VF-1> tour 1-4
VF-1> tour
```

But there's more. Let's say you're looking at something pretty
interesting, like the list of all the phlogs on `phlogosphere.org`.
How about marking this place with a letter, following some links, and
then returning to this location not using a bunch of "back" and "up"
commands but just that one letter?

```
VF-1> mark x
VF-1> ... do some stuff ...
VF-1> go x
```

(And yes, "m" for the lazy.)

## Concepts

Let's make a few concpets which were implicit in the informal tutorial
above implicit:

* VF-1 always has in it's mind exactly one "index", i.e. a list of places in
  Gopherspace with numbers attached to them.  By typing "1" and enter, "2" and
  enter, etc. you jump to that location in the active index.
* Whenever you visit a gopher menu, the contents of that menu become the active
  index, replacing whatever it used to be.
* When you do "search" or "history" or "links", the results of these commands
  overwrite your current index.  If you want to get your index back to being
  the most recently visited gopher menu, you can use the "ls" command.  Doing
  this means you lose your search results (your history doesn't go away,
  though).
* The "search" command runs on whatever the current index is.  This might not
  be the contents of a gopher menu.  You can search your history, and in fact
  you can even search the results of an earlier search to narrow things down!
* In general, VF-1 does not remember much.  It always has some idea of the most
  recently visited gopher menu (i.e. itemtype 1) and the most recently visited
  gopher document (i.e. any other itemtype).  "ls" always operates on the most
  recently visited gopher *menu*, even if you have visited some documents since
  then.  Commands like "fold", "less" and "save" operate on the most recently
  visited *document*, even if you have visited some menus since then.  Basically
  everything operates one the most recently seen thing of the appropriate type.

## Handlers

VF-1 uses external programs as "handlers" to present gopherspace content to you.
Even when you visit a plain text file with item type 0, VF-1 spawns (by default)
the unix command `cat` to display that file on your screen, rather than using a
Python `print` call.  You have full control over which external programs are
used for different content, so you can customise your user experience.

Handlers are assigned on the basis of MIME types.  The gopher protocol has no
concept of MIME, so VF-1 assigns each item a MIME type as follows:

* Item types 0 and 1 are assigned MIME type `text/plain`
* Item type h is assigned MIME type `text/html`
* Item type g is assigned MIME type `image/gif`

For all other item types, VF-1 attempts to guess a MIME type from the file
extension of the last component of the selector, using the
[mimetypes](https://docs.python.org/3.5/library/mimetypes.html) module from the
Python standard library.  This usually results in a reliable identification
assuming the file has an extension and the author of the gopehr content is not
actively trying to deceive you.

If the selector has no file extension, or the extension is not recognised by the
`itemtypes` module, VF-1 will use the unix program `file` to attempt to guess a
MIME type by actually inspecting the content of the file.

In accordance with the idea that gopher item types, which are a standard part of
the protocol, should take precedence over any other attempt at inferring MIME type,
which is not a standard part of the protocol, if an item in gopherspace is
listed with itemtype "I" or "s" and one of the above methods returns a MIME type
which does not begin with "image/" or "sound/" respectively, VF-1 will default
to "image/jpeg" or "audio/mpeg" respectively.  This should only happen in highly
unusual circumstances and suggests a poorly or maliciously configured gopher
server.

Once a MIME type has been identified for an item, an appropriate handler program
will be used to handle the content.  You can view a list of the current handler
assignments at any time by running the `handler` command.  The default handlers
that ship with VF-1 are:
 
* application/pdf:      `xpdf %s`
* audio/mpeg:           `mpg123 %s`
* audio/ogg:            `ogg123 %s`
* image/*:              `feh %s"`
* text/html:            `lynx -dump -force_html %s"`
* text/plain:           `cat %s"`

You can also use the `handler` command to change these handlers, or set handlers
for new MIME types For example, if you prefer using `w3m` over `lynx` for
handling HTML content, you could run:

```
VF-1> handler text/html w3m -dump %s
```

You can use the `*` wildcard when specifying handler MIME types, such as
`image/*` to use a single program to handle any kind of image.  Handlers
without wildcards take precedence over handlers with wildcards.  In other
words, if you specify, e.g. one handler for `image/jpeg` and a different handler
for `image/*`, the `image/jpeg` handler will be used for JPEGs and the
`image/*` handler will be used for all other
images.

## Text encoding

VF-1 attempts to decode the content received for any text-based item types
(e.g. 0, 1, 7, h) as UTF-8.  Most content in gopherspace is ASCII-encoded, and
since UTF-8 is backward compatible with ASCII, this will generally "just work".
If the received content *cannot* be decoded as UTF-8, one of two possible
things will happen.

If the [chardet](https://pypi.python.org/pypi/chardet) Python module is
installed on your system, VF-1 will use it to attempt to automatically detect
the encoding used and decode the text appropriately.  Note that pip etc. will
not install chardet for you when you install VF-1, as VF-1 does not formally
depend on chardet.  It uses it opportunistically, so that it can still be
easily installed and used on systems where chardet is not / cannot be installed.

If chardet is not installed, or if chardet cannot identify an encoding with
confidence exceeding 0.5, VF-1 will attempt to fall back to a single,
user-specified alternative encoding.  This encoding can be set with, e.g.:

```
VF-1> set encoding koi8-r
```

The default fall back encoding is iso-8559-1, which is used by the popular
gopher site floodgap.com.  If you routinely visit gopher sites encoded with some
other encoding, consider using an RC file (see below) to automatically set your
alternative encoding at start up.

## RC file

Upon startup, VF-1 will search for a file with one of the following names:

* ~/.config/vf1/vf1rc
* ~/.config/.vf1rc
* ~/.vf1rc

The names are listed above in order of preference and VF-1 will stop after the
first one it finds, e.g. if you have both a `~/.config/vf1/vf1rc` and a
`~/.vf1rc` then `~/.vf1rc` will be ignored.

If such a file is found, each line of the file will be executed as a VF-1
command before the prompt is displayed.  This allows you to script certain
commands that you want to be run every time you start VF-1.  This lets you:

* Permanently configure item type handlers by putting `handler` commands in the
  RC file.
* Permanently configure any options, such as whether or not to use coloured
  output or your preferred non-UTF-8 encoding, by putting `set` commands in the
  RC file.
* Set a "home page" by putting a `go` command in the RC file.
* Start a tour through your favourite sites by putting `tour` commands in the RC
  file.