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

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

Webmaster