文件操作 - editor.js
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/doc/clamav-0.103.5/html/editor.js
编辑文件内容
"use strict"; window.editors = []; (function(editors) { if (typeof(ace) === 'undefined' || !ace) { return; } Array.from(document.querySelectorAll('.editable')).forEach(function(editable) { let display_line_numbers = window.playground_line_numbers || false; let editor = ace.edit(editable); editor.setOptions({ highlightActiveLine: false, showPrintMargin: false, showLineNumbers: display_line_numbers, showGutter: display_line_numbers, maxLines: Infinity, fontSize: "0.875em" // please adjust the font size of the code in general.css }); editor.$blockScrolling = Infinity; editor.getSession().setMode("ace/mode/rust"); editor.originalCode = editor.getValue(); editors.push(editor); }); })(window.editors);
修改文件时间
将文件时间修改为当前时间的前一年
删除文件