- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for GSA (0.02 sec)
-
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
import org.xml.sax.helpers.DefaultHandler; /** * Parser for Google Search Appliance (GSA) configuration files. * This SAX-based parser reads GSA XML configuration files and converts them into * Fess configuration objects including web crawling configurations, file crawling * configurations, and label types for access control. * * <p>The parser handles the following GSA configuration elements: * <ul> * <li>Collections with good/bad URL patterns</li>
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
logger.debug("GSA XML import started: fileName={}", fileName); } final GsaConfigParser configParser = ComponentUtil.getComponent(GsaConfigParser.class); try (final InputStream in = new FileInputStream(tempFile)) { configParser.parse(new InputSource(in)); } catch (final IOException e) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 32.1K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.additional.not.analyzed.fields= # Fields for GSA response in queries. query.gsa.response.fields=UE,U,T,RK,S,LANG # Default language for GSA queries. query.gsa.default.lang=en # Default sort for GSA queries. query.gsa.default.sort= # Meta prefix for GSA queries. query.gsa.meta.prefix=MT_ # Charset field for GSA index queries. query.gsa.index.field.charset=charset # Content type field for GSA index queries.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 54.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
/** Property key for suggest web API configuration. */ public static final String WEB_API_SUGGEST_PROPERTY = "web.api.suggest"; /** Property key for GSA web API configuration. */ public static final String WEB_API_GSA_PROPERTY = "web.api.gsa"; /** Property key for popular word web API configuration. */ public static final String WEB_API_POPULAR_WORD_PROPERTY = "web.api.popularword";Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 35.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
String QUERY_GSA_RESPONSE_FIELDS = "query.gsa.response.fields"; /** The key of the configuration. e.g. en */ String QUERY_GSA_DEFAULT_LANG = "query.gsa.default.lang"; /** The key of the configuration. e.g. */ String QUERY_GSA_DEFAULT_SORT = "query.gsa.default.sort"; /** The key of the configuration. e.g. MT_ */ String QUERY_GSA_META_PREFIX = "query.gsa.meta.prefix";
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)