- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for gsaConfigParser (0.11 sec)
-
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
import org.xml.sax.Attributes; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import org.xml.sax.helpers.DefaultHandler; public class GsaConfigParser extends DefaultHandler { private static final Logger logger = LogManager.getLogger(GsaConfigParser.class); public static final String REGEXP = "regexp:"; public static final String REGEXP_CASE = "regexpCase:";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 14.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java
public void setUp() throws Exception { super.setUp(); ComponentUtil.register(new SystemHelper(), "systemHelper"); } public void test_parse() throws IOException { GsaConfigParser parser = new GsaConfigParser(); try (InputStream is = ResourceUtil.getResourceAsStream("data/gsaconfig.xml")) { parser.parse(new InputSource(is)); } parser.getWebConfig().ifPresent(c -> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} if (p.startsWith(GsaConfigParser.CONTAINS)) { return ".*" + Pattern.quote(p.substring(GsaConfigParser.CONTAINS.length())) + ".*"; } if (p.startsWith(GsaConfigParser.REGEXP)) { return p.substring(GsaConfigParser.REGEXP.length()); } if (p.startsWith(GsaConfigParser.REGEXP_CASE)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 17 12:10:08 UTC 2024 - 27.2K bytes - Viewed (0) -
src/main/resources/app.xml
<property name="encoding">"UTF-8"</property> </component> <component name="suggestHelper" class="org.codelibs.fess.helper.SuggestHelper"> </component> <component name="gsaConfigParser" class="org.codelibs.fess.util.GsaConfigParser" instance="prototype"> </component>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Nov 19 02:22:47 UTC 2023 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
} finally { deleteTempFile(tempFile); } } private void importGsaXml(final String fileName, final File tempFile) { final GsaConfigParser configParser = ComponentUtil.getComponent(GsaConfigParser.class); try (final InputStream in = new FileInputStream(tempFile)) { configParser.parse(new InputSource(in)); } catch (final IOException e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 28.5K bytes - Viewed (0)