Annotation of libwww/Library/src/HTInit.c, revision 2.37

2.20      frystyk     1: /*                                                                    HTInit.c
                      2: **     CONFIGURATION-SPECIFIC INITIALIALIZATION
                      3: **
2.25      frystyk     4: **     (c) COPYRIGHT MIT 1995.
2.20      frystyk     5: **     Please first read the full copyright statement in the file COPYRIGH.
2.9       duns        6: **
2.20      frystyk     7: **     Define a basic set of suffixes and presentations
2.1       timbl       8: */
                      9: 
2.22      frystyk    10: /* Library include files */
                     11: #include "tcp.h"
                     12: #include "HTUtils.h"
2.24      frystyk    13: #include "HTFormat.h"
                     14: #include "HTList.h"
2.28      frystyk    15: 
                     16: /* Binding Managers */
2.24      frystyk    17: #include "HTBind.h"
2.28      frystyk    18: #include "HTProt.h"
2.24      frystyk    19: 
                     20: /* Converters and Presenters */
2.31      frystyk    21: #include "HTML.h"                      /* Uses HTML/HText interface */
                     22: #include "HTPlain.h"                   /* Uses HTML/HText interface */
                     23: 
                     24: #include "HTTeXGen.h"
2.1       timbl      25: #include "HTMLGen.h"
                     26: #include "HTMIME.h"
2.2       timbl      27: #include "HTWSRC.h"
2.22      frystyk    28: #include "HTFWrite.h"
2.24      frystyk    29: 
                     30: /* Protocol Modules */
                     31: #include "HTTP.h"
                     32: #include "HTFile.h"
                     33: #include "HTFTP.h"
                     34: #include "HTGopher.h"
                     35: #include "HTTelnet.h"
2.18      frystyk    36: #include "HTNews.h"
2.24      frystyk    37: 
                     38: #ifdef HT_DIRECT_WAIS
2.27      frystyk    39: #include "HTWAIS.h"
2.24      frystyk    40: #endif
                     41: 
2.22      frystyk    42: #include "HTInit.h"                                     /* Implemented here */
2.1       timbl      43: 
2.29      frystyk    44: /* ------------------------------------------------------------------------- */
                     45: 
2.23      frystyk    46: /*     BINDINGS BETWEEN A SOURCE MEDIA TYPE AND A DEST MEDIA TYPE (CONVERSION)
                     47: **     ----------------------------------------------------------------------
                     48: **
                     49: **     Not done automaticly - must be done by application!
                     50: */
                     51: PUBLIC void HTConverterInit ARGS1(HTList *, c)
                     52: {
2.31      frystyk    53:     /*
                     54:     ** This set of converters uses the HTML/HText interface.
2.34      frystyk    55:     ** If you do not want this interface then replace them!
2.31      frystyk    56:     */
                     57:     HTSetConversion(c,"text/html",             "www/present",  HTMLPresent,    1.0, 0.0, 0.0);
                     58:     HTSetConversion(c,"text/plain",            "www/present",  HTPlainPresent, 1.0, 0.0, 0.0);
2.23      frystyk    59:     HTSetConversion(c,"text/html",             "text/x-c",     HTMLToC,        0.5, 0.0, 0.0);
                     60:     HTSetConversion(c,"text/html",             "text/plain",   HTMLToPlain,    0.5, 0.0, 0.0);
2.32      frystyk    61:     HTSetConversion(c,"text/html",             "text/latex",   HTMLToTeX,      1.0, 0.0, 0.0);
2.31      frystyk    62: 
                     63:     /*
                     64:     ** These are converters that converts to something other than www/present,
                     65:     ** that is not directly outputting someting to the user on the screen
                     66:     */
                     67:     HTSetConversion(c,"www/mime",              "*/*",          HTMIMEConvert,  1.0, 0.0, 0.0);
2.23      frystyk    68:     HTSetConversion(c,"text/plain",            "text/html",    HTPlainToHTML,  1.0, 0.0, 0.0);
2.31      frystyk    69:     HTSetConversion(c,"application/x-wais-source","*/*",       HTWSRCConvert,  1.0, 0.0, 0.0);
                     70: 
                     71:     /*
2.34      frystyk    72:     ** This dumps all other formats to local disk without any further
2.31      frystyk    73:     ** action taken
                     74:     */
2.23      frystyk    75:     HTSetConversion(c,"*/*",                   "www/present",  HTSaveLocally,  0.3, 0.0, 0.0);
                     76: }
                     77: 
                     78: /*     BINDINGS BETWEEN MEDIA TYPES AND EXTERNAL VIEWERS/PRESENTERS
                     79: **     ------------------------------------------------------------
                     80: **
                     81: **     The data objects are stored in temporary files before the external
                     82: **     program is called
                     83: **
                     84: **     Not done automaticly - must be done by application!
                     85: */
                     86: PUBLIC void HTPresenterInit ARGS1(HTList *, c)
2.1       timbl      87: {
                     88: #ifdef NeXT
2.19      howcome    89:     HTSetPresentation(c,"application/postscript", "open %s",   NULL, 1.0, 2.0, 0.0);
2.10      luotonen   90:     /* The following needs the GIF previewer -- you might not have it. */
2.19      howcome    91: 
                     92:     HTSetPresentation(c,"image/gif",           "open %s",      NULL, 0.3, 2.0, 0.0);
                     93:     HTSetPresentation(c,"image/x-tiff",        "open %s",      NULL, 1.0, 2.0, 0.0);
                     94:     HTSetPresentation(c,"audio/basic",                 "open %s",      NULL, 1.0, 2.0, 0.0);
                     95:     HTSetPresentation(c,"*/*",                         "open %s",      NULL, 0.05, 0.0, 0.0); 
2.1       timbl      96: #else
2.10      luotonen   97:     if (getenv("DISPLAY")) {   /* Must have X11 */
2.19      howcome    98:        HTSetPresentation(c,"application/postscript", "ghostview %s",   NULL, 1.0, 3.0, 0.0);
                     99:        HTSetPresentation(c,"image/gif",                "xv %s",        NULL, 1.0, 3.0, 0.0);
                    100:        HTSetPresentation(c,"image/x-tiff",     "xv %s",        NULL, 1.0, 3.0, 0.0);
                    101:        HTSetPresentation(c,"image/jpeg",       "xv %s",        NULL, 1.0, 3.0, 0.0);
2.30      frystyk   102:        HTSetPresentation(c,"image/x-png",      "xv %s",        NULL, 1.0, 3.0, 0.0);
2.10      luotonen  103:     }
2.1       timbl     104: #endif
2.15      frystyk   105: }
                    106: 
                    107: 
2.23      frystyk   108: /*     PRESENTERS AND CONVERTERS AT THE SAME TIME
                    109: **     ------------------------------------------
                    110: **
                    111: **     This function is only defined in order to preserve backward
                    112: **     compatibility.
                    113: */
                    114: PUBLIC void HTFormatInit ARGS1(HTList *, c)
2.15      frystyk   115: {
2.23      frystyk   116:     HTConverterInit(c);
                    117:     HTPresenterInit(c);
                    118: 
2.1       timbl     119: }
                    120: 
2.24      frystyk   121: /*     REGISTER ALL KNOWN PROTOCOLS IN THE LIBRARY
                    122: **     -------------------------------------------
                    123: **
                    124: **     Add to or subtract from this list if you add or remove protocol
                    125: **     modules. This function is called from HTLibInit()
                    126: **     Compiling with HT_NO_INIT prevents all known protocols from being
                    127: **     force in at link time.
                    128: */
                    129: #ifndef HT_NO_INIT
2.33      frystyk   130: PUBLIC void HTAccessInit (void)
2.24      frystyk   131: {
                    132: #ifndef DECNET
2.34      frystyk   133:     HTProtocol_add("ftp", NO, HTLoadFTP);
2.37    ! frystyk   134:     HTProtocol_add("nntp", NO, HTLoadNews);
        !           135:     HTProtocol_add("news", NO, HTLoadNews);
2.33      frystyk   136:     HTProtocol_add("gopher", NO, HTLoadGopher);
2.24      frystyk   137: #ifdef HT_DIRECT_WAIS
2.33      frystyk   138:     HTProtocol_add("wais", YES, HTLoadWAIS);
2.24      frystyk   139: #endif
                    140: #endif /* DECNET */
                    141: 
2.33      frystyk   142:     HTProtocol_add("http", NO, HTLoadHTTP);
                    143:     HTProtocol_add("file", NO, HTLoadFile);
                    144:     HTProtocol_add("telnet", YES, HTLoadTelnet);
                    145:     HTProtocol_add("tn3270", YES, HTLoadTelnet);
                    146:     HTProtocol_add("rlogin", YES, HTLoadTelnet);
2.24      frystyk   147: }
                    148: #endif /* !HT_NO_INIT */
                    149: 
2.1       timbl     150: 
2.23      frystyk   151: /*     BINDINGS BETWEEN FILE EXTENSIONS AND MEDIA TYPES
                    152: **     ------------------------------------------------
2.1       timbl     153: **
2.23      frystyk   154: **     The LAST suffix for a type is that used for temporary files of that
                    155: **     type. The quality is an apriori bias as to whether the file should be
2.1       timbl     156: **     used.  Not that different suffixes can be used to represent files
                    157: **     which are of the same format but are originals or regenerated,
2.24      frystyk   158: **     with different values. Called from HTLibraryInit().
2.1       timbl     159: */
                    160: 
2.23      frystyk   161: #ifndef HT_NO_INIT
2.1       timbl     162: PUBLIC void HTFileInit NOARGS
2.10      luotonen  163: {
2.24      frystyk   164:     /*                Suffix    Content-Type                   Encoding  Lang  Quality */
2.12      luotonen  165: 
2.24      frystyk   166:     HTBind_setBinding("mime",   "www/mime",                    "8bit",   NULL, 1.0);   /* Internal -- MIME is  */
                    167:                                                                        /* not recursive        */
                    168:     HTBind_setBinding("bin",    "application/octet-stream",    "binary", NULL, 1.0); /* Uninterpreted binary   */
                    169:     HTBind_setBinding("oda",    "application/oda",             "binary", NULL, 1.0);
                    170:     HTBind_setBinding("pdf",    "application/pdf",             "binary", NULL, 1.0);
                    171:     HTBind_setBinding("ai",     "application/postscript",      "8bit",   NULL, 0.5);   /* Adobe Illustrator    */
                    172:     HTBind_setBinding("PS",     "application/postscript",      "8bit",   NULL, 0.8);   /* PostScript           */
                    173:     HTBind_setBinding("eps",    "application/postscript",      "8bit",   NULL, 0.8);
                    174:     HTBind_setBinding("ps",     "application/postscript",      "8bit",   NULL, 0.8);
                    175:     HTBind_setBinding("gtar",   "application/x-gtar",          "binary", NULL, 1.0);   /* Gnu tar              */
                    176:     HTBind_setBinding("rtf",    "application/x-rtf",           "7bit",   NULL, 1.0);   /* RTF                  */
                    177:     HTBind_setBinding("csh",    "application/x-csh",           "7bit",   NULL, 0.5);   /* C-shell script       */
                    178:     HTBind_setBinding("dvi",    "application/x-dvi",           "binary", NULL, 1.0);   /* TeX DVI              */
                    179:     HTBind_setBinding("hdf",    "application/x-hdf",           "binary", NULL, 1.0);   /* NCSA HDF data file   */
                    180:     HTBind_setBinding("latex",  "application/x-latex",         "8bit",   NULL, 1.0);   /* LaTeX source         */
                    181:     HTBind_setBinding("nc",     "application/x-netcdf",        "binary", NULL, 1.0);   /* Unidata netCDF data  */
                    182:     HTBind_setBinding("cdf",    "application/x-netcdf",        "binary", NULL, 1.0);
                    183:     HTBind_setBinding("sh",     "application/x-sh",            "7bit",   NULL, 0.5);   /* Shell-script         */
                    184:     HTBind_setBinding("tar",    "application/x-tar",           "binary", NULL, 1.0);   /* 4.3BSD tar           */
                    185:     HTBind_setBinding("tcl",    "application/x-tcl",           "7bit",   NULL, 0.5);   /* TCL-script           */
                    186:     HTBind_setBinding("tex",    "application/x-tex",           "8bit",   NULL, 1.0);   /* TeX source           */
                    187:     HTBind_setBinding("texi",   "application/x-texinfo",       "7bit",   NULL, 1.0);   /* Texinfo              */
                    188:     HTBind_setBinding("texinfo","application/x-texinfo",       "7bit",   NULL, 1.0);
                    189:     HTBind_setBinding("t",      "application/x-troff",         "7bit",   NULL, 0.5);   /* Troff                */
                    190:     HTBind_setBinding("roff",   "application/x-troff",         "7bit",   NULL, 0.5);
                    191:     HTBind_setBinding("tr",     "application/x-troff",         "7bit",   NULL, 0.5);
                    192:     HTBind_setBinding("man",    "application/x-troff-man",     "7bit",   NULL, 0.5);   /* Troff with man macros*/
                    193:     HTBind_setBinding("me",     "application/x-troff-me",      "7bit",   NULL, 0.5);   /* Troff with me macros */
                    194:     HTBind_setBinding("ms",     "application/x-troff-ms",      "7bit",   NULL, 0.5);   /* Troff with ms macros */
                    195:     HTBind_setBinding("src",    "application/x-wais-source",   "7bit",   NULL, 1.0);   /* WAIS source          */
                    196:     HTBind_setBinding("bcpio",  "application/x-bcpio",         "binary", NULL, 1.0);   /* Old binary CPIO      */
                    197:     HTBind_setBinding("cpio",   "application/x-cpio",          "binary", NULL, 1.0);   /* POSIX CPIO           */
                    198:     HTBind_setBinding("shar",   "application/x-shar",          "8bit",   NULL, 1.0);   /* Shell archive        */
                    199:     HTBind_setBinding("sv4cpio","application/x-sv4cpio",       "binary", NULL, 1.0);   /* SVR4 CPIO            */
                    200:     HTBind_setBinding("sv4crc", "application/x-sv4crc",        "binary", NULL, 1.0);   /* SVR4 CPIO with CRC   */
                    201:     HTBind_setBinding("ustar",  "application/x-ustar",         "binary", NULL, 1.0);   /* POSIX tar            */
                    202:     HTBind_setBinding("snd",    "audio/basic",                 "binary", NULL, 1.0);   /* Audio                */
                    203:     HTBind_setBinding("au",     "audio/basic",                 "binary", NULL, 1.0);
                    204:     HTBind_setBinding("aiff",   "audio/x-aiff",                "binary", NULL, 1.0);
                    205:     HTBind_setBinding("aifc",   "audio/x-aiff",                "binary", NULL, 1.0);
                    206:     HTBind_setBinding("aif",    "audio/x-aiff",                "binary", NULL, 1.0);
                    207:     HTBind_setBinding("wav",    "audio/x-wav",                 "binary", NULL, 1.0);   /* Windows+ WAVE format */
                    208:     HTBind_setBinding("gif",    "image/gif",                   "binary", NULL, 1.0);   /* GIF                  */
2.30      frystyk   209:     HTBind_setBinding("png",    "image/x-png",                 "binary", NULL, 1.0);   /* PNG                  */
2.24      frystyk   210:     HTBind_setBinding("ief",    "image/ief",                   "binary", NULL, 1.0);   /* Image Exchange fmt   */
                    211:     HTBind_setBinding("jpg",    "image/jpeg",                  "binary", NULL, 1.0);   /* JPEG                 */
                    212:     HTBind_setBinding("JPG",    "image/jpeg",                  "binary", NULL, 1.0);
                    213:     HTBind_setBinding("JPE",    "image/jpeg",                  "binary", NULL, 1.0);
                    214:     HTBind_setBinding("jpe",    "image/jpeg",                  "binary", NULL, 1.0);
                    215:     HTBind_setBinding("JPEG",   "image/jpeg",                  "binary", NULL, 1.0);
                    216:     HTBind_setBinding("jpeg",   "image/jpeg",                  "binary", NULL, 1.0);
                    217:     HTBind_setBinding("tif",    "image/tiff",                  "binary", NULL, 1.0);   /* TIFF                 */
                    218:     HTBind_setBinding("tiff",   "image/tiff",                  "binary", NULL, 1.0);
                    219:     HTBind_setBinding("ras",    "image/cmu-raster",            "binary", NULL, 1.0);
                    220:     HTBind_setBinding("pnm",    "image/x-portable-anymap",     "binary", NULL, 1.0);   /* PBM Anymap format    */
                    221:     HTBind_setBinding("pbm",    "image/x-portable-bitmap",     "binary", NULL, 1.0);   /* PBM Bitmap format    */
                    222:     HTBind_setBinding("pgm",    "image/x-portable-graymap",    "binary", NULL, 1.0);   /* PBM Graymap format   */
                    223:     HTBind_setBinding("ppm",    "image/x-portable-pixmap",     "binary", NULL, 1.0);   /* PBM Pixmap format    */
                    224:     HTBind_setBinding("rgb",    "image/x-rgb",                 "binary", NULL, 1.0);
                    225:     HTBind_setBinding("xbm",    "image/x-xbitmap",             "binary", NULL, 1.0);   /* X bitmap             */
                    226:     HTBind_setBinding("xpm",    "image/x-xpixmap",             "binary", NULL, 1.0);   /* X pixmap format      */
                    227:     HTBind_setBinding("xwd",    "image/x-xwindowdump",         "binary", NULL, 1.0);   /* X window dump (xwd)  */
                    228:     HTBind_setBinding("html",   "text/html",                   "8bit",   NULL, 1.0);   /* HTML                 */
                    229:     HTBind_setBinding("c",      "text/plain",                  "7bit",   NULL, 0.5);   /* C source             */
                    230:     HTBind_setBinding("h",      "text/plain",                  "7bit",   NULL, 0.5);   /* C headers            */
                    231:     HTBind_setBinding("C",      "text/plain",                  "7bit",   NULL, 0.5);   /* C++ source           */
                    232:     HTBind_setBinding("cc",     "text/plain",                  "7bit",   NULL, 0.5);   /* C++ source           */
                    233:     HTBind_setBinding("hh",     "text/plain",                  "7bit",   NULL, 0.5);   /* C++ headers          */
                    234:     HTBind_setBinding("m",      "text/plain",                  "7bit",   NULL, 0.5);   /* Objective-C source   */
                    235:     HTBind_setBinding("f90",    "text/plain",                  "7bit",   NULL, 0.5);   /* Fortran 90 source    */
                    236:     HTBind_setBinding("txt",    "text/plain",                  "7bit",   NULL, 0.5);   /* Plain text           */
                    237:     HTBind_setBinding("rtx",    "text/richtext",               "7bit",   NULL, 1.0);   /* MIME Richtext format */
                    238:     HTBind_setBinding("tsv",    "text/tab-separated-values",   "7bit",   NULL, 1.0);   /* Tab-separated values */
                    239:     HTBind_setBinding("etx",    "text/x-setext",               "7bit",   NULL, 0.9);   /* Struct Enchanced Txt */
                    240:     HTBind_setBinding("MPG",    "video/mpeg",                  "binary", NULL, 1.0);   /* MPEG                 */
                    241:     HTBind_setBinding("mpg",    "video/mpeg",                  "binary", NULL, 1.0);
                    242:     HTBind_setBinding("MPE",    "video/mpeg",                  "binary", NULL, 1.0);
                    243:     HTBind_setBinding("mpe",    "video/mpeg",                  "binary", NULL, 1.0);
                    244:     HTBind_setBinding("MPEG",   "video/mpeg",                  "binary", NULL, 1.0);
                    245:     HTBind_setBinding("mpeg",   "video/mpeg",                  "binary", NULL, 1.0);
                    246:     HTBind_setBinding("qt",     "video/quicktime",             "binary", NULL, 1.0);   /* QuickTime            */
                    247:     HTBind_setBinding("mov",    "video/quicktime",             "binary", NULL, 1.0);
                    248:     HTBind_setBinding("avi",    "video/x-msvideo",             "binary", NULL, 1.0);   /* MS Video for Windows */
                    249:     HTBind_setBinding("movie",  "video/x-sgi-movie",           "binary", NULL, 1.0);   /* SGI "moviepalyer"    */
                    250: 
                    251:     HTBind_setBinding("zip",    NULL,                          "zip",      NULL, 1.0); /* PKZIP                */
                    252:     HTBind_setBinding("Z",     NULL,                           "compress", NULL, 1.0); /* Compressed data      */
                    253:     HTBind_setBinding("gz",    NULL,                           "gzip",     NULL, 1.0); /* Gnu Compressed data  */
2.1       timbl     254: 
2.24      frystyk   255:     HTBind_setBinding("*.*",     "www/unknown",                        "binary", NULL, 0.1);   /* Unknown suffix */
2.26      frystyk   256:     HTBind_setBinding("*",       "www/unknown",                        "7bit",   NULL, 0.5);   /* No suffix */
2.1       timbl     257: }
2.23      frystyk   258: #endif /* !HT_NO_INIT */
2.1       timbl     259: 

Webmaster