- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for path_mapping (0.17 sec)
-
src/main/resources/fess_indices/fess_config.path_mapping/path_mapping.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 531 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.path_mapping.json
Shinsuke Sugaya <******@****.***> 1638450896 +0900
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 173 bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 1.1K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 6.3K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.1K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.6K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.3K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.7K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.6K bytes - Viewed (0)