This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----- Esc ----- | |
Quick change directory: Esc + c | |
Quick change directory history: Esc + c and then Esc + h | |
Quick change directory previous entry: Esc + c and then Esc + p | |
Command line history: Esc + h | |
Command line previous command: Esc + p | |
View change: Esc + t (each time you do this shortcut a new directory view will appear) | |
Print current working directory in command line: Esc + a | |
Print current file name in command line: Esc + Enter | |
Switch between background command line and MC: Ctrl + o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define("Ext.ux.Login", { | |
extend: "Ext.Container", | |
formWrap: true, | |
loginButtonLabel: "Log In", | |
title: "Login form", | |
baseCls: Ext.baseCSSPrefix + 'wr-login', | |
headerCls: Ext.baseCSSPrefix + 'wr-login-header-panel', | |
innerCls: Ext.baseCSSPrefix + 'wr-login-inner-panel', | |
errorCls: Ext.baseCSSPrefix + 'wr-login-message', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('Ext.ux.Messages', { | |
_messages: Ext.MessageBox, | |
accessDeniedMessage: [ | |
"<span style='font-weight:bold;'>Недопустимая операция.</span><br/>", | |
"Доступ закрыт. Если вы считаете, что это ошибочно, пожалуйста, обратитесь в службу технической поддержки." | |
].join(''), | |
eTypes: { | |
SDS: 'exception.sds', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
((supports, exports) => { | |
supports.forEach( | |
(support) => { | |
exports.supports = {}; | |
let el = document.body || document.documentElement; | |
let style = el.style; | |
let prefixes = ['Moz', 'Webkit', 'Ms', 'O', support.toLowerCase()]; | |
exports.supports[support] = prefixes.some((p) => typeof style[p + support] !== 'undefined'); | |
} | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Port of https://github.com/filamentgroup/jQuery-File-Download/blob/master/jQuery.download.js | |
download = (url, data, method) -> | |
#url and data options required | |
if url and data | |
#data can be string of parameters or array/object | |
data = (if typeof data is "string" then data else Ext.Object.toQueryString(data)) | |
#split params into form inputs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
byte[] buffer = new byte[1024]; | |
private void extractSources(File tmpDir) throws IOException { | |
InputStream is = ThemeCompiler.class.getClassLoader().getResourceAsStream("theme.zip"); | |
ZipInputStream zis = new ZipInputStream(is); | |
ZipEntry entry; | |
log.debug("------------- Unzip start -----------------"); | |
while ((entry = zis.getNextEntry()) != null) { | |
log.debug("Unzip : {} ", entry.getName()); |
NewerOlder