Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for protwords (0.06 sec)

  1. src/main/resources/fess_indices/fess.json

              "keywords_path": "${fess.dictionary.path}en/protwords.txt"
            },
            "finnish_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}fi/stopwords.txt"
            },
            "finnish_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}fi/protwords.txt"
            },
            "finnish_stemmer": {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Jun 06 14:17:42 UTC 2025
    - 39.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

    import org.codelibs.fess.app.web.CrudMode;
    import org.codelibs.fess.app.web.admin.dict.protwords.UploadForm;
    import org.codelibs.fess.app.web.api.ApiResult;
    import org.codelibs.fess.app.web.api.admin.FessApiAdminAction;
    import org.codelibs.fess.dict.protwords.ProtwordsFile;
    import org.codelibs.fess.dict.protwords.ProtwordsItem;
    import org.lastaflute.web.Execute;
    import org.lastaflute.web.response.JsonResponse;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_pl.properties

    errors.failed_to_upload_kuromoji_file = Nie można przesłać pliku Kuromoji.
    errors.failed_to_download_protwords_file = Nie można pobrać pliku Protwords.
    errors.failed_to_upload_protwords_file = Nie można przesłać pliku Protwords.
    errors.failed_to_download_stopwords_file = Nie można pobrać pliku stop-słów.
    errors.failed_to_upload_stopwords_file = Nie można przesłać pliku stop-słów.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

     * This class manages the reading, writing, and updating of protected words dictionary files.
     */
    public class ProtwordsFile extends DictionaryFile<ProtwordsItem> {
        private static final String PROTWORDS = "protwords";
    
        List<ProtwordsItem> protwordsItemList;
    
        /**
         * Constructor for ProtwordsFile.
         * @param id the file identifier
         * @param path the file path
         * @param timestamp the file timestamp
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_pt_BR.properties

    errors.failed_to_upload_kuromoji_file = Não foi possível carregar o arquivo Kuromoji.
    errors.failed_to_download_protwords_file = Não foi possível baixar o arquivo Protwords.
    errors.failed_to_upload_protwords_file = Não foi possível carregar o arquivo Protwords.
    errors.failed_to_download_stopwords_file = Não foi possível baixar o arquivo de stopwords.
    errors.failed_to_upload_stopwords_file = Não foi possível carregar o arquivo de stopwords.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/DownloadBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.admin.dict.protwords.DownloadForm;
    
    /**
     * Download body for protected words dictionary API operations.
     * This class extends the DownloadForm to provide request body handling
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/CreateBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.admin.dict.protwords.CreateForm;
    
    /**
     * Request body for creating protected words dictionary via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /admin/dict/protwords/admin_dict_protwords.jsp */
        HtmlNext path_AdminDictProtwords_AdminDictProtwordsJsp = new HtmlNext("/admin/dict/protwords/admin_dict_protwords.jsp");
    
        /** The path of the HTML: /admin/dict/protwords/admin_dict_protwords_details.jsp */
        HtmlNext path_AdminDictProtwords_AdminDictProtwordsDetailsJsp = new HtmlNext("/admin/dict/protwords/admin_dict_protwords_details.jsp");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 21 04:02:44 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/EditBody.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.dict.protwords;
    
    import org.codelibs.fess.app.web.admin.dict.protwords.EditForm;
    
    /**
     * Request body class for protected words dictionary edit operations in the admin REST API.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java

        /**
         * Constructor for ProtwordsCreator.
         * Initializes the creator with a pattern to match protwords files.
         */
        public ProtwordsCreator() {
            super("protwords.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
Back to top