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

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

Webmaster