Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 243 for upload (0.13 sec)

  1. src/main/resources/fess_label_en.properties

    labels.key_match_urls=URLs
    labels.key_match_title_details=Key Match
    labels.design_configuration=Page Design
    labels.design_title_file_upload=File to Upload
    labels.design_title_file=File Manager
    labels.design_file=Upload File
    labels.design_file_name=File Name (optional)
    labels.design_button_upload=Upload
    labels.design_file_title_edit=View Page File
    labels.design_edit_button=Edit
    labels.design_download_button=Download
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  2. .github/workflows/scorecard.yml

              #     of the value entered here.
              publish_results: true
    
          # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
          # format to the repository Actions tab.
          - name: "Upload artifact"
            uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
            with:
              name: SARIF file
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/design/DesignForm.java

    /**
     * Form class for design file management in the admin interface.
     * Handles upload and management of design templates and CSS files.
     */
    public class DesignForm {
    
        /**
         * Creates a new instance of DesignForm.
         * This constructor initializes the form for design file management
         * in the admin interface, handling upload and management of templates and CSS files.
         */
        public DesignForm() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                });
            });
        }
    
        /**
         * Upload a stopwords file.
         *
         * @param form the upload form containing the file and dictionary ID
         * @return HTML response redirecting to the list page after successful upload
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse upload(final UploadForm form) {
            validate(form, messages -> {}, () -> uploadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/sereq/admin_sereq.jsp

    									</div>
    								</div>
    							</div>
    							<div class="card-footer">
    								<c:if test="${editable}">
    									<button type="submit" class="btn btn-primary" name="upload">
    										<em class="fa fa-upload">
    										<la:message key="labels.sereq_button_upload" />
    									</button>
    								</c:if>
    							</div>
    						</div>
    					</div>
    				</la:form>
    			</section>
    		</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Nov 07 06:19:20 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        }
    
        /**
         * Upload protected words file for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param form upload form containing the file and metadata
         * @return JSON response indicating the API result status
         */
        // PUT /api/admin/dict/protwords/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Uploads Kuromoji dictionary file.
         *
         * @param dictId the dictionary ID
         * @param form the upload form containing the dictionary file
         * @return JSON response with result status
         */
        // PUT /api/admin/dict/kuromoji/upload/{dictId}
        @Execute
        public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. .github/workflows/docs.yml

    permissions:
      contents: read
    
    env:
      GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
    
    jobs:
      test_docs:
        permissions:
          checks: write # for actions/upload-artifact
        runs-on: ubuntu-latest
        if: github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'documentation')
    
        steps:
          - name: Checkout
            uses: actions/checkout@v5
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 987 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java

         */
        public static final String ROLE = "admin-plugin";
    
        private static final Logger logger = LogManager.getLogger(AdminPluginAction.class);
    
        private static final String UPLOAD = "upload";
    
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. src/main/resources/fess_message.properties

    success.upload_synonym_file = Uploaded a synonym file.
    success.upload_protwords_file = Uploaded a protwords file.
    success.upload_stopwords_file = Uploaded a stopwords file.
    success.upload_stemmeroverride_file = Uploaded a stemmer override file.
    success.upload_kuromoji_file = Uploaded a Kuromoji file.
    success.upload_elevate_word = Uploaded an elevate word file.
    success.upload_bad_word = Uploaded a bad word 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)
Back to top