- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 11 for GSA (0.04 sec)
-
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
Throwable intermediateCause = new RuntimeException("Intermediate problem", rootCause); GsaConfigException exception = new GsaConfigException("Top level GSA error", intermediateCause); assertNotNull(exception); assertEquals("Top level GSA error", exception.getMessage()); // Check first level cause assertNotNull(exception.getCause());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/GsaConfigException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * Exception thrown when GSA (Google Search Appliance) configuration errors occur. * This exception extends FessSystemException and is used to handle specific * configuration-related issues when working with GSA integration. * */ public class GsaConfigException extends FessSystemException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java
final int fileType; if (fileName.startsWith("system") && fileName.endsWith(".properties")) { fileType = 1; } else if (fileName.startsWith("gsa") && fileName.endsWith(".xml")) { fileType = 2; } else if (fileName.endsWith(".bulk")) { fileType = 3; } else if (fileName.startsWith("fess") && fileName.endsWith(".json")) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 29.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
/** Search request type. */ SEARCH, /** Admin search request type. */ ADMIN_SEARCH, /** JSON request type. */ JSON, /** GSA request type. */ GSA, /** Suggest request type. */ SUGGEST; } /** * Returns the response fields. * * @return The response fields. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 525.6K bytes - Viewed (1) -
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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 34.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/QueryHelper.java
} /** * Processes search preferences specifically for GSA (Google Search Appliance) compatible requests. * This method determines the preference value based on configuration and query content. * * @param req the HTTP servlet request * @param query the search query string * @return the preference value for GSA search requests, or null if not applicable */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java
public String userSessionId; /** Time range filter for search logs (format: "yyyy-MM-dd HH:mm - yyyy-MM-dd HH:mm"). */ public String requestedTimeRange; /** Access type filter for search logs (web, json, gsa, admin, other). */ public String accessType; /** * Default constructor for creating a new SearchLogPager instance. */ public SearchLogPager() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0)