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

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

Webmaster