Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for path_mapping (0.04 sec)

  1. 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() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. 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)),
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.label_type/label_type"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.path_mapping/path_mapping"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.related_content/related_content"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Nov 06 13:45:02 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
    
            final PathMapping pathMapping1 = new PathMapping();
            pathMapping1.setRegex("file:///home/");
            pathMapping1.setReplacement("http://localhost/");
            pathMappingList.add(pathMapping1);
    
            final PathMapping pathMapping2 = new PathMapping();
            pathMapping2.setRegex("http://localhost/");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  5. 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) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 16K bytes
    - Viewed (0)
  6. 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");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  7. 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;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    						</a></li></c:if>
    						
    					<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>">
    							<em class='fa fa-genderless nav-icon'>
    							<p><la:message key="labels.menu_path_mapping" /></p>
    						</a></li></c:if>
    						
    					<c:if test="${fe:permission('admin-webauth-view')}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  9. 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()));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top