- Sort Score
- Num 10 results
- Language All
Results 1 - 8 of 8 for PathMapping (0.04 seconds)
-
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);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.java
return createOptionalEntity(doSelectByPK(id, tp), id); } @Override protected Class<? extends PathMapping> typeOfSelectedEntity() { return PathMapping.class; } @Override protected Class<PathMapping> typeOfHandlingEntity() { return PathMapping.class; } @Override protected Class<PathMappingCB> typeOfHandlingConditionBean() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 9.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/PathMappingDbm.java
setupEpg(_epgMap, et -> ((PathMapping) et).getRegex(), (et, vl) -> ((PathMapping) et).setRegex(DfTypeUtil.toString(vl)), "regex"); setupEpg(_epgMap, et -> ((PathMapping) et).getReplacement(), (et, vl) -> ((PathMapping) et).setReplacement(DfTypeUtil.toString(vl)), "replacement"); setupEpg(_epgMap, et -> ((PathMapping) et).getSortOrder(), (et, vl) -> ((PathMapping) et).setSortOrder(DfTypeUtil.toInteger(vl)),
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 07:01:25 GMT 2025 - 11.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
} return OptionalEntity.empty(); } /** * Creates a PathMapping entity from the provided form data. * * @param form the create form containing path mapping data * @return optional PathMapping entity populated with form data */ public static OptionalEntity<PathMapping> getPathMapping(final CreateForm form) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 15.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
assertUrlLink("smb:/home/taro/%E3%81%82.txt", // "file://home/taro/%E3%81%82.txt"); PathMapping pathMapping = new PathMapping(); pathMapping.setRegex("ftp:"); pathMapping.setReplacement("file:"); ComponentUtil.getPathMappingHelper().cachedPathMappingList.add(pathMapping); // ftp->file assertUrlLink("ftp:/home/taro/test.txt", // "file://home/taro/test.txt");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 27.8K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp
<c:if test="${fe:permission('admin-pathmap-view')}"> <li class="nav-item"> <a href="${fe:url('/admin/pathmap/')}" class="nav-link <c:if test="${param.menuType=='pathMapping'}">active</c:if>" <c:if test="${param.menuType=='pathMapping'}">aria-current="page"</c:if>> <i class='fa fa-sitemap nav-icon' aria-hidden="true"></i> <p><la:message key="labels.menu_path_mapping" /></p> </a></li></c:if>Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 21K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
parseProjectProperties(ResourceUtil.getProjectPropertiesFile()); updateConfigListenerMap.put("Label", () -> Integer.toString(ComponentUtil.getLabelTypeHelper().load())); updateConfigListenerMap.put("PathMapping", () -> Integer.toString(ComponentUtil.getPathMappingHelper().load())); updateConfigListenerMap.put("RelatedContent", () -> Integer.toString(ComponentUtil.getRelatedContentHelper().load()));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
}; crawler.dataIndexHelper = dataIndexHelper; pathMappingService = new PathMappingService() { @Override public List<org.codelibs.fess.opensearch.config.exentity.PathMapping> getPathMappingList(java.util.Collection<String> ptList) { return new ArrayList<>(); } }; crawler.pathMappingService = pathMappingService;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0)