Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 231 for backup (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java

        }
    
        /**
         * Downloads a specific backup file by ID.
         * Supports various backup formats including system properties, bulk data, and NDJSON logs.
         *
         * @param id the backup file ID to download
         * @return stream response containing the backup file data
         */
        // GET /api/admin/backup/file/{id}
        @Execute
        public StreamResponse get$file(final String id) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/backup/UploadForm.java

     */
    package org.codelibs.fess.app.web.admin.backup;
    
    import org.lastaflute.web.ruts.multipart.MultipartFormFile;
    import org.lastaflute.web.validation.Required;
    
    /**
     * Form class for backup file upload.
     * This form handles file uploads for backup and restore operations.
     */
    public class UploadForm {
    
        /**
         * The backup file to be uploaded.
         */
        @Required
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        /**
         * Represents an API response containing a list of backup files.
         */
        public static class ApiBackupFilesResponse extends ApiResponse {
            /**
             * The list of backup files, where each file is represented by a map of strings.
             */
            protected List<Map<String, String>> files;
            /**
             * The total number of backup files.
             */
            protected long total = 0;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Backup management.
     *
     */
    public class AdminBackupAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminBackupAction() {
            super();
        }
    
        /**
         * The role for this action.
         */
        public static final String ROLE = "admin-backup";
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/it/admin/BackupTests.java

    import io.restassured.path.json.JsonPath;
    
    @Tag("it")
    public class BackupTests extends CrudTestBase {
    
        private static final String NAME_PREFIX = "backupTest_";
        private static final String API_PATH = "/api/admin/backup";
        private static final String LIST_ENDPOINT_SUFFIX = "files";
        private static final String ITEM_ENDPOINT_SUFFIX = "file";
    
        private static final String KEY_PROPERTY = "";
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jun 19 07:14:01 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_en.properties

    labels.menu_wizard=Wizard
    labels.menu_crawl_config=General
    labels.menu_scheduler_config=Scheduler
    labels.menu_dashboard_config=Dashboard
    labels.menu_design=Page Design
    labels.menu_dict=Dictionary
    labels.menu_data=Backup/Restore
    labels.menu_crawl=Crawler
    labels.menu_web=Web
    labels.menu_file_system=File System
    labels.menu_data_store=Data Store
    labels.menu_label_type=Label
    labels.menu_key_match=Key Match
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/admin/accesstoken/admin_accesstoken_edit.jsp",
                    FessHtmlPath.path_AdminAccesstoken_AdminAccesstokenEditJsp.getRoutingPath());
            assertEquals("/admin/backup/admin_backup.jsp", FessHtmlPath.path_AdminBackup_AdminBackupJsp.getRoutingPath());
            assertEquals("/admin/badword/admin_badword.jsp", FessHtmlPath.path_AdminBadword_AdminBadwordJsp.getRoutingPath());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.properties

    ftp.role.from.file=true
    
    # backup
    
    # Target files for index backup.
    index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json
    # Target log files for index backup.
    index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson
    # Timeout for loading index backup logs.
    index.backup.log.load.timeout=60000
    
    # logging
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_message_pt_BR.properties

    errors.crud_failed_to_delete_crud_table=Não foi possível excluir os dados. ({0})
    errors.crud_could_not_find_crud_table = Dados {0} não encontrados.
    errors.could_not_find_backup_index=Não foi possível encontrar o índice de backup.
    errors.no_user_for_changing_password=A senha atual está incorreta.
    errors.failed_to_change_password=Não foi possível alterar a senha.
    errors.unknown_version_for_upgrade=Informações de versão desconhecidas.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        HtmlNext path_AdminAccesstoken_AdminAccesstokenEditJsp = new HtmlNext("/admin/accesstoken/admin_accesstoken_edit.jsp");
    
        /** The path of the HTML: /admin/backup/admin_backup.jsp */
        HtmlNext path_AdminBackup_AdminBackupJsp = new HtmlNext("/admin/backup/admin_backup.jsp");
    
        /** The path of the HTML: /admin/badword/admin_badword.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)
Back to top