Package org.dspace.app.xmlui.wing.element

Examples of org.dspace.app.xmlui.wing.element.List.addLabel()


      dspace.addItem(ConfigurationManager.getProperty("db.url"));

        dspace.addLabel(T_DB_DRIVER);
      dspace.addItem(ConfigurationManager.getProperty("db.driver"));

      dspace.addLabel(T_DB_MAX_CONN);
      dspace.addItem(ConfigurationManager.getProperty("db.maxconnections"));


        dspace.addLabel(T_DB_MAX_WAIT);
      dspace.addItem(ConfigurationManager.getProperty("db.maxwait"));
View Full Code Here


      
       List identity = form.addList("identity",List.TYPE_FORM);
       identity.setHead(T_head_identify);
      
       // Email
       identity.addLabel(T_email_address);
       identity.addItem(email);
      
       // First name
       Text firstName = identity.addItem().addText("first_name");
       firstName.setRequired();
View Full Code Here

      dspace.addLabel(T_DB_MAX_CONN);
      dspace.addItem(ConfigurationManager.getProperty("db.maxconnections"));


        dspace.addLabel(T_DB_MAX_WAIT);
      dspace.addItem(ConfigurationManager.getProperty("db.maxwait"));
     
        dspace.addLabel(T_DB_MAX_IDLE);
      dspace.addItem(ConfigurationManager.getProperty("db.maxidle"));
View Full Code Here


        dspace.addLabel(T_DB_MAX_WAIT);
      dspace.addItem(ConfigurationManager.getProperty("db.maxwait"));
     
        dspace.addLabel(T_DB_MAX_IDLE);
      dspace.addItem(ConfigurationManager.getProperty("db.maxidle"));

         dspace.addLabel(T_MAIL_SERVER);
      dspace.addItem(ConfigurationManager.getProperty("mail.server"));
View Full Code Here

      dspace.addItem(ConfigurationManager.getProperty("db.maxwait"));
     
        dspace.addLabel(T_DB_MAX_IDLE);
      dspace.addItem(ConfigurationManager.getProperty("db.maxidle"));

         dspace.addLabel(T_MAIL_SERVER);
      dspace.addItem(ConfigurationManager.getProperty("mail.server"));
        dspace.addLabel(T_MAIL_FROM_ADDRESS);
      dspace.addItem(ConfigurationManager.getProperty("mail.from.address"));
View Full Code Here

      dspace.addItem(ConfigurationManager.getProperty("db.maxidle"));

         dspace.addLabel(T_MAIL_SERVER);
      dspace.addItem(ConfigurationManager.getProperty("mail.server"));
        dspace.addLabel(T_MAIL_FROM_ADDRESS);
      dspace.addItem(ConfigurationManager.getProperty("mail.from.address"));

        dspace.addLabel(T_FEEDBACK_RECIPIENT);
      dspace.addItem(ConfigurationManager.getProperty("feedback.recipient"));
View Full Code Here

      dspace.addItem(ConfigurationManager.getProperty("mail.server"));
        dspace.addLabel(T_MAIL_FROM_ADDRESS);
      dspace.addItem(ConfigurationManager.getProperty("mail.from.address"));

        dspace.addLabel(T_FEEDBACK_RECIPIENT);
      dspace.addItem(ConfigurationManager.getProperty("feedback.recipient"));

        dspace.addLabel(T_MAIL_ADMIN);
      dspace.addItem(ConfigurationManager.getProperty("mail.admin"));       
  }
View Full Code Here

      dspace.addItem(ConfigurationManager.getProperty("mail.from.address"));

        dspace.addLabel(T_FEEDBACK_RECIPIENT);
      dspace.addItem(ConfigurationManager.getProperty("feedback.recipient"));

        dspace.addLabel(T_MAIL_ADMIN);
      dspace.addItem(ConfigurationManager.getProperty("mail.admin"));       
  }
 
  /**
   * Add a section that allows administrators to activate or deactivate system-wide alerts.
View Full Code Here

    // Remember we're in the harvest section
    div.addHidden("harvest").setValue("true");
           
    List harvesterControls = div.addList("oai-harvester-controls",List.TYPE_FORM);
    harvesterControls.setHead(T_harvest_scheduler_head);
    harvesterControls.addLabel(T_harvest_label_status);
    Item status = harvesterControls.addItem();
    status.addContent(HarvestScheduler.getStatus());
    status.addXref(contextPath + "/admin/panel?harvest", "(refresh)");
   
    harvesterControls.addLabel(T_harvest_label_actions);
View Full Code Here

    harvesterControls.addLabel(T_harvest_label_status);
    Item status = harvesterControls.addItem();
    status.addContent(HarvestScheduler.getStatus());
    status.addXref(contextPath + "/admin/panel?harvest", "(refresh)");
   
    harvesterControls.addLabel(T_harvest_label_actions);
    Item actionsItem = harvesterControls.addItem();
    if (HarvestScheduler.status == HarvestScheduler.HARVESTER_STATUS_STOPPED) {
      actionsItem.addButton("submit_harvest_start").setValue(T_harvest_submit_start);
      actionsItem.addButton("submit_harvest_reset").setValue(T_harvest_submit_reset);
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.