FM.announce 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. LYNX FILE MANAGEMENT SUPPORT
  2. New facilities have been added since Lynx 2-3 to provide support
  3. for managing files on the local filesystem. These facilities allow
  4. the user to delete, rename, and re-locate files and/or directories and
  5. to create and/or upload new files and directories. This will mainly
  6. be of interest to systems administrators who are interested in running
  7. lynx as a restricted shell in order to provide controlled access to a
  8. range of services (as in a freenet). It may also be of use at sites
  9. where some of the users are experiencing difficulty with the raw Unix
  10. interface.
  11. Support for the new facilities is enabled at compile time by defining
  12. the variable `DIRED_SUPPORT' in the `MCFLAGS' list in the Lynx
  13. Makefile, and in the WWW makefile `CommonMakefile'. Runtime support
  14. for disabling the facilities is provided by way of the restriction
  15. `dired_support' which can be set on the command line for a particular
  16. session.
  17. The Makefile also provides additional compile time flags for
  18. controlling the extent and application of the file management
  19. facilities; specifically, `OK_TAR' which enables support for creating
  20. and expanding tar archives, `OK_GZIP' which enables use of gzip to
  21. compress and decompress files, and `OK_OVERRIDE' which allows access
  22. to the file management facilities directly from the keyboard in
  23. addition to access by way of a file management menu.
  24. There are two possible modes of operation; the first in which a single
  25. file management menu is invoked via the `f', or `F' key; the second,
  26. in which the more often used facilities are made available directly
  27. from the keyboard in addition to access via the menu. The second
  28. method provides a much better user interface but requires re-mapping
  29. some of the keys from their standard lynx interpretation, temporarily
  30. when file management mode is in effect. For example, if OK_OVERRIDE is
  31. defined at compile-time, then the line at the bottom of the screen, in
  32. novice mode, will be
  33. C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)pload
  34. rather than the standard second noviceline,
  35. H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list
  36. when the user is browsing part of the file system. If OK_OVERRIDE is not
  37. defined then all access to file management functionality must be by way
  38. of the menu. The only exception is that the facility to tag files for
  39. subsequent removal and/or re-location is always available directly from
  40. the keyboard using `t', and `T'.
  41. This is a first release of the file management enhancements and suggestions
  42. for improvements are welcome. Among the enhancements which are currently
  43. being considered are facilities for changing file access attributes, and
  44. a facility for listing and extracting part of an archive.
  45. In order to use the file management facilities you may either point
  46. the program at a directory on the command line or point the program at
  47. an html file which contains a link of the following form:
  48. <a href="file://localhost/~/"> Manage Personal Directory ? </a>
  49. where the anchor `file://localhost/~/' implies a reference to
  50. /home/username. Because the `~/' in a file URL is converted to
  51. `/home/username' regardless of origin, these facilities also work when
  52. the anchor shown above is served from an http server as well. In
  53. either case the reference is to files on the local system and not
  54. files in the domain of the server.
  55. By default the file listing is in standard Unix mixed format, but you
  56. may use the Options menu to select WWW `directories first' format, or
  57. `files first' format if you prefer.
  58. Rick Mallett, Carleton University, Ottawa Canada. (rmallett@ccs.carleton.ca)