📄 i_cmswpconstants.java
字号:
/** Link on button2 of the messagebox */
public static final String C_MESSAGE_LINK2 = "link2";
/** Link on button2 of the messagebox */
public static final String C_MESSAGE_FILENAME = "filename";
// Parameters for select boxes
/** Name of the select box */
public static final String C_SELECTBOX_NAME = "name";
/** Size of the select box */
public static final String C_SELECTBOX_SIZE = "size";
/** Div flag of the select box */
public static final String C_SELECTBOX_DIV = "div";
/** Stylesheet class string of the select box */
public static final String C_SELECTBOX_CLASS = "class";
/** Stylesheet class name of the select box */
public static final String C_SELECTBOX_CLASSNAME = "classname";
/** Width of the select box */
public static final String C_SELECTBOX_WIDTH = "width";
/** Onchange of the select box */
public static final String C_SELECTBOX_ONCHANGE = "onchange";
/** Method of the select box */
public static final String C_SELECTBOX_METHOD = "method";
/** option name of the select box */
public static final String C_SELECTBOX_OPTIONNAME = "name";
/** option value of the select box */
public static final String C_SELECTBOX_OPTIONVALUE = "value";
/** option values for font select boxes */
public static final String[] C_SELECTBOX_FONTS = {
"Arial", "Arial Narrow", "System", "Times New Roman", "Verdana", "Monospace", "SansSerif"
};
/** option values for editor view select boxes */
public static final String[] C_SELECTBOX_EDITORVIEWS = {
"edithtml", "edit"
};
public static final int[] C_SELECTBOX_EDITORVIEWS_ALLOWED = {
3, 2
};
/** classes of the different option values for editor view select boxes */
public static final String[] C_SELECTBOX_EDITORVIEWS_CLASSES = {
"com.opencms.workplace.CmsEditor", "com.opencms.workplace.CmsEditor"
};
/** templates of the different option values for editor view select boxes */
public static final String[] C_SELECTBOX_EDITORVIEWS_TEMPLATES = {
"edit_html_main", "edit_text_main"
};
/** default selected option value for editor view select boxes */
public static final int[] C_SELECTBOX_EDITORVIEWS_DEFAULT = {
0, 1
};
// Parameters for panel bars
/** Link URL for each panel */
public static final String C_PANEL_LINK = "link";
/** Text for each panel */
public static final String C_PANEL_NAME = "panelname";
/** Panel defintion for explorer settings */
public static final String C_PANEL_EXPLORER = "explorer";
/** Panel defintion for task settings */
public static final String C_PANEL_TASK = "task";
/** Panel defintion for start settings */
public static final String C_PANEL_START = "start";
/** Panel defintion for user settings */
public static final String C_PANEL_USER = "user";
// Parameters for file list
/** method value of the file list */
public static final String C_FILELIST_METHOD = "method";
/** method value of the file list */
public static final String C_FILELIST_DISPLAYMETHOD = "namedisplaymethod";
/** template value for the file list */
public static final String C_FILELIST_TEMPLATE = "template";
/** customized template value for the file list */
public static final String C_FILELIST_CUSTOMTEMPLATE = "customtemplate";
/** The name column*/
public final static String C_FILELIST_COLUMN_NAME = "COLUMN_NAME";
/** The title column*/
public final static String C_FILELIST_COLUMN_TITLE = "COLUMN_TITLE";
/** The type column*/
public final static String C_FILELIST_COLUMN_TYPE = "COLUMN_TYPE";
/** The changed column*/
public final static String C_FILELIST_COLUMN_CHANGED = "COLUMN_CHANGED";
/** The size column*/
public final static String C_FILELIST_COLUMN_SIZE = "COLUMN_SIZE";
/** The state column*/
public final static String C_FILELIST_COLUMN_STATE = "COLUMN_STATE";
/** The owner column*/
public final static String C_FILELIST_COLUMN_OWNER = "COLUMN_OWNER";
/** The group column*/
public final static String C_FILELIST_COLUMN_GROUP = "COLUMN_GROUP";
/** The access column*/
public final static String C_FILELIST_COLUMN_ACCESS = "COLUMN_ACCESS";
/** The locked column*/
public final static String C_FILELIST_COLUMN_LOCKED = "COLUMN_LOCKED";
/** The customizable column*/
public final static String C_FILELIST_COLUMN_CUSTOMIZED = "COLUMN_CUSTOMIZED";
/** The stylesheet class to be used for a file or folder entry */
public final static String C_FILELIST_CLASS_VALUE = "OUTPUT_CLASS";
/** The customizable value column*/
public final static String C_FILELIST_COLUMN_CUSTOMIZED_VALUE = "COLUMN_CUSTOMIZED_VALUE";
/** The link for a file or folder entry */
public final static String C_FILELIST_LINK_VALUE = "LINK_VALUE";
/** The suffix for file list values */
public final static String C_FILELIST_SUFFIX_VALUE = "_VALUE";
/** The lock value column */
public final static String C_FILELIST_LOCK_VALUE = "LOCK_VALUE";
/** The name value column */
public final static String C_FILELIST_NAME_VALUE = "NAME_VALUE";
/** The title value column */
public final static String C_FILELIST_TITLE_VALUE = "TITLE_VALUE";
/** The icon value column */
public final static String C_FILELIST_ICON_VALUE = "ICON_VALUE";
/** The type value column */
public final static String C_FILELIST_TYPE_VALUE = "TYPE_VALUE";
/** The changed value column */
public final static String C_FILELIST_CHANGED_VALUE = "CHANGED_VALUE";
/** The size value column */
public final static String C_FILELIST_SIZE_VALUE = "SIZE_VALUE";
/** The state value column */
public final static String C_FILELIST_STATE_VALUE = "STATE_VALUE";
/** The owner value column */
public final static String C_FILELIST_OWNER_VALUE = "OWNER_VALUE";
/** The group value column */
public final static String C_FILELIST_GROUP_VALUE = "GROUP_VALUE";
/** The access value column */
public final static String C_FILELIST_ACCESS_VALUE = "ACCESS_VALUE";
/** The lockedby value column */
public final static String C_FILELIST_LOCKED_VALUE = "LOCKED_VALUE";
// Constants for language file control
/** Prefix for button texts in the language file */
public static final String C_LANG_BUTTON = "button";
/** Prefix for button texts in the language file */
public static final String C_LANG_ICON = "icon";
/** Prefix for label texts in the language file */
public static final String C_LANG_LABEL = "label";
/** Prefix for label texts in the language file */
public static final String C_LANG_TITLE = "title";
// Constants for user default preferences
/** Number of images to be shown per page in the picture browser */
public static final int C_PICBROWSER_MAXIMAGES = 15;
/** Number of images to be shown per page in the download browser */
public static final int C_DOWNBROWSER_MAXENTRIES = 30;
/** Name of the filelist preferences */
public static final String C_USERPREF_FILELIST = "filelist";
/** Flag for displaying the title column */
public static final int C_FILELIST_TITLE = 1;
/** Flag for displaying the filetype column */
public static final int C_FILELIST_TYPE = 2;
/** Flag for displaying the changed column */
public static final int C_FILELIST_CHANGED = 4;
/** Flag for displaying the size column */
public static final int C_FILELIST_SIZE = 8;
/** Flag for displaying the state column */
public static final int C_FILELIST_STATE = 16;
/** Flag for displaying the owner column */
public static final int C_FILELIST_OWNER = 32;
/** Flag for displaying the group column */
public static final int C_FILELIST_GROUP = 64;
/** Flag for displaying the access column */
public static final int C_FILELIST_ACCESS = 128;
/** Flag for displaying the locked column */
public static final int C_FILELIST_LOCKED = 256;
/** Flag for displaying the name column */
public static final int C_FILELIST_NAME = 512;
/** Parameter of user management */
public static final String C_USERS_NAME = "USERNAME";
/** Parameter of user management */
public static final String C_GROUPS_NAME = "GROUPNAME";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_NAME = "NAME";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_GROUP = "GROUP";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_DESCRIPTION = "DESCRIPTION";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_MANAGERGROUP = "MANAGERGROUP";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_TYPE = "TYPE";
/** Parameter of projectnew */
public static final String C_PROJECTNEW_FOLDER = "selectallfolders";
/** Templateselector of projectnew */
public static final String C_PROJECTNEW_ERROR = "error";
/** Templateselector of projectnew */
public static final String C_PROJECTNEW_DONE = "done";
/** Taskparameter */
public static final String C_TASKPARA_ACCEPTATION = "acceptation";
/** Taskparameter */
public static final String C_TASKPARA_ALL = "all";
/** Taskparameter */
public static final String C_TASKPARA_COMPLETION = "completion";
/** Taskparameter */
public static final String C_TASKPARA_DELIVERY = "delivery";
/** Constant for session-key */
public static final String C_SESSION_TASK_ALLPROJECTS = "task_allprojects";
/** Constant for session-key */
public static final String C_SESSION_TASK_FILTER = "task_filter";
/** Constant for task-log */
public static final int C_TASKLOGTYPE_CREATED = 100;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_ACCEPTED = 101;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_COMMENT = 102;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_TAKE = 103;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_OK = 104;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_REACTIVATED = 105;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_FORWARDED = 106;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_CALL = 107;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_DUECHANGED = 108;
/** Constant for task-log */
public static final int C_TASKLOGTYPE_PRIORITYCHANGED = 109;
/** The prefix for the icon images */
public final static String C_ICON_PREFIX = "ic_file_";
/** The extension for the icon images */
public final static String C_ICON_EXTENSION = ".gif";
/** The default icon */
public final static String C_ICON_DEFAULT = "ic_file_othertype.gif";
// Constants for macros
public final static String C_MACRO_OPENCMS_CONTEXT = "${OpenCmsContext}";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -