Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cdxml (5.9 sec)

  1. cmd/crossdomain-xml-handler.go

    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		cxml := crossDomainXML
    		if globalServerCtxt.CrossDomainXML != "" {
    			cxml = globalServerCtxt.CrossDomainXML
    		}
    		// Look for 'crossdomain.xml' in the incoming request.
    		if r.URL.Path == crossDomainXMLEntity {
    			// Write the standard cross domain policy xml.
    			w.Write([]byte(cxml))
    			// Request completed, no need to serve to other handlers.
    			return
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 18 06:42:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. cmd/common-main.go

    	ctxt.ConsoleAddr = ctx.GlobalString("console-address")
    	if ctxt.ConsoleAddr == "" {
    		ctxt.ConsoleAddr = ctx.String("console-address")
    	}
    
    	if cxml := ctx.String("crossdomain-xml"); cxml != "" {
    		buf, err := os.ReadFile(cxml)
    		if err != nil {
    			return err
    		}
    		ctxt.CrossDomainXML = string(buf)
    	}
    
    	// Check "no-compat" flag from command line argument.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  3. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <magic priority="60">
          <match value="0xd9d9f7" type="string" offset="0" />
        </magic>
        <glob pattern="*.cbor"/>
      </mime-type>
    
      <mime-type type="application/ccxml+xml">
        <glob pattern="*.ccxml"/>
      </mime-type>
      <mime-type type="application/cea-2018+xml"/>
      <mime-type type="application/cellml+xml"/>
      <mime-type type="application/cnrp+xml"/>
      <mime-type type="application/commonground"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/atomsvc+xml",
    				"application/auth-policy+xml",
    				"application/batch-smtp",
    				"application/beep+xml",
    				"application/bizagi-modeler",
    				"application/cals-1840",
    				"application/ccxml+xml",
    				"application/cea-2018+xml",
    				"application/cellml+xml",
    				"application/cnrp+xml",
    				"application/commonground",
    				"application/conference-info+xml",
    				"application/cpl+xml",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
Back to top