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 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
|
<!-- "file:///usr/share/sgml/docbook/dtd/xml/4.2/docbookx.dtd"> -->
<chapter id="pygopherd.intro">
<title>Introduction to PyGopherd</title>
<para>
Welcome to &PyGopherd;. In a nutshell, &PyGopherd;
is a modern dynamic
multi-protocol hierarchical information server with a pluggable
modularized extension system,
full flexible caching, virtual files and
folders, and autodetection of file types -- all with support for
standardized yet extensible per-document metadata. Whew! Read on for
information on what all these buzzwords mean.
</para>
<sect1 id="features">
<title>Features</title>
<para>
Here are some of &PyGopherd;'s features:
</para>
<itemizedlist>
<listitem><para>Provides built-in support for multiple protocols:
HTTP (Web), Gopher+, Gopher (RFC1436), Enhanced Gopher0,
and WAP (mobile phones). Protocols can be enabled or
disabled as desired.
</para>
</listitem>
<listitem><para>Provides protocol autodetection. That is,
&PyGopherd; can listen for all the above protocols
<emphasis>on a single port</emphasis> and will
automatically respond using the protocol it detects the
client is using. Practical effects of this are that you
can, for instance, give out a single URL and have it
viewable normally on desktop Web browsers and in WAP
mode on mobile phones -- and appropriately in various
Gopher browsers.
</para>
</listitem>
<listitem><para>Metadata and site links can be entered in a
variety of formats, including full UMN dotfile metadata
formats as well as Bucktooth gophermap files. Moreover,
gophermap files are not limited to Gopher protocols, and
can be used for all protocols.
</para>
</listitem>
<listitem><para>Support for inter-protocol linking (linking
from Gopher sites to web sites)</para>
</listitem>
<listitem><para>Virtual folder system lets you serve up
anything as if it were regular files and directories.
PyGopherd comes with the following virtual folder systems
built in:</para>
<itemizedlist>
<listitem><para>Can present any Unix MBOX, MMDF box, MH
directory, Maildir directory, or Babyl mailbox as a
virtual folder, the contents of which are the
messages in the mailbox.
</para>
</listitem>
<listitem><para>Can use a configurable separator to
split a file into multiple parts, the first line of each
becoming the name for the virtual folder.</para>
</listitem>
<listitem><para>Can peek inside a ZIP file and serve it
up as first-class site citizens -- metadata can even be
stored in the ZIP files.
</para>
</listitem>
<listitem><para>Can serve up the contents of a dictd
server as a filesystem.
</para>
</listitem>
</itemizedlist>
<listitem><para>
Modular, extensible design: you can use PyGopherd's own
PYG extension format, or UMN- or Bucktooth-style
executables.
</para>
</listitem>
<listitem><para>
Runs on any platform supported by Python 2.2, 2.3, or 2.4.
This includes virtually every past and current flavor of
Unix (Linux, *BSD, Solaris, SunOS), Windows, MacOS 9.x
and X, and more. Some features may not be available on
non-Unix platforms.
</para>
</listitem>
<listitem><para>Runs on any platform supported by Java 1.1
via the Jython Python implementation.</para>
</listitem>
<listitem><para>Tunable server types via configuration
directive -- forking or threading.</para>
</listitem>
<listitem><para>Secure design with support for chrooted execution.</para>
</listitem>
<listitem><para>Feature-complete, full implementations of:
Gopher0 (RFC1435), Gopher+, HTTP, and WAP.</para>
</listitem>
<listitem><para>Support for automatically finding the titles
of HTML documents for presentation in a directory.</para>
</listitem>
<listitem><para>Versatile configuration file format is both
extensible and nicely complementary of the module system.</para>
</listitem>
<listitem><para>Protocol-independent, handler-dependent
caching. This increases performance by letting handlers
cache dynamically-generated information -- currently used by
the directory handlers. This can improve performance of
directories by several orders of magnitude. Because this is
a handler cache only, all protocols share the single
cache. Since the processing time for the protocols is
negligible, this works out very well.</para>
</listitem>
<listitem><para>Autosensing of MIME types and gopher0 item
types. Both are completely configurable. MIME type
detection is done using a standard mime.types file, and
gopher0 types are calculated by using a configurable
regexp-based MIME-to-gophertype map.</para>
</listitem>
<listitem><para>Heavy support of regular expressions in configuration.</para>
</listitem>
<listitem><para>ProtocolMultiplexer and HandlerMultiplexer
let you choose only those protocols and handlers that you
wish your server to support and the order in which they are
tried when a request comes in.
</para>
</listitem>
<listitem><para>Full logging via syslog.</para>
</listitem>
</itemizedlist>
</sect1>
<sect1 id="aboutgopher">
<title>About Gopher</title>
<para>
&PyGopherd; started life as a server for the Gopher Internet
protocol. With Gopher, you can mount a filesystem (viewing files and
folders as if they were local),
browse Gopherspace with a web browser,
download files, and be interactive with searching.
</para>
<para>
But this is only part of the story. The world of Gopher is more
expansive than this. There are two major gopher protocols: Gopher0
(also known as RFC1436) and Gopher+. Gopher0 is a small, simple,
lightweight protocol that is very functional yet also extremely easy
to implement. Gopher0 clients can be easily placed in small embedded
devices or in massive environments like a modern web browser.
</para>
<para>
Gopher+ is based on Gopher0 but extends it by providing document
metadata such as file size and MIME type. Gopher+ allows all sorts of
neat features, such as configurable metadata (serving up a bunch of
photos? Add a Subject field to your metadata to let
a customized photo
browser display who is pictured) and multiple
views of a file (let the
user select to view your photos as PNG or JPEG).
</para>
</sect1>
</chapter>
<chapter id="quickstart">
<title>Quick Start</title>
&quickstart;
</chapter>
<chapter id="installation">
<title>Installation</title>
<para>
If you are reading this document via the "man" command, it is likely
that you have no installation tasks to perform; your system administrator
has already installed &PyGopherd;. If you need to install it yourself, you
have three options: a system-wide installation with Debian, system-wide
installation with other systems, and a single-user installation. You
can download the latest version of PyGopherd
from
<ulink
url="http://quux.org/devel/gopher/pygopherd/"></ulink>
</para>
<sect1 id="installation.debian">
<title>Debian System-Wide Installation</title>
<para>
If you are tracking Debian unstable, you may install
&PyGopherd; by simply running this command as root:
</para>
<para>
<command>apt-get install pygopherd</command>
</para>
<para>
If you are not tracking Debian unstable, download the .deb
package from the &PyGopherd; website and then run
<command>dpkg -i</command> to install the downloaded
package. Then, skip to the configuration section below.
You will use <command>/etc/init.d/pygopherd start</command>
to start the program.
</para>
</sect1>
<sect1 id="installation.other">
<title>Other System-Wide Installation</title>
<para>
Download the tar.gz version of the package from the website. Make
sure you have Python 2.2 or above installed; if not, download and
install it from <ulink
url="http://www.python.org/"></ulink>. Then run these
commands:
</para>
<programlisting>
<command>tar -zxvf pygopherd-x.y.z.tar.gz</command>
<command>cd pygopherd-x.y.z</command>
<command>python2.2 setup.py</command>
</programlisting>
<para>
Some systems will use <command>python</command> or
<command>python2.3</command> in place of
<command>python2.2</command>.
</para>
<para>
Next, proceed to configuration. Make sure that the
<filename>/etc/pygopherd/pygopherd.conf</filename> file
names valid users (<property>setuid</property> and
<property>setgid</property> options) and a valid document
root (<property>root</property> option).
</para>
<para>
You will type <filename>pygopherd</filename> to invoke the
program.
</para>
</sect1>
<sect1 id="installation.single">
<title>Single-Account Installation</title>
<para>
Download the tar.gz version of the package from the website. Make
sure you have Python 2.2 or above installed; if now, download and
install it from <ulink
url="http://www.python.org/"></ulink>. Then run these
commands:
</para>
<programlisting>
<command>tar -zxvf pygopherd-z.y.z.tar.gz</command>
<command>cd pygopherd-x.y.z</command>
</programlisting>
<para>
Modify <filename>conf/pygopherd.conf</filename> as follows:
</para>
<itemizedlist>
<listitem><para>Set <property>usechroot = no</property></para>
</listitem>
<listitem><para>Comment out (add a # sign to the start of
the line) the <property>pidfile</property>,
<property>setuid</property>, and
<property>setgid</property> lines.</para>
</listitem>
<listitem><para>Set <property>root</property> to something appropriate.</para>
</listitem>
<listitem><para>Set <property>port</property> to a number
greater than 1024.</para>
</listitem>
</itemizedlist>
<para>
When you want to run &PyGopherd;, you will issue the
<command>cd</command> command as above and then type
<command>PYTHONPATH=. bin/pygopherd</command>. There is no
installation step necessary.
</para>
</sect1>
</chapter>
<chapter id="configuration">
<title>Configuration</title>
<para>
&PyGopherd; is regulated by a configuration file normally
stored in <filename>/etc/pygopherd/pygopherd.conf</filename>.
You can specify an alternate configuration file on the command
line. The &PyGopherd; distribution ships
with a sample <filename>pygopherd.conf</filename> file that
thoroughly documents the configuration file options and
settings.
</para>
</chapter>
<chapter id="handlers">
<title>Handlers</title>
<para>
&PyGopherd; defines several handlers which are responsible for
finding data on your server and presenting it to the user. The
handlers are used to generate things like links to other documents and
directory listings. They are also responsible for serving up regular
files and even virtual folders.
</para>
<para>
Handlers are specified with the <property>handlers</property>
option in <filename>pygopherd.conf</filename>. This option is
a list of handlers to use. For each request that arrives,
&PyGopherd; will ask each handler in
turn whether or not it can handle the request, and will handle the
request according to the first handler that is capable of doing so.
If no handlers can handle the request, a file not found error is
generated. See the example configuration file for an example.
</para>
<para>
The remaining parts of this section describe the different
handlers that ship with &PyGopherd;.
</para>
<sect1 id="handlers.dirhandler">
<title>dir.DirHandler</title>
<para>
This handler is a basic one that generates menus based
on the contents of a directory. It is used for
directories that contain neither a
<filename>gophermap</filename> file nor UMN-style links
files, or situations where you have no need for either
of those.
</para>
<para>
This handler simply reads the contents of your on-disk
directory, determines the appropriate types of each file,
and sends the result to the client. The descriptions of
each item are usually set to the filename, but the
<property>html.HTMLFileTitleHandler</property> may override
that.
</para>
</sect1>
<sect1 id="handlers.buckgophermap">
<title>gophermap.BuckGophermapHandler</title>
<para>
This handler is used to generate directory listings
based on <filename>gophermap</filename> files. It will
not read the directory on-disk, instead serving content
from the <filename>gophermap</filename> file only.
Gophermaps are useful if you want to present a directory
in which the files do not frequently change and there is
general information to present. Overall, if you only
wish to present information particular to certain files,
you should consider using the abstract feature of
UMN.UMNDirHandler.
</para>
<para>
The <filename>gophermap</filename> files contain two
types of lines, which are described here using the same
convention normally used for command line arguments. In
this section, the symbol \t will be used to indicate a
tab character, Control-I.
</para>
<cmdsynopsis>
<arg choice="Plain"><replaceable>full line of informational
text</replaceable></arg>
</cmdsynopsis>
<cmdsynopsis>
<arg choice="Plain"><replaceable>gophertypeDESCRIPTION</replaceable></arg><arg>\t<replaceable>selector</replaceable><arg>\t<replaceable>host</replaceable><arg>\t<replaceable>port</replaceable></arg></arg></arg>
</cmdsynopsis>
<para>
Note: spaces shown above are for clarity only and should
not actually be present in your file.
</para>
<para>
The informational text must not contain any tab
characters, but may contain spaces. Informational text
will be rendered with gopher type
<property>i</property>, which will cause it to be
displayed on a client's screen at its particular
position in the file.
</para>
<para>
The second type of line represents a link to a file or
directory. It begins with a single-character Gopher
type (see Gopher Item Types below) followed immediately
by a description and a tab character. There is no space
or other separator between the gopher type and the
description. The description may contain spaces but not
tabs.
</para>
<para>
The remaining arguments are optional, but only to the
extent that arguments may be omitted only if all
arguments after them are also omitted. These arguments
are:
</para>
<variablelist>
<varlistentry><term><replaceable>selector</replaceable></term>
<listitem><para>The <property>selector</property> is
the name of the file on the server. If it begins
with a slash, it is an absolute path; otherwise,
it is interpreted relative to the directory that
the gophermap file is in. If no selector is
specified, the description is also used as the
selector.
</para>
</listitem>
</varlistentry>
<varlistentry><term><replaceable>host</replaceable></term>
<listitem><para>The <property>host</property>
specifies the host on which this resource is
located. If not specified, defaults to the
current server.
</para>
</listitem>
</varlistentry>
<varlistentry><term><replaceable>port</replaceable></term>
<listitem><para>The <property>port</property>
specifies the port on which the resource is
located. If not specified, defaults to the port
the current server is listening on.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
An example of a gophermap to help illustrate the concept
is included with the &PyGopherd; distribution in the
file <filename>examples/gophermap</filename>.
</para>
</sect1>
<sect1 id="handlers.compressedfilehandler">
<title>file.CompressedFileHandler</title>
<para>
In order to save space, you might want to store
documents on-disk in a compressed format. But then
clients would ordinarily have to decompress the files
themselves. It would be nice to have the server
automatically decompress the files on the fly, sending
that result to the client. That's where
<property>file.CompressedFileHandler</property> comes
in.
</para>
<para>
This handler will take compressed files, pipe them
through your chosen decompression program, and send the
result directly to clients -- completely transparently.
</para>
<para>
To use this handler, set the
<property>decompressors</property> option in the
configuration file. This option defines a mapping from
MIME encodings (as defined with the
<property>encoding</property> option) to decompression
programs. Files that are not encoded, or which have an
encoding that does not occur in the
<property>decompressors</property> map, will not be
decompressed by this handler.
</para>
<para>
Please see the sample configuration file for more
examples and details about the configuration of this
handler.
</para>
</sect1>
<sect1 id="handlers.filehandler">
<title>file.FileHandler</title>
<para>
The <property>file.FileHandler</property> is just that
-- its duty is to serve up regular files to clients.
</para>
</sect1>
<sect1 id="handlers.htmlfiletitlehandler">
<title>html.HTMLFileTitleHandler</title>
<para>
This handler is used when generating directories and
will set the description of HTML files to the HTML title
defined in them rather than let it be the default
filename. Other than that, it has no effect. UMN
gopherd implements a similar policy.
</para>
</sect1>
<sect1 id="handlers.mailboxes">
<title>mbox handlers</title>
<para>
There are four mailbox handlers:
</para>
<itemizedlist>
<listitem><para>mbox.MaildirFolderHandler</></>
<listitem><para>mbox.MaildirMessageHandler</></>
<listitem><para>mbox.MBoxMessageHandler</></>
<listitem><para>mbox.MBoxFolderHandler</></>
</itemizedlist>
<para>
These four handlers provide a unique "virtual folder"
service. They allow you to present mailboxes as if they
were folders, the items of the folders being the
messages in the mailbox, organized by subject. This is
useful for presenting mail archives or just making
e-mail accessible in a nice and easy fashion.
</para>
<para>
To use these handlers, all you have to do is enable them
in your <property>handlers</property> section. They
will automatically detect requests for mailboxes and
handle them appropriately.
</para>
<para>
The different handlers are for traditional Unix mbox
mailboxes (all messages in a single file) and new
qmail-stype Maildir mailboxes. You can enable only the
two handlers for the specific mailbox type that you use,
if desired.
</para>
</sect1>
<sect1 id="handlers.pyghandler">
<title>pyg.PYGHandler</title>
<para>
PYG (short for PYGopherd) is a mechanism that provides a
tremendous amount of flexibility. Rather than just
letting you execute a script like other Gopher or HTTP
servers, PYGs are actually loaded up into PyGopherd and
become fully-capable first-class virtual handlers. Yet
they need not be known ahead of time, and are loaded
dynamically.
</para>
<para>
With a PYG handler, you can generate gopher directories,
handle searches, generate files, and more on the fly.
You can create entire virtual directory trees (for
instance, to interface with NNTP servers or with DICT
servers), and access them all using the standard Gopher
protocol. All of this without having to modify even one
line of &PyGopherd; code.
</para>
<para>
If enabled, the <property>pyg.PYGHandler</property> will
look for files with the extension .pyg that are marked
executable. If found, they will be loaded and run as
PYGs.
</para>
<para>
Please note: this module provides the capability to
execute arbitrary code. Please consider the security
ramifications of that before enabling it.
</para>
<para>
See the <property>virtual.Virtual</property> handler for
more information about passing data to your scripts at
runtime.
</para>
<para>
At present, documentation on writing PYGs is not
provided, but you may find examples in the
<property>pygfarm</property> directory included with the
&PyGopherd; distribution.
</para>
</sect1>
<sect1 id="handlers.exechandler">
<title>scriptexec.ExecHandler</>
<para>
This handler implements "old-style" script execution;
that is, executing arbitrary programs and piping the
result to the client. It is, for the most part,
compatible with both scripts written for UMN gopherd and
the Bucktooth gopher server. If enabled, it will
execute any file that is marked executable in the
filesystem. It will normally list scripts as returning
plain text, but you may create a custom link to the
script that defines it as returning whatever kind of
file you desire. Unlike PYGs, this type must be known
in advance.
</para>
<para>
The <property>scriptexec.ExecHandler</property> will set
environment variables for your scripts to use. They are
as follows:
</para>
<variablelist>
<varlistentry>
<term>SERVER_NAME</term>
<listitem><para>The name of this server as defined in
the configuration file or detected from the
operating system.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>SERVER_PORT</term>
<listitem><para>The port this server is listening on.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>REMOTE_ADDR</term>
<listitem><para>The IP address of the client.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>REMOTE_PORT</term>
<listitem><para>The port number of the client.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>REMOTE_HOST</term>
<listitem><para>The same value as <property>REMOTE_ADDR</property></para>
</listitem>
</varlistentry>
<varlistentry>
<term>SELECTOR</term>
<listitem><para>The file that was requested; that is,
the relative path to this script. If the selector
included additional parameters after a |, they
will be included in this string as well.
</para>
</listitem>
</varlistentry>
<varlistentry>
<term>REQUEST</term>
<listitem><para>The "base" part of the selector; that
is, the part leading up to the |.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>SEARCHREQUEST</term>
<listitem><para>Included only if the client specified
search data, this is used if the client is
searching for something.
</para>
</listitem>
</varlistentry>
</variablelist>
<para>
See the <property>virtual.Virtual</property> handler for
more information about passing data to your scripts at
runtime.
</para>
<para>
Please note: this module provides the capability to
execute arbitrary code. Please consider the security
ramifications of that before enabling it.
</para>
</sect1>
<sect1 id="handlers.umn">
<title>UMN.UMNDirHandler</title>
<para>
This is one of the most powerful workhorse handlers in
&PyGopherd;. It is designed to emulate most of the ways
in which the UMN gopherd distribution generates
directories, even going so far as to be bug-compatible
in some cases. Generating directories with this handler
is often the best general-purpose way to make nice
directories in gopherspace.
</para>
<para>
The remainder of the description of the
<property>UMN.UMNDirHandler</property>, except for the
Abstracts and Info section, is lifted directly from the
original UMN gopherd documentation, with light editing,
because this handler implements it so exactly that there
was no point in rewriting all that documentation :-)
</para>
<sect2 id="handlers.umn.links">
<title>Links</title>
<para>
You can override the default view of a directory as
generated by <property>dir.DirHandler</property> by
creating what are known as <emphasis>Links</emphasis> in
the data tree.
</para>
<para>
The ability to make links to other hosts is how gopher
distributes itself among multiple hosts. There are two
different ways to make a link. The first and simplest is
to create a link file that contains the data needed by the
server. By default all files in the gopher data directory
starting with a period are taken to be link files. A link
file can contain multiple links. To define a link you
need to put five lines in a link file that define the
needed characteristics for the document. Here is an
example of a link.
</para>
<programlisting>
Name=Cheese Ball Recipes
Numb=1
Type=1
Port=150
Path=1/Moo/Cheesy
Host=zippy.micro.umn.edu
</programlisting>
<para>
The Name= line is what the user will see when cruising
through the database. In this case the name is "Cheese
Ball Recipes". The "Type=" defines what kind of document
this object is. For a list of all defined types, see
Gopher Item Types below. For Gopher+ and HTTP, a MIME
type is also used, which is determined automatically based
on the type you specify.
</para>
<para>
The "Path=" line contains the selector string that the
client will use to retrieve the actual document. The
Numb= specifies that this entry should be presented first
in the directory list (instead of being alphabetized).
The "Numb=" line is optional. If it is present it cannot
be the last line of the link. The "Host=" and "Port="
lines specify a fully qualified domain name (FQDN) and a
port respectively. You may substitute a plus '+' for
these two parameters if you wish. The server will insert
the current hostname and the current port when it sees a
plus in either of these two fields.
</para>
<para>An easy way to retrieve links is to use the Curses
Gopher Client. By pressing '=' You can get information
suitable for inclusion in a link file.
</para>
</sect2>
<sect2 id="handlers.umn.overriding">
<title>Overriding Defaults</title>
<para>
The server looks for a directory called
<filename>.cap</filename> when parsing a directory. The
server then checks to see if the <filename>.cap</filename>
directory contains a file with the same name as the file
it's parsing. If this file exists then the server will
open it for reading. The server parses this file just
like a link file. However, instead of making a new
object, the parameters inside the
<filename>.cap/</filename> file are used to override any
of the server supplied default values.
</para>
<para>
For instance, say you wanted to change the Title of a text
file for gopher, but don't want to change the filename.
You also don't want it alphabetized, instead you want it
second in the directory listing. You could make a
set-aside file in the <filename>.cap</> directory with the same
filename that contained the following lines:
</para>
<programlisting>
Name=New Long Cool Name
Numb=2
</programlisting>
<para>
An alternative to <filename>.cap</filename> files are
extended link files. They work just the same as the files
described in Links above, but have a somewhat abbreviated
format. As an example, if the name of the file was
<filename>file-to-change</filename>, then you could create
a file called <filename>.names</filename> with the
following contents:
</para>
<programlisting>
Path=./file-to-change
Name=New Long Cool Name
Numb=2
</programlisting>
</sect2>
<sect2 id="handlers.umn.cool">
<title>Adding Cool Links</title>
<para>
One cool thing you can do with .Links is to add neato
services to your gopher server. Adding a link like this:
</para>
<programlisting>
Name=Cool ftp directory
Type=h
Path=/URL:ftp://hostname/path/
Host=+
Port=+
Name=Cool web site
Type=h
Path=/URL:http://hostname/
Host=+
Port=+
</programlisting>
<para>
Will allow you to link in any FTP or Web site to your
gopher. (See url.URLHandler for more details.)
</para>
<para>
You can easily add a finger site to your gopher server thusly:
</para>
<programlisting>
Name=Finger information
Type=0
Path=lindner
Host=mudhoney.micro.umn.edu
Port=79
</programlisting>
</sect2>
<sect2 id="handlers.umn.hiding">
<title>Hiding an Entry</title>
<para>
This kind of trick may be necessary in some cases,
and thus for
object "fred", the overriding .names file entry would be:
</para>
<programlisting>
Type=X
Path=./fred
</programlisting>
<para>
by overriding default type to be "X". This
may be useful, when for some reason there are
symlinks (or whatever) in the directory at which
&PyGopherd; looks, and those entries are not desired to
be shown at all.
</para>
</sect2>
<sect2 id="handlers.umn.abstracts">
<title>Abstracts and Info</title>
<para>
Many modern gopher server maintainers like to intersperse
gopher directory listings with other information -- often,
additional information about the contents of files in the
directory. The gophermap system provides one way to do
that, and abstracts used with UMN gopher directories
provides another.
</para>
<para>
Subject to the <property>abstract_headers</> and
<property>abstract_entries</property> configuration file
options, this feature allows you to define that extra
information. You can do that by simply creating a file
named <filename>filename.abstract</filename> right
alongside the regular file in your directory. The file
will be interpreted as the abstract. For a directory,
create a file named <filename>.abstract</filename> in the
directory. Simple as that!
</para>
</sect2>
</sect1>
<sect1 id="handlers.htmlurlhandler">
<title>url.HTMLURLHandler</title>
<para>
&PyGopherd; provides ways for you to link to pages outside
Gopherspace -- that is, web pages, FTP sites, and the like.
This is accomplished according to the <ulink
url="http://lists.complete.org/gopher@complete.org/2002/02/msg00033.html.gz">Links
to URL</ulink> specification (see Conforming To below for
details). In order to link to a URL (EXCEPT gopher URLs)
from a menu, you create a link of type h (regardless of the
actual type of the resource that you are linking to) in your
<filename>gophermap</filename> or
<filename>.Links</filename>
file that looks like this:
</para>
<programlisting>
/URL:http://www.complete.org/
</programlisting>
<para>
Modern Gopher clients that follow the Links to URL
specification will automatically follow that link when you
select it. The rest need some help, and that's where this
handler comes in.
</para>
<para>
For Gopher clients that do not follow the Links to URL
specification, the <property>url.HTMLURLHandler</property>
will automatically generate an HTML document for them on the
fly. This document includes a refresh code that will send
them to the proper page. You should not disable this
handler.
</para>
</sect1>
<sect1 id="handlers.urltyperewriter">
<title>url.URLTypeRewriter</title>
<para>
Some people wish to serve HTML documents from their Gopher
server. One problem with that is that links in Gopherspace
include an extra type character at the beginning, whereas
links in HTTP do not. This handler will remove the extra
type character from HTTP requests that come in, allowing a
single relative-to-root link to work for both.
</para>
</sect1>
<sect1 id="handlers.virtual">
<title>virtual.Virtual</title>
<para>
This handler is not intended to ever be used directly, but
is used by many other handlers such as the mbox support, PYG
handlers, and others. It is used to generate virtual
entries in the directory hierarchy -- that is, entries that
look normal to a client, but do not actually correspond to a
file on disk.
</para>
<para>
One special feature of the
<property>virtual.Virtual</property> handler is that you can
send information to it at runtime in a manner similar to a
CGI script on the web. You do this by adding a question
mark after the regular selector, followed by any arbitrary
data that you wish to have sent to the virtual request
handler.
</para>
</sect1>
<sect1 id="handlers.zip">
<title>ZIP.ZIPHandler</title>
<para>
Using zip.ZIPHandler, you can save space on your server by
converting part or all of your site into a ZIP file.
&PyGopherd; can use the contents of that ZIP file as the
contents of your site -- completely transparently.
</para>
<para>
The ZIP file handler must be enabled in the configuration
file for this to work.
</para>
</sect1>
</chapter>
<chapter id="types">
<title>Gopher Item Types</title>
<para>
When you construct links to files via
<filename>.Links</filename> or <filename>gophermap</filename>
files, or modify the <property>mapping</property> in the
configuration file, you will need to know these. Items
bearing the "not implemented" text are not served up by
&PyGopherd; as it ships, generally due to requirements of
customized per-site software, but may be served up via PYG
extension modules or other gopher servers.
</para>
<para>
This list was prepared based on RFC1436, the UMN gopherd(1) manpage,
and best current practices.
</para>
<variablelist>
<varlistentry><term>0</term>
<listitem><para>Plain text file</para>
</listitem>
</varlistentry>
<varlistentry><term>1</term>
<listitem><para>Directory</para>
</listitem>
</varlistentry>
<varlistentry><term>2</term>
<listitem><para>CSO phone book server (not implemented by &PyGopherd;)</para>
</listitem>
</varlistentry>
<varlistentry><term>3</term>
<listitem><para>Error condition; text that follows is plain text</para>
</listitem>
</varlistentry>
<varlistentry><term>4</term>
<listitem><para>Macintosh file, BinHex format</para>
</listitem>
</varlistentry>
<varlistentry><term>5</term>
<listitem><para>DOS binary archive (not implemented by
&PyGopherd;; use type 9 instead)</para>
</listitem>
</varlistentry>
<varlistentry><term>6</term>
<listitem><para>uuencoded file; not directly generated by
&PyGopherd; automatically, but can be linked to
manually. Most gopher clients will handle this better
as type 1.
</para>
</listitem>
</varlistentry>
<varlistentry><term>7</term>
<listitem><para>Search</para>
</listitem>
</varlistentry>
<varlistentry><term>8</term>
<listitem><para>Telnet link</para>
</listitem>
</varlistentry>
<varlistentry><term>9</term>
<listitem><para>Binary file</para>
</listitem>
</varlistentry>
<varlistentry><term>+</term>
<listitem><para>Redundant server (not implemented by &PyGopherd;)</para>
</listitem>
</varlistentry>
<varlistentry><term>c</term>
<listitem><para>Calendar (not implemented by &PyGopherd;)</para>
</listitem>
</varlistentry>
<varlistentry><term>e</term>
<listitem><para>Event (not implemented by &PyGopherd;)</para>
</listitem>
</varlistentry>
<varlistentry><term>g</term>
<listitem><para>GIF-format graphic</para>
</listitem>
</varlistentry>
<varlistentry><term>h</term>
<listitem><para>HTML file</para>
</listitem>
</varlistentry>
<varlistentry><term>I</term>
<listitem><para>Any kind of graphic file other than GIF</para>
</listitem>
</varlistentry>
<varlistentry><term>i</term> <listitem><para>Informational
text included in a directory that is displayed but does not
link to any actual file.</para>
</listitem>
</varlistentry>
<varlistentry><term>M</term>
<listitem><para>MIME multipart/mixed file</para>
</listitem>
</varlistentry>
<varlistentry><term>s</term>
<listitem><para>Any kind of sound file</para>
</listitem>
</varlistentry>
<varlistentry><term>T</term>
<listitem><para>tn3270 link</para>
</listitem>
</varlistentry>
<varlistentry><term>X</term><term>-</term> <listitem><para>
UMN-specific -- signifies that this entry should not be
displayed in a directory entry, but may be accessed via a
direct link. This value is never transmitted in any Gopher
protocol.
</para>
</listitem>
</varlistentry>
</variablelist>
</chapter>
<!--
Local Variables:
mode: sgml
sgml-set-face: T
End:
-->
|