Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for path_mapping (0.18 sec)

  1. src/main/resources/fess_indices/fess_config.path_mapping/path_mapping.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 531 bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess_config.path_mapping.json

    Shinsuke Sugaya <******@****.***> 1638450896 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 173 bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_path_mapping.json

    {
      "fess_config.path_mapping" : {
        "aliases" : { },
        "mappings" : {
          "path_mapping" : {
            "properties" : {
              "createdBy" : {
                "type" : "keyword"
              },
              "createdTime" : {
                "type" : "long"
              },
              "processType" : {
                "type" : "keyword"
              },
              "regex" : {
                "type" : "keyword"
              },
              "replacement" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/esfluteMap.dfprop

            }
            ; fess_config.label_type = map:{
                ; package = config
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_config.xml
            }
            ; fess_config.path_mapping = map:{
                ; package = config
                ; esclientDiFile = esclient.xml
                ; esfluteDiFile = esflute_config.xml
            }
            ; fess_config.related_content = map:{
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsPathMappingCB.java

        @Override
        public PathMappingDbm asDBMeta() {
            return PathMappingDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        @Override
        public boolean hasSpecifiedColumn() {
            return _specification != null;
        }
    
        @Override
        public ConditionQuery localCQ() {
            return doGetConditionQuery();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/BsPathMapping.java

        @Override
        public PathMappingDbm asDBMeta() {
            return PathMappingDbm.getInstance();
        }
    
        @Override
        public String asTableDbName() {
            return "path_mapping";
        }
    
        // ===================================================================================
        //                                                                              Source
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/exentity/PathMapping.java

    import org.codelibs.fess.es.config.bsentity.BsPathMapping;
    import org.codelibs.fess.helper.PathMappingHelper;
    
    /**
     * @author FreeGen
     */
    public class PathMapping extends BsPathMapping {
    
        private static final Logger logger = LogManager.getLogger(PathMapping.class);
    
        private static final long serialVersionUID = 1L;
    
        protected Pattern userAgentPattern;
    
        protected Pattern regexPattern;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

        public void test_replaceUrl() {
            final String sessionId = "test";
            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
            final PathMapping pathMapping = new PathMapping();
            pathMapping.setRegex("file:///home/");
            pathMapping.setReplacement("http://localhost/");
            pathMappingList.add(pathMapping);
    
            pathMappingHelper.setPathMappingList(sessionId, pathMappingList);
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/PathMappingService.java

            }).createPageNumberList());
    
            return pathMappingList;
        }
    
        public OptionalEntity<PathMapping> getPathMapping(final String id) {
            return pathMappingBhv.selectByPK(id);
        }
    
        public void store(final PathMapping pathMapping) {
    
            pathMappingBhv.insertOrUpdate(pathMapping, op -> {
                op.setRefreshPolicy(Constants.TRUE);
            });
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

            String result = text;
            for (final PathMapping pathMapping : cachedPathMappingList) {
                if (matchUserAgent(pathMapping)) {
                    String replacement = pathMapping.getReplacement();
                    if (replacement == null) {
                        replacement = StringUtil.EMPTY;
                    }
                    result = result.replaceAll("(\"[^\"]*)" + pathMapping.getRegex() + "([^\"]*\")", "$1" + replacement + "$2");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top