文件操作 - bookgrps.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/local/MegaRAID Storage Manager/docs/Main_Menu/wwhelp/wwhimpl/common/scripts/bookgrps.js
编辑文件内容
// Copyright (c) 2000-2013 Quadralay Corporation. All rights reserved. // /*jslint sloppy: true, vars: true, white: true */ /*global WWHFrame */ /*global WWHBookGroups_AddGrouping, WWHBookGroups_AddDirectory */ /*global WWHBookGroups_Group_Object, WWHBookGroups_Directory_Object */ /*global WWHBookGroups_Group_AddGrouping, WWHBookGroups_Group_AddDirectory */ function WWHBookGroups_Object() { this.mbShowBooks = false; this.mbExpandAllAtTop = false; this.mChildren = []; this.fAddGrouping = WWHBookGroups_AddGrouping; this.fAddDirectory = WWHBookGroups_AddDirectory; } function WWHBookGroups_AddGrouping(ParamTitle, bParamExpand, ParamIcon, ParamOpenIcon) { var bExpandBookGrouping; var BookGrouping; // Set mbExpand to true if top entries are to be expanded // bExpandBookGrouping = false; if ((bParamExpand !== undefined) && (bParamExpand !== null) && (bParamExpand === true)) { bExpandBookGrouping = true; } else { if (this.mbExpandAllAtTop) { bExpandBookGrouping = true; } } BookGrouping = new WWHBookGroups_Group_Object(ParamTitle, bExpandBookGrouping, ParamIcon, ParamOpenIcon); // Add to children list // this.mChildren[this.mChildren.length] = BookGrouping; return BookGrouping; } function WWHBookGroups_AddDirectory(ParamDirectory, bParamShow, bParamExpand, ParamIcon, ParamOpenIcon) { var bExpandBookDirectory; var BookDirectory; // Set mbExpand to true if top entries are to be expanded // bExpandBookDirectory = false; if ((bParamExpand !== undefined) && (bParamExpand !== null) && (bParamExpand === true)) { bExpandBookDirectory = true; } else { if (this.mbExpandAllAtTop) { bExpandBookDirectory = true; } } BookDirectory = new WWHBookGroups_Directory_Object(ParamDirectory, bParamShow, bExpandBookDirectory, ParamIcon, ParamOpenIcon); // Set mbShow to default values if not defined // if ((bParamShow === undefined) || (bParamShow === null)) { BookDirectory.mbShow = this.mbShowBooks; } // Add to children list // this.mChildren[this.mChildren.length] = BookDirectory; } function WWHBookGroups_Group_Object(ParamTitle, bParamExpand, ParamIcon, ParamOpenIcon) { this.mbGrouping = true; this.mTitle = ParamTitle; this.mbExpand = false; this.mChildren = []; this.fAddGrouping = WWHBookGroups_Group_AddGrouping; this.fAddDirectory = WWHBookGroups_Group_AddDirectory; // Set mbExpand if override defined // if ((bParamExpand !== undefined) && (bParamExpand !== null)) { if (bParamExpand === true) { this.mbExpand = true; } } // Set mIcon if defined // if (ParamIcon !== undefined) { this.mIcon = ParamIcon; } // Set mOpenIcon if defined // if (ParamOpenIcon !== undefined) { this.mOpenIcon = ParamOpenIcon; } } function WWHBookGroups_Group_AddGrouping(ParamTitle, bParamExpand, ParamIcon, ParamOpenIcon) { var BookGrouping; BookGrouping = new WWHBookGroups_Group_Object(ParamTitle, bParamExpand, ParamIcon, ParamOpenIcon); this.mChildren[this.mChildren.length] = BookGrouping; return BookGrouping; } function WWHBookGroups_Group_AddDirectory(ParamDirectory, bParamShow, bParamExpand, ParamIcon, ParamOpenIcon) { var BookDirectory; BookDirectory = new WWHBookGroups_Directory_Object(ParamDirectory, bParamShow, bParamExpand, ParamIcon, ParamOpenIcon); this.mChildren[this.mChildren.length] = BookDirectory; } function WWHBookGroups_Directory_Object(ParamDirectory, bParamShow, bParamExpand, ParamIcon, ParamOpenIcon) { this.mbGrouping = false; this.mDirectory = ParamDirectory; this.mbShow = true; this.mbExpand = false; // Set mbShow if override defined // if ((bParamShow === undefined) || (bParamShow === null)) { this.mbShow = WWHFrame.WWHHelp.mBookGroups.mbShowBooks; } else { if (bParamShow === false) { this.mbShow = bParamShow; } } // Set mbExpand if override defined // if ((bParamExpand !== undefined) && (bParamExpand !== null)) { if (bParamExpand === true) { this.mbExpand = bParamExpand; } } // Set mIcon if defined // if (ParamIcon !== undefined) { this.mIcon = ParamIcon; } // Set mOpenIcon if defined // if (ParamOpenIcon !== undefined) { this.mOpenIcon = ParamOpenIcon; } // Add to book list // WWHFrame.WWHHelp.mBooks.fInit_AddBookDir(ParamDirectory); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件