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

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.92    ! frystyk     6: **     @(#) $Id: HTInit.c,v 2.91 1998/12/16 10:59:08 kahan Exp $
2.9       duns        7: **
2.20      frystyk     8: **     Define a basic set of suffixes and presentations
2.1       timbl       9: */
                     10: 
2.22      frystyk    11: /* Library include files */
2.89      frystyk    12: #include "wwwsys.h"
2.59      frystyk    13: #include "WWWUtil.h"
                     14: #include "WWWCore.h"
2.83      frystyk    15: 
                     16: #ifdef HT_MUX
2.75      frystyk    17: #include "WWWMux.h"
2.83      frystyk    18: #endif
2.75      frystyk    19: 
2.22      frystyk    20: #include "HTInit.h"                                     /* Implemented here */
2.1       timbl      21: 
2.65      frystyk    22: #ifndef W3C_ICONS
2.87      frystyk    23: #define W3C_ICONS      "w3c-icons"
2.65      frystyk    24: #endif
                     25: 
2.87      frystyk    26: #define ICON_LOCATION  "/icons/"
2.65      frystyk    27: 
2.29      frystyk    28: /* ------------------------------------------------------------------------- */
                     29: 
2.23      frystyk    30: /*     BINDINGS BETWEEN A SOURCE MEDIA TYPE AND A DEST MEDIA TYPE (CONVERSION)
                     31: **     ----------------------------------------------------------------------
2.47      frystyk    32: **     Not done automaticly - may be done by application!
2.23      frystyk    33: */
2.38      frystyk    34: PUBLIC void HTConverterInit (HTList * c)
2.23      frystyk    35: {
2.31      frystyk    36:     /*
2.49      frystyk    37:     ** You can get debug information out through the debug stream if you set
                     38:     ** the debug format appropriately
                     39:     */
                     40:     HTConversion_add(c,"*/*",                  "www/debug",    HTBlackHoleConverter,   1.0, 0.0, 0.0);
                     41: 
                     42:     /*
2.31      frystyk    43:     ** These are converters that converts to something other than www/present,
                     44:     ** that is not directly outputting someting to the user on the screen
                     45:     */
2.43      frystyk    46:     HTConversion_add(c,"message/rfc822",       "*/*",          HTMIMEConvert,  1.0, 0.0, 0.0);
2.55      frystyk    47:     HTConversion_add(c,"message/x-rfc822-foot",        "*/*",          HTMIMEFooter,   1.0, 0.0, 0.0);
2.72      frystyk    48:     HTConversion_add(c,"message/x-rfc822-head",        "*/*",          HTMIMEHeader,   1.0, 0.0, 0.0);
2.80      frystyk    49:     HTConversion_add(c,"message/x-rfc822-cont",        "*/*",          HTMIMEContinue, 1.0, 0.0, 0.0);
                     50:     HTConversion_add(c,"message/x-rfc822-partial","*/*",       HTMIMEPartial,  1.0, 0.0, 0.0);
2.43      frystyk    51:     HTConversion_add(c,"multipart/*",          "*/*",          HTBoundary,     1.0, 0.0, 0.0);
2.38      frystyk    52:     HTConversion_add(c,"text/plain",           "text/html",    HTPlainToHTML,  1.0, 0.0, 0.0);
2.39      frystyk    53: 
                     54:     /*
                     55:     ** The following conversions are converting ASCII output from various
                     56:     ** protocols to HTML objects.
                     57:     */
2.51      frystyk    58:     HTConversion_add(c,"text/x-http",          "*/*",          HTTPStatus_new, 1.0, 0.0, 0.0);
2.68      frystyk    59: 
2.42      frystyk    60: #if 0
                     61:     HTConversion_add(c,"text/x-gopher",                "www/present",  HTGopherMenu,   1.0, 0.0, 0.0);
                     62:     HTConversion_add(c,"text/x-cso",           "www/present",  HTGopherCSO,    1.0, 0.0, 0.0);
2.68      frystyk    63:     HTConversion_add(c,"text/x-wais-source",   "*/*",          HTWSRCConvert,  1.0, 0.0, 0.0);
                     64: #endif
                     65: 
2.48      frystyk    66:     HTConversion_add(c,"text/x-nntp-list",     "*/*",          HTNewsList,     1.0, 0.0, 0.0);
                     67:     HTConversion_add(c,"text/x-nntp-over",     "*/*",          HTNewsGroup,    1.0, 0.0, 0.0);
2.92    ! frystyk    68: 
        !            69:     /*
        !            70:     ** If we have the XML expat parser linked in
        !            71:     */
        !            72: #ifdef HT_EXPAT
        !            73:     HTConversion_add(c, "text/xml",            "*/*",          HTXML_new,      1.0, 0.0, 0.0);
        !            74:     HTConversion_add(c, "application/xml",     "*/*",          HTXML_new,      1.0, 0.0, 0.0);
        !            75: #endif
2.43      frystyk    76: 
2.31      frystyk    77:     /*
2.45      frystyk    78:     ** We also register a special content type guess stream that can figure out
                     79:     ** the content type by reading the first bytes of the stream
                     80:     */
                     81:     HTConversion_add(c,"www/unknown",          "*/*",          HTGuess_new,    1.0, 0.0, 0.0);
2.46      frystyk    82: 
                     83:     /*
2.72      frystyk    84:     ** Register a persistent cache stream which can save an object to local
                     85:     ** file
                     86:     */
                     87:     HTConversion_add(c,"www/cache",            "*/*",          HTCacheWriter,  1.0, 0.0, 0.0);
2.73      frystyk    88:     HTConversion_add(c,"www/cache-append",     "*/*",          HTCacheAppend,  1.0, 0.0, 0.0);
2.72      frystyk    89: 
                     90:     /*
2.46      frystyk    91:     ** Handling Rule files is handled just like any other stream
                     92:     ** This converter reads a rule file and generates the rules
                     93:     */
2.48      frystyk    94:     HTConversion_add(c,"application/x-www-rules","*/*",                HTRules,        1.0, 0.0, 0.0);
2.46      frystyk    95: 
2.45      frystyk    96:     /*
2.34      frystyk    97:     ** This dumps all other formats to local disk without any further
2.31      frystyk    98:     ** action taken
                     99:     */
2.85      frystyk   100:     HTConversion_add(c,"*/*",                  "www/present",  HTSaveConverter, 0.3, 0.0, 0.0);
2.23      frystyk   101: }
                    102: 
                    103: /*     BINDINGS BETWEEN MEDIA TYPES AND EXTERNAL VIEWERS/PRESENTERS
                    104: **     ------------------------------------------------------------
2.47      frystyk   105: **     Not done automaticly - may be done by application!
2.23      frystyk   106: **     The data objects are stored in temporary files before the external
                    107: **     program is called
                    108: */
2.38      frystyk   109: PUBLIC void HTPresenterInit (HTList * c)
2.1       timbl     110: {
                    111: #ifdef NeXT
2.38      frystyk   112:     HTPresentation_add(c,"application/postscript", "open %s",  NULL, 1.0, 2.0, 0.0);
2.10      luotonen  113:     /* The following needs the GIF previewer -- you might not have it. */
2.19      howcome   114: 
2.38      frystyk   115:     HTPresentation_add(c,"image/gif",          "open %s",      NULL, 0.3, 2.0, 0.0);
2.44      frystyk   116:     HTPresentation_add(c,"image/tiff",         "open %s",      NULL, 1.0, 2.0, 0.0);
2.41      frystyk   117:     HTPresentation_add(c,"audio/basic",        "open %s",      NULL, 1.0, 2.0, 0.0);
                    118:     HTPresentation_add(c,"*/*",                "open %s",      NULL, 0.05, 0.0, 0.0); 
2.1       timbl     119: #else
2.10      luotonen  120:     if (getenv("DISPLAY")) {   /* Must have X11 */
2.38      frystyk   121:        HTPresentation_add(c,"application/postscript", "ghostview %s",  NULL, 1.0, 3.0, 0.0);
2.41      frystyk   122:        HTPresentation_add(c,"image/gif",       "xv %s",        NULL, 1.0, 3.0, 0.0);
2.44      frystyk   123:        HTPresentation_add(c,"image/tiff",      "xv %s",        NULL, 1.0, 3.0, 0.0);
2.38      frystyk   124:        HTPresentation_add(c,"image/jpeg",      "xv %s",        NULL, 1.0, 3.0, 0.0);
2.44      frystyk   125:        HTPresentation_add(c,"image/png",       "xv %s",        NULL, 1.0, 3.0, 0.0);
2.10      luotonen  126:     }
2.1       timbl     127: #endif
2.15      frystyk   128: }
                    129: 
                    130: 
2.23      frystyk   131: /*     PRESENTERS AND CONVERTERS AT THE SAME TIME
                    132: **     ------------------------------------------
2.47      frystyk   133: **     Not done automaticly - may be done by application!
2.23      frystyk   134: **     This function is only defined in order to preserve backward
                    135: **     compatibility.
                    136: */
2.38      frystyk   137: PUBLIC void HTFormatInit (HTList * c)
2.15      frystyk   138: {
2.23      frystyk   139:     HTConverterInit(c);
                    140:     HTPresenterInit(c);
                    141: 
2.1       timbl     142: }
                    143: 
2.78      frystyk   144: /*     BINDINGS BETWEEN A TRANSFER ENCODING AND CODERS / DECODERS
                    145: **     ----------------------------------------------------------
2.55      frystyk   146: **     Not done automaticly - may be done by application!
                    147: */
2.78      frystyk   148: PUBLIC void HTTransferEncoderInit (HTList * c)
2.55      frystyk   149: {
2.90      frystyk   150: #ifdef HT_ZLIB
                    151:     HTCoding_add(c, "deflate", NULL, HTZLib_inflate, 1.0);
                    152: #endif
2.63      frystyk   153:     HTCoding_add(c, "chunked", HTChunkedEncoder, HTChunkedDecoder, 1.0);
2.55      frystyk   154: }
2.47      frystyk   155: 
2.78      frystyk   156: /*     BINDINGS BETWEEN A CONTENT ENCODING AND CODERS / DECODERS
                    157: **     ---------------------------------------------------------
                    158: **     Not done automaticly - may be done by application!
                    159: */
                    160: PUBLIC void HTContentEncoderInit (HTList * c)
                    161: {
2.79      frystyk   162: #ifdef HT_ZLIB
2.78      frystyk   163:     HTCoding_add(c, "deflate", NULL, HTZLib_inflate, 1.0);
2.79      frystyk   164: #endif /* HT_ZLIB */
2.78      frystyk   165: }
                    166: 
2.64      frystyk   167: /*     REGISTER BEFORE FILTERS
                    168: **     -----------------------
                    169: **     The BEFORE filters handle proxies, caches, rule files etc.
                    170: **     The filters are called in the order by which the are registered
                    171: **     Not done automaticly - may be done by application!
                    172: */
                    173: PUBLIC void HTBeforeInit (void)
                    174: {
2.86      frystyk   175: #if 0
                    176:     /* Often handled better by the application */
2.74      frystyk   177:     HTNet_addBefore(HTMemoryCacheFilter,       NULL,           NULL, HT_FILTER_MIDDLE);
2.86      frystyk   178: #endif
2.74      frystyk   179:     HTNet_addBefore(HTCacheFilter,             "http://*",     NULL, HT_FILTER_MIDDLE);
                    180:     HTNet_addBefore(HTCredentialsFilter,       "http://*",     NULL, HT_FILTER_LATE);
                    181:     HTNet_addBefore(HTPEP_beforeFilter,        "http://*",     NULL, HT_FILTER_LATE);
                    182:     HTNet_addBefore(HTRuleFilter,              NULL,           NULL, HT_FILTER_LATE);
                    183:     HTNet_addBefore(HTProxyFilter,             NULL,           NULL, HT_FILTER_LATE);
2.64      frystyk   184: }
                    185: 
                    186: /*     REGISTER AFTER FILTERS
                    187: **     ----------------------
                    188: **     The AFTER filters handle error messages, logging, redirection,
                    189: **     authentication etc.
                    190: **     The filters are called in the order by which the are registered
                    191: **     Not done automaticly - may be done by application!
                    192: */
                    193: PUBLIC void HTAfterInit (void)
                    194: {
2.74      frystyk   195:     HTNet_addAfter(HTAuthFilter,       "http://*",     NULL, HT_NO_ACCESS,     HT_FILTER_MIDDLE);
2.81      frystyk   196:     HTNet_addAfter(HTAuthFilter,       "http://*",     NULL, HT_REAUTH,        HT_FILTER_MIDDLE);
2.74      frystyk   197:     HTNet_addAfter(HTPEP_afterFilter,  "http://*",     NULL, HT_ALL,           HT_FILTER_MIDDLE);
2.81      frystyk   198:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_PERM_REDIRECT, HT_FILTER_MIDDLE);
                    199:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_FOUND,         HT_FILTER_MIDDLE);
                    200:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_SEE_OTHER,     HT_FILTER_MIDDLE);
2.74      frystyk   201:     HTNet_addAfter(HTRedirectFilter,   "http://*",     NULL, HT_TEMP_REDIRECT, HT_FILTER_MIDDLE);
                    202:     HTNet_addAfter(HTUseProxyFilter,   "http://*",     NULL, HT_USE_PROXY,     HT_FILTER_MIDDLE);
                    203:     HTNet_addAfter(HTCacheUpdateFilter, "http://*",    NULL, HT_NOT_MODIFIED,  HT_FILTER_MIDDLE);
                    204:     HTNet_addAfter(HTInfoFilter,       NULL,           NULL, HT_ALL,           HT_FILTER_LATE);
2.64      frystyk   205: }
                    206: 
                    207: /*     REGISTER DEFAULT AUTHENTICATION SCHEMES
                    208: **     ---------------------------------------
                    209: **     This function registers the BASIC access authentication
                    210: */
                    211: PUBLIC void HTAAInit (void)
                    212: {
                    213:     HTAA_newModule ("basic", HTBasic_generate, HTBasic_parse, HTBasic_delete);
2.91      kahan     214:     HTAA_newModule ("digest", HTDigest_generate, HTDigest_parse, 
                    215:                     HTDigest_delete);
2.64      frystyk   216: }
                    217: 
                    218: /*     REGISTER BEFORE AND AFTER FILTERS
                    219: **     ---------------------------------
                    220: **     We register a commonly used set of BEFORE and AFTER filters.
2.47      frystyk   221: **     Not done automaticly - may be done by application!
                    222: */
                    223: PUBLIC void HTNetInit (void)
                    224: {
2.64      frystyk   225:     HTBeforeInit();
                    226:     HTAfterInit();
2.47      frystyk   227: }
                    228: 
                    229: 
                    230: /*     REGISTER CALLBACKS FOR THE ALERT MANAGER
                    231: **     ----------------------------------------
                    232: **     We register a set of alert messages
                    233: **     Not done automaticly - may be done by application!
                    234: */
                    235: PUBLIC void HTAlertInit (void)
                    236: {
                    237:     HTAlert_add(HTProgress, HT_A_PROGRESS);
                    238:     HTAlert_add(HTError_print, HT_A_MESSAGE);
                    239:     HTAlert_add(HTConfirm, HT_A_CONFIRM);
                    240:     HTAlert_add(HTPrompt, HT_A_PROMPT);
                    241:     HTAlert_add(HTPromptPassword, HT_A_SECRET);
                    242:     HTAlert_add(HTPromptUsernameAndPassword, HT_A_USER_PW);
                    243: }
                    244: 
2.53      frystyk   245: /*     REGISTER ALL KNOWN TRANSPORTS IN THE LIBRARY
                    246: **     --------------------------------------------
                    247: **     Not done automaticly - may be done by application!
                    248: */
                    249: PUBLIC void HTTransportInit (void)
                    250: {
2.69      frystyk   251:     HTTransport_add("tcp", HT_TP_SINGLE, HTReader_new, HTWriter_new);
                    252:     HTTransport_add("buffered_tcp", HT_TP_SINGLE, HTReader_new, HTBufferWriter_new);
2.75      frystyk   253: #ifdef HT_MUX
2.76      frystyk   254:     HTTransport_add("mux", HT_TP_INTERLEAVE, HTReader_new, HTBufferWriter_new);
2.75      frystyk   255: #endif /* HT_MUX */
2.54      frystyk   256: #ifndef NO_UNIX_IO
2.69      frystyk   257:     HTTransport_add("local", HT_TP_SINGLE, HTReader_new, HTWriter_new);
2.54      frystyk   258: #else
2.69      frystyk   259:     HTTransport_add("local", HT_TP_SINGLE, HTANSIReader_new, HTANSIWriter_new);
2.54      frystyk   260: #endif
2.53      frystyk   261: }
2.47      frystyk   262: 
2.24      frystyk   263: /*     REGISTER ALL KNOWN PROTOCOLS IN THE LIBRARY
                    264: **     -------------------------------------------
2.47      frystyk   265: **     Not done automaticly - may be done by application!
2.24      frystyk   266: */
2.63      frystyk   267: PUBLIC void HTProtocolInit (void)
2.24      frystyk   268: {
                    269: #ifndef DECNET
2.75      frystyk   270:     HTProtocol_add("ftp",      "tcp",  FTP_PORT,       NO,     HTLoadFTP,      NULL);
                    271:     HTProtocol_add("nntp",     "tcp",  NEWS_PORT,      NO,     HTLoadNews,     NULL);
                    272:     HTProtocol_add("news",     "tcp",  NEWS_PORT,      NO,     HTLoadNews,     NULL);
                    273:     HTProtocol_add("gopher",   "tcp",  GOPHER_PORT,    NO,     HTLoadGopher,   NULL);
2.24      frystyk   274: #ifdef HT_DIRECT_WAIS
2.88      frystyk   275:     HTProtocol_add("wais",     "tcp",  WAIS_PORT,      YES,    HTLoadWAIS,     NULL);
2.24      frystyk   276: #endif
                    277: #endif /* DECNET */
2.75      frystyk   278: #ifdef HT_MUX
                    279:     HTProtocol_add("http",     "mux",  HTTP_PORT,      NO,     HTLoadHTTP,     NULL);
                    280: #else
                    281:     HTProtocol_add("http",     "buffered_tcp", HTTP_PORT,      NO,     HTLoadHTTP,     NULL);
                    282: #endif /* !HT_MUX */
2.84      frystyk   283: #ifndef NO_UNIX_IO
                    284:     HTProtocol_add("file",     "local",        0,      NO,     HTLoadFile,     NULL);
                    285:     HTProtocol_add("cache",    "local",        0,      NO,     HTLoadCache,    NULL);
                    286: #else
                    287:     HTProtocol_add("file",     "local",        0,      YES,    HTLoadFile,     NULL);
                    288:     HTProtocol_add("cache",    "local",        0,      YES,    HTLoadCache,    NULL);
                    289: #endif
2.75      frystyk   290:     HTProtocol_add("telnet",   "",             0,      YES,    HTLoadTelnet,   NULL);
                    291:     HTProtocol_add("tn3270",   "",             0,      YES,    HTLoadTelnet,   NULL);
                    292:     HTProtocol_add("rlogin",   "",             0,      YES,    HTLoadTelnet,   NULL);
2.24      frystyk   293: }
2.1       timbl     294: 
2.65      frystyk   295: /*     REGISTER ALL KNOWN PROTOCOLS IN THE LIBRARY PREEMPTIVELY
                    296: **     --------------------------------------------------------
                    297: **     Not done automaticly - may be done by application!
                    298: */
                    299: PUBLIC void HTProtocolPreemptiveInit (void)
                    300: {
                    301: #ifndef DECNET
2.75      frystyk   302:     HTProtocol_add("ftp", "tcp", FTP_PORT, YES, HTLoadFTP, NULL);
                    303:     HTProtocol_add("nntp", "tcp", NEWS_PORT, YES, HTLoadNews, NULL);
                    304:     HTProtocol_add("news", "tcp", NEWS_PORT, YES, HTLoadNews, NULL);
                    305:     HTProtocol_add("gopher", "tcp", GOPHER_PORT, YES, HTLoadGopher, NULL);
2.65      frystyk   306: #ifdef HT_DIRECT_WAIS
2.75      frystyk   307:     HTProtocol_add("wais", "", WAIS_PORT, YES, HTLoadWAIS, NULL);
2.65      frystyk   308: #endif
                    309: #endif /* DECNET */
                    310: 
2.75      frystyk   311:     HTProtocol_add("http", "buffered_tcp", HTTP_PORT, YES, HTLoadHTTP, NULL);
                    312:     HTProtocol_add("file", "local", 0, YES, HTLoadFile, NULL);
                    313:     HTProtocol_add("telnet", "", 0, YES, HTLoadTelnet, NULL);
                    314:     HTProtocol_add("tn3270", "", 0, YES, HTLoadTelnet, NULL);
                    315:     HTProtocol_add("rlogin", "", 0, YES, HTLoadTelnet, NULL);
                    316:     HTProtocol_add("cache","local",0,YES,HTLoadCache,  NULL);
2.61      frystyk   317: }
                    318: 
2.48      frystyk   319: /*     BINDINGS BETWEEN ICONS AND MEDIA TYPES
                    320: **     --------------------------------------
                    321: **     Not done automaticly - may be done by application!
                    322: **     For directory listings etc. you can bind a set of icons to a set of
                    323: **     media types and special icons for directories and other objects that
                    324: **     do not have a media type.
                    325: */
2.61      frystyk   326: PUBLIC void HTIconInit (const char * url_prefix)
2.58      eric      327: {
2.65      frystyk   328:     const char * prefix = url_prefix ? url_prefix : ICON_LOCATION;
2.58      eric      329: 
2.61      frystyk   330:     HTIcon_addBlank("blank.xbm",       prefix, NULL);
                    331:     HTIcon_addDir("directory.xbm",     prefix, "DIR");
                    332:     HTIcon_addParent("back.xbm",       prefix, "UP");
                    333:     HTIcon_addUnknown("unknown.xbm",   prefix, NULL);
                    334: 
                    335:     HTIcon_add("unknown.xbm",  prefix, NULL,   "*/*");
                    336:     HTIcon_add("binary.xbm",   prefix, "BIN",  "binary");
                    337:     HTIcon_add("unknown.xbm",  prefix, NULL,   "www/unknown");
                    338:     HTIcon_add("text.xbm",     prefix, "TXT",  "text/*");
                    339:     HTIcon_add("image.xbm",    prefix, "IMG",  "image/*");
                    340:     HTIcon_add("movie.xbm",    prefix, "MOV",  "video/*");
                    341:     HTIcon_add("sound.xbm",    prefix, "AU",   "audio/*");
                    342:     HTIcon_add("tar.xbm",      prefix, "TAR",  "multipart/x-tar");
                    343:     HTIcon_add("tar.xbm",      prefix, "TAR",  "multipart/x-gtar");
                    344:     HTIcon_add("compressed.xbm",prefix,        "CMP",  "x-compress");
                    345:     HTIcon_add("compressed.xbm",prefix,        "GZP",  "x-gzip");
                    346:     HTIcon_add("index.xbm",    prefix, "IDX",  "application/x-gopher-index");
                    347:     HTIcon_add("index2.xbm",   prefix, "CSO",  "application/x-gopher-cso");
                    348:     HTIcon_add("telnet.xbm",   prefix, "TEL",  "application/x-gopher-telnet");
                    349:     HTIcon_add("unknown.xbm",  prefix, "DUP",  "application/x-gopher-duplicate");
                    350:     HTIcon_add("unknown.xbm",  prefix, "TN",   "application/x-gopher-tn3270");
2.65      frystyk   351: 
                    352:     /* Add global  mapping to where to find the internal icons */
2.87      frystyk   353:     {
                    354:        char * curdir = HTGetCurrentDirectoryURL();
                    355:        char * virtual = HTParse(ICON_LOCATION, curdir,
                    356:                                 PARSE_ACCESS|PARSE_HOST|PARSE_PATH|PARSE_PUNCTUATION);
                    357:        char * physical = NULL;
                    358:        StrAllocCat(virtual, "*");
                    359: 
                    360:        {
                    361:            char * str = NULL;
                    362:            if ((str = (char *) HT_MALLOC(strlen(W3C_ICONS) + 4)) == NULL)
                    363:                HT_OUTOFMEM("HTIconInit");
                    364:            strcpy(str, W3C_ICONS);
                    365:            if (*(str + strlen(str) - 1) != '/') strcat(str, "/");
                    366:            strcat(str, "*");
                    367:            physical = HTParse(str, curdir,
                    368:                               PARSE_ACCESS|PARSE_HOST|PARSE_PATH|PARSE_PUNCTUATION);
                    369:            HT_FREE(str);
                    370:        }
                    371:        HTRule_addGlobal(HT_Pass, virtual, physical);
                    372:        HT_FREE(virtual);
                    373:        HT_FREE(physical);
                    374:        HT_FREE(curdir);
                    375:     }
2.58      eric      376: }
                    377: 
2.57      eric      378: /*     REGISTER ALL HTTP/1.1 MIME HEADERS
                    379: **     --------------------------------------------
                    380: **     Not done automaticly - may be done by application!
                    381: */
2.64      frystyk   382: PUBLIC void HTMIMEInit (void)
2.57      eric      383: {
                    384:     struct {
                    385:         char * string;
                    386:        HTParserCallback * pHandler;
                    387:     } fixedHandlers[] = {
2.61      frystyk   388:        {"accept", &HTMIME_accept}, 
                    389:        {"accept-charset", &HTMIME_acceptCharset}, 
                    390:        {"accept-encoding", &HTMIME_acceptEncoding}, 
                    391:        {"accept-language", &HTMIME_acceptLanguage}, 
                    392:        {"accept-ranges", &HTMIME_acceptRanges}, 
                    393:        {"authorization", NULL},
2.72      frystyk   394:        {"cache-control", &HTMIME_cacheControl},
2.61      frystyk   395:        {"connection", &HTMIME_connection}, 
                    396:        {"content-encoding", &HTMIME_contentEncoding}, 
                    397:        {"content-length", &HTMIME_contentLength}, 
                    398:        {"content-range", &HTMIME_contentRange},
                    399:        {"content-transfer-encoding", &HTMIME_contentTransferEncoding}, 
                    400:        {"content-type", &HTMIME_contentType},
                    401:        {"digest-MessageDigest", &HTMIME_messageDigest}, 
2.77      eric      402:        {"keep-alive", &HTMIME_keepAlive}, 
2.61      frystyk   403:        {"link", &HTMIME_link},
                    404:        {"location", &HTMIME_location},
                    405:        {"max-forwards", &HTMIME_maxForwards}, 
2.57      eric      406:        {"mime-version", NULL}, 
2.61      frystyk   407:        {"pragma", &HTMIME_pragma},
2.73      frystyk   408:         {"protocol", &HTMIME_protocol},
                    409:         {"protocol-info", &HTMIME_protocolInfo},
                    410:         {"protocol-request", &HTMIME_protocolRequest},
2.66      frystyk   411:        {"proxy-authenticate", &HTMIME_authenticate},
2.61      frystyk   412:        {"proxy-authorization", &HTMIME_proxyAuthorization},
                    413:        {"public", &HTMIME_public},
                    414:        {"range", &HTMIME_range},
                    415:        {"referer", &HTMIME_referer},
                    416:        {"retry-after", &HTMIME_retryAfter}, 
2.62      frystyk   417:        {"server", &HTMIME_server}, 
2.81      frystyk   418:        {"trailer", &HTMIME_trailer},
2.85      frystyk   419:        {"transfer-encoding", &HTMIME_transferEncoding}, 
2.61      frystyk   420:        {"upgrade", &HTMIME_upgrade},
                    421:        {"user-agent", &HTMIME_userAgent},
                    422:        {"vary", &HTMIME_vary},
                    423:        {"via", &HTMIME_via},
                    424:        {"warning", &HTMIME_warning},
                    425:        {"www-authenticate", &HTMIME_authenticate}, 
2.91      kahan     426:         {"authentication-info", &HTMIME_authenticationInfo},
                    427:         {"proxy-authentication-info", &HTMIME_proxyAuthenticationInfo}
2.57      eric      428:     };
                    429:     int i;
                    430: 
                    431:     for (i = 0; i < sizeof(fixedHandlers)/sizeof(fixedHandlers[0]); i++)
                    432:         HTHeader_addParser(fixedHandlers[i].string, NO, 
                    433:                           fixedHandlers[i].pHandler);
                    434: }
                    435: 

Webmaster