- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 119 for msword (0.42 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific bad word setting by ID. * * @param id the ID of the bad word to retrieve * @return JSON response containing the bad word configuration */ // GET /api/admin/badword/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/resources/fess_message.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/resources/fess_message_en.properties
errors.failed_to_download_elevate_file = Failed to download an elevate word file. errors.failed_to_upload_elevate_file = Failed to upload an elevate word file. errors.failed_to_download_badword_file = Failed to download a bad word file. errors.failed_to_upload_badword_file = Failed to upload a bad word file. errors.failed_to_download_mapping_file = Failed to download a mapping file.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for elevate word administration. * Extends BaseSearchBody with elevate word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The elevate word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/webapp/css/admin/style.css
font-size: 120%; font-weight: 600; } section.content table { display: table; table-layout: fixed; width } section.content table td { display: table-cell; word-wrap: break-word; overflow-wrap: break-word; } section.content table .label { color: #fff; } textarea.systemInfoData { height: 22em; line-height: 1.5em; } .login-box { height: 500px;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading bad word files to the Fess search engine. * This form is used in the admin interface to upload bad word dictionary files * that contain words to be filtered from search results. */ public class UploadForm { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
} abstract String normalizeWord(String word); String normalizeFirstWord(String word) { return normalizeWord(word); } private static String firstCharOnlyToUpper(String word) { return word.isEmpty() ? word : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1)); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager class for bad word management with pagination support. * Provides pagination functionality for bad word lists. */ public class BadWordPager implements Serializable { private static final long serialVersionUID = 1L; /** Default page size for bad word pagination. */ public static final int DEFAULT_PAGE_SIZE = 20;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/badword/SearchBody.java
import org.codelibs.fess.app.web.api.admin.BaseSearchBody; /** * Search request body for bad word administration. * Extends BaseSearchBody with bad word-specific search parameters. */ public class SearchBody extends BaseSearchBody { /** The bad word ID to search for. */ public String id; /** * Default constructor for SearchBody. */ public SearchBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/UploadForm.java
/** * Form for uploading elevate word files to the Fess search engine. * Elevate words are terms that should be promoted or given higher ranking in search results. * This form is used in the admin interface to upload elevate word configuration files. */ public class UploadForm { /** * The multipart file containing the elevate word configurations to be uploaded.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0)